mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
93 lines
2.1 KiB
NASM
93 lines
2.1 KiB
NASM
const_value set 2
|
|
const CHERRYGROVEPOKECENTER1F_NURSE
|
|
const CHERRYGROVEPOKECENTER1F_FISHER
|
|
const CHERRYGROVEPOKECENTER1F_GENTLEMAN
|
|
const CHERRYGROVEPOKECENTER1F_TEACHER
|
|
|
|
CherrygrovePokecenter1F_MapScripts:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
NurseScript_0x19696d:
|
|
jumpstd pokecenternurse
|
|
|
|
CherrygrovePokecenter1FFisherScript:
|
|
jumptextfaceplayer CherrygrovePokecenter1FFisherText
|
|
|
|
CherrygrovePokecenter1FGentlemanScript:
|
|
jumptextfaceplayer CherrygrovePokecenter1FGentlemanText
|
|
|
|
TeacherScript_0x196976:
|
|
faceplayer
|
|
opentext
|
|
checkevent EVENT_GAVE_MYSTERY_EGG_TO_ELM
|
|
iftrue UnknownScript_0x196984
|
|
writetext UnknownText_0x1969f1
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
UnknownScript_0x196984:
|
|
writetext UnknownText_0x196a46
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
CherrygrovePokecenter1FFisherText:
|
|
text "It's great. I can"
|
|
line "store any number"
|
|
|
|
para "of #MON, and"
|
|
line "it's all free."
|
|
done
|
|
|
|
CherrygrovePokecenter1FGentlemanText:
|
|
text "That PC is free"
|
|
line "for any trainer"
|
|
cont "to use."
|
|
done
|
|
|
|
UnknownText_0x1969f1:
|
|
text "The COMMUNICATION"
|
|
line "CENTER upstairs"
|
|
cont "was just built."
|
|
|
|
para "But they're still"
|
|
line "finishing it up."
|
|
done
|
|
|
|
UnknownText_0x196a46:
|
|
text "The COMMUNICATION"
|
|
line "CENTER upstairs"
|
|
cont "was just built."
|
|
|
|
para "I traded #MON"
|
|
line "there already!"
|
|
done
|
|
|
|
CherrygrovePokecenter1F_MapEvents:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 3
|
|
warp_def 3, 7, 2, CHERRYGROVE_CITY
|
|
warp_def 4, 7, 2, CHERRYGROVE_CITY
|
|
warp_def 0, 7, 1, POKECENTER_2F
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 0
|
|
|
|
.ObjectEvents:
|
|
db 4
|
|
object_event 3, 1, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, NurseScript_0x19696d, -1
|
|
object_event 2, 3, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CherrygrovePokecenter1FFisherScript, -1
|
|
object_event 8, 6, SPRITE_GENTLEMAN, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, CherrygrovePokecenter1FGentlemanScript, -1
|
|
object_event 1, 6, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, TeacherScript_0x196976, -1
|