pokecrystal-board/maps/CeladonDeptStore4F.asm

69 lines
1.8 KiB
NASM
Raw Normal View History

2018-01-31 08:38:45 -08:00
const_def 2 ; object constants
2015-11-26 21:22:14 -08:00
const CELADONDEPTSTORE4F_CLERK
const CELADONDEPTSTORE4F_SUPER_NERD
const CELADONDEPTSTORE4F_YOUNGSTER
CeladonDeptStore4F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2015-06-25 21:01:08 -07:00
ClerkScript_0x70f0d:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_STANDARD, MART_CELADON_4F
2015-11-25 07:16:29 -08:00
closetext
end
2017-12-17 16:48:04 -08:00
CeladonDeptStore4FSuperNerdScript:
jumptextfaceplayer CeladonDeptStore4FSuperNerdText
2017-12-17 16:48:04 -08:00
CeladonDeptStore4FYoungsterScript:
jumptextfaceplayer CeladonDeptStore4FYoungsterText
2015-06-25 21:01:08 -07:00
CeladonDeptStore4FDirectory:
jumptext CeladonDeptStore4FDirectoryText
2015-06-25 21:01:08 -07:00
CeladonDeptStore4FElevatorButton:
2015-06-24 18:26:24 -07:00
jumpstd elevatorbutton
2017-12-17 16:48:04 -08:00
CeladonDeptStore4FSuperNerdText:
text "I'm here to buy"
line "SURF MAIL to send"
cont "to my girlfriend."
done
2017-12-17 16:48:04 -08:00
CeladonDeptStore4FYoungsterText:
text "This is the only"
line "place where you"
para "can buy LOVELY"
line "MAIL."
done
2015-06-25 21:01:08 -07:00
CeladonDeptStore4FDirectoryText:
text "Express Yourself"
line "With Gifts!"
para "4F: WISEMAN GIFTS"
done
CeladonDeptStore4F_MapEvents:
db 0, 0 ; filler
db 3 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 12, 0, CELADON_DEPT_STORE_5F, 1
warp_event 15, 0, CELADON_DEPT_STORE_3F, 2
warp_event 2, 0, CELADON_DEPT_STORE_ELEVATOR, 1
db 0 ; coord events
db 2 ; bg events
2018-02-01 19:22:07 -08:00
bg_event 14, 0, BGEVENT_READ, CeladonDeptStore4FDirectory
bg_event 3, 0, BGEVENT_READ, CeladonDeptStore4FElevatorButton
db 3 ; object events
2018-02-01 19:22:07 -08:00
object_event 13, 5, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ClerkScript_0x70f0d, -1
object_event 7, 6, SPRITE_SUPER_NERD, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore4FSuperNerdScript, -1
object_event 8, 2, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore4FYoungsterScript, -1