pokecrystal-board/maps/CianwoodPhotoStudio.asm

62 lines
1.2 KiB
NASM
Raw Normal View History

2018-01-31 08:38:45 -08:00
const_def 2 ; object constants
const CIANWOODPHOTOSTUDIO_FISHING_GURU
2015-11-26 21:22:14 -08:00
CianwoodPhotoStudio_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2018-02-28 13:50:43 -08:00
CianwoodPhotoStudioFishingGuruScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2018-02-28 13:50:43 -08:00
writetext CianwoodPhotoStudioFishingGuruText_Question
yesorno
2018-02-28 13:50:43 -08:00
iffalse .Refused
writetext CianwoodPhotoStudioFishingGuruText_Yes
2015-11-25 07:16:29 -08:00
waitbutton
special PhotoStudio
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 13:50:43 -08:00
.Refused:
writetext CianwoodPhotoStudioFishingGuruText_No
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 13:50:43 -08:00
CianwoodPhotoStudioFishingGuruText_Question:
text "You have magnifi-"
line "cent #MON with"
cont "you."
para "How about a photo"
line "for a souvenir?"
done
2018-02-28 13:50:43 -08:00
CianwoodPhotoStudioFishingGuruText_Yes:
text "OK! Big smile now!"
done
2018-02-28 13:50:43 -08:00
CianwoodPhotoStudioFishingGuruText_No:
text "Oh, that's too"
line "bad. I thought it"
para "would be a great"
line "memento…"
done
CianwoodPhotoStudio_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 2, 7, CIANWOOD_CITY, 5
warp_event 3, 7, CIANWOOD_CITY, 5
db 0 ; coord events
db 0 ; bg events
db 1 ; object events
2018-02-28 13:50:43 -08:00
object_event 2, 3, SPRITE_FISHING_GURU, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CianwoodPhotoStudioFishingGuruScript, -1