forked from Rangi42/polishedcrystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzaleaPokeCenter1F.asm
115 lines (82 loc) · 2.41 KB
/
AzaleaPokeCenter1F.asm
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
AzaleaPokeCenter1F_MapScriptHeader:
.MapTriggers: db 0
.MapCallbacks: db 0
AzaleaPokeCenter1F_MapEventHeader:
.Warps: db 3
warp_def 7, 5, 1, AZALEA_TOWN
warp_def 7, 6, 1, AZALEA_TOWN
warp_def 7, 0, 1, POKECENTER_2F
.XYTriggers: db 0
.Signposts: db 1
signpost 1, 10, SIGNPOST_READ, PokemonJournalBugsyScript
.PersonEvents: db 5
pc_nurse_event 1, 5
person_event SPRITE_COOLTRAINER_M, 4, 8, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, AzaleaPokeCenter1FCooltrainermScript, -1
person_event SPRITE_GENTLEMAN, 6, 11, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, PERSONTYPE_COMMAND, jumptextfaceplayer, AzaleaPokeCenter1FGentlemanText, -1
person_event SPRITE_SIGHTSEER_M, 1, 8, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_COMMAND, jumptextfaceplayer, AzaleaPokeCenter1FSightseermText, -1
person_event SPRITE_POKEFAN_F, 5, 2, SPRITEMOVEDATA_WANDER, 2, 1, -1, -1, 0, PERSONTYPE_COMMAND, jumptextfaceplayer, AzaleaPokeCenter1FPokefanfText, -1
PokemonJournalBugsyScript:
setflag ENGINE_READ_BUGSY_JOURNAL
thistext
text "#mon Journal"
para "Special Feature:"
line "Leader Bugsy!"
para "Bugsy is reported"
line "to have won the"
para "Bug-Catching Con-"
line "test so often that"
para "he no longer par-"
line "ticipates."
done
AzaleaPokeCenter1FCooltrainermScript:
checknite
iftrue_jumptextfaceplayer .NiteText
thistextfaceplayer
text "For a guy who"
line "makes # Balls,"
para "Kurt isn't much of"
line "a trainer."
para "He does have a"
line "#mon, but he"
para "doesn't use it"
line "much."
done
.NiteText:
text "Kurt and Prof.Oak"
line "are old friends."
para "They're also close"
line "with Agatha, a"
para "former member of"
line "the Elite Four."
done
AzaleaPokeCenter1FGentlemanText:
text "Do your #mon"
line "know HM moves?"
para "Those moves can"
line "be used even if"
para "your #mon has"
line "fainted."
done
AzaleaPokeCenter1FSightseermText:
text "This Bill guy"
line "created the system"
para "for storing"
line "#mon in a PC."
para "Bill's PC can"
line "store up to 20"
cont "#mon per Box."
done
AzaleaPokeCenter1FPokefanfText:
text "Do you know about"
line "Apricorns?"
para "Crack one open,"
line "hollow it out and"
para "fit it with a"
line "special device."
para "Then you can catch"
line "#mon with it."
para "Before # Balls"
line "were invented,"
para "everyone used"
line "Apricorns."
done