pokecrystal-board/maps/CianwoodPharmacy.asm

88 lines
1.7 KiB
NASM
Raw Normal View History

object_const_def ; object_event constants
2015-11-26 21:22:14 -08:00
const CIANWOODPHARMACY_PHARMACIST
CianwoodPharmacy_MapScripts:
db 1 ; scene scripts
scene_script .DummyScene
db 0 ; callbacks
.DummyScene:
end
2015-06-25 21:01:08 -07:00
CianwoodPharmacist:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_SECRETPOTION_FROM_PHARMACY
2015-06-25 21:01:08 -07:00
iftrue .Mart
2015-07-10 05:08:03 -07:00
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
2015-06-25 21:01:08 -07:00
iffalse .Mart
writetext PharmacistGiveSecretpotionText
2019-11-03 09:48:54 -08:00
promptbutton
2015-11-04 17:20:14 -08:00
giveitem SECRETPOTION
2015-06-25 21:01:08 -07:00
writetext ReceivedSecretpotionText
playsound SFX_KEY_ITEM
2015-11-25 07:16:29 -08:00
waitsfx
itemnotify
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_SECRETPOTION_FROM_PHARMACY
2015-06-25 21:01:08 -07:00
writetext PharmacistDescribeSecretpotionText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.Mart:
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_PHARMACY, MART_CIANWOOD
2015-11-25 07:16:29 -08:00
closetext
end
2015-06-25 21:01:08 -07:00
CianwoodPharmacyBookshelf:
jumpstd difficultbookshelf
2015-06-25 21:01:08 -07:00
PharmacistGiveSecretpotionText:
text "Your #MON ap-"
line "pear to be fine."
para "Is something wor- "
line "rying you?"
para "…"
para "The LIGHTHOUSE"
line "#MON is in"
cont "trouble?"
para "I got it!"
para "This ought to do"
line "the trick."
done
2015-06-25 21:01:08 -07:00
ReceivedSecretpotionText:
text "<PLAYER> received"
line "SECRETPOTION."
done
2015-06-25 21:01:08 -07:00
PharmacistDescribeSecretpotionText:
text "My SECRETPOTION is"
line "a tad too strong."
para "I only offer it in"
line "an emergency."
done
CianwoodPharmacy_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 2, 7, CIANWOOD_CITY, 4
warp_event 3, 7, CIANWOOD_CITY, 4
db 0 ; coord events
db 2 ; bg events
2018-02-01 19:22:07 -08:00
bg_event 0, 1, BGEVENT_READ, CianwoodPharmacyBookshelf
bg_event 1, 1, BGEVENT_READ, CianwoodPharmacyBookshelf
db 1 ; object events
2018-02-01 19:22:07 -08:00
object_event 2, 3, SPRITE_PHARMACIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CianwoodPharmacist, -1