pokecrystal-board/maps/CeladonDeptStore5F.asm

99 lines
2.4 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const CELADONDEPTSTORE5F_CLERK1
const CELADONDEPTSTORE5F_CLERK2
const CELADONDEPTSTORE5F_GENTLEMAN
const CELADONDEPTSTORE5F_SAILOR
const CELADONDEPTSTORE5F_TEACHER
2015-06-25 21:01:08 -07:00
CeladonDeptStore5F_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-06-25 21:01:08 -07:00
ClerkScript_0x71004:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_STANDARD, MART_CELADON_5F_1
2015-11-25 07:16:29 -08:00
closetext
end
2015-06-25 21:01:08 -07:00
ClerkScript_0x7100c:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-11-02 14:38:08 -08:00
pokemart MARTTYPE_STANDARD, MART_CELADON_5F_2
2015-11-25 07:16:29 -08:00
closetext
end
2017-12-17 16:48:04 -08:00
CeladonDeptStore5FGentlemanScript:
jumptextfaceplayer CeladonDeptStore5FGentlemanText
2017-12-17 16:48:04 -08:00
CeladonDeptStore5FSailorScript:
jumptextfaceplayer CeladonDeptStore5FSailorText
2017-12-17 16:48:04 -08:00
CeladonDeptStore5FTeacherScript:
jumptextfaceplayer CeladonDeptStore5FTeacherText
2015-06-25 21:01:08 -07:00
CeladonDeptStore5FDirectory:
jumptext CeladonDeptStore5FDirectoryText
2015-06-25 21:01:08 -07:00
CeladonDeptStore5FElevatorButton:
2015-06-24 18:26:24 -07:00
jumpstd elevatorbutton
2017-12-17 16:48:04 -08:00
CeladonDeptStore5FGentlemanText:
text "I want to buy some"
line "items that raise"
para "#MON stats, but"
line "I don't have"
cont "enough money…"
done
2017-12-17 16:48:04 -08:00
CeladonDeptStore5FSailorText:
text "I want PP UP, so I"
line "can raise the PP"
para "of moves. But you"
line "can't buy it…"
done
2017-12-17 16:48:04 -08:00
CeladonDeptStore5FTeacherText:
text "Using items on"
line "them makes #-"
cont "MON happy."
para "They hate certain"
line "items, though…"
done
2015-06-25 21:01:08 -07:00
CeladonDeptStore5FDirectoryText:
text "5F: DRUG STORE"
done
2015-06-25 21:01:08 -07:00
CeladonDeptStore5F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $0, $c, 1, CELADON_DEPT_STORE_4F
warp_def $0, $f, 1, CELADON_DEPT_STORE_6F
warp_def $0, $2, 1, CELADON_DEPT_STORE_ELEVATOR
.XYTriggers:
db 0
.Signposts:
db 2
signpost 0, 14, SIGNPOST_READ, CeladonDeptStore5FDirectory
signpost 0, 3, SIGNPOST_READ, CeladonDeptStore5FElevatorButton
.PersonEvents:
db 5
2017-12-10 17:50:08 -08:00
person_event SPRITE_CLERK, 5, 7, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x71004, -1
person_event SPRITE_CLERK, 5, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x7100c, -1
2017-12-17 16:48:04 -08:00
person_event SPRITE_GENTLEMAN, 5, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore5FGentlemanScript, -1
person_event SPRITE_SAILOR, 4, 3, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonDeptStore5FSailorScript, -1
person_event SPRITE_TEACHER, 7, 1, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore5FTeacherScript, -1