2018-06-24 07:09:41 -07:00
|
|
|
PhotoStudio:
|
2019-10-20 15:24:17 -07:00
|
|
|
ld hl, .WhichMonPhotoText
|
2017-12-15 18:22:26 -08:00
|
|
|
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
|
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
ld hl, .HoldStillText
|
2017-12-15 18:22:26 -08:00
|
|
|
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
|
2019-10-20 15:24:17 -07:00
|
|
|
ld hl, .PrestoAllDoneText
|
2017-12-15 18:22:26 -08:00
|
|
|
jr .print_text
|
|
|
|
|
|
|
|
.cancel
|
2019-10-20 15:24:17 -07:00
|
|
|
ld hl, .NoPhotoText
|
2017-12-15 18:22:26 -08:00
|
|
|
jr .print_text
|
|
|
|
|
|
|
|
.egg
|
2019-10-20 15:24:17 -07:00
|
|
|
ld hl, .EggPhotoText
|
2017-12-15 18:22:26 -08:00
|
|
|
|
|
|
|
.print_text
|
|
|
|
call PrintText
|
|
|
|
ret
|
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.WhichMonPhotoText:
|
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
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.HoldStillText:
|
|
|
|
text_far _HoldStillText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2017-12-15 18:22:26 -08:00
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.PrestoAllDoneText:
|
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
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.NoPhotoText:
|
|
|
|
text_far _NoPhotoText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2017-12-15 18:22:26 -08:00
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.EggPhotoText:
|
|
|
|
text_far _EggPhotoText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|