pokecrystal-board/maps/CeladonDeptStore2F.asm

88 lines
2.3 KiB
NASM
Raw Normal View History

object_const_def ; object_event constants
2015-11-26 21:22:14 -08:00
const CELADONDEPTSTORE2F_CLERK1
const CELADONDEPTSTORE2F_CLERK2
const CELADONDEPTSTORE2F_POKEFAN_M
const CELADONDEPTSTORE2F_YOUNGSTER
CeladonDeptStore2F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2018-02-28 13:50:43 -08:00
CeladonDeptStore2FClerk1Script:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_STANDARD, MART_CELADON_2F_1
2015-11-25 07:16:29 -08:00
closetext
end
2018-02-28 13:50:43 -08:00
CeladonDeptStore2FClerk2Script:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_STANDARD, MART_CELADON_2F_2
2015-11-25 07:16:29 -08:00
closetext
end
2017-12-17 16:48:04 -08:00
CeladonDeptStore2FPokefanMScript:
jumptextfaceplayer CeladonDeptStore2FPokefanMText
2017-12-17 16:48:04 -08:00
CeladonDeptStore2FYoungsterScript:
jumptextfaceplayer CeladonDeptStore2FYoungsterText
2015-06-25 21:01:08 -07:00
CeladonDeptStore2FDirectory:
jumptext CeladonDeptStore2FDirectoryText
2015-06-25 21:01:08 -07:00
CeladonDeptStore2FElevatorButton:
jumpstd ElevatorButtonScript
2017-12-17 16:48:04 -08:00
CeladonDeptStore2FPokefanMText:
text "I just recently"
line "became a trainer."
para "My son encouraged"
line "me to do it."
para "I'm impressed by"
line "the selection of"
cont "convenient items."
done
2017-12-17 16:48:04 -08:00
CeladonDeptStore2FYoungsterText:
text "My dad's having a"
line "hard time learning"
para "the names of items"
line "and how they are"
para "supposed to be"
line "used…"
done
2015-06-25 21:01:08 -07:00
CeladonDeptStore2FDirectoryText:
text "Top Grade Items"
line "for Trainers!"
para "2F: TRAINER'S"
line " MARKET"
done
CeladonDeptStore2F_MapEvents:
db 0, 0 ; filler
db 3 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 12, 0, CELADON_DEPT_STORE_3F, 1
warp_event 15, 0, CELADON_DEPT_STORE_1F, 3
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, CeladonDeptStore2FDirectory
bg_event 3, 0, BGEVENT_READ, CeladonDeptStore2FElevatorButton
db 4 ; object events
2018-02-28 13:50:43 -08:00
object_event 13, 5, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore2FClerk1Script, -1
object_event 14, 5, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore2FClerk2Script, -1
2018-02-01 19:22:07 -08:00
object_event 5, 2, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore2FPokefanMScript, -1
object_event 6, 2, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore2FYoungsterScript, -1