mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
100 lines
1.8 KiB
NASM
100 lines
1.8 KiB
NASM
const_value set 2
|
|
const ROUTE18_YOUNGSTER1
|
|
const ROUTE18_YOUNGSTER2
|
|
|
|
Route18_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
TrainerBirdKeeperBoris:
|
|
trainer EVENT_BEAT_BIRD_KEEPER_BORIS, BIRD_KEEPER, BORIS, BirdKeeperBorisSeenText, BirdKeeperBorisBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
end_if_just_battled
|
|
opentext
|
|
writetext BirdKeeperBorisAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
TrainerBirdKeeperBob:
|
|
trainer EVENT_BEAT_BIRD_KEEPER_BOB, BIRD_KEEPER, BOB, BirdKeeperBobSeenText, BirdKeeperBobBeatenText, 0, .Script
|
|
|
|
.Script:
|
|
end_if_just_battled
|
|
opentext
|
|
writetext BirdKeeperBobAfterBattleText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
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
|
|
|
|
Route18SignText:
|
|
text "ROUTE 18"
|
|
|
|
para "CELADON CITY -"
|
|
line "FUCHSIA CITY"
|
|
done
|
|
|
|
Route18_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def 2, 6, 3, ROUTE_17_18_GATE
|
|
warp_def 2, 7, 4, ROUTE_17_18_GATE
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 1
|
|
bg_event 9, 5, BGEVENT_READ, Route18Sign
|
|
|
|
.ObjectEvents:
|
|
db 2
|
|
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
|