mirror of https://github.com/pret/pokecrystal.git
Labelling Route 44; Birdkeeper Vance and Fisher Wilton.
This commit is contained in:
parent
1aae9eb528
commit
b098816b46
144
maps/Route44.asm
144
maps/Route44.asm
|
@ -26,29 +26,29 @@ TrainerBirdKeeperVance1:
|
||||||
end_if_just_battled
|
end_if_just_battled
|
||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_VANCE
|
checkflag ENGINE_VANCE
|
||||||
iftrue UnknownScript_0x19d86a
|
iftrue VanceWantsBattle
|
||||||
checkcellnum PHONE_BIRDKEEPER_VANCE
|
checkcellnum PHONE_BIRDKEEPER_VANCE
|
||||||
iftrue UnknownScript_0x19d8eb
|
iftrue NumberAcceptedM
|
||||||
checkevent EVENT_VANCE_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_VANCE_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x19d853
|
iftrue .AskedAlready
|
||||||
writetext UnknownText_0x19dbf3
|
writetext BirdKeeperVanceLegendaryBirdsText
|
||||||
buttonsound
|
buttonsound
|
||||||
setevent EVENT_VANCE_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_VANCE_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x19d8df
|
scall AskNumber1M
|
||||||
jump UnknownScript_0x19d856
|
jump .AskForNumber
|
||||||
|
|
||||||
UnknownScript_0x19d853:
|
.AskedAlready:
|
||||||
scall UnknownScript_0x19d8e3
|
scall AskNumber2M
|
||||||
UnknownScript_0x19d856:
|
.AskForNumber:
|
||||||
askforphonenumber PHONE_BIRDKEEPER_VANCE
|
askforphonenumber PHONE_BIRDKEEPER_VANCE
|
||||||
if_equal $1, UnknownScript_0x19d8f3
|
if_equal $1, PhoneFullM
|
||||||
if_equal $2, UnknownScript_0x19d8ef
|
if_equal $2, NumberDeclinedM
|
||||||
trainertotext BIRD_KEEPER, VANCE1, $0
|
trainertotext BIRD_KEEPER, VANCE1, $0
|
||||||
scall UnknownScript_0x19d8e7
|
scall RegisteredNumberM
|
||||||
jump UnknownScript_0x19d8eb
|
jump NumberAcceptedM
|
||||||
|
|
||||||
UnknownScript_0x19d86a:
|
VanceWantsBattle:
|
||||||
scall UnknownScript_0x19d8f7
|
scall RematchM
|
||||||
winlosstext BirdKeeperVance1BeatenText, 0
|
winlosstext BirdKeeperVance1BeatenText, 0
|
||||||
copybytetovar wVanceFightCount
|
copybytetovar wVanceFightCount
|
||||||
if_equal 2, .Fight2
|
if_equal 2, .Fight2
|
||||||
|
@ -82,70 +82,70 @@ UnknownScript_0x19d86a:
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
clearflag ENGINE_VANCE
|
clearflag ENGINE_VANCE
|
||||||
checkevent EVENT_VANCE_CARBOS
|
checkevent EVENT_VANCE_CARBOS
|
||||||
iftrue UnknownScript_0x19d8cb
|
iftrue .Carbos
|
||||||
checkevent EVENT_GOT_CARBOS_FROM_VANCE
|
checkevent EVENT_GOT_CARBOS_FROM_VANCE
|
||||||
iftrue UnknownScript_0x19d8ca
|
iftrue .ReceivedCarbosBefore
|
||||||
scall UnknownScript_0x19d90a
|
scall RematchGiftM
|
||||||
verbosegiveitem CARBOS
|
verbosegiveitem CARBOS
|
||||||
iffalse UnknownScript_0x19d903
|
iffalse VancePackFull
|
||||||
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
||||||
jump UnknownScript_0x19d8eb
|
jump NumberAcceptedM
|
||||||
|
|
||||||
UnknownScript_0x19d8ca:
|
.ReceivedCarbosBefore:
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8cb:
|
.Carbos:
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x19dc67
|
writetext BirdKeeperVance2BeatenText
|
||||||
waitbutton
|
waitbutton
|
||||||
verbosegiveitem CARBOS
|
verbosegiveitem CARBOS
|
||||||
iffalse UnknownScript_0x19d903
|
iffalse VancePackFull
|
||||||
clearevent EVENT_VANCE_CARBOS
|
clearevent EVENT_VANCE_CARBOS
|
||||||
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
||||||
jump UnknownScript_0x19d8eb
|
jump NumberAcceptedM
|
||||||
|
|
||||||
UnknownScript_0x19d8df:
|
AskNumber1M:
|
||||||
jumpstd asknumber1m
|
jumpstd asknumber1m
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8e3:
|
AskNumber2M:
|
||||||
jumpstd asknumber2m
|
jumpstd asknumber2m
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8e7:
|
RegisteredNumberM:
|
||||||
jumpstd registerednumberm
|
jumpstd registerednumberm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8eb:
|
NumberAcceptedM:
|
||||||
jumpstd numberacceptedm
|
jumpstd numberacceptedm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8ef:
|
NumberDeclinedM:
|
||||||
jumpstd numberdeclinedm
|
jumpstd numberdeclinedm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8f3:
|
PhoneFullM:
|
||||||
jumpstd phonefullm
|
jumpstd phonefullm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8f7:
|
RematchM:
|
||||||
jumpstd rematchm
|
jumpstd rematchm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8fb:
|
GiftM:
|
||||||
jumpstd giftm
|
jumpstd giftm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d8ff:
|
PackFullM:
|
||||||
jumpstd packfullm
|
jumpstd packfullm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d903:
|
VancePackFull:
|
||||||
setevent EVENT_VANCE_CARBOS
|
setevent EVENT_VANCE_CARBOS
|
||||||
jumpstd packfullm
|
jumpstd packfullm
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d90a:
|
RematchGiftM:
|
||||||
jumpstd rematchgiftm
|
jumpstd rematchgiftm
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -168,31 +168,31 @@ TrainerFisherWilton1:
|
||||||
end_if_just_battled
|
end_if_just_battled
|
||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_WILTON
|
checkflag ENGINE_WILTON
|
||||||
iftrue UnknownScript_0x19d96e
|
iftrue WiltonWantsBattle
|
||||||
checkflag ENGINE_WILTON_HAS_ITEM
|
checkflag ENGINE_WILTON_HAS_ITEM
|
||||||
iftrue UnknownScript_0x19d9b4
|
iftrue WiltonHasItem
|
||||||
checkcellnum PHONE_FISHER_WILTON
|
checkcellnum PHONE_FISHER_WILTON
|
||||||
iftrue UnknownScript_0x19d8eb
|
iftrue NumberAcceptedM
|
||||||
checkevent EVENT_WILTON_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_WILTON_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x19d957
|
iftrue .AskedAlready
|
||||||
writetext UnknownText_0x19daa8
|
writetext FisherWiltonHugePoliwagText
|
||||||
buttonsound
|
buttonsound
|
||||||
setevent EVENT_WILTON_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_WILTON_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x19d8df
|
scall AskNumber1M
|
||||||
jump UnknownScript_0x19d95a
|
jump .AskForNumber
|
||||||
|
|
||||||
UnknownScript_0x19d957:
|
.AskedAlready:
|
||||||
scall UnknownScript_0x19d8e3
|
scall AskNumber2M
|
||||||
UnknownScript_0x19d95a:
|
.AskForNumber:
|
||||||
askforphonenumber PHONE_FISHER_WILTON
|
askforphonenumber PHONE_FISHER_WILTON
|
||||||
if_equal $1, UnknownScript_0x19d8f3
|
if_equal $1, PhoneFullM
|
||||||
if_equal $2, UnknownScript_0x19d8ef
|
if_equal $2, NumberDeclinedM
|
||||||
trainertotext FISHER, WILTON1, $0
|
trainertotext FISHER, WILTON1, $0
|
||||||
scall UnknownScript_0x19d8e7
|
scall RegisteredNumberM
|
||||||
jump UnknownScript_0x19d8eb
|
jump NumberAcceptedM
|
||||||
|
|
||||||
UnknownScript_0x19d96e:
|
WiltonWantsBattle:
|
||||||
scall UnknownScript_0x19d8f7
|
scall RematchM
|
||||||
winlosstext FisherWilton1BeatenText, 0
|
winlosstext FisherWilton1BeatenText, 0
|
||||||
copybytetovar wWiltonFightCount
|
copybytetovar wWiltonFightCount
|
||||||
if_equal 2, .Fight2
|
if_equal 2, .Fight2
|
||||||
|
@ -227,33 +227,33 @@ UnknownScript_0x19d96e:
|
||||||
clearflag ENGINE_WILTON
|
clearflag ENGINE_WILTON
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x19d9b4:
|
WiltonHasItem:
|
||||||
scall UnknownScript_0x19d8fb
|
scall GiftM
|
||||||
checkevent EVENT_WILTON_HAS_ULTRA_BALL
|
checkevent EVENT_WILTON_HAS_ULTRA_BALL
|
||||||
iftrue UnknownScript_0x19d9c9
|
iftrue .UltraBall
|
||||||
checkevent EVENT_WILTON_HAS_GREAT_BALL
|
checkevent EVENT_WILTON_HAS_GREAT_BALL
|
||||||
iftrue UnknownScript_0x19d9d2
|
iftrue .GreatBall
|
||||||
checkevent EVENT_WILTON_HAS_POKE_BALL
|
checkevent EVENT_WILTON_HAS_POKE_BALL
|
||||||
iftrue UnknownScript_0x19d9db
|
iftrue .PokeBall
|
||||||
UnknownScript_0x19d9c9:
|
.UltraBall:
|
||||||
verbosegiveitem ULTRA_BALL
|
verbosegiveitem ULTRA_BALL
|
||||||
iffalse UnknownScript_0x19d9e7
|
iffalse .PackFullM
|
||||||
jump UnknownScript_0x19d9e1
|
jump .ItemReceived
|
||||||
|
|
||||||
UnknownScript_0x19d9d2:
|
.GreatBall:
|
||||||
verbosegiveitem GREAT_BALL
|
verbosegiveitem GREAT_BALL
|
||||||
iffalse UnknownScript_0x19d9e7
|
iffalse .PackFullM
|
||||||
jump UnknownScript_0x19d9e1
|
jump .ItemReceived
|
||||||
|
|
||||||
UnknownScript_0x19d9db:
|
.PokeBall:
|
||||||
verbosegiveitem POKE_BALL
|
verbosegiveitem POKE_BALL
|
||||||
iffalse UnknownScript_0x19d9e7
|
iffalse .PackFullM
|
||||||
UnknownScript_0x19d9e1:
|
.ItemReceived:
|
||||||
clearflag ENGINE_WILTON_HAS_ITEM
|
clearflag ENGINE_WILTON_HAS_ITEM
|
||||||
jump UnknownScript_0x19d8eb
|
jump NumberAcceptedM
|
||||||
|
|
||||||
UnknownScript_0x19d9e7:
|
.PackFullM:
|
||||||
jump UnknownScript_0x19d8ff
|
jump PackFullM
|
||||||
|
|
||||||
TrainerFisherEdgar:
|
TrainerFisherEdgar:
|
||||||
trainer EVENT_BEAT_FISHER_EDGAR, FISHER, EDGAR, FisherEdgarSeenText, FisherEdgarBeatenText, 0, .Script
|
trainer EVENT_BEAT_FISHER_EDGAR, FISHER, EDGAR, FisherEdgarSeenText, FisherEdgarBeatenText, 0, .Script
|
||||||
|
@ -334,7 +334,7 @@ FisherWilton1BeatenText:
|
||||||
line "it."
|
line "it."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x19daa8:
|
FisherWiltonHugePoliwagText:
|
||||||
text "That POLIWAG that"
|
text "That POLIWAG that"
|
||||||
line "got away…"
|
line "got away…"
|
||||||
cont "It was huge."
|
cont "It was huge."
|
||||||
|
@ -379,7 +379,7 @@ BirdKeeperVance1BeatenText:
|
||||||
line "stuff."
|
line "stuff."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x19dbf3:
|
BirdKeeperVanceLegendaryBirdsText:
|
||||||
text "ARTICUNO, ZAPDOS"
|
text "ARTICUNO, ZAPDOS"
|
||||||
line "and MOLTRES are"
|
line "and MOLTRES are"
|
||||||
|
|
||||||
|
@ -391,7 +391,7 @@ UnknownText_0x19dbf3:
|
||||||
cont "birds, though."
|
cont "birds, though."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x19dc67:
|
BirdKeeperVance2BeatenText:
|
||||||
text "Why can't I ever"
|
text "Why can't I ever"
|
||||||
line "beat you?"
|
line "beat you?"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue