blob: e04f4047f88c199fa0d1fbc67b89e03b382a9a26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
BookOrSculptureText::
text_asm
ld hl, PokemonBooksText
ld a, [wCurMapTileset]
cp MANSION ; Celadon Mansion tileset
jr nz, .ok
lda_coord 8, 6
cp $38
jr nz, .ok
ld hl, DiglettSculptureText
.ok
call PrintText
jp TextScriptEnd
PokemonBooksText:
text_far _PokemonBooksText
text_end
DiglettSculptureText:
text_far _DiglettSculptureText
text_end
|