mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
74 lines
1.8 KiB
NASM
74 lines
1.8 KiB
NASM
const_value set 2
|
|
const BLACKTHORNPOKECENTER1F_NURSE
|
|
const BLACKTHORNPOKECENTER1F_GENTLEMAN
|
|
const BLACKTHORNPOKECENTER1F_TWIN
|
|
const BLACKTHORNPOKECENTER1F_COOLTRAINER_M
|
|
|
|
BlackthornPokecenter1F_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
BlackthornPokecenter1FNurseScript:
|
|
jumpstd pokecenternurse
|
|
|
|
BlackthornPokecenter1FGentlemanScript:
|
|
jumptextfaceplayer BlackthornPokecenter1FGentlemanText
|
|
|
|
BlackthornPokecenter1FTwinScript:
|
|
jumptextfaceplayer BlackthornPokecenter1FTwinText
|
|
|
|
BlackthornPokecenter1FCooltrainerMScript:
|
|
jumpstd happinesschecknpc
|
|
|
|
BlackthornPokecenter1FGentlemanText:
|
|
text "Deep inside far-"
|
|
line "off INDIGO PLATEAU"
|
|
|
|
para "is the #MON"
|
|
line "LEAGUE."
|
|
|
|
para "I hear the best"
|
|
line "trainers gather"
|
|
|
|
para "there from around"
|
|
line "the country."
|
|
done
|
|
|
|
BlackthornPokecenter1FTwinText:
|
|
text "There was this"
|
|
line "move I just had"
|
|
|
|
para "to teach my #-"
|
|
line "MON."
|
|
|
|
para "So I got the MOVE"
|
|
line "DELETER to make it"
|
|
cont "forget an HM move."
|
|
done
|
|
|
|
BlackthornPokecenter1F_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 3
|
|
warp_def $7, $3, 5, BLACKTHORN_CITY
|
|
warp_def $7, $4, 5, BLACKTHORN_CITY
|
|
warp_def $7, $0, 1, POKECENTER_2F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 0
|
|
|
|
.PersonEvents:
|
|
db 4
|
|
person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FNurseScript, -1
|
|
person_event SPRITE_GENTLEMAN, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FGentlemanScript, -1
|
|
person_event SPRITE_TWIN, 4, 1, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FTwinScript, -1
|
|
person_event SPRITE_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FCooltrainerMScript, -1
|