pokecrystal-board/maps/Route30.asm

443 lines
9.4 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const ROUTE30_YOUNGSTER1
const ROUTE30_YOUNGSTER2
const ROUTE30_YOUNGSTER3
const ROUTE30_BUG_CATCHER
const ROUTE30_YOUNGSTER4
const ROUTE30_MONSTER1
const ROUTE30_MONSTER2
const ROUTE30_FRUIT_TREE1
const ROUTE30_FRUIT_TREE2
const ROUTE30_COOLTRAINER_F
const ROUTE30_POKE_BALL
2015-07-10 01:20:21 -07:00
Route30_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-12-16 18:57:42 -08:00
YoungsterJoey_ImportantBattleScript:
2015-11-25 07:16:29 -08:00
waitsfx
playmusic MUSIC_JOHTO_TRAINER_BATTLE
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext Text_UseTackle
pause 30
2015-11-25 07:16:29 -08:00
closetext
playsound SFX_TACKLE
2015-12-16 18:57:42 -08:00
applymovement ROUTE30_MONSTER2, Route30_JoeysRattataAttacksMovement
2015-12-09 15:25:44 -08:00
opentext
faceplayer
2015-12-16 18:57:42 -08:00
writetext Text_ThisIsABigBattle
2015-11-25 07:16:29 -08:00
waitbutton
2015-11-26 21:22:14 -08:00
spriteface ROUTE30_YOUNGSTER1, UP
2015-11-25 07:16:29 -08:00
closetext
playsound SFX_TACKLE
2015-12-16 18:57:42 -08:00
applymovement ROUTE30_MONSTER1, Route30_MikeysRattataAttacksMovement
special RestartMapMusic
end
2015-07-10 01:20:21 -07:00
TrainerYoungsterJoey:
2015-12-16 18:57:42 -08:00
trainer EVENT_BEAT_YOUNGSTER_JOEY, YOUNGSTER, JOEY1, YoungsterJoey1SeenText, YoungsterJoey1BeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
writecode VAR_CALLERID, PHONE_YOUNGSTER_JOEY
2015-11-25 07:16:29 -08:00
end_if_just_battled
2015-12-09 15:25:44 -08:00
opentext
checkflag ENGINE_JOEY
2015-12-16 18:57:42 -08:00
iftrue .Rematch
checkcellnum PHONE_YOUNGSTER_JOEY
2015-12-16 18:57:42 -08:00
iftrue .NumberAccepted
checkevent EVENT_JOEY_ASKED_FOR_PHONE_NUMBER
2015-12-16 18:57:42 -08:00
iftrue .AskAgain
writetext YoungsterJoey1AfterText
2015-11-29 19:29:45 -08:00
buttonsound
setevent EVENT_JOEY_ASKED_FOR_PHONE_NUMBER
2015-12-16 18:57:42 -08:00
scall .AskNumber1
jump .RequestNumber
2015-12-16 18:57:42 -08:00
.AskAgain:
scall .AskNumber2
.RequestNumber:
askforphonenumber PHONE_YOUNGSTER_JOEY
2015-12-16 18:57:42 -08:00
if_equal $1, .PhoneFull
if_equal $2, .NumberDeclined
trainertotext YOUNGSTER, JOEY1, $0
2015-12-16 18:57:42 -08:00
scall .RegisteredNumber
jump .NumberAccepted
2015-12-16 18:57:42 -08:00
.Rematch:
scall .RematchStd
2015-11-02 11:37:02 -08:00
winlosstext YoungsterJoey1BeatenText, 0
2015-07-10 13:04:00 -07:00
copybytetovar wJoeyFightCount
if_equal 4, .Fight4
if_equal 3, .Fight3
if_equal 2, .Fight2
if_equal 1, .Fight1
if_equal 0, .LoadFight0
.Fight4
2015-06-24 20:20:04 -07:00
checkevent EVENT_BEAT_ELITE_FOUR
iftrue .LoadFight4
.Fight3
2013-09-24 00:48:58 -07:00
checkevent EVENT_CLEARED_RADIO_TOWER
iftrue .LoadFight3
.Fight2
checkflag ENGINE_FLYPOINT_OLIVINE
iftrue .LoadFight2
.Fight1
checkflag ENGINE_FLYPOINT_GOLDENROD
iftrue .LoadFight1
.LoadFight0
loadtrainer YOUNGSTER, JOEY1
startbattle
returnafterbattle
2015-07-10 13:04:00 -07:00
loadvar wJoeyFightCount, 1
clearflag ENGINE_JOEY
end
.LoadFight1
loadtrainer YOUNGSTER, JOEY2
startbattle
returnafterbattle
2015-07-10 13:04:00 -07:00
loadvar wJoeyFightCount, 2
clearflag ENGINE_JOEY
end
.LoadFight2
loadtrainer YOUNGSTER, JOEY3
startbattle
returnafterbattle
2015-07-10 13:04:00 -07:00
loadvar wJoeyFightCount, 3
clearflag ENGINE_JOEY
end
.LoadFight3
loadtrainer YOUNGSTER, JOEY4
startbattle
returnafterbattle
2015-07-10 13:04:00 -07:00
loadvar wJoeyFightCount, 4
clearflag ENGINE_JOEY
end
.LoadFight4
loadtrainer YOUNGSTER, JOEY5
startbattle
returnafterbattle
clearflag ENGINE_JOEY
2013-09-24 00:48:58 -07:00
checkevent EVENT_JOEY_HP_UP
2015-12-16 18:57:42 -08:00
iftrue .GiveHPUp
checkevent EVENT_GOT_HP_UP_FROM_JOEY
2015-12-16 18:57:42 -08:00
iftrue .done
scall .RematchGift
2015-11-04 17:20:14 -08:00
verbosegiveitem HP_UP
2015-12-16 18:57:42 -08:00
iffalse .PackFull
setevent EVENT_GOT_HP_UP_FROM_JOEY
2015-12-16 18:57:42 -08:00
jump .NumberAccepted
2015-12-16 18:57:42 -08:00
.done:
end
2015-12-16 18:57:42 -08:00
.GiveHPUp:
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext YoungsterJoeyText_GiveHPUpAfterBattle
2015-11-25 07:16:29 -08:00
waitbutton
2015-11-04 17:20:14 -08:00
verbosegiveitem HP_UP
2015-12-16 18:57:42 -08:00
iffalse .PackFull
2013-09-24 00:48:58 -07:00
clearevent EVENT_JOEY_HP_UP
setevent EVENT_GOT_HP_UP_FROM_JOEY
2015-12-16 18:57:42 -08:00
jump .NumberAccepted
2015-12-16 18:57:42 -08:00
.AskNumber1:
2015-06-24 18:26:24 -07:00
jumpstd asknumber1m
end
2015-12-16 18:57:42 -08:00
.AskNumber2:
2015-06-24 18:26:24 -07:00
jumpstd asknumber2m
end
2015-12-16 18:57:42 -08:00
.RegisteredNumber:
2015-06-24 18:26:24 -07:00
jumpstd registerednumberm
end
2015-12-16 18:57:42 -08:00
.NumberAccepted:
2015-06-24 18:26:24 -07:00
jumpstd numberacceptedm
end
2015-12-16 18:57:42 -08:00
.NumberDeclined:
2015-06-24 18:26:24 -07:00
jumpstd numberdeclinedm
end
2015-12-16 18:57:42 -08:00
.PhoneFull:
2015-06-24 18:26:24 -07:00
jumpstd phonefullm
end
2015-12-16 18:57:42 -08:00
.RematchStd:
2015-06-24 18:26:24 -07:00
jumpstd rematchm
end
2015-12-16 18:57:42 -08:00
.PackFull:
2013-09-24 00:48:58 -07:00
setevent EVENT_JOEY_HP_UP
2015-06-24 18:26:24 -07:00
jumpstd packfullm
end
2015-12-16 18:57:42 -08:00
.RematchGift:
2015-06-24 18:26:24 -07:00
jumpstd rematchgiftm
end
2015-07-10 01:20:21 -07:00
TrainerYoungsterMikey:
2015-12-16 18:57:42 -08:00
trainer EVENT_BEAT_YOUNGSTER_MIKEY, YOUNGSTER, MIKEY, YoungsterMikeySeenText, YoungsterMikeyBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2015-11-25 07:16:29 -08:00
end_if_just_battled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext YoungsterMikeyAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerBug_catcherDon:
2015-12-16 18:57:42 -08:00
trainer EVENT_BEAT_BUG_CATCHER_DON, BUG_CATCHER, DON, Bug_catcherDonSeenText, Bug_catcherDonBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2015-11-25 07:16:29 -08:00
end_if_just_battled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext Bug_catcherDonAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
Route30YoungsterScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GAVE_MYSTERY_EGG_TO_ELM
2015-12-16 18:57:42 -08:00
iftrue .CompletedEggQuest
writetext Route30YoungsterText_DirectionsToMrPokemonsHouse
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
.CompletedEggQuest:
writetext Route30YoungsterText_EveryoneIsBattling
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
Route30CooltrainerFScript:
jumptextfaceplayer Route30CooltrainerFText
2015-07-10 01:20:21 -07:00
MapRoute30Signpost0Script:
2015-12-16 18:57:42 -08:00
jumptext Route30MapSignText
2015-07-10 01:20:21 -07:00
MapRoute30Signpost1Script:
2015-12-16 18:57:42 -08:00
jumptext Route30DirectionsToMrPokemonsHouseSignText
2015-07-10 01:20:21 -07:00
MapRoute30Signpost2Script:
2015-12-16 18:57:42 -08:00
jumptext Route30MrPokemonsHouseSignText
2015-07-10 01:20:21 -07:00
MapRoute30Signpost3Script:
2015-12-16 18:57:42 -08:00
jumptext Route30TrainerTipsSignText
2015-12-15 07:55:56 -08:00
Route30Antidote:
itemball ANTIDOTE
2015-12-16 18:57:42 -08:00
Route30FruitTree1:
2015-11-18 07:42:42 -08:00
fruittree FRUITTREE_ROUTE_30_1
2015-12-16 18:57:42 -08:00
Route30FruitTree2:
2015-11-18 07:42:42 -08:00
fruittree FRUITTREE_ROUTE_30_2
Route30HiddenPotion:
dwb EVENT_ROUTE_30_HIDDEN_POTION, POTION
2015-12-16 18:57:42 -08:00
Route30_JoeysRattataAttacksMovement:
fix_facing
big_step_up
big_step_down
step_end
2015-12-16 18:57:42 -08:00
Route30_MikeysRattataAttacksMovement:
fix_facing
big_step_down
big_step_up
step_end
2015-12-16 18:57:42 -08:00
Text_UseTackle:
text "Go, RATTATA!"
para "TACKLE!"
done
2015-12-16 18:57:42 -08:00
Text_ThisIsABigBattle:
text "What? This is a"
line "big battle!"
cont "Leave me alone!"
done
2015-07-10 01:20:21 -07:00
YoungsterJoey1SeenText:
text "I just lost, so"
line "I'm trying to find"
cont "more #MON."
para "Wait! You look"
line "weak! Come on,"
cont "let's battle!"
done
2015-07-10 01:20:21 -07:00
YoungsterJoey1BeatenText:
text "Ack! I lost again!"
line "Doggone it!"
done
2015-12-16 18:57:42 -08:00
YoungsterJoey1AfterText:
text "Do I have to have"
line "more #MON in"
para "order to battle"
line "better?"
para "No! I'm sticking"
line "with this one no"
cont "matter what!"
done
2015-07-10 01:20:21 -07:00
YoungsterMikeySeenText:
text "You're a #MON"
line "trainer, right?"
para "Then you have to"
line "battle!"
done
2015-07-10 01:20:21 -07:00
YoungsterMikeyBeatenText:
text "That's strange."
line "I won before."
done
2015-12-16 18:57:42 -08:00
YoungsterMikeyAfterText:
text "Becoming a good"
line "trainer is really"
cont "tough."
para "I'm going to bat-"
line "tle other people"
cont "to get better."
done
2015-07-10 01:20:21 -07:00
Bug_catcherDonSeenText:
text "Instead of a bug"
line "#MON, I found"
cont "a trainer!"
done
2015-07-10 01:20:21 -07:00
Bug_catcherDonBeatenText:
text "Argh! You're too"
line "strong!"
done
2015-12-16 18:57:42 -08:00
Bug_catcherDonAfterText:
text "I ran out of #"
line "BALLS while I was"
cont "catching #MON."
para "I should've bought"
line "some more…"
done
2015-12-16 18:57:42 -08:00
Route30YoungsterText_DirectionsToMrPokemonsHouse:
text "MR.#MON's"
line "house? It's a bit"
cont "farther ahead."
done
2015-12-16 18:57:42 -08:00
Route30YoungsterText_EveryoneIsBattling:
text "Everyone's having"
line "fun battling!"
cont "You should too!"
done
2015-12-16 18:57:42 -08:00
Route30CooltrainerFText:
text "I'm not a trainer."
para "But if you look"
line "one in the eyes,"
cont "prepare to battle."
done
2015-12-16 18:57:42 -08:00
Route30MapSignText:
text "ROUTE 30"
para "VIOLET CITY -"
line "CHERRYGROVE CITY"
done
2015-12-16 18:57:42 -08:00
Route30DirectionsToMrPokemonsHouseSignText:
text "MR.#MON'S HOUSE"
line "STRAIGHT AHEAD!"
done
2015-12-16 18:57:42 -08:00
Route30MrPokemonsHouseSignText:
text "MR.#MON'S HOUSE"
done
2015-12-16 18:57:42 -08:00
Route30TrainerTipsSignText:
text "TRAINER TIPS"
para "No stealing other"
line "people's #MON!"
para "# BALLS are to"
line "be thrown only at"
cont "wild #MON!"
done
2015-12-16 18:57:42 -08:00
YoungsterJoeyText_GiveHPUpAfterBattle:
text "I lost again…"
line "Gee, you're tough!"
para "Oh yeah, I almost"
line "forgot that I had"
cont "to give you this."
para "Use it to get even"
line "tougher, OK?"
para "I'm going to get"
line "tougher too."
done
2015-07-10 01:20:21 -07:00
Route30_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $27, $7, 1, ROUTE_30_BERRY_SPEECH_HOUSE
warp_def $5, $11, 1, MR_POKEMONS_HOUSE
.XYTriggers:
db 0
.Signposts:
db 5
signpost 43, 9, SIGNPOST_READ, MapRoute30Signpost0Script
signpost 29, 13, SIGNPOST_READ, MapRoute30Signpost1Script
signpost 5, 15, SIGNPOST_READ, MapRoute30Signpost2Script
signpost 21, 3, SIGNPOST_READ, MapRoute30Signpost3Script
signpost 9, 14, SIGNPOST_ITEM, Route30HiddenPotion
.PersonEvents:
db 11
2015-12-16 18:57:42 -08:00
person_event SPRITE_YOUNGSTER, 26, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, YoungsterJoey_ImportantBattleScript, EVENT_ROUTE_30_BATTLE
person_event SPRITE_YOUNGSTER, 28, 2, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_TRAINER, 3, TrainerYoungsterJoey, EVENT_ROUTE_30_YOUNGSTER_JOEY
person_event SPRITE_YOUNGSTER, 23, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_TRAINER, 1, TrainerYoungsterMikey, -1
person_event SPRITE_BUG_CATCHER, 7, 1, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_BROWN, PERSONTYPE_TRAINER, 3, TrainerBug_catcherDon, -1
2015-12-16 18:57:42 -08:00
person_event SPRITE_YOUNGSTER, 30, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, Route30YoungsterScript, -1
person_event SPRITE_MONSTER, 24, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, ObjectEvent, EVENT_ROUTE_30_BATTLE
person_event SPRITE_MONSTER, 25, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, ObjectEvent, EVENT_ROUTE_30_BATTLE
2015-12-16 18:57:42 -08:00
person_event SPRITE_FRUIT_TREE, 39, 5, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, Route30FruitTree1, -1
person_event SPRITE_FRUIT_TREE, 5, 11, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, Route30FruitTree2, -1
person_event SPRITE_COOLTRAINER_F, 13, 2, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, Route30CooltrainerFScript, -1
2015-12-15 07:55:56 -08:00
person_event SPRITE_POKE_BALL, 35, 8, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, Route30Antidote, EVENT_ROUTE_30_ANTIDOTE