mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
76 lines
1.7 KiB
NASM
76 lines
1.7 KiB
NASM
const_value set 2
|
|
const CELADONDEPTSTORE4F_CLERK
|
|
const CELADONDEPTSTORE4F_SUPER_NERD
|
|
const CELADONDEPTSTORE4F_YOUNGSTER
|
|
|
|
CeladonDeptStore4F_MapScripts:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
ClerkScript_0x70f0d:
|
|
faceplayer
|
|
opentext
|
|
pokemart MARTTYPE_STANDARD, MART_CELADON_4F
|
|
closetext
|
|
end
|
|
|
|
CeladonDeptStore4FSuperNerdScript:
|
|
jumptextfaceplayer CeladonDeptStore4FSuperNerdText
|
|
|
|
CeladonDeptStore4FYoungsterScript:
|
|
jumptextfaceplayer CeladonDeptStore4FYoungsterText
|
|
|
|
CeladonDeptStore4FDirectory:
|
|
jumptext CeladonDeptStore4FDirectoryText
|
|
|
|
CeladonDeptStore4FElevatorButton:
|
|
jumpstd elevatorbutton
|
|
|
|
CeladonDeptStore4FSuperNerdText:
|
|
text "I'm here to buy"
|
|
line "SURF MAIL to send"
|
|
cont "to my girlfriend."
|
|
done
|
|
|
|
CeladonDeptStore4FYoungsterText:
|
|
text "This is the only"
|
|
line "place where you"
|
|
|
|
para "can buy LOVELY"
|
|
line "MAIL."
|
|
done
|
|
|
|
CeladonDeptStore4FDirectoryText:
|
|
text "Express Yourself"
|
|
line "With Gifts!"
|
|
|
|
para "4F: WISEMAN GIFTS"
|
|
done
|
|
|
|
CeladonDeptStore4F_MapEvents:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 3
|
|
warp_def 12, 0, 1, CELADON_DEPT_STORE_5F
|
|
warp_def 15, 0, 2, CELADON_DEPT_STORE_3F
|
|
warp_def 2, 0, 1, CELADON_DEPT_STORE_ELEVATOR
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 2
|
|
bg_event 14, 0, BGEVENT_READ, CeladonDeptStore4FDirectory
|
|
bg_event 3, 0, BGEVENT_READ, CeladonDeptStore4FElevatorButton
|
|
|
|
.ObjectEvents:
|
|
db 3
|
|
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
|