pokecrystal-board/maps/CeladonDeptStore2F.asm

95 lines
2.2 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const CELADONDEPTSTORE2F_CLERK1
const CELADONDEPTSTORE2F_CLERK2
const CELADONDEPTSTORE2F_POKEFAN_M
const CELADONDEPTSTORE2F_YOUNGSTER
2015-06-25 21:01:08 -07:00
CeladonDeptStore2F_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-06-25 21:01:08 -07:00
ClerkScript_0x70bad:
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
2015-06-25 21:01:08 -07:00
ClerkScript_0x70bb5:
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
2015-06-25 21:01:08 -07:00
PokefanMScript_0x70bbd:
jumptextfaceplayer UnknownText_0x70bc9
2015-06-25 21:01:08 -07:00
YoungsterScript_0x70bc0:
jumptextfaceplayer UnknownText_0x70c3e
2015-06-25 21:01:08 -07:00
CeladonDeptStore2FDirectory:
jumptext CeladonDeptStore2FDirectoryText
2015-06-25 21:01:08 -07:00
CeladonDeptStore2FElevatorButton:
2015-06-24 18:26:24 -07:00
jumpstd elevatorbutton
2015-06-25 21:01:08 -07:00
UnknownText_0x70bc9:
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
2015-06-25 21:01:08 -07:00
UnknownText_0x70c3e:
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
2015-06-25 21:01:08 -07:00
CeladonDeptStore2F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $0, $c, 1, CELADON_DEPT_STORE_3F
warp_def $0, $f, 3, CELADON_DEPT_STORE_1F
warp_def $0, $2, 1, CELADON_DEPT_STORE_ELEVATOR
.XYTriggers:
db 0
.Signposts:
db 2
signpost 0, 14, SIGNPOST_READ, CeladonDeptStore2FDirectory
signpost 0, 3, SIGNPOST_READ, CeladonDeptStore2FElevatorButton
.PersonEvents:
db 4
person_event SPRITE_CLERK, 5, 13, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70bad, -1
person_event SPRITE_CLERK, 5, 14, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70bb5, -1
person_event SPRITE_POKEFAN_M, 2, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, PokefanMScript_0x70bbd, -1
person_event SPRITE_YOUNGSTER, 2, 6, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70bc0, -1