blob: 683b302d0f1203e728a8126fe506d7792af06cc3 (
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
|
INCLUDE "constants.asm"
SECTION "scripts/Route1P1.asm", ROMX
ret
dw Textdbb82
Textdbb82:
text "べんりな よのなかだね"
done
rept 9
ret
endr
Route1P1_ScriptLoader::
ld hl, Route1P1ScriptPointers
call RunMapScript
call WriteBackMapScriptNumber
ret
Route1P1ScriptPointers:
dw Route1P1Script
dw Route1P1NPCIDs
Route1P1NPCIDs:
db 0
db 1
db $FF
Route1P1SignPointers:
dw Route1P1TextSign1
dw Route1P1TextSign2
Route1P1_TextPointers::
dw Route1P1TextNPC1
dw Route1P1TextNPC2
Route1P1Script::
ld hl, Route1P1NPCIDs
ld de, Route1P1SignPointers
call CallMapTextSubroutine
ret
Route1P1TextNPC1:
ld hl, Route1P1TextString1
call OpenTextbox
ret
Route1P1TextNPC2:
ld hl, Route1P1TextString2
call OpenTextbox
ret
Route1P1TextSign1:
ld hl, Route1P1TextString3
call OpenTextbox
ret
Route1P1TextSign2:
ld hl, Route1P1TextString4
call OpenTextbox
ret
Route1P1TextString1:
text "しょうねん!"
para "モンスターボールは"
line "やせいの ポケモンを よわらせてから"
cont "つかうのが きほんだ!"
done
Route1P1TextString2:
text "ぼく ゆうがた じゅくの かえりに"
line "かわった ポケモンを みたよ"
done
Route1P1TextString3:
text "このさき しずかな おか"
line "やせいの ポケモンに ちゅうい"
done
Route1P1TextString4:
text "ここは 1ばん どうろ"
line "サイレントヒル ⋯⋯ オールドシティ"
done
|