mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
dcb24bc724
Resolves #742
90 lines
1.7 KiB
NASM
90 lines
1.7 KiB
NASM
object_const_def
|
|
const ROUTE10SOUTH_POKEFAN_M1
|
|
const ROUTE10SOUTH_POKEFAN_M2
|
|
|
|
Route10South_MapScripts:
|
|
def_scene_scripts
|
|
|
|
def_callbacks
|
|
|
|
TrainerHikerJim:
|
|
trainer HIKER, JIM, EVENT_BEAT_HIKER_JIM, HikerJimSeenText, HikerJimBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
endifjustbattled
|
|
opentext
|
|
writetext HikerJimAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
TrainerPokefanmRobert:
|
|
trainer POKEFANM, ROBERT, EVENT_BEAT_POKEFANM_ROBERT, PokefanmRobertSeenText, PokefanmRobertBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
endifjustbattled
|
|
opentext
|
|
writetext PokefanmRobertAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
Route10Sign:
|
|
jumptext Route10SignText
|
|
|
|
HikerJimSeenText:
|
|
text "Hahahah!"
|
|
done
|
|
|
|
HikerJimBeatenText:
|
|
text "Hahaha-hachoo!"
|
|
done
|
|
|
|
HikerJimAfterBattleText:
|
|
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
|
|
|
|
PokefanmRobertAfterBattleText:
|
|
text "Look what you did"
|
|
line "to my #MON…"
|
|
|
|
para "I won't forget"
|
|
line "this…"
|
|
done
|
|
|
|
Route10SignText:
|
|
text "ROUTE 10"
|
|
|
|
para "CERULEAN CITY -"
|
|
line "LAVENDER TOWN"
|
|
done
|
|
|
|
Route10South_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
def_warp_events
|
|
warp_event 6, 1, ROCK_TUNNEL_1F, 2
|
|
|
|
def_coord_events
|
|
|
|
def_bg_events
|
|
bg_event 5, 3, BGEVENT_READ, Route10Sign
|
|
|
|
def_object_events
|
|
object_event 17, 3, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_TRAINER, 3, TrainerHikerJim, -1
|
|
object_event 8, 10, SPRITE_POKEFAN_M, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 3, TrainerPokefanmRobert, -1
|