mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
dcb24bc724
Resolves #742
103 lines
2.1 KiB
NASM
103 lines
2.1 KiB
NASM
object_const_def
|
|
const ROUTE21_SWIMMER_GIRL
|
|
const ROUTE21_SWIMMER_GUY
|
|
const ROUTE21_FISHER
|
|
|
|
Route21_MapScripts:
|
|
def_scene_scripts
|
|
|
|
def_callbacks
|
|
|
|
TrainerSwimmermSeth:
|
|
trainer SWIMMERM, SETH, EVENT_BEAT_SWIMMERM_SETH, SwimmermSethSeenText, SwimmermSethBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
endifjustbattled
|
|
opentext
|
|
writetext SwimmermSethAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
TrainerSwimmerfNikki:
|
|
trainer SWIMMERF, NIKKI, EVENT_BEAT_SWIMMERF_NIKKI, SwimmerfNikkiSeenText, SwimmerfNikkiBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
endifjustbattled
|
|
opentext
|
|
writetext SwimmerfNikkiAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
TrainerFisherArnold:
|
|
trainer FISHER, ARNOLD, EVENT_BEAT_FISHER_ARNOLD, FisherArnoldSeenText, FisherArnoldBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
endifjustbattled
|
|
opentext
|
|
writetext FisherArnoldAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
SwimmermSethSeenText:
|
|
text "Land ho! Gotta"
|
|
line "keep going!"
|
|
done
|
|
|
|
SwimmermSethBeatenText:
|
|
text "Glug…"
|
|
done
|
|
|
|
SwimmermSethAfterBattleText:
|
|
text "This arrogant guy"
|
|
line "was at CINNABAR's"
|
|
cont "volcano."
|
|
done
|
|
|
|
SwimmerfNikkiSeenText:
|
|
text "If I win, you have"
|
|
line "to help me with my"
|
|
cont "suntan lotion!"
|
|
done
|
|
|
|
SwimmerfNikkiBeatenText:
|
|
text "I'm worried about"
|
|
line "sunburn…"
|
|
done
|
|
|
|
SwimmerfNikkiAfterBattleText:
|
|
text "I have to watch"
|
|
line "out for blemishes"
|
|
cont "caused by the sun."
|
|
done
|
|
|
|
FisherArnoldSeenText:
|
|
text "I'm bored by fish-"
|
|
line "ing. Let's battle!"
|
|
done
|
|
|
|
FisherArnoldBeatenText:
|
|
text "Utter failure…"
|
|
done
|
|
|
|
FisherArnoldAfterBattleText:
|
|
text "I'll just go back"
|
|
line "to fishing…"
|
|
done
|
|
|
|
Route21_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
def_warp_events
|
|
|
|
def_coord_events
|
|
|
|
def_bg_events
|
|
|
|
def_object_events
|
|
object_event 11, 16, SPRITE_SWIMMER_GIRL, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 3, TrainerSwimmerfNikki, -1
|
|
object_event 2, 30, SPRITE_SWIMMER_GUY, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 4, TrainerSwimmermSeth, -1
|
|
object_event 14, 22, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerFisherArnold, -1
|