Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/engine/events/hidden_objects/book_or_sculpture.asm
1271 views
1
BookOrSculptureText::
2
text_asm
3
ld hl, PokemonBooksText
4
ld a, [wCurMapTileset]
5
cp MANSION ; Celadon Mansion tileset
6
jr nz, .ok
7
lda_coord 8, 6
8
cp $38
9
jr nz, .ok
10
ld hl, DiglettSculptureText
11
.ok
12
call PrintText
13
jp TextScriptEnd
14
15
PokemonBooksText:
16
text_far _PokemonBooksText
17
text_end
18
19
DiglettSculptureText:
20
text_far _DiglettSculptureText
21
text_end
22
23