mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
97 lines
1.8 KiB
NASM
97 lines
1.8 KiB
NASM
const_value set 2
|
|
const ROUTE10SOUTH_POKEFAN_M1
|
|
const ROUTE10SOUTH_POKEFAN_M2
|
|
|
|
Route10South_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
TrainerHikerJim:
|
|
trainer EVENT_BEAT_HIKER_JIM, HIKER, JIM, HikerJimSeenText, HikerJimBeatenText, 0, HikerJimScript
|
|
|
|
HikerJimScript:
|
|
end_if_just_battled
|
|
loadfont
|
|
writetext UnknownText_0x1ae43b
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
TrainerPokefanmRobert:
|
|
trainer EVENT_BEAT_POKEFANM_ROBERT, POKEFANM, ROBERT, PokefanmRobertSeenText, PokefanmRobertBeatenText, 0, PokefanmRobertScript
|
|
|
|
PokefanmRobertScript:
|
|
end_if_just_battled
|
|
loadfont
|
|
writetext UnknownText_0x1ae4a9
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
MapRoute10SouthSignpost0Script:
|
|
jumptext UnknownText_0x1ae4dc
|
|
|
|
HikerJimSeenText:
|
|
text "Hahahah!"
|
|
done
|
|
|
|
HikerJimBeatenText:
|
|
text "Hahaha-hachoo!"
|
|
done
|
|
|
|
UnknownText_0x1ae43b:
|
|
text "Hay fever is"
|
|
line "making me sneeze!"
|
|
cont "Ahahah-CHOO!"
|
|
done
|
|
|
|
PokefanmRobertSeenText:
|
|
text "You like #MON,"
|
|
line "don't you?"
|
|
|
|
para "Me too!"
|
|
done
|
|
|
|
PokefanmRobertBeatenText:
|
|
text "I'd have to say"
|
|
line "that's my loss."
|
|
done
|
|
|
|
UnknownText_0x1ae4a9:
|
|
text "Look what you did"
|
|
line "to my #MON…"
|
|
|
|
para "I won't forget"
|
|
line "this…"
|
|
done
|
|
|
|
UnknownText_0x1ae4dc:
|
|
text "ROUTE 10"
|
|
|
|
para "CERULEAN CITY -"
|
|
line "LAVENDER TOWN"
|
|
done
|
|
|
|
Route10South_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 1
|
|
warp_def $1, $6, 2, ROCK_TUNNEL_1F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 1
|
|
signpost 3, 5, SIGNPOST_READ, MapRoute10SouthSignpost0Script
|
|
|
|
.PersonEvents:
|
|
db 2
|
|
person_event SPRITE_POKEFAN_M, 3, 17, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, (1 << 3) | PAL_OW_BROWN, PERSONTYPE_TRAINER, 3, TrainerHikerJim, -1
|
|
person_event SPRITE_POKEFAN_M, 10, 8, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 3, TrainerPokefanmRobert, -1
|