pokecrystal-board/maps/CianwoodPharmacy.asm

94 lines
1.6 KiB
NASM
Raw Normal View History

2015-06-25 21:01:08 -07:00
CianwoodPharmacy_MapScriptHeader:
; trigger count
db 1
; triggers
2015-06-25 21:01:08 -07:00
dw CianwoodPharmacyTrigger, $0000
; callback count
db 0
2015-06-25 21:01:08 -07:00
CianwoodPharmacyTrigger:
end
2015-06-25 21:01:08 -07:00
CianwoodPharmacist:
faceplayer
loadfont
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
keeptextopen
2015-07-10 05:08:03 -07:00
giveitem SECRETPOTION, 1
2015-06-25 21:01:08 -07:00
writetext ReceivedSecretpotionText
playsound SFX_KEY_ITEM
waitbutton
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
closetext
loadmovesprites
end
2015-06-25 21:01:08 -07:00
.Mart
pokemart $3, $0004
loadmovesprites
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
2015-06-25 21:01:08 -07:00
CianwoodPharmacy_MapEventHeader:
; filler
db 0, 0
; warps
db 2
warp_def $7, $2, 4, GROUP_CIANWOOD_CITY, MAP_CIANWOOD_CITY
warp_def $7, $3, 4, GROUP_CIANWOOD_CITY, MAP_CIANWOOD_CITY
; xy triggers
db 0
; signposts
db 2
2015-06-25 21:01:08 -07:00
signpost 1, 0, $0, CianwoodPharmacyBookshelf
signpost 1, 1, $0, CianwoodPharmacyBookshelf
; people-events
db 1
2015-07-12 21:16:35 -07:00
person_event SPRITE_PHARMACIST, 7, 6, $6, $0, 255, 255, $80, 0, CianwoodPharmacist, -1