forked from Rangi42/polishedcrystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzaleaPokeCenter1F.asm
112 lines (81 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
AzaleaPokeCenter1F_MapScriptHeader:
def_scene_scripts
def_callbacks
def_warp_events
warp_event 5, 7, AZALEA_TOWN, 1
warp_event 6, 7, AZALEA_TOWN, 1
warp_event 0, 7, POKECENTER_2F, 1
def_coord_events
def_bg_events
bg_event 10, 1, BGEVENT_READ, PokemonJournalBugsyScript
def_object_events
pc_nurse_event 5, 1
object_event 8, 4, SPRITE_ACE_TRAINER_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, AzaleaPokeCenter1FCooltrainermScript, -1
object_event 11, 6, SPRITE_GENTLEMAN, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_COMMAND, jumptextfaceplayer, AzaleaPokeCenter1FGentlemanText, -1
object_event 8, 1, SPRITE_SIGHTSEER_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_COMMAND, jumptextfaceplayer, AzaleaPokeCenter1FSightseermText, -1
object_event 2, 5, SPRITE_MATRON, SPRITEMOVEDATA_WANDER, 2, 1, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_COMMAND, jumptextfaceplayer, AzaleaPokeCenter1FPokefanfText, -1
PokemonJournalBugsyScript:
setflag ENGINE_READ_BUGSY_JOURNAL
jumpthistext
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:
checktime (1 << EVE) | (1 << NITE)
iftrue_jumptextfaceplayer .NiteText
jumpthistextfaceplayer
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