pokecrystal-board/maps/Route18.asm

93 lines
1.8 KiB
NASM
Raw Normal View History

object_const_def
2015-11-27 00:22:14 -05: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 20:45:04 -05:00
.Script:
2018-02-02 21:09:17 -05:00
endifjustbattled
2015-12-09 18:25:44 -05:00
opentext
writetext BirdKeeperBorisAfterBattleText
2015-11-25 10:16:29 -05:00
waitbutton
closetext
end
TrainerBirdKeeperBob:
trainer BIRD_KEEPER, BOB, EVENT_BEAT_BIRD_KEEPER_BOB, BirdKeeperBobSeenText, BirdKeeperBobBeatenText, 0, .Script
2017-12-17 20:45:04 -05:00
.Script:
2018-02-02 21:09:17 -05:00
endifjustbattled
2015-12-09 18:25:44 -05:00
opentext
writetext BirdKeeperBobAfterBattleText
2015-11-25 10:16:29 -05:00
waitbutton
closetext
end
2016-04-06 22:59:45 -06: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 22:59:45 -06:00
Route18SignText:
text "ROUTE 18"
para "CELADON CITY -"
line "FUCHSIA CITY"
done
Route18_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 22:22:07 -05: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 22:22:07 -05:00
bg_event 9, 5, BGEVENT_READ, Route18Sign
def_object_events
2018-02-01 22:22:07 -05: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