pokecrystal-board/maps/CeladonDeptStore4F.asm

76 lines
1.7 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const CELADONDEPTSTORE4F_CLERK
const CELADONDEPTSTORE4F_SUPER_NERD
const CELADONDEPTSTORE4F_YOUNGSTER
2015-06-25 21:01:08 -07:00
CeladonDeptStore4F_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
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
2015-06-25 21:01:08 -07:00
SuperNerdScript_0x70f15:
jumptextfaceplayer UnknownText_0x70f21
2015-06-25 21:01:08 -07:00
YoungsterScript_0x70f18:
jumptextfaceplayer UnknownText_0x70f55
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
2015-06-25 21:01:08 -07:00
UnknownText_0x70f21:
text "I'm here to buy"
line "SURF MAIL to send"
cont "to my girlfriend."
done
2015-06-25 21:01:08 -07:00
UnknownText_0x70f55:
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
2015-06-25 21:01:08 -07:00
CeladonDeptStore4F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $0, $c, 1, CELADON_DEPT_STORE_5F
warp_def $0, $f, 2, CELADON_DEPT_STORE_3F
warp_def $0, $2, 1, CELADON_DEPT_STORE_ELEVATOR
.XYTriggers:
db 0
.Signposts:
db 2
signpost 0, 14, SIGNPOST_READ, CeladonDeptStore4FDirectory
signpost 0, 3, SIGNPOST_READ, CeladonDeptStore4FElevatorButton
.PersonEvents:
db 3
person_event SPRITE_CLERK, 5, 13, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70f0d, -1
person_event SPRITE_SUPER_NERD, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x70f15, -1
person_event SPRITE_YOUNGSTER, 2, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70f18, -1