mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Label some Unknown map text
This commit is contained in:
parent
39faa7a9f6
commit
a09cfc0c36
@ -13,38 +13,38 @@ BillScript:
|
||||
opentext
|
||||
checkevent EVENT_GOT_EEVEE
|
||||
iftrue .GotEevee
|
||||
writetext UnknownText_0x54c74
|
||||
writetext BillTakeThisEeveeText
|
||||
yesorno
|
||||
iffalse .Refused
|
||||
writetext UnknownText_0x54d3f
|
||||
writetext BillImCountingOnYouText
|
||||
buttonsound
|
||||
waitsfx
|
||||
checkcode VAR_PARTYCOUNT
|
||||
ifequal PARTY_LENGTH, .NoRoom
|
||||
writetext UnknownText_0x54dae
|
||||
writetext ReceivedEeveeText
|
||||
playsound SFX_CAUGHT_MON
|
||||
waitsfx
|
||||
givepoke EEVEE, 20
|
||||
setevent EVENT_GOT_EEVEE
|
||||
writetext UnknownText_0x54dc1
|
||||
writetext BillEeveeMayEvolveText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.NoRoom:
|
||||
writetext UnknownText_0x54e02
|
||||
writetext BillPartyFullText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.Refused:
|
||||
writetext UnknownText_0x54e2d
|
||||
writetext BillNoEeveeText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.GotEevee:
|
||||
writetext UnknownText_0x54e42
|
||||
writetext BillPopWontWorkText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -54,13 +54,13 @@ BillsMomScript:
|
||||
opentext
|
||||
checkevent EVENT_MET_BILL
|
||||
iffalse .HaventMetBill
|
||||
writetext UnknownText_0x54ea8
|
||||
writetext BillsPopText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.HaventMetBill:
|
||||
writetext UnknownText_0x54f4e
|
||||
writetext BillsMomText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -70,30 +70,30 @@ BillsSisterScript:
|
||||
opentext
|
||||
checkcellnum PHONE_BILL
|
||||
iftrue .GotBillsNumber
|
||||
writetext UnknownText_0x54f9e
|
||||
writetext BillsSisterUsefulNumberText
|
||||
askforphonenumber PHONE_BILL
|
||||
ifequal PHONE_CONTACTS_FULL, .NoRoom
|
||||
ifequal PHONE_CONTACT_REFUSED, .Refused
|
||||
waitsfx
|
||||
addcellnum PHONE_BILL
|
||||
writetext UnknownText_0x54fd9
|
||||
writetext RecordedBillsNumberText
|
||||
playsound SFX_REGISTER_PHONE_NUMBER
|
||||
waitsfx
|
||||
buttonsound
|
||||
.GotBillsNumber:
|
||||
writetext UnknownText_0x55069
|
||||
writetext BillsSisterStorageSystemText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.Refused:
|
||||
writetext UnknownText_0x54ff3
|
||||
writetext BillsSisterRefusedNumberText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.NoRoom:
|
||||
writetext UnknownText_0x55046
|
||||
writetext BillsSisterPhoneFullText
|
||||
buttonsound
|
||||
jump .Refused
|
||||
|
||||
@ -106,7 +106,7 @@ BillsHouseBookshelf2:
|
||||
BillsHouseRadio:
|
||||
jumpstd radio2
|
||||
|
||||
UnknownText_0x54c74:
|
||||
BillTakeThisEeveeText:
|
||||
text "BILL: Hi, <PLAYER>!"
|
||||
line "Do us a favor and"
|
||||
cont "take this EEVEE."
|
||||
@ -126,7 +126,7 @@ UnknownText_0x54c74:
|
||||
cont "<PLAYER>?"
|
||||
done
|
||||
|
||||
UnknownText_0x54d3f:
|
||||
BillImCountingOnYouText:
|
||||
text "BILL: I knew you'd"
|
||||
line "come through!"
|
||||
|
||||
@ -140,12 +140,12 @@ UnknownText_0x54d3f:
|
||||
line "it!"
|
||||
done
|
||||
|
||||
UnknownText_0x54dae:
|
||||
ReceivedEeveeText:
|
||||
text "<PLAYER> received"
|
||||
line "EEVEE!"
|
||||
done
|
||||
|
||||
UnknownText_0x54dc1:
|
||||
BillEeveeMayEvolveText:
|
||||
text "BILL: PROF.ELM"
|
||||
line "claims EEVEE may"
|
||||
|
||||
@ -153,18 +153,18 @@ UnknownText_0x54dc1:
|
||||
line "unknown ways."
|
||||
done
|
||||
|
||||
UnknownText_0x54e02:
|
||||
BillPartyFullText:
|
||||
text "Whoa, wait. You"
|
||||
line "can't carry any"
|
||||
cont "more #MON."
|
||||
done
|
||||
|
||||
UnknownText_0x54e2d:
|
||||
BillNoEeveeText:
|
||||
text "Oh… Now what to"
|
||||
line "do?"
|
||||
done
|
||||
|
||||
UnknownText_0x54e42:
|
||||
BillPopWontWorkText:
|
||||
text "BILL: My pop, he"
|
||||
line "won't work. All he"
|
||||
|
||||
@ -175,7 +175,7 @@ UnknownText_0x54e42:
|
||||
line "a real headache…"
|
||||
done
|
||||
|
||||
UnknownText_0x54ea8:
|
||||
BillsPopText:
|
||||
text "Oh, you collect"
|
||||
line "#MON? My son"
|
||||
cont "BILL is an expert."
|
||||
@ -193,7 +193,7 @@ UnknownText_0x54ea8:
|
||||
line "being called…"
|
||||
done
|
||||
|
||||
UnknownText_0x54f4e:
|
||||
BillsMomText:
|
||||
text "My husband was"
|
||||
line "once known as a"
|
||||
|
||||
@ -204,7 +204,7 @@ UnknownText_0x54f4e:
|
||||
line "father."
|
||||
done
|
||||
|
||||
UnknownText_0x54f9e:
|
||||
BillsSisterUsefulNumberText:
|
||||
text "Are you a trainer?"
|
||||
|
||||
para "I've got a useful"
|
||||
@ -212,12 +212,12 @@ UnknownText_0x54f9e:
|
||||
cont "you."
|
||||
done
|
||||
|
||||
UnknownText_0x54fd9:
|
||||
RecordedBillsNumberText:
|
||||
text "<PLAYER> recorded"
|
||||
line "BILL's number."
|
||||
done
|
||||
|
||||
UnknownText_0x54ff3:
|
||||
BillsSisterRefusedNumberText:
|
||||
text "My brother made"
|
||||
line "the PC #MON"
|
||||
cont "storage system."
|
||||
@ -227,12 +227,12 @@ UnknownText_0x54ff3:
|
||||
cont "number…"
|
||||
done
|
||||
|
||||
UnknownText_0x55046:
|
||||
BillsSisterPhoneFullText:
|
||||
text "You can't record"
|
||||
line "any more numbers."
|
||||
done
|
||||
|
||||
UnknownText_0x55069:
|
||||
BillsSisterStorageSystemText:
|
||||
text "My big brother"
|
||||
line "BILL made the PC"
|
||||
|
||||
|
@ -9,10 +9,10 @@ CeladonMansion3F_MapScripts:
|
||||
|
||||
db 0 ; callbacks
|
||||
|
||||
CeladonMansion3FCooltrainerMScript:
|
||||
GameFreakGameDesignerScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x716ce
|
||||
writetext GameFreakGameDesignerText
|
||||
checkcode VAR_DEXCAUGHT
|
||||
ifgreater NUM_POKEMON - 2 - 1, .CompletedPokedex ; ignore Mew and Celebi
|
||||
waitbutton
|
||||
@ -21,30 +21,30 @@ CeladonMansion3FCooltrainerMScript:
|
||||
|
||||
.CompletedPokedex:
|
||||
buttonsound
|
||||
writetext UnknownText_0x71725
|
||||
writetext GameFreakGameDesignerCompletedPokedexText
|
||||
playsound SFX_DEX_FANFARE_230_PLUS
|
||||
waitsfx
|
||||
writetext UnknownText_0x71760
|
||||
writetext GameFreakGameDesignerPauseForDiplomaText
|
||||
buttonsound
|
||||
special Diploma
|
||||
writetext UnknownText_0x71763
|
||||
writetext GameFreakGameDesignerAfterDiplomaText
|
||||
waitbutton
|
||||
closetext
|
||||
setevent EVENT_ENABLE_DIPLOMA_PRINTING
|
||||
end
|
||||
|
||||
CeladonMansion3FGymGuyScript:
|
||||
GameFreakGraphicArtistScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_ENABLE_DIPLOMA_PRINTING
|
||||
iftrue .CanPrintDiploma
|
||||
writetext UnknownText_0x717b4
|
||||
writetext GameFreakGraphicArtistText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.CanPrintDiploma:
|
||||
writetext UnknownText_0x717d8
|
||||
writetext GameFreakGraphicArtistPrintDiplomaText
|
||||
yesorno
|
||||
iffalse .Refused
|
||||
special PrintDiploma
|
||||
@ -52,23 +52,23 @@ CeladonMansion3FGymGuyScript:
|
||||
end
|
||||
|
||||
.Refused:
|
||||
writetext UnknownText_0x71830
|
||||
writetext GameFreakGraphicArtistRefusedText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.CancelPrinting:
|
||||
; unused
|
||||
writetext UnknownText_0x71863
|
||||
writetext GameFreakGraphicArtistErrorText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
CeladonMansion3FSuperNerdScript:
|
||||
jumptextfaceplayer CeladonMansion3FSuperNerdText
|
||||
GameFreakProgrammerScript:
|
||||
jumptextfaceplayer GameFreakProgrammerText
|
||||
|
||||
CeladonMansion3FFisherScript:
|
||||
jumptextfaceplayer CeladonMansion3FFisherText
|
||||
GameFreakCharacterDesignerScript:
|
||||
jumptextfaceplayer GameFreakCharacterDesignerText
|
||||
|
||||
CeladonMansion3FDevRoomSign:
|
||||
jumptext CeladonMansion3FDevRoomSignText
|
||||
@ -82,7 +82,7 @@ CeladonMansion3FGameProgram:
|
||||
CeladonMansion3FReferenceMaterial:
|
||||
jumptext CeladonMansion3FReferenceMaterialText
|
||||
|
||||
UnknownText_0x716ce:
|
||||
GameFreakGameDesignerText:
|
||||
text "Is that right?"
|
||||
|
||||
para "I'm the GAME"
|
||||
@ -93,7 +93,7 @@ UnknownText_0x716ce:
|
||||
cont "but don't give up!"
|
||||
done
|
||||
|
||||
UnknownText_0x71725:
|
||||
GameFreakGameDesignerCompletedPokedexText:
|
||||
text "Wow! Excellent!"
|
||||
line "You completed your"
|
||||
cont "#DEX!"
|
||||
@ -101,11 +101,11 @@ UnknownText_0x71725:
|
||||
para "Congratulations!"
|
||||
done
|
||||
|
||||
UnknownText_0x71760:
|
||||
GameFreakGameDesignerPauseForDiplomaText:
|
||||
text "…"
|
||||
done
|
||||
|
||||
UnknownText_0x71763:
|
||||
GameFreakGameDesignerAfterDiplomaText:
|
||||
text "The GRAPHIC ARTIST"
|
||||
line "will print out a"
|
||||
cont "DIPLOMA for you."
|
||||
@ -114,14 +114,14 @@ UnknownText_0x71763:
|
||||
line "it off."
|
||||
done
|
||||
|
||||
UnknownText_0x717b4:
|
||||
GameFreakGraphicArtistText:
|
||||
text "I'm the GRAPHIC"
|
||||
line "ARTIST."
|
||||
|
||||
para "I drew you!"
|
||||
done
|
||||
|
||||
UnknownText_0x717d8:
|
||||
GameFreakGraphicArtistPrintDiplomaText:
|
||||
text "I'm the GRAPHIC"
|
||||
line "ARTIST."
|
||||
|
||||
@ -132,19 +132,19 @@ UnknownText_0x717d8:
|
||||
line "out your DIPLOMA?"
|
||||
done
|
||||
|
||||
UnknownText_0x71830:
|
||||
GameFreakGraphicArtistRefusedText:
|
||||
text "Give me a shout if"
|
||||
line "you want your"
|
||||
cont "DIPLOMA printed."
|
||||
done
|
||||
|
||||
UnknownText_0x71863:
|
||||
GameFreakGraphicArtistErrorText:
|
||||
text "Something's wrong."
|
||||
line "I'll have to can-"
|
||||
cont "cel printing."
|
||||
done
|
||||
|
||||
CeladonMansion3FSuperNerdText:
|
||||
GameFreakProgrammerText:
|
||||
text "Who, me? I'm the"
|
||||
line "PROGRAMMER."
|
||||
|
||||
@ -152,7 +152,7 @@ CeladonMansion3FSuperNerdText:
|
||||
line "machines!"
|
||||
done
|
||||
|
||||
CeladonMansion3FFisherText:
|
||||
GameFreakCharacterDesignerText:
|
||||
text "Aren't the TWINS"
|
||||
line "adorable?"
|
||||
|
||||
@ -206,7 +206,7 @@ CeladonMansion3F_MapEvents:
|
||||
bg_event 1, 3, BGEVENT_UP, CeladonMansion3FReferenceMaterial
|
||||
|
||||
db 4 ; object events
|
||||
object_event 3, 6, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonMansion3FCooltrainerMScript, -1
|
||||
object_event 3, 4, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, CeladonMansion3FGymGuyScript, -1
|
||||
object_event 0, 7, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, CeladonMansion3FSuperNerdScript, -1
|
||||
object_event 0, 4, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 2, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonMansion3FFisherScript, -1
|
||||
object_event 3, 6, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GameFreakGameDesignerScript, -1
|
||||
object_event 3, 4, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, GameFreakGraphicArtistScript, -1
|
||||
object_event 0, 7, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, GameFreakProgrammerScript, -1
|
||||
object_event 0, 4, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 2, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GameFreakCharacterDesignerScript, -1
|
||||
|
@ -11,34 +11,34 @@ CeladonMansionRoofHousePharmacistScript:
|
||||
opentext
|
||||
checkevent EVENT_GOT_TM03_CURSE
|
||||
iftrue .GotCurse
|
||||
writetext UnknownText_0x71b27
|
||||
writetext CeladonMansionRoofHousePharmacistIntroText
|
||||
buttonsound
|
||||
checktime NITE
|
||||
iftrue .Night
|
||||
writetext UnknownText_0x71b4a
|
||||
writetext CeladonMansionRoofHousePharmacistNotNightText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.Night:
|
||||
writetext UnknownText_0x71ba3
|
||||
writetext CeladonMansionRoofHousePharmacistStoryText
|
||||
buttonsound
|
||||
verbosegiveitem TM_CURSE
|
||||
iffalse .NoRoom
|
||||
setevent EVENT_GOT_TM03_CURSE
|
||||
.GotCurse:
|
||||
writetext UnknownText_0x71db3
|
||||
writetext CeladonMansionRoofHousePharmacistCurseText
|
||||
waitbutton
|
||||
.NoRoom:
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownText_0x71b27:
|
||||
CeladonMansionRoofHousePharmacistIntroText:
|
||||
text "Let me recount a"
|
||||
line "terrifying tale…"
|
||||
done
|
||||
|
||||
UnknownText_0x71b4a:
|
||||
CeladonMansionRoofHousePharmacistNotNightText:
|
||||
text "Then again, it's"
|
||||
line "not as scary while"
|
||||
|
||||
@ -49,7 +49,7 @@ UnknownText_0x71b4a:
|
||||
line "sunset, OK?"
|
||||
done
|
||||
|
||||
UnknownText_0x71ba3:
|
||||
CeladonMansionRoofHousePharmacistStoryText:
|
||||
text "Once upon a time,"
|
||||
line "there was a little"
|
||||
|
||||
@ -104,7 +104,7 @@ UnknownText_0x71ba3:
|
||||
cont "take this--TM03!"
|
||||
done
|
||||
|
||||
UnknownText_0x71db3:
|
||||
CeladonMansionRoofHousePharmacistCurseText:
|
||||
text "TM03 is CURSE."
|
||||
|
||||
para "It's a terrifying"
|
||||
|
@ -26,18 +26,18 @@ CeruleanGym_MapScripts:
|
||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntRunsIntoYouMovement
|
||||
playmusic MUSIC_ROCKET_ENCOUNTER
|
||||
opentext
|
||||
writetext UnknownText_0x1884fb
|
||||
writetext CeruleanGymGruntIntroText
|
||||
waitbutton
|
||||
closetext
|
||||
showemote EMOTE_SHOCK, CERULEANGYM_ROCKET, 15
|
||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntBacksAwayMovement
|
||||
opentext
|
||||
writetext UnknownText_0x188574
|
||||
writetext CeruleanGymGruntBigMistakeText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntMovesCloseMovement
|
||||
opentext
|
||||
writetext UnknownText_0x1885a5
|
||||
writetext CeruleanGymGruntByeText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntRunsOutMovement
|
||||
@ -61,10 +61,10 @@ CeruleanGymMistyScript:
|
||||
opentext
|
||||
checkflag ENGINE_CASCADEBADGE
|
||||
iftrue .FightDone
|
||||
writetext UnknownText_0x188674
|
||||
writetext MistyIntroText
|
||||
waitbutton
|
||||
closetext
|
||||
winlosstext UnknownText_0x18870c, 0
|
||||
winlosstext MistyWinLossText, 0
|
||||
loadtrainer MISTY, MISTY1
|
||||
startbattle
|
||||
reloadmapafterbattle
|
||||
@ -73,12 +73,12 @@ CeruleanGymMistyScript:
|
||||
setevent EVENT_BEAT_SWIMMERF_BRIANA
|
||||
setevent EVENT_BEAT_SWIMMERM_PARKER
|
||||
opentext
|
||||
writetext UnknownText_0x188768
|
||||
writetext ReceivedCascadeBadgeText
|
||||
playsound SFX_GET_BADGE
|
||||
waitsfx
|
||||
setflag ENGINE_CASCADEBADGE
|
||||
.FightDone:
|
||||
writetext UnknownText_0x188782
|
||||
writetext MistyFightDoneText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -139,7 +139,7 @@ CeruleanGymStatue1:
|
||||
checkevent EVENT_TRAINERS_IN_CERULEAN_GYM
|
||||
iffalse CeruleanGymStatue
|
||||
opentext
|
||||
writetext CeruleanGymNote1
|
||||
writetext CeruleanGymNote1Text
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -148,7 +148,7 @@ CeruleanGymStatue2:
|
||||
checkevent EVENT_TRAINERS_IN_CERULEAN_GYM
|
||||
iffalse CeruleanGymStatue
|
||||
opentext
|
||||
writetext CeruleanGymNote2
|
||||
writetext CeruleanGymNote2Text
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -195,7 +195,7 @@ CeruleanGymGruntBacksAwayMovement:
|
||||
remove_fixed_facing
|
||||
step_end
|
||||
|
||||
UnknownText_0x1884fb:
|
||||
CeruleanGymGruntIntroText:
|
||||
text "Oops! I so sorry!"
|
||||
line "You not hurt,"
|
||||
cont "okay?"
|
||||
@ -207,13 +207,13 @@ UnknownText_0x1884fb:
|
||||
cont "seen by somebody."
|
||||
done
|
||||
|
||||
UnknownText_0x188574:
|
||||
CeruleanGymGruntBigMistakeText:
|
||||
text "Oh no! You seen"
|
||||
line "me already! I make"
|
||||
cont "big mistake!"
|
||||
done
|
||||
|
||||
UnknownText_0x1885a5:
|
||||
CeruleanGymGruntByeText:
|
||||
text "Hey, you! Forget"
|
||||
line "you see me, okay?"
|
||||
|
||||
@ -226,19 +226,19 @@ UnknownText_0x1885a5:
|
||||
para "Bye-bye a go-go!"
|
||||
done
|
||||
|
||||
CeruleanGymNote1:
|
||||
CeruleanGymNote1Text:
|
||||
text "Sorry, I'll be out"
|
||||
line "for a while."
|
||||
cont "MISTY, GYM LEADER"
|
||||
done
|
||||
|
||||
CeruleanGymNote2:
|
||||
CeruleanGymNote2Text:
|
||||
text "Since MISTY's out,"
|
||||
line "we'll be away too."
|
||||
cont "GYM TRAINERS"
|
||||
done
|
||||
|
||||
UnknownText_0x188674:
|
||||
MistyIntroText:
|
||||
text "MISTY: I was ex-"
|
||||
line "pecting you, you"
|
||||
cont "pest!"
|
||||
@ -254,7 +254,7 @@ UnknownText_0x188674:
|
||||
line "#MON are tough!"
|
||||
done
|
||||
|
||||
UnknownText_0x18870c:
|
||||
MistyWinLossText:
|
||||
text "MISTY: You really"
|
||||
line "are good…"
|
||||
|
||||
@ -265,12 +265,12 @@ UnknownText_0x18870c:
|
||||
line "CASCADEBADGE."
|
||||
done
|
||||
|
||||
UnknownText_0x188768:
|
||||
ReceivedCascadeBadgeText:
|
||||
text "<PLAYER> received"
|
||||
line "CASCADEBADGE."
|
||||
done
|
||||
|
||||
UnknownText_0x188782:
|
||||
MistyFightDoneText:
|
||||
text "MISTY: Are there"
|
||||
line "many strong train-"
|
||||
cont "ers in JOHTO? Like"
|
||||
|
@ -15,23 +15,23 @@ AcademyEarl:
|
||||
applymovement EARLSPOKEMONACADEMY_EARL, AcademyEarlSpinMovement
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x68b3b
|
||||
writetext AcademyEarlIntroText
|
||||
yesorno
|
||||
iffalse .Part1
|
||||
writetext UnknownText_0x68bbd
|
||||
writetext AcademyEarlTeachHowToWinText
|
||||
yesorno
|
||||
iffalse .Done
|
||||
.Part1:
|
||||
writetext UnknownText_0x68c51
|
||||
writetext AcademyEarlTeachMoreText
|
||||
yesorno
|
||||
iffalse .Done
|
||||
writetext UnknownText_0x68c7b
|
||||
writetext AcademyEarlTeachHowToRaiseWellText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.Done:
|
||||
writetext UnknownText_0x68d31
|
||||
writetext AcademyEarlNoMoreToTeachText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -161,7 +161,7 @@ AcademyEarlSpinMovement:
|
||||
turn_head DOWN
|
||||
step_end
|
||||
|
||||
UnknownText_0x68b3b:
|
||||
AcademyEarlIntroText:
|
||||
text "EARL, I am!"
|
||||
|
||||
para "Wonderful are"
|
||||
@ -176,7 +176,7 @@ UnknownText_0x68b3b:
|
||||
cont "a winner is you?"
|
||||
done
|
||||
|
||||
UnknownText_0x68bbd:
|
||||
AcademyEarlTeachHowToWinText:
|
||||
text "Good! Teach you,"
|
||||
line "I will!"
|
||||
|
||||
@ -192,13 +192,13 @@ UnknownText_0x68bbd:
|
||||
line "want to hear?"
|
||||
done
|
||||
|
||||
UnknownText_0x68c51:
|
||||
AcademyEarlTeachMoreText:
|
||||
text "So, want to know"
|
||||
line "how to raise"
|
||||
cont "#MON well?"
|
||||
done
|
||||
|
||||
UnknownText_0x68c7b:
|
||||
AcademyEarlTeachHowToRaiseWellText:
|
||||
text "Fine! Teach you,"
|
||||
line "I will!"
|
||||
|
||||
@ -219,7 +219,7 @@ UnknownText_0x68c7b:
|
||||
cont "become!"
|
||||
done
|
||||
|
||||
UnknownText_0x68d31:
|
||||
AcademyEarlNoMoreToTeachText:
|
||||
text "Oh! Smart student"
|
||||
line "you are! Nothing"
|
||||
cont "more do I teach!"
|
||||
|
@ -26,10 +26,10 @@ EcruteakGymMortyScript:
|
||||
opentext
|
||||
checkevent EVENT_BEAT_MORTY
|
||||
iftrue .FightDone
|
||||
writetext UnknownText_0x99e65
|
||||
writetext MortyIntroText
|
||||
waitbutton
|
||||
closetext
|
||||
winlosstext UnknownText_0x9a00a, 0
|
||||
winlosstext MortyWinLossText, 0
|
||||
loadtrainer MORTY, MORTY1
|
||||
startbattle
|
||||
reloadmapafterbattle
|
||||
@ -62,7 +62,7 @@ EcruteakGymMortyScript:
|
||||
end
|
||||
|
||||
.GotShadowBall:
|
||||
writetext UnknownText_0x9a145
|
||||
writetext MortyFightDoneText
|
||||
waitbutton
|
||||
.NoRoomForShadowBall:
|
||||
closetext
|
||||
@ -83,7 +83,7 @@ EcruteakGymClosed:
|
||||
applymovement PLAYER, EcruteakGymPlayerStepUpMovement
|
||||
applymovement ECRUTEAKGYM_GRAMPS, EcruteakGymGrampsSlowStepDownMovement
|
||||
opentext
|
||||
writetext UnknownText_0x9a49c
|
||||
writetext EcruteakGymClosedText
|
||||
waitbutton
|
||||
closetext
|
||||
follow PLAYER, ECRUTEAKGYM_GRAMPS
|
||||
@ -177,7 +177,7 @@ EcruteakGymGrampsSlowStepDownMovement:
|
||||
slow_step DOWN
|
||||
step_end
|
||||
|
||||
UnknownText_0x99e65:
|
||||
MortyIntroText:
|
||||
text "Good of you to"
|
||||
line "have come."
|
||||
|
||||
@ -218,7 +218,7 @@ UnknownText_0x99e65:
|
||||
cont "level!"
|
||||
done
|
||||
|
||||
UnknownText_0x9a00a:
|
||||
MortyWinLossText:
|
||||
text "I'm not good"
|
||||
line "enough yet…"
|
||||
|
||||
@ -259,7 +259,7 @@ MortyText_ShadowBallSpeech:
|
||||
line "appeals to you."
|
||||
done
|
||||
|
||||
UnknownText_0x9a145:
|
||||
MortyFightDoneText:
|
||||
text "I see…"
|
||||
|
||||
para "Your journey has"
|
||||
@ -374,7 +374,7 @@ EcruteakGymGuyWinText:
|
||||
cont "pure terror!"
|
||||
done
|
||||
|
||||
UnknownText_0x9a49c:
|
||||
EcruteakGymClosedText:
|
||||
text "MORTY, the GYM"
|
||||
line "LEADER, is absent."
|
||||
|
||||
|
@ -111,7 +111,7 @@ ElmCheckEverstone:
|
||||
writebyte TOGETIC
|
||||
special FindPartyMonThatSpeciesYourTrainerID
|
||||
iftrue ShowElmTogepiScript
|
||||
writetext UnknownText_0x79a40
|
||||
writetext ElmThoughtEggHatchedText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -1064,7 +1064,7 @@ ElmWaitingEggHatchText:
|
||||
line "EGG changed any?"
|
||||
done
|
||||
|
||||
UnknownText_0x79a40:
|
||||
ElmThoughtEggHatchedText:
|
||||
text "<PLAY_G>? I thought"
|
||||
line "the EGG hatched."
|
||||
|
||||
|
@ -127,7 +127,7 @@ WorriedGrandpaSceneLeft:
|
||||
applymovement PLAYER, MovementData_0x7522e
|
||||
applymovement FASTSHIP1F_GENTLEMAN, MovementData_0x75220
|
||||
opentext
|
||||
writetext UnknownText_0x75412
|
||||
writetext FastShip1FGrandpaText
|
||||
waitbutton
|
||||
closetext
|
||||
turnobject PLAYER, RIGHT
|
||||
@ -257,7 +257,7 @@ FastShip1FSailor3Text:
|
||||
cont "their cabins."
|
||||
done
|
||||
|
||||
UnknownText_0x75412:
|
||||
FastShip1FGrandpaText:
|
||||
text "Whoa! Excuse me."
|
||||
line "I was in a hurry!"
|
||||
|
||||
|
@ -57,7 +57,7 @@ FastShipB1FSailorScript:
|
||||
iftrue .LazySailor
|
||||
checkevent EVENT_FAST_SHIP_INFORMED_ABOUT_LAZY_SAILOR
|
||||
iftrue .AlreadyInformed
|
||||
writetext UnknownText_0x7687b
|
||||
writetext FastShipB1FOnDutySailorText
|
||||
waitbutton
|
||||
closetext
|
||||
setevent EVENT_FAST_SHIP_INFORMED_ABOUT_LAZY_SAILOR
|
||||
@ -65,13 +65,13 @@ FastShipB1FSailorScript:
|
||||
end
|
||||
|
||||
.AlreadyInformed:
|
||||
writetext UnknownText_0x76907
|
||||
writetext FastShipB1FOnDutySailorRefusedText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.LazySailor:
|
||||
writetext UnknownText_0x7692e
|
||||
writetext FastShipB1FOnDutySailorThanksText
|
||||
checkevent EVENT_FAST_SHIP_FOUND_GIRL
|
||||
iffalse .NotFoundGirl
|
||||
waitbutton
|
||||
@ -80,13 +80,13 @@ FastShipB1FSailorScript:
|
||||
|
||||
.NotFoundGirl:
|
||||
buttonsound
|
||||
writetext UnknownText_0x7696d
|
||||
writetext FastShipB1FOnDutySailorSawLittleGirlText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.FirstTime:
|
||||
writetext UnknownText_0x7699d
|
||||
writetext FastShipB1FOnDutySailorDirectionsText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -218,7 +218,7 @@ FashShipB1FSailorBlocksLeftMovement:
|
||||
turn_head DOWN
|
||||
step_end
|
||||
|
||||
UnknownText_0x7687b:
|
||||
FastShipB1FOnDutySailorText:
|
||||
text "Hey, kid. Could I"
|
||||
line "get you to look"
|
||||
cont "for my buddy?"
|
||||
@ -232,14 +232,14 @@ UnknownText_0x7687b:
|
||||
cont "duty right now."
|
||||
done
|
||||
|
||||
UnknownText_0x76907:
|
||||
FastShipB1FOnDutySailorRefusedText:
|
||||
text "Oh, gee…"
|
||||
|
||||
para "The CAPTAIN will"
|
||||
line "be furious…"
|
||||
done
|
||||
|
||||
UnknownText_0x7692e:
|
||||
FastShipB1FOnDutySailorThanksText:
|
||||
text "Thanks, kid!"
|
||||
line "I chewed him out"
|
||||
|
||||
@ -247,14 +247,14 @@ UnknownText_0x7692e:
|
||||
line "slacking off!"
|
||||
done
|
||||
|
||||
UnknownText_0x7696d:
|
||||
FastShipB1FOnDutySailorSawLittleGirlText:
|
||||
text "A little girl?"
|
||||
|
||||
para "I may have seen"
|
||||
line "her go by here."
|
||||
done
|
||||
|
||||
UnknownText_0x7699d:
|
||||
FastShipB1FOnDutySailorDirectionsText:
|
||||
text "The dining room is"
|
||||
line "up ahead."
|
||||
|
||||
|
@ -82,17 +82,17 @@ FastShipLazySailorScript:
|
||||
playmusic MUSIC_HIKER_ENCOUNTER
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x75812
|
||||
writetext SailorStanlySeenText
|
||||
waitbutton
|
||||
closetext
|
||||
winlosstext UnknownText_0x75897, 0
|
||||
winlosstext SailorStanlyBeatenText, 0
|
||||
loadtrainer SAILOR, STANLY
|
||||
startbattle
|
||||
reloadmap
|
||||
special HealParty
|
||||
setevent EVENT_BEAT_SAILOR_STANLY
|
||||
opentext
|
||||
writetext UnknownText_0x758b1
|
||||
writetext SailorStanlyAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
setevent EVENT_FAST_SHIP_LAZY_SAILOR
|
||||
@ -200,7 +200,7 @@ HikerNolandAfterBattleText:
|
||||
line "KANTO?"
|
||||
done
|
||||
|
||||
UnknownText_0x75812:
|
||||
SailorStanlySeenText:
|
||||
text "Yeah, I'm a sail-"
|
||||
line "or, all right."
|
||||
|
||||
@ -215,12 +215,12 @@ UnknownText_0x75812:
|
||||
line "Let's battle!"
|
||||
done
|
||||
|
||||
UnknownText_0x75897:
|
||||
SailorStanlyBeatenText:
|
||||
text "Sorry! It's all my"
|
||||
line "fault!"
|
||||
done
|
||||
|
||||
UnknownText_0x758b1:
|
||||
SailorStanlyAfterBattleText:
|
||||
text "Being a sailor, I"
|
||||
line "have to do phys-"
|
||||
cont "ical labor. It's"
|
||||
|
@ -50,14 +50,14 @@ TrainerGuitaristClyde:
|
||||
special Mobile_DummyReturnFalse
|
||||
iftrue .mobile
|
||||
opentext
|
||||
writetext UnknownText_0x75d65
|
||||
writetext GuitaristClydeAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.mobile
|
||||
opentext
|
||||
writetext UnknownText_0x75cfe
|
||||
writetext GuitaristClydeAfterBattleMobileText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -180,7 +180,7 @@ GuitaristClydeBeatenText:
|
||||
line "Total distortion!"
|
||||
done
|
||||
|
||||
UnknownText_0x75cfe:
|
||||
GuitaristClydeAfterBattleMobileText:
|
||||
text "I was going to"
|
||||
line "make my debut at"
|
||||
cont "the BATTLE TOWER…"
|
||||
@ -190,7 +190,7 @@ UnknownText_0x75cfe:
|
||||
cont "redo my training…"
|
||||
done
|
||||
|
||||
UnknownText_0x75d65:
|
||||
GuitaristClydeAfterBattleText:
|
||||
text "Speaking of the"
|
||||
line "RADIO STATION,"
|
||||
|
||||
|
@ -14,27 +14,27 @@ GoldenrodBikeShopClerkScript:
|
||||
opentext
|
||||
checkevent EVENT_GOT_BICYCLE
|
||||
iftrue .GotBicycle
|
||||
writetext UnknownText_0x54787
|
||||
writetext GoldenrodBikeShopClerkIntroText
|
||||
yesorno
|
||||
iffalse .Refused
|
||||
writetext UnknownText_0x547f8
|
||||
writetext GoldenrodBikeShopClerkAgreedText
|
||||
buttonsound
|
||||
waitsfx
|
||||
giveitem BICYCLE
|
||||
writetext UnknownText_0x54848
|
||||
writetext BorrowedABicycleText
|
||||
playsound SFX_KEY_ITEM
|
||||
waitsfx
|
||||
itemnotify
|
||||
setflag ENGINE_BIKE_SHOP_CALL_ENABLED
|
||||
setevent EVENT_GOT_BICYCLE
|
||||
.GotBicycle:
|
||||
writetext UnknownText_0x5485f
|
||||
writetext GoldenrodBikeShopClerkFirstRateBikesText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.Refused:
|
||||
writetext UnknownText_0x54898
|
||||
writetext GoldenrodBikeShopClerkRefusedText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -46,7 +46,7 @@ GoldenrodBikeShopJustReleasedCompactBike:
|
||||
GoldenrodBikeShopBicycle:
|
||||
jumptext GoldenrodBikeShopBicycleText
|
||||
|
||||
UnknownText_0x54787:
|
||||
GoldenrodBikeShopClerkIntroText:
|
||||
text "…sigh… I moved"
|
||||
line "here, but I can't"
|
||||
|
||||
@ -58,7 +58,7 @@ UnknownText_0x54787:
|
||||
cont "tise for me?"
|
||||
done
|
||||
|
||||
UnknownText_0x547f8:
|
||||
GoldenrodBikeShopClerkAgreedText:
|
||||
text "Really? Great!"
|
||||
|
||||
para "Give me your name"
|
||||
@ -68,12 +68,12 @@ UnknownText_0x547f8:
|
||||
line "a BICYCLE."
|
||||
done
|
||||
|
||||
UnknownText_0x54848:
|
||||
BorrowedABicycleText:
|
||||
text "<PLAYER> borrowed a"
|
||||
line "BICYCLE."
|
||||
done
|
||||
|
||||
UnknownText_0x5485f:
|
||||
GoldenrodBikeShopClerkFirstRateBikesText:
|
||||
text "My BICYCLES are"
|
||||
line "first-rate! You"
|
||||
|
||||
@ -81,13 +81,12 @@ UnknownText_0x5485f:
|
||||
line "anywhere."
|
||||
done
|
||||
|
||||
UnknownText_0x54898:
|
||||
GoldenrodBikeShopClerkRefusedText:
|
||||
text "…sigh… Oh, for"
|
||||
line "the kindness of"
|
||||
cont "people…"
|
||||
done
|
||||
|
||||
; possibly unused
|
||||
GoldenrodBikeShopJustReleasedCompactBikeText:
|
||||
text "Just released!"
|
||||
|
||||
|
@ -55,7 +55,7 @@ GoldenrodDeptStoreB1FBlackBelt3Script:
|
||||
|
||||
GoldenrodDeptStoreB1FMachopScript:
|
||||
opentext
|
||||
writetext UnknownText_0x7d8bb
|
||||
writetext GoldenrodDeptStoreB1FMachokeText
|
||||
cry MACHOKE
|
||||
waitbutton
|
||||
closetext
|
||||
@ -103,7 +103,7 @@ GoldenrodDeptStoreB1FBlackBelt3Text:
|
||||
line "want it!"
|
||||
done
|
||||
|
||||
UnknownText_0x7d8bb:
|
||||
GoldenrodDeptStoreB1FMachokeText:
|
||||
text "MACHOKE: Maaacho!"
|
||||
done
|
||||
|
||||
|
@ -49,7 +49,7 @@ GoldenrodDeptStoreRoofPokefanFScript:
|
||||
GoldenrodDeptStoreRoofFisherScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x567d2
|
||||
writetext GoldenrodDeptStoreRoofFisherText
|
||||
waitbutton
|
||||
closetext
|
||||
turnobject GOLDENRODDEPTSTOREROOF_FISHER, UP
|
||||
@ -60,12 +60,12 @@ GoldenrodDeptStoreRoofTwinScript:
|
||||
|
||||
GoldenrodDeptStoreRoofSuperNerdScript:
|
||||
opentext
|
||||
writetext UnknownText_0x56867
|
||||
writetext GoldenrodDeptStoreRoofSuperNerdOhWowText
|
||||
waitbutton
|
||||
closetext
|
||||
turnobject GOLDENRODDEPTSTOREROOF_SUPER_NERD, UP
|
||||
opentext
|
||||
writetext UnknownText_0x56871
|
||||
writetext GoldenrodDeptStoreRoofSuperNerdQuitBotheringMeText
|
||||
waitbutton
|
||||
closetext
|
||||
turnobject GOLDENRODDEPTSTOREROOF_SUPER_NERD, RIGHT
|
||||
@ -102,7 +102,7 @@ GoldenrodDeptStoreRoofPokefanFText:
|
||||
line "from shopping."
|
||||
done
|
||||
|
||||
UnknownText_0x567d2:
|
||||
GoldenrodDeptStoreRoofFisherText:
|
||||
text "Pardon? Who says"
|
||||
line "an adult can't get"
|
||||
cont "into this?"
|
||||
@ -120,11 +120,11 @@ GoldenrodDeptStoreRoofTwinText:
|
||||
cont "so often."
|
||||
done
|
||||
|
||||
UnknownText_0x56867:
|
||||
GoldenrodDeptStoreRoofSuperNerdOhWowText:
|
||||
text "Oh, wow!"
|
||||
done
|
||||
|
||||
UnknownText_0x56871:
|
||||
GoldenrodDeptStoreRoofSuperNerdQuitBotheringMeText:
|
||||
text "Will you quit"
|
||||
line "bothering me?"
|
||||
done
|
||||
|
@ -71,17 +71,17 @@ GoldenrodUndergroundWarehouseDirectorScript:
|
||||
opentext
|
||||
checkevent EVENT_RECEIVED_CARD_KEY
|
||||
iftrue .GotCardKey
|
||||
writetext UnknownText_0x7dbc6
|
||||
writetext DirectorIntroText
|
||||
buttonsound
|
||||
verbosegiveitem CARD_KEY
|
||||
setevent EVENT_RECEIVED_CARD_KEY
|
||||
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||
writetext UnknownText_0x7dc5b
|
||||
writetext DirectorCardKeyText
|
||||
buttonsound
|
||||
.GotCardKey:
|
||||
writetext UnknownText_0x7dc8d
|
||||
writetext DirectorAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -157,7 +157,7 @@ GruntM15AfterBattleText:
|
||||
cont "I'll remember you!"
|
||||
done
|
||||
|
||||
UnknownText_0x7dbc6:
|
||||
DirectorIntroText:
|
||||
text "DIRECTOR: Who?"
|
||||
line "What? You came to"
|
||||
cont "rescue me?"
|
||||
@ -176,13 +176,13 @@ UnknownText_0x7dbc6:
|
||||
line "CARD KEY."
|
||||
done
|
||||
|
||||
UnknownText_0x7dc5b:
|
||||
DirectorCardKeyText:
|
||||
text "DIRECTOR: Use that"
|
||||
line "to open the shut-"
|
||||
cont "ters on 3F."
|
||||
done
|
||||
|
||||
UnknownText_0x7dc8d:
|
||||
DirectorAfterText:
|
||||
text "I'm begging you to"
|
||||
line "help."
|
||||
|
||||
|
@ -89,13 +89,13 @@ IlexForestCharcoalApprenticeScript:
|
||||
opentext
|
||||
checkevent EVENT_HERDED_FARFETCHD
|
||||
iftrue .DoneFarfetchd
|
||||
writetext UnknownText_0x6ef5c
|
||||
writetext IlexForestApprenticeIntroText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.DoneFarfetchd:
|
||||
writetext UnknownText_0x6f019
|
||||
writetext IlexForestApprenticeAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -736,7 +736,7 @@ MovementData_0x6ef58:
|
||||
remove_fixed_facing
|
||||
step_end
|
||||
|
||||
UnknownText_0x6ef5c:
|
||||
IlexForestApprenticeIntroText:
|
||||
text "Oh, man… My boss"
|
||||
line "is going to be"
|
||||
cont "steaming…"
|
||||
@ -755,7 +755,7 @@ UnknownText_0x6ef5c:
|
||||
line "and scary for me…"
|
||||
done
|
||||
|
||||
UnknownText_0x6f019:
|
||||
IlexForestApprenticeAfterText:
|
||||
text "Wow! Thanks a"
|
||||
line "whole bunch!"
|
||||
|
||||
|
@ -43,14 +43,14 @@ RageCandyBarMerchantScript:
|
||||
|
||||
.ClearedRocketHideout:
|
||||
opentext
|
||||
writetext RageCandyBarMerchantText_SoldOut
|
||||
writetext RageCandyBarMerchantSoldOutText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.SellRageCandyBars:
|
||||
opentext
|
||||
writetext RageCandyBarMerchantText_TryOne
|
||||
writetext RageCandyBarMerchantTryOneText
|
||||
special PlaceMoneyTopRight
|
||||
yesorno
|
||||
iffalse .Refused
|
||||
@ -62,25 +62,25 @@ RageCandyBarMerchantScript:
|
||||
playsound SFX_TRANSACTION
|
||||
takemoney YOUR_MONEY, 300
|
||||
special PlaceMoneyTopRight
|
||||
writetext RageCandyBarMerchantText_SavorIt
|
||||
writetext RageCandyBarMerchantSavorItText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.NotEnoughMoney:
|
||||
writetext RageCandyBarMerchantText_NotEnoughMoney
|
||||
writetext RageCandyBarMerchantNotEnoughMoneyText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.Refused:
|
||||
writetext RageCandyBarMerchantText_Refused
|
||||
writetext RageCandyBarMerchantRefusedText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.NoRoom:
|
||||
writetext UnknownText_0x190188
|
||||
writetext RageCandyBarMerchantNoRoomText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -138,7 +138,7 @@ MovementData_0x1900ad:
|
||||
turn_head DOWN
|
||||
step_end
|
||||
|
||||
RageCandyBarMerchantText_TryOne:
|
||||
RageCandyBarMerchantTryOneText:
|
||||
text "Hiya, kid!"
|
||||
|
||||
para "I see you're new"
|
||||
@ -155,25 +155,25 @@ RageCandyBarMerchantText_TryOne:
|
||||
cont "¥300! Want one?"
|
||||
done
|
||||
|
||||
RageCandyBarMerchantText_SavorIt:
|
||||
RageCandyBarMerchantSavorItText:
|
||||
text "Good! Savor it!"
|
||||
done
|
||||
|
||||
RageCandyBarMerchantText_NotEnoughMoney:
|
||||
RageCandyBarMerchantNotEnoughMoneyText:
|
||||
text "You don't have"
|
||||
line "enough money."
|
||||
done
|
||||
|
||||
RageCandyBarMerchantText_Refused:
|
||||
RageCandyBarMerchantRefusedText:
|
||||
text "Oh, fine then…"
|
||||
done
|
||||
|
||||
UnknownText_0x190188:
|
||||
RageCandyBarMerchantNoRoomText:
|
||||
text "You don't have"
|
||||
line "room for this."
|
||||
done
|
||||
|
||||
RageCandyBarMerchantText_SoldOut:
|
||||
RageCandyBarMerchantSoldOutText:
|
||||
text "RAGECANDYBAR's"
|
||||
line "sold out."
|
||||
|
||||
|
@ -20,7 +20,7 @@ NationalParkBugContest_MapScripts:
|
||||
BugCatchingContestant1AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5c94c
|
||||
writetext BugCatchingContestant1AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -28,7 +28,7 @@ BugCatchingContestant1AScript:
|
||||
BugCatchingContestant2AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5c973
|
||||
writetext BugCatchingContestant2AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -36,7 +36,7 @@ BugCatchingContestant2AScript:
|
||||
BugCatchingContestant3AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5c9a3
|
||||
writetext BugCatchingContestant3AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -44,7 +44,7 @@ BugCatchingContestant3AScript:
|
||||
BugCatchingContestant4AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5c9cc
|
||||
writetext BugCatchingContestant4AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -52,7 +52,7 @@ BugCatchingContestant4AScript:
|
||||
BugCatchingContestant5AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5ca15
|
||||
writetext BugCatchingContestant5AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -60,7 +60,7 @@ BugCatchingContestant5AScript:
|
||||
BugCatchingContestant6AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5ca52
|
||||
writetext BugCatchingContestant6AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -68,7 +68,7 @@ BugCatchingContestant6AScript:
|
||||
BugCatchingContestant7AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5ca8f
|
||||
writetext BugCatchingContestant7AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -76,7 +76,7 @@ BugCatchingContestant7AScript:
|
||||
BugCatchingContestant8AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5cac8
|
||||
writetext BugCatchingContestant8AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -84,7 +84,7 @@ BugCatchingContestant8AScript:
|
||||
BugCatchingContestant9AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5cb25
|
||||
writetext BugCatchingContestant9AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -92,7 +92,7 @@ BugCatchingContestant9AScript:
|
||||
BugCatchingContestant10AScript:
|
||||
faceplayer
|
||||
opentext
|
||||
writetext UnknownText_0x5cb64
|
||||
writetext BugCatchingContestant10AText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -115,25 +115,25 @@ NationalParkBugContestTMDig:
|
||||
NationalParkBugContestHiddenFullHeal:
|
||||
hiddenitem FULL_HEAL, EVENT_NATIONAL_PARK_HIDDEN_FULL_HEAL
|
||||
|
||||
UnknownText_0x5c94c:
|
||||
BugCatchingContestant1AText:
|
||||
text "DON: I'm going to"
|
||||
line "win! Don't bother"
|
||||
cont "me."
|
||||
done
|
||||
|
||||
UnknownText_0x5c973:
|
||||
BugCatchingContestant2AText:
|
||||
text "ED: My PARASECT"
|
||||
line "puts #MON to"
|
||||
cont "sleep with SPORE."
|
||||
done
|
||||
|
||||
UnknownText_0x5c9a3:
|
||||
BugCatchingContestant3AText:
|
||||
text "NICK: I'm raising"
|
||||
line "fast #MON for"
|
||||
cont "battles."
|
||||
done
|
||||
|
||||
UnknownText_0x5c9cc:
|
||||
BugCatchingContestant4AText:
|
||||
text "WILLIAM: I'm not"
|
||||
line "concerned about"
|
||||
cont "winning."
|
||||
@ -142,7 +142,7 @@ UnknownText_0x5c9cc:
|
||||
line "for rare #MON."
|
||||
done
|
||||
|
||||
UnknownText_0x5ca15:
|
||||
BugCatchingContestant5AText:
|
||||
text "BENNY: Ssh! You'll"
|
||||
line "scare off SCYTHER."
|
||||
|
||||
@ -150,7 +150,7 @@ UnknownText_0x5ca15:
|
||||
line "later."
|
||||
done
|
||||
|
||||
UnknownText_0x5ca52:
|
||||
BugCatchingContestant6AText:
|
||||
text "BARRY: You should"
|
||||
line "weaken bug #MON"
|
||||
|
||||
@ -158,7 +158,7 @@ UnknownText_0x5ca52:
|
||||
line "a BALL."
|
||||
done
|
||||
|
||||
UnknownText_0x5ca8f:
|
||||
BugCatchingContestant7AText:
|
||||
text "CINDY: I love bug"
|
||||
line "#MON."
|
||||
|
||||
@ -166,7 +166,7 @@ UnknownText_0x5ca8f:
|
||||
line "like them too."
|
||||
done
|
||||
|
||||
UnknownText_0x5cac8:
|
||||
BugCatchingContestant8AText:
|
||||
text "JOSH: I've been"
|
||||
line "collecting bug"
|
||||
|
||||
@ -177,7 +177,7 @@ UnknownText_0x5cac8:
|
||||
line "going to lose!"
|
||||
done
|
||||
|
||||
UnknownText_0x5cb25:
|
||||
BugCatchingContestant9AText:
|
||||
text "SAMUEL: If you've"
|
||||
line "got the time to"
|
||||
|
||||
@ -185,7 +185,7 @@ UnknownText_0x5cb25:
|
||||
line "bug #MON."
|
||||
done
|
||||
|
||||
UnknownText_0x5cb64:
|
||||
BugCatchingContestant10AText:
|
||||
text "KIPP: I've studied"
|
||||
line "about bug #MON"
|
||||
cont "a lot."
|
||||
|
@ -33,7 +33,7 @@ OlivineCityRivalSceneTop:
|
||||
applymovement OLIVINECITY_OLIVINE_RIVAL, MovementData_0x1a88d2
|
||||
playmusic MUSIC_RIVAL_ENCOUNTER
|
||||
opentext
|
||||
writetext UnknownText_0x1a88fa
|
||||
writetext OlivineCityRivalText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement PLAYER, MovementData_0x1a88f4
|
||||
@ -57,7 +57,7 @@ OlivineCityRivalSceneBottom:
|
||||
applymovement OLIVINECITY_OLIVINE_RIVAL, MovementData_0x1a88d6
|
||||
playmusic MUSIC_RIVAL_ENCOUNTER
|
||||
opentext
|
||||
writetext UnknownText_0x1a88fa
|
||||
writetext OlivineCityRivalText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement PLAYER, MovementData_0x1a88f7
|
||||
@ -165,7 +165,7 @@ MovementData_0x1a88f7:
|
||||
turn_head DOWN
|
||||
step_end
|
||||
|
||||
UnknownText_0x1a88fa:
|
||||
OlivineCityRivalText:
|
||||
text "…"
|
||||
|
||||
para "You again?"
|
||||
|
@ -13,27 +13,27 @@ PewterGymBrockScript:
|
||||
opentext
|
||||
checkflag ENGINE_BOULDERBADGE
|
||||
iftrue .FightDone
|
||||
writetext UnknownText_0x1a28d0
|
||||
writetext BrockIntroText
|
||||
waitbutton
|
||||
closetext
|
||||
winlosstext UnknownText_0x1a29bb, 0
|
||||
winlosstext BrockWinLossText, 0
|
||||
loadtrainer BROCK, BROCK1
|
||||
startbattle
|
||||
reloadmapafterbattle
|
||||
setevent EVENT_BEAT_BROCK
|
||||
setevent EVENT_BEAT_CAMPER_JERRY
|
||||
opentext
|
||||
writetext UnknownText_0x1a2a3d
|
||||
writetext ReceivedBoulderBadgeText
|
||||
playsound SFX_GET_BADGE
|
||||
waitsfx
|
||||
setflag ENGINE_BOULDERBADGE
|
||||
writetext UnknownText_0x1a2a57
|
||||
writetext BrockBoulderBadgeText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.FightDone:
|
||||
writetext UnknownText_0x1a2ada
|
||||
writetext BrockFightDoneText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -73,7 +73,7 @@ PewterGymStatue:
|
||||
trainertotext BROCK, BROCK1, MEM_BUFFER_1
|
||||
jumpstd gymstatue2
|
||||
|
||||
UnknownText_0x1a28d0:
|
||||
BrockIntroText:
|
||||
text "BROCK: Wow, it's"
|
||||
line "not often that we"
|
||||
|
||||
@ -98,7 +98,7 @@ UnknownText_0x1a28d0:
|
||||
para "Come on!"
|
||||
done
|
||||
|
||||
UnknownText_0x1a29bb:
|
||||
BrockWinLossText:
|
||||
text "BROCK: Your #-"
|
||||
line "MON's powerful at-"
|
||||
cont "tacks overcame my"
|
||||
@ -111,12 +111,12 @@ UnknownText_0x1a29bb:
|
||||
line "this BADGE."
|
||||
done
|
||||
|
||||
UnknownText_0x1a2a3d:
|
||||
ReceivedBoulderBadgeText:
|
||||
text "<PLAYER> received"
|
||||
line "BOULDERBADGE."
|
||||
done
|
||||
|
||||
UnknownText_0x1a2a57:
|
||||
BrockBoulderBadgeText:
|
||||
text "BROCK: <PLAY_G>,"
|
||||
line "thanks. I enjoyed"
|
||||
|
||||
@ -131,7 +131,7 @@ UnknownText_0x1a2a57:
|
||||
line "powerful."
|
||||
done
|
||||
|
||||
UnknownText_0x1a2ada:
|
||||
BrockFightDoneText:
|
||||
text "BROCK: The world"
|
||||
line "is huge. There are"
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user