2018-06-24 07:09:41 -07:00
|
|
|
PhotoStudio:
|
2017-12-15 18:22:26 -08:00
|
|
|
ld hl, .Text_AskWhichMon
|
|
|
|
call PrintText
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall SelectMonFromParty
|
2017-12-15 18:22:26 -08:00
|
|
|
jr c, .cancel
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2017-12-15 18:22:26 -08:00
|
|
|
cp EGG
|
|
|
|
jr z, .egg
|
|
|
|
|
|
|
|
ld hl, .Text_HoldStill
|
|
|
|
call PrintText
|
|
|
|
call DisableSpriteUpdates
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall PrintPartymon
|
2017-12-15 18:22:26 -08:00
|
|
|
call ReturnToMapWithSpeechTextbox
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hPrinter]
|
2017-12-15 18:22:26 -08:00
|
|
|
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
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Text_AskWhichMon:
|
2017-12-15 18:22:26 -08:00
|
|
|
; Which #MON should I photo- graph?
|
2019-03-10 17:43:34 -07:00
|
|
|
text_far _WhichMonPhotoText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2017-12-15 18:22:26 -08:00
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Text_HoldStill:
|
2017-12-15 18:22:26 -08:00
|
|
|
; All righty. Hold still for a bit.
|
2019-03-10 17:43:34 -07:00
|
|
|
text_far _HoldOnText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2017-12-15 18:22:26 -08:00
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Text_Presto:
|
2017-12-15 18:22:26 -08:00
|
|
|
; Presto! All done. Come again, OK?
|
2019-03-10 17:43:34 -07:00
|
|
|
text_far _PrestoAllDoneText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2017-12-15 18:22:26 -08:00
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Text_NoPicture:
|
2017-12-15 18:22:26 -08:00
|
|
|
; Oh, no picture? Come again, OK?
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far UnknownText_0x1c0000
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2017-12-15 18:22:26 -08:00
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Text_Egg:
|
2017-12-15 18:22:26 -08:00
|
|
|
; An EGG? My talent is worth more…
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far UnknownText_0x1c0021
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|