mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
c05b7f41dd
- MapTriggers / maptrigger → SceneScripts / scene_script - XYTriggers / xy_trigger → CoordEvents / coord_event - Signposts / signpost → BGEvents / bg_event - PersonEvents / person_event → ObjectEvents / object_event
43 lines
891 B
NASM
43 lines
891 B
NASM
const_value set 2
|
|
const PEWTERSNOOZESPEECHHOUSE_GRAMPS
|
|
|
|
PewterSnoozeSpeechHouse_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
PewterSnoozeSpeechHouseGrampsScript:
|
|
jumptextfaceplayer PewterSnoozeSpeechHouseGrampsText
|
|
|
|
PewterSnoozeSpeechHouseBookshelf:
|
|
jumpstd picturebookshelf
|
|
|
|
PewterSnoozeSpeechHouseGrampsText:
|
|
text "I like snoozing"
|
|
line "with the radio on…"
|
|
cont "…Zzzz…"
|
|
done
|
|
|
|
PewterSnoozeSpeechHouse_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def $7, $2, 5, PEWTER_CITY
|
|
warp_def $7, $3, 5, PEWTER_CITY
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 2
|
|
bg_event 1, 0, BGEVENT_READ, PewterSnoozeSpeechHouseBookshelf
|
|
bg_event 1, 1, BGEVENT_READ, PewterSnoozeSpeechHouseBookshelf
|
|
|
|
.ObjectEvents:
|
|
db 1
|
|
object_event SPRITE_GRAMPS, 3, 5, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PewterSnoozeSpeechHouseGrampsScript, -1
|