blob: 83053851f4102afc410d9020aaf8b5ec183a888f (
plain)
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
|
PhotoStudio:
ld hl, .Text_AskWhichMon
call PrintText
farcall SelectMonFromParty
jr c, .cancel
ld a, [wCurPartySpecies]
cp EGG
jr z, .egg
ld hl, .Text_HoldStill
call PrintText
call DisableSpriteUpdates
farcall PrintPartymon
call ReturnToMapWithSpeechTextbox
ldh a, [hPrinter]
and a
jr nz, .cancel
ld hl, .Text_Presto
jr .print_text
.cancel
ld hl, .Text_NoPicture
jr .print_text
.egg
ld hl, .Text_Egg
.print_text
call PrintText
ret
.Text_AskWhichMon:
; Which #MON should I photo- graph?
text_far UnknownText_0x1be024
text_end
.Text_HoldStill:
; All righty. Hold still for a bit.
text_far UnknownText_0x1be047
text_end
.Text_Presto:
; Presto! All done. Come again, OK?
text_far UnknownText_0x1be06a
text_end
.Text_NoPicture:
; Oh, no picture? Come again, OK?
text_far UnknownText_0x1c0000
text_end
.Text_Egg:
; An EGG? My talent is worth more…
text_far UnknownText_0x1c0021
text_end
|