blob: 805e7c019b43de4b5c1148e18d049d730c65014f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
include "constants.asm"
SECTION "maps/Route1Gate2F.asm", ROMX
Route1Gate2FScriptLoader:: ; 411F
ld hl, Route1Gate2FScriptPointers
call RunMapScript
call WriteBackMapScriptNumber
ret
Route1Gate2FScriptPointers: ; 4129
dw Route1Gate2FScript
dw Route1Gate2FNPCIDs
Route1Gate2FNPCIDs: ; 412D
db 0
db 1
db $FF
Route1Gate2FSignPointers: ; 4130
dw Route1Gate2FTextSign1
dw Route1Gate2FTextSign2
Route1Gate2FTextPointers:: ; 4134
dw Route1Gate2FTextNPC1
dw Route1Gate2FTextNPC2
Route1Gate2FScript:: ; 4138
ld hl, Route1Gate2FNPCIDs
ld de, Route1Gate2FSignPointers
call CallMapTextSubroutine
ret
Route1Gate2FTextNPC1: ; 4142
ld hl, Route1Gate2FTextString1
call OpenTextbox
ret
Route1Gate2FTextNPC2: ; 4149
ld hl, Route1Gate2FTextString2
call OpenTextbox
ret
Route1Gate2FTextSign1: ; 4150
ld hl, Route1Gate2FTextString3
call OpenTextbox
ret
Route1Gate2FTextSign2: ; 4157
ld hl, Route1Gate2FTextString4
call OpenTextbox
ret
Route1Gate2FTextString1: ; 415E
text "ガンテツさんって しってる?"
para "ガンテツさんに"
line "きに いられるように なれば"
cont "トレーナーとして たいしたもの よ"
done
Route1Gate2FTextString2: ; 4197
text "あなた かんこうで きたの?"
line "なら ざんねんね"
para "オールドシティの"
line "ごじゅうのとう は"
cont "だれでも はいれる って"
cont "ものじゃないわ"
done
Route1Gate2FTextString3: ; 41D8
text "<PLAYER>は"
line "ぼうえんきょうを のぞいた!"
para "むむむ!"
line "たかーい とう が みえる!"
done
Route1Gate2FTextString4: ; 41FF
text "<PLAYER>は"
line "ぼうえんきょうを のぞいた!"
para "むむ?"
line "ながーい かわ が みえる"
done
; 4224
|