pokecrystal-board/maps/Route6.asm
PikalaxALT 60cd04b023 Trainer data structure and field move functions
Trainer data in map scripts is now a macro-defined structure.

Field move functions in main.asm are now nearly completely annotated, with local references.

Trailing white space deleted.
2015-07-18 23:45:39 -04:00

110 lines
2.2 KiB
NASM

Route6_MapScriptHeader:
; trigger count
db 0
; callback count
db 0
TrainerPokefanmRex:
trainer EVENT_BEAT_POKEFANM_REX, POKEFANM, REX, PokefanmRexSeenText, PokefanmRexBeatenText, $0000, PokefanmRexScript
PokefanmRexScript:
talkaftercancel
loadfont
writetext UnknownText_0x1ad9ff
closetext
loadmovesprites
end
TrainerPokefanmAllan:
trainer EVENT_BEAT_POKEFANM_ALLAN, POKEFANM, ALLAN, PokefanmAllanSeenText, PokefanmAllanBeatenText, $0000, PokefanmAllanScript
PokefanmAllanScript:
talkaftercancel
loadfont
writetext UnknownText_0x1ada88
closetext
loadmovesprites
end
PokefanMScript_0x1ad951:
jumptextfaceplayer UnknownText_0x1ad957
MapRoute6Signpost0Script:
jumptext UnknownText_0x1ad99b
UnknownText_0x1ad957:
text "The road is closed"
line "until the problem"
para "at the POWER PLANT"
line "is solved."
done
UnknownText_0x1ad99b:
text "UNDERGROUND PATH"
para "CERULEAN CITY -"
line "VERMILION CITY"
done
PokefanmRexSeenText:
text "My PHANPY is the"
line "cutest in the"
cont "world."
done
PokefanmRexBeatenText:
text "My PHANPY!"
done
UnknownText_0x1ad9ff:
text "Look how adorable"
line "my PHANPY acts!"
para "Isn't it cute"
line "enough to make"
cont "your heart melt?"
done
PokefanmAllanSeenText:
text "My TEDDIURSA is"
line "the cutest in the"
cont "world."
done
PokefanmAllanBeatenText:
text "My TEDDIURSA!"
done
UnknownText_0x1ada88:
text "Look how adorable"
line "my TEDDIURSA acts!"
para "Isn't it cute"
line "enough to make"
cont "your heart melt?"
done
Route6_MapEventHeader:
; filler
db 0, 0
; warps
db 2
warp_def $3, $11, 1, GROUP_ROUTE_6_UNDERGROUND_ENTRANCE, MAP_ROUTE_6_UNDERGROUND_ENTRANCE
warp_def $1, $6, 3, GROUP_ROUTE_6_SAFFRON_GATE, MAP_ROUTE_6_SAFFRON_GATE
; xy triggers
db 0
; signposts
db 1
signpost 5, 19, SIGNPOST_READ, MapRoute6Signpost0Script
; people-events
db 3
person_event SPRITE_POKEFAN_M, 8, 21, UP << 2 | $2, $0, -1, -1, (PAL_OW_BROWN << 4) | $80, 2, PokefanMScript_0x1ad951, EVENT_ROUTE_5_6_POKEFAN_M_BLOCKS_UNDERGROUND_PATH
person_event SPRITE_POKEFAN_M, 16, 13, LEFT << 2 | $1, $0, -1, -1, (PAL_OW_RED << 4) | $82, 0, TrainerPokefanmRex, -1
person_event SPRITE_POKEFAN_M, 16, 14, LEFT << 2 | $0, $0, -1, -1, (PAL_OW_RED << 4) | $82, 0, TrainerPokefanmAllan, -1