pokecrystal-board/maps/Route18.asm

93 lines
1.8 KiB
NASM
Raw Normal View History

object_const_def
2015-11-26 21:22:14 -08:00
const ROUTE18_YOUNGSTER1
const ROUTE18_YOUNGSTER2
Route18_MapScripts:
def_scene_scripts
def_callbacks
TrainerBirdKeeperBoris:
trainer BIRD_KEEPER, BORIS, EVENT_BEAT_BIRD_KEEPER_BORIS, BirdKeeperBorisSeenText, BirdKeeperBorisBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
writetext BirdKeeperBorisAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
TrainerBirdKeeperBob:
trainer BIRD_KEEPER, BOB, EVENT_BEAT_BIRD_KEEPER_BOB, BirdKeeperBobSeenText, BirdKeeperBobBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
writetext BirdKeeperBobAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2016-04-06 21:59:45 -07:00
Route18Sign:
jumptext Route18SignText
BirdKeeperBorisSeenText:
text "If you're looking"
line "for #MON, you"
para "have to look in"
line "the tall grass."
done
BirdKeeperBorisBeatenText:
text "Ayieee!"
done
BirdKeeperBorisAfterBattleText:
text "Since you're so"
line "strong, it must be"
cont "fun to battle."
done
BirdKeeperBobSeenText:
text "CYCLING ROAD is a"
line "quick shortcut to"
cont "CELADON."
done
BirdKeeperBobBeatenText:
text "…Whew!"
done
BirdKeeperBobAfterBattleText:
text "If you don't have"
line "a BICYCLE, you're"
para "not allowed to use"
line "the shortcut."
done
2016-04-06 21:59:45 -07:00
Route18SignText:
text "ROUTE 18"
para "CELADON CITY -"
line "FUCHSIA CITY"
done
Route18_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 19:22:07 -08:00
warp_event 2, 6, ROUTE_17_ROUTE_18_GATE, 3
warp_event 2, 7, ROUTE_17_ROUTE_18_GATE, 4
def_coord_events
def_bg_events
2018-02-01 19:22:07 -08:00
bg_event 9, 5, BGEVENT_READ, Route18Sign
def_object_events
2018-02-01 19:22:07 -08:00
object_event 9, 12, SPRITE_YOUNGSTER, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBirdKeeperBoris, -1
object_event 13, 6, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBirdKeeperBob, -1