2018-06-24 16:09:41 +02:00
|
|
|
PhotoStudio:
|
2019-10-20 22:24:17 +00:00
|
|
|
ld hl, .WhichMonPhotoText
|
2017-12-15 21:22:26 -05:00
|
|
|
call PrintText
|
2017-12-24 12:47:30 -05:00
|
|
|
farcall SelectMonFromParty
|
2017-12-15 21:22:26 -05:00
|
|
|
jr c, .cancel
|
2018-01-23 17:39:09 -05:00
|
|
|
ld a, [wCurPartySpecies]
|
2017-12-15 21:22:26 -05:00
|
|
|
cp EGG
|
|
|
|
jr z, .egg
|
|
|
|
|
2019-10-20 22:24:17 +00:00
|
|
|
ld hl, .HoldStillText
|
2017-12-15 21:22:26 -05:00
|
|
|
call PrintText
|
|
|
|
call DisableSpriteUpdates
|
2017-12-24 12:47:30 -05:00
|
|
|
farcall PrintPartymon
|
2017-12-15 21:22:26 -05:00
|
|
|
call ReturnToMapWithSpeechTextbox
|
2018-08-25 14:28:22 -04:00
|
|
|
ldh a, [hPrinter]
|
2017-12-15 21:22:26 -05:00
|
|
|
and a
|
|
|
|
jr nz, .cancel
|
2019-10-20 22:24:17 +00:00
|
|
|
ld hl, .PrestoAllDoneText
|
2017-12-15 21:22:26 -05:00
|
|
|
jr .print_text
|
|
|
|
|
|
|
|
.cancel
|
2019-10-20 22:24:17 +00:00
|
|
|
ld hl, .NoPhotoText
|
2017-12-15 21:22:26 -05:00
|
|
|
jr .print_text
|
|
|
|
|
|
|
|
.egg
|
2019-10-20 22:24:17 +00:00
|
|
|
ld hl, .EggPhotoText
|
2017-12-15 21:22:26 -05:00
|
|
|
|
|
|
|
.print_text
|
|
|
|
call PrintText
|
|
|
|
ret
|
|
|
|
|
2019-10-20 22:24:17 +00:00
|
|
|
.WhichMonPhotoText:
|
2019-03-10 20:43:34 -04:00
|
|
|
text_far _WhichMonPhotoText
|
2018-11-17 13:33:03 -05:00
|
|
|
text_end
|
2017-12-15 21:22:26 -05:00
|
|
|
|
2019-10-20 22:24:17 +00:00
|
|
|
.HoldStillText:
|
|
|
|
text_far _HoldStillText
|
2018-11-17 13:33:03 -05:00
|
|
|
text_end
|
2017-12-15 21:22:26 -05:00
|
|
|
|
2019-10-20 22:24:17 +00:00
|
|
|
.PrestoAllDoneText:
|
2019-03-10 20:43:34 -04:00
|
|
|
text_far _PrestoAllDoneText
|
2018-11-17 13:33:03 -05:00
|
|
|
text_end
|
2017-12-15 21:22:26 -05:00
|
|
|
|
2019-10-20 22:24:17 +00:00
|
|
|
.NoPhotoText:
|
|
|
|
text_far _NoPhotoText
|
2018-11-17 13:33:03 -05:00
|
|
|
text_end
|
2017-12-15 21:22:26 -05:00
|
|
|
|
2019-10-20 22:24:17 +00:00
|
|
|
.EggPhotoText:
|
|
|
|
text_far _EggPhotoText
|
2018-11-17 13:33:03 -05:00
|
|
|
text_end
|