mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
432df825d4
Updated macros that rely on the GROUP_, MAP_ constants to use the map macro Added GROUP_NONE and MAP_NONE for the sake of compatibility with this new scheme Added new macro elevfloor to simplify the definition of elevators under this new scheme
47 lines
882 B
NASM
47 lines
882 B
NASM
GuideGentsHouse_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
GuideGentsHouseGuideGent:
|
|
jumptextfaceplayer GuideGentsHouseGuideGentText
|
|
|
|
GuideGentsHouseBookshelf:
|
|
jumpstd magazinebookshelf
|
|
|
|
GuideGentsHouseGuideGentText:
|
|
text "When I was a wee"
|
|
line "lad, I was a hot-"
|
|
cont "shot trainer!"
|
|
|
|
para "Here's a word of"
|
|
line "advice: Catch lots"
|
|
cont "of #MON!"
|
|
|
|
para "Treat them all"
|
|
line "with kindness!"
|
|
done
|
|
|
|
GuideGentsHouse_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def $7, $2, 4, CHERRYGROVE_CITY
|
|
warp_def $7, $3, 4, CHERRYGROVE_CITY
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 2
|
|
signpost 1, 0, SIGNPOST_READ, GuideGentsHouseBookshelf
|
|
signpost 1, 1, SIGNPOST_READ, GuideGentsHouseBookshelf
|
|
|
|
.PersonEvents:
|
|
db 1
|
|
person_event SPRITE_GRAMPS, 7, 6, OW_LEFT | $1, $0, -1, -1, $0, 0, GuideGentsHouseGuideGent, EVENT_GUIDE_GENT_VISIBLE_IN_CHERRYGROVE
|