diff options
| author | jd-0 <44876081+jd-0@users.noreply.github.com> | 2020-09-20 12:07:01 -0700 |
|---|---|---|
| committer | jd-0 <44876081+jd-0@users.noreply.github.com> | 2020-09-20 12:07:01 -0700 |
| commit | 8900eb7ad06931b78dcb91e0c2e7db583090aa06 (patch) | |
| tree | a08cd946f4b421f2d25e246df3d6d3375dc5ea05 /maps/Route1Gate2F.asm | |
| parent | e789ee48b65e8cc08104ef06de4b08c9ef9d117d (diff) | |
Remove address comments
Regex patterns used:
; [0-9a-f]{1,5} \([0-9a-f]{1,2}:[0-9a-f]{1,4}\)
; [0-9a-f]{1,2}:[0-9a-f]{4}
; [0-9a-f]{4,5}
;[0-9a-f]{4,5}
;[0-9a-f]{1,2}:[0-9a-f]{1,4}
Diffstat (limited to 'maps/Route1Gate2F.asm')
| -rw-r--r-- | maps/Route1Gate2F.asm | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/maps/Route1Gate2F.asm b/maps/Route1Gate2F.asm index 73c827e..e6d4a20 100644 --- a/maps/Route1Gate2F.asm +++ b/maps/Route1Gate2F.asm @@ -2,55 +2,55 @@ include "constants.asm" SECTION "maps/Route1Gate2F.asm", ROMX -Route1Gate2FScriptLoader:: ; 411F +Route1Gate2FScriptLoader:: ld hl, Route1Gate2FScriptPointers call RunMapScript call WriteBackMapScriptNumber ret -Route1Gate2FScriptPointers: ; 4129 +Route1Gate2FScriptPointers: dw Route1Gate2FScript dw Route1Gate2FNPCIDs -Route1Gate2FNPCIDs: ; 412D +Route1Gate2FNPCIDs: db 0 db 1 db $FF -Route1Gate2FSignPointers: ; 4130 +Route1Gate2FSignPointers: dw Route1Gate2FTextSign1 dw Route1Gate2FTextSign2 -Route1Gate2FTextPointers:: ; 4134 +Route1Gate2FTextPointers:: dw Route1Gate2FTextNPC1 dw Route1Gate2FTextNPC2 -Route1Gate2FScript:: ; 4138 +Route1Gate2FScript:: ld hl, Route1Gate2FNPCIDs ld de, Route1Gate2FSignPointers call CallMapTextSubroutine ret -Route1Gate2FTextNPC1: ; 4142 +Route1Gate2FTextNPC1: ld hl, Route1Gate2FTextString1 call OpenTextbox ret -Route1Gate2FTextNPC2: ; 4149 +Route1Gate2FTextNPC2: ld hl, Route1Gate2FTextString2 call OpenTextbox ret -Route1Gate2FTextSign1: ; 4150 +Route1Gate2FTextSign1: ld hl, Route1Gate2FTextString3 call OpenTextbox ret -Route1Gate2FTextSign2: ; 4157 +Route1Gate2FTextSign2: ld hl, Route1Gate2FTextString4 call OpenTextbox ret -Route1Gate2FTextString1: ; 415E +Route1Gate2FTextString1: text "ガンテツさんって しってる?" para "ガンテツさんに" @@ -58,7 +58,7 @@ Route1Gate2FTextString1: ; 415E cont "トレーナーとして たいしたもの よ" done -Route1Gate2FTextString2: ; 4197 +Route1Gate2FTextString2: text "あなた かんこうで きたの?" line "なら ざんねんね" @@ -68,7 +68,7 @@ Route1Gate2FTextString2: ; 4197 cont "ものじゃないわ" done -Route1Gate2FTextString3: ; 41D8 +Route1Gate2FTextString3: text "<PLAYER>は" line "ぼうえんきょうを のぞいた!" @@ -76,7 +76,7 @@ Route1Gate2FTextString3: ; 41D8 line "たかーい とう が みえる!" done -Route1Gate2FTextString4: ; 41FF +Route1Gate2FTextString4: text "<PLAYER>は" line "ぼうえんきょうを のぞいた!" |
