pokecrystal/maps/CeladonDeptStore3F.asm

122 lines
2.8 KiB
NASM
Raw Normal View History

2015-11-27 05:22:14 +00:00
const_value set 2
const CELADONDEPTSTORE3F_CLERK
const CELADONDEPTSTORE3F_YOUNGSTER
const CELADONDEPTSTORE3F_GAMEBOY_KID1
const CELADONDEPTSTORE3F_GAMEBOY_KID2
const CELADONDEPTSTORE3F_SUPER_NERD
2015-06-26 04:01:08 +00:00
CeladonDeptStore3F_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-06-26 04:01:08 +00:00
ClerkScript_0x70d29:
faceplayer
2015-12-09 23:25:44 +00:00
opentext
2015-11-02 22:38:08 +00:00
pokemart MARTTYPE_STANDARD, MART_CELADON_3F
2015-11-25 15:16:29 +00:00
closetext
end
2017-12-18 00:48:04 +00:00
CeladonDeptStore3FYoungsterScript:
jumptextfaceplayer CeladonDeptStore3FYoungsterText
2015-06-26 04:01:08 +00:00
GameboyKidScript_0x70d34:
faceplayer
2015-12-09 23:25:44 +00:00
opentext
2015-01-20 08:01:23 +00:00
writetext UnknownText_0x70d86
2015-11-25 15:16:29 +00:00
waitbutton
closetext
2015-11-27 05:22:14 +00:00
spriteface CELADONDEPTSTORE3F_GAMEBOY_KID1, DOWN
end
2015-06-26 04:01:08 +00:00
GameboyKidScript_0x70d3f:
faceplayer
2015-12-09 23:25:44 +00:00
opentext
2015-01-20 08:01:23 +00:00
writetext UnknownText_0x70dc7
2015-11-25 15:16:29 +00:00
waitbutton
closetext
2015-11-27 05:22:14 +00:00
spriteface CELADONDEPTSTORE3F_GAMEBOY_KID2, DOWN
end
2017-12-18 00:48:04 +00:00
CeladonDeptStore3FSuperNerdScript:
jumptextfaceplayer CeladonDeptStore3FSuperNerdText
2015-06-26 04:01:08 +00:00
CeladonDeptStore3FElevatorButton:
2015-06-25 01:26:24 +00:00
jumpstd elevatorbutton
2015-06-26 04:01:08 +00:00
CeladonDeptStore3FDirectory:
jumptext CeladonDeptStore3FDirectoryText
2017-12-18 00:48:04 +00:00
CeladonDeptStore3FYoungsterText:
text "I can't decide"
line "which #MON I"
para "should use this TM"
line "on…"
done
2015-06-26 04:01:08 +00:00
UnknownText_0x70d86:
text "Uh-oh! I traded my"
line "#MON without"
para "removing the UP-"
line "GRADE from it."
done
2015-06-26 04:01:08 +00:00
UnknownText_0x70dc7:
text "Yeah! I'm finally"
line "getting a PORYGON!"
para "I'm no good at the"
line "slots, so I could"
para "never get enough"
line "coins…"
para "…Huh?"
para "The traded PORYGON"
line "turned into a dif-"
cont "ferent #MON!"
done
2017-12-18 00:48:04 +00:00
CeladonDeptStore3FSuperNerdText:
text "The TM SHOP sells"
line "some rare moves."
done
2015-06-26 04:01:08 +00:00
CeladonDeptStore3FDirectoryText:
text "3F: TM SHOP"
para "Make Your #MON"
line "Stronger!"
done
2015-06-26 04:01:08 +00:00
CeladonDeptStore3F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $0, $c, 1, CELADON_DEPT_STORE_2F
warp_def $0, $f, 2, CELADON_DEPT_STORE_4F
warp_def $0, $2, 1, CELADON_DEPT_STORE_ELEVATOR
.XYTriggers:
db 0
.Signposts:
db 2
signpost 0, 14, SIGNPOST_READ, CeladonDeptStore3FDirectory
signpost 0, 3, SIGNPOST_READ, CeladonDeptStore3FElevatorButton
.PersonEvents:
db 5
2017-12-11 01:50:08 +00:00
person_event SPRITE_CLERK, 1, 7, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70d29, -1
2017-12-18 00:48:04 +00:00
person_event SPRITE_YOUNGSTER, 4, 6, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore3FYoungsterScript, -1
2017-12-11 01:50:08 +00:00
person_event SPRITE_GAMEBOY_KID, 1, 9, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GameboyKidScript_0x70d34, -1
person_event SPRITE_GAMEBOY_KID, 1, 10, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, GameboyKidScript_0x70d3f, -1
2017-12-18 00:48:04 +00:00
person_event SPRITE_SUPER_NERD, 4, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore3FSuperNerdScript, -1