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
|
object_const_def
const ROUTE26HEALHOUSE_TEACHER
Route26HealHouse_MapScripts:
def_scene_scripts
def_callbacks
Route26HealHouseTeacherScript:
faceplayer
opentext
writetext Route26HealHouseRestAWhileText
waitbutton
closetext
special FadeBlackQuickly
special ReloadSpritesNoPalettes
special StubbedTrainerRankings_Healings
playmusic MUSIC_HEAL
special HealParty
pause 60
special FadeInQuickly
special RestartMapMusic
opentext
writetext Route26HealHouseKeepAtItText
waitbutton
closetext
end
Route26HealHouseBookshelf:
jumpstd PictureBookshelfScript
Route26HealHouseRestAWhileText:
text "Your #MON look"
line "a little tired."
para "You should rest"
line "them a while."
done
Route26HealHouseKeepAtItText:
text "There!"
para "Your #MON are"
line "looking good!"
para "Keep at it!"
done
Route26HealHouse_MapEvents:
db 0, 0 ; filler
def_warp_events
warp_event 2, 7, ROUTE_26, 2
warp_event 3, 7, ROUTE_26, 2
def_coord_events
def_bg_events
bg_event 0, 1, BGEVENT_READ, Route26HealHouseBookshelf
bg_event 1, 1, BGEVENT_READ, Route26HealHouseBookshelf
def_object_events
object_event 2, 3, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, Route26HealHouseTeacherScript, -1
|