pokecrystal-board/maps/CherrygroveEvolutionSpeechHouse.asm
PikalaxALT 94129b6b45 Finished the decoration attributes table
Interpretation of the Decoration Attributes table is complete.

Other changes include some more event flag and function naming, as well as a minor tweak to the person_events of every map.
2015-07-19 04:58:31 -04:00

61 lines
1.2 KiB
NASM

CherrygroveEvolutionSpeechHouse_MapScriptHeader:
; trigger count
db 0
; callback count
db 0
YoungsterScript_0x196cb2:
loadfont
writetext UnknownText_0x196cc3
closetext
loadmovesprites
end
LassScript_0x196cb9:
loadfont
writetext UnknownText_0x196cfc
closetext
loadmovesprites
end
CherrygroveEvolutionSpeechHouseBookshelf:
jumpstd magazinebookshelf
UnknownText_0x196cc3:
text "#MON gain expe-"
line "rience in battle"
para "and change their"
line "form."
done
UnknownText_0x196cfc:
text "#MON change?"
para "I would be shocked"
line "if one did that!"
done
CherrygroveEvolutionSpeechHouse_MapEventHeader:
; filler
db 0, 0
; warps
db 2
warp_def $7, $2, 5, GROUP_CHERRYGROVE_CITY, MAP_CHERRYGROVE_CITY
warp_def $7, $3, 5, GROUP_CHERRYGROVE_CITY, MAP_CHERRYGROVE_CITY
; xy triggers
db 0
; signposts
db 2
signpost 1, 0, SIGNPOST_READ, CherrygroveEvolutionSpeechHouseBookshelf
signpost 1, 1, SIGNPOST_READ, CherrygroveEvolutionSpeechHouseBookshelf
; people-events
db 2
person_event SPRITE_LASS, 9, 7, OW_LEFT | $0, $0, -1, -1, (PAL_OW_GREEN << 4) | $80, 0, LassScript_0x196cb9, -1
person_event SPRITE_YOUNGSTER, 9, 6, OW_LEFT | $1, $0, -1, -1, (PAL_OW_RED << 4) | $80, 0, YoungsterScript_0x196cb2, -1