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
|
object_const_def ; object_event constants
const GOLDENRODPOKECENTER1F_NURSE
const GOLDENRODPOKECENTER1F_GAMEBOY_KID
const GOLDENRODPOKECENTER1F_FISHER
const GOLDENRODPOKECENTER1F_TWIN
GoldenrodPokecenter1F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
GoldenrodPokecenter1FNurseScript:
jumpstd PokecenterNurseScript
GoldenrodPokecenter1FGameboyKidScript:
faceplayer
opentext
writetext GoldenrodPokecenter1FGameboyKidText
waitbutton
closetext
turnobject GOLDENRODPOKECENTER1F_GAMEBOY_KID, DOWN
end
GoldenrodPokecenter1FPersonScript:
jumptextfaceplayer GoldenrodPokecenter1FPersonText
GoldenrodPokecenter1FLassScript:
jumptextfaceplayer GoldenrodPokecenter1FLassText
GoldenrodPokecenter1FGameboyKidText:
text "The COLOSSEUM--"
line "upstairs at any"
para "#MON CENTER--is"
line "for link battles."
para "Battle records are"
line "posted on the"
para "wall, so I can't"
line "afford to lose."
done
GoldenrodPokecenter1FPersonText:
text "I wonder how many"
line "kinds of #MON"
para "there are in the"
line "world."
para "Three years ago,"
line "PROF.OAK said that"
para "there were 150"
line "different kinds."
done
GoldenrodPokecenter1FLassText:
text "A higher level"
line "#MON doesn't"
cont "always win."
para "After all, it may"
line "have a type dis-"
cont "advantage."
para "I don't think"
line "there is a single"
para "#MON that is"
line "the toughest."
done
GoldenrodPokecenter1F_MapEvents:
db 0, 0 ; filler
db 3 ; warp events
warp_event 3, 7, GOLDENROD_CITY, 7
warp_event 4, 7, GOLDENROD_CITY, 7
warp_event 0, 7, POKECENTER_2F, 1
db 0 ; coord events
db 0 ; bg events
db 4 ; object events
object_event 3, 1, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FNurseScript, -1
object_event 7, 2, SPRITE_GAMEBOY_KID, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FGameboyKidScript, -1
object_event 8, 6, SPRITE_FISHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FPersonScript, -1
object_event 0, 5, SPRITE_TWIN, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FLassScript, -1
|