diff options
author | yenatch <yenatch@gmail.com> | 2013-02-17 01:54:07 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-02-17 01:59:06 -0500 |
commit | 48dbfc6333979f7a5e306fbb59f1840411e73292 (patch) | |
tree | 95f5fa2f13b9c79c0119a44fa4a72f82f9fe3b4c /maps/Route23.asm | |
parent | 9761a1a632cd4b465f5fc6cf6cb40d38a53f4ac5 (diff) |
Split map scripts, text, events from main.asm
The commit we deserve
Diffstat (limited to 'maps/Route23.asm')
-rw-r--r-- | maps/Route23.asm | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/maps/Route23.asm b/maps/Route23.asm new file mode 100644 index 000000000..8bf50fb28 --- /dev/null +++ b/maps/Route23.asm @@ -0,0 +1,50 @@ +Route23_MapScriptHeader: ; 0x1ae52e + ; trigger count + db 0 + + ; callback count + db 1 + + ; callbacks + + dbw 5, UnknownScript_0x1ae533 +; 0x1ae533 + +UnknownScript_0x1ae533: ; 0x1ae533 + setbit2 $0040 + return +; 0x1ae537 + +MapRoute23Signpost0Script: ; 0x1ae537 + jumptext UnknownText_0x1ae53a +; 0x1ae53a + +UnknownText_0x1ae53a: ; 0x1ae53a + db $0, "INDIGO PLATEAU", $51 + db "The Ultimate Goal", $4f + db "for Trainers!", $51 + db "#MON LEAGUE HQ", $57 +; 0x1ae579 + +Route23_MapEventHeader: ; 0x1ae579 + ; filler + db 0, 0 + + ; warps + db 4 + warp_def $5, $9, 1, GROUP_INDIGO_PLATEAU_POKECENTER_1F, MAP_INDIGO_PLATEAU_POKECENTER_1F + warp_def $5, $a, 2, GROUP_INDIGO_PLATEAU_POKECENTER_1F, MAP_INDIGO_PLATEAU_POKECENTER_1F + warp_def $d, $9, 10, GROUP_VICTORY_ROAD, MAP_VICTORY_ROAD + warp_def $d, $a, 10, GROUP_VICTORY_ROAD, MAP_VICTORY_ROAD + + ; xy triggers + db 0 + + ; signposts + db 1 + signpost 7, 11, $0, MapRoute23Signpost0Script + + ; people-events + db 0 +; 0x1ae598 + |