mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
68 lines
1.5 KiB
NASM
68 lines
1.5 KiB
NASM
const_value set 2
|
|
const CHERRYGROVEGYMSPEECHHOUSE_POKEFAN_M
|
|
const CHERRYGROVEGYMSPEECHHOUSE_BUG_CATCHER
|
|
|
|
CherrygroveGymSpeechHouse_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
CherrygroveGymSpeechHousePokefanMScript:
|
|
jumptextfaceplayer CherrygroveGymSpeechHousePokefanMText
|
|
|
|
CherrygroveGymSpeechHouseBugCatcherScript:
|
|
jumptextfaceplayer CherrygroveGymSpeechHouseBugCatcherText
|
|
|
|
CherrygroveGymSpeechHouseBookshelf:
|
|
jumpstd picturebookshelf
|
|
|
|
CherrygroveGymSpeechHousePokefanMText:
|
|
text "You're trying to"
|
|
line "see how good you"
|
|
|
|
para "are as a #MON"
|
|
line "trainer?"
|
|
|
|
para "You better visit"
|
|
line "the #MON GYMS"
|
|
|
|
para "all over JOHTO and"
|
|
line "collect BADGES."
|
|
done
|
|
|
|
CherrygroveGymSpeechHouseBugCatcherText:
|
|
text "When I get older,"
|
|
line "I'm going to be a"
|
|
cont "GYM LEADER!"
|
|
|
|
para "I make my #MON"
|
|
line "battle with my"
|
|
|
|
para "friend's to make"
|
|
line "them tougher!"
|
|
done
|
|
|
|
CherrygroveGymSpeechHouse_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def 2, 7, 3, CHERRYGROVE_CITY
|
|
warp_def 3, 7, 3, CHERRYGROVE_CITY
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 2
|
|
bg_event 0, 1, BGEVENT_READ, CherrygroveGymSpeechHouseBookshelf
|
|
bg_event 1, 1, BGEVENT_READ, CherrygroveGymSpeechHouseBookshelf
|
|
|
|
.ObjectEvents:
|
|
db 2
|
|
object_event 2, 3, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, CherrygroveGymSpeechHousePokefanMScript, -1
|
|
object_event 5, 5, SPRITE_BUG_CATCHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CherrygroveGymSpeechHouseBugCatcherScript, -1
|