mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
commit
376c64468b
@ -33,7 +33,7 @@
|
|||||||
shift_const SCROLLINGMENU_ENABLE_SELECT
|
shift_const SCROLLINGMENU_ENABLE_SELECT
|
||||||
|
|
||||||
; MonMenuOptions indexes (see data/mon_menu.asm)
|
; MonMenuOptions indexes (see data/mon_menu.asm)
|
||||||
; used by PokemonActionSubmenu (see engine/menus/start_menu.asm)
|
; used by PokemonActionSubmenu (see engine/pokemon/mon_menu.asm)
|
||||||
const_def 1
|
const_def 1
|
||||||
; moves
|
; moves
|
||||||
const MONMENUITEM_CUT ; 1
|
const MONMENUITEM_CUT ; 1
|
||||||
|
@ -19,7 +19,7 @@ MonMenuOptionStrings:
|
|||||||
db "ERROR!@"
|
db "ERROR!@"
|
||||||
|
|
||||||
MonMenuOptions:
|
MonMenuOptions:
|
||||||
; category, item, value; actions are in PokemonActionSubmenu (see engine/start_menu.asm)
|
; category, item, value; actions are in PokemonActionSubmenu (see engine/pokemon/mon_menu.asm)
|
||||||
; moves
|
; moves
|
||||||
db MONMENU_FIELD_MOVE, MONMENUITEM_CUT, CUT
|
db MONMENU_FIELD_MOVE, MONMENUITEM_CUT, CUT
|
||||||
db MONMENU_FIELD_MOVE, MONMENUITEM_FLY, FLY
|
db MONMENU_FIELD_MOVE, MONMENUITEM_FLY, FLY
|
||||||
|
@ -986,7 +986,7 @@ Then edit [engine/battle/start_battle.asm](/engine/battle/start_battle.asm):
|
|||||||
|
|
||||||
Finally, edit [engine/battle/read_trainer_party.asm](/engine/battle/read_trainer_party.asm):
|
Finally, edit [engine/battle/read_trainer_party.asm](/engine/battle/read_trainer_party.asm):
|
||||||
|
|
||||||
```asm
|
```diff
|
||||||
INCLUDE "data/trainers/parties.asm"
|
INCLUDE "data/trainers/parties.asm"
|
||||||
+
|
+
|
||||||
+SetTrainerBattleLevel:
|
+SetTrainerBattleLevel:
|
||||||
@ -1370,7 +1370,7 @@ This supports up to six entries.
|
|||||||
|
|
||||||
**Fix:** Edit `PlacePartyMonEvoStoneCompatibility.DetermineCompatibility` in [engine/pokemon/party_menu.asm](/engine/pokemon/party_menu.asm):
|
**Fix:** Edit `PlacePartyMonEvoStoneCompatibility.DetermineCompatibility` in [engine/pokemon/party_menu.asm](/engine/pokemon/party_menu.asm):
|
||||||
|
|
||||||
```asm
|
```diff
|
||||||
.loop2
|
.loop2
|
||||||
ld a, [hli]
|
ld a, [hli]
|
||||||
and a
|
and a
|
||||||
|
@ -13,38 +13,38 @@ BillScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_GOT_EEVEE
|
checkevent EVENT_GOT_EEVEE
|
||||||
iftrue .GotEevee
|
iftrue .GotEevee
|
||||||
writetext UnknownText_0x54c74
|
writetext BillTakeThisEeveeText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
writetext UnknownText_0x54d3f
|
writetext BillImCountingOnYouText
|
||||||
buttonsound
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
ifequal PARTY_LENGTH, .NoRoom
|
ifequal PARTY_LENGTH, .NoRoom
|
||||||
writetext UnknownText_0x54dae
|
writetext ReceivedEeveeText
|
||||||
playsound SFX_CAUGHT_MON
|
playsound SFX_CAUGHT_MON
|
||||||
waitsfx
|
waitsfx
|
||||||
givepoke EEVEE, 20
|
givepoke EEVEE, 20
|
||||||
setevent EVENT_GOT_EEVEE
|
setevent EVENT_GOT_EEVEE
|
||||||
writetext UnknownText_0x54dc1
|
writetext BillEeveeMayEvolveText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.NoRoom:
|
.NoRoom:
|
||||||
writetext UnknownText_0x54e02
|
writetext BillPartyFullText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext UnknownText_0x54e2d
|
writetext BillNoEeveeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.GotEevee:
|
.GotEevee:
|
||||||
writetext UnknownText_0x54e42
|
writetext BillPopWontWorkText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -54,13 +54,13 @@ BillsMomScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_MET_BILL
|
checkevent EVENT_MET_BILL
|
||||||
iffalse .HaventMetBill
|
iffalse .HaventMetBill
|
||||||
writetext UnknownText_0x54ea8
|
writetext BillsPopText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.HaventMetBill:
|
.HaventMetBill:
|
||||||
writetext UnknownText_0x54f4e
|
writetext BillsMomText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -70,30 +70,30 @@ BillsSisterScript:
|
|||||||
opentext
|
opentext
|
||||||
checkcellnum PHONE_BILL
|
checkcellnum PHONE_BILL
|
||||||
iftrue .GotBillsNumber
|
iftrue .GotBillsNumber
|
||||||
writetext UnknownText_0x54f9e
|
writetext BillsSisterUsefulNumberText
|
||||||
askforphonenumber PHONE_BILL
|
askforphonenumber PHONE_BILL
|
||||||
ifequal PHONE_CONTACTS_FULL, .NoRoom
|
ifequal PHONE_CONTACTS_FULL, .NoRoom
|
||||||
ifequal PHONE_CONTACT_REFUSED, .Refused
|
ifequal PHONE_CONTACT_REFUSED, .Refused
|
||||||
waitsfx
|
waitsfx
|
||||||
addcellnum PHONE_BILL
|
addcellnum PHONE_BILL
|
||||||
writetext UnknownText_0x54fd9
|
writetext RecordedBillsNumberText
|
||||||
playsound SFX_REGISTER_PHONE_NUMBER
|
playsound SFX_REGISTER_PHONE_NUMBER
|
||||||
waitsfx
|
waitsfx
|
||||||
buttonsound
|
buttonsound
|
||||||
.GotBillsNumber:
|
.GotBillsNumber:
|
||||||
writetext UnknownText_0x55069
|
writetext BillsSisterStorageSystemText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext UnknownText_0x54ff3
|
writetext BillsSisterRefusedNumberText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.NoRoom:
|
.NoRoom:
|
||||||
writetext UnknownText_0x55046
|
writetext BillsSisterPhoneFullText
|
||||||
buttonsound
|
buttonsound
|
||||||
jump .Refused
|
jump .Refused
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ BillsHouseBookshelf2:
|
|||||||
BillsHouseRadio:
|
BillsHouseRadio:
|
||||||
jumpstd radio2
|
jumpstd radio2
|
||||||
|
|
||||||
UnknownText_0x54c74:
|
BillTakeThisEeveeText:
|
||||||
text "BILL: Hi, <PLAYER>!"
|
text "BILL: Hi, <PLAYER>!"
|
||||||
line "Do us a favor and"
|
line "Do us a favor and"
|
||||||
cont "take this EEVEE."
|
cont "take this EEVEE."
|
||||||
@ -126,7 +126,7 @@ UnknownText_0x54c74:
|
|||||||
cont "<PLAYER>?"
|
cont "<PLAYER>?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54d3f:
|
BillImCountingOnYouText:
|
||||||
text "BILL: I knew you'd"
|
text "BILL: I knew you'd"
|
||||||
line "come through!"
|
line "come through!"
|
||||||
|
|
||||||
@ -140,12 +140,12 @@ UnknownText_0x54d3f:
|
|||||||
line "it!"
|
line "it!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54dae:
|
ReceivedEeveeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "EEVEE!"
|
line "EEVEE!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54dc1:
|
BillEeveeMayEvolveText:
|
||||||
text "BILL: PROF.ELM"
|
text "BILL: PROF.ELM"
|
||||||
line "claims EEVEE may"
|
line "claims EEVEE may"
|
||||||
|
|
||||||
@ -153,18 +153,18 @@ UnknownText_0x54dc1:
|
|||||||
line "unknown ways."
|
line "unknown ways."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54e02:
|
BillPartyFullText:
|
||||||
text "Whoa, wait. You"
|
text "Whoa, wait. You"
|
||||||
line "can't carry any"
|
line "can't carry any"
|
||||||
cont "more #MON."
|
cont "more #MON."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54e2d:
|
BillNoEeveeText:
|
||||||
text "Oh… Now what to"
|
text "Oh… Now what to"
|
||||||
line "do?"
|
line "do?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54e42:
|
BillPopWontWorkText:
|
||||||
text "BILL: My pop, he"
|
text "BILL: My pop, he"
|
||||||
line "won't work. All he"
|
line "won't work. All he"
|
||||||
|
|
||||||
@ -175,7 +175,7 @@ UnknownText_0x54e42:
|
|||||||
line "a real headache…"
|
line "a real headache…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54ea8:
|
BillsPopText:
|
||||||
text "Oh, you collect"
|
text "Oh, you collect"
|
||||||
line "#MON? My son"
|
line "#MON? My son"
|
||||||
cont "BILL is an expert."
|
cont "BILL is an expert."
|
||||||
@ -193,7 +193,7 @@ UnknownText_0x54ea8:
|
|||||||
line "being called…"
|
line "being called…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54f4e:
|
BillsMomText:
|
||||||
text "My husband was"
|
text "My husband was"
|
||||||
line "once known as a"
|
line "once known as a"
|
||||||
|
|
||||||
@ -204,7 +204,7 @@ UnknownText_0x54f4e:
|
|||||||
line "father."
|
line "father."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54f9e:
|
BillsSisterUsefulNumberText:
|
||||||
text "Are you a trainer?"
|
text "Are you a trainer?"
|
||||||
|
|
||||||
para "I've got a useful"
|
para "I've got a useful"
|
||||||
@ -212,12 +212,12 @@ UnknownText_0x54f9e:
|
|||||||
cont "you."
|
cont "you."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54fd9:
|
RecordedBillsNumberText:
|
||||||
text "<PLAYER> recorded"
|
text "<PLAYER> recorded"
|
||||||
line "BILL's number."
|
line "BILL's number."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54ff3:
|
BillsSisterRefusedNumberText:
|
||||||
text "My brother made"
|
text "My brother made"
|
||||||
line "the PC #MON"
|
line "the PC #MON"
|
||||||
cont "storage system."
|
cont "storage system."
|
||||||
@ -227,12 +227,12 @@ UnknownText_0x54ff3:
|
|||||||
cont "number…"
|
cont "number…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x55046:
|
BillsSisterPhoneFullText:
|
||||||
text "You can't record"
|
text "You can't record"
|
||||||
line "any more numbers."
|
line "any more numbers."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x55069:
|
BillsSisterStorageSystemText:
|
||||||
text "My big brother"
|
text "My big brother"
|
||||||
line "BILL made the PC"
|
line "BILL made the PC"
|
||||||
|
|
||||||
|
@ -9,10 +9,10 @@ CeladonMansion3F_MapScripts:
|
|||||||
|
|
||||||
db 0 ; callbacks
|
db 0 ; callbacks
|
||||||
|
|
||||||
CeladonMansion3FCooltrainerMScript:
|
GameFreakGameDesignerScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x716ce
|
writetext GameFreakGameDesignerText
|
||||||
checkcode VAR_DEXCAUGHT
|
checkcode VAR_DEXCAUGHT
|
||||||
ifgreater NUM_POKEMON - 2 - 1, .CompletedPokedex ; ignore Mew and Celebi
|
ifgreater NUM_POKEMON - 2 - 1, .CompletedPokedex ; ignore Mew and Celebi
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -21,30 +21,30 @@ CeladonMansion3FCooltrainerMScript:
|
|||||||
|
|
||||||
.CompletedPokedex:
|
.CompletedPokedex:
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext UnknownText_0x71725
|
writetext GameFreakGameDesignerCompletedPokedexText
|
||||||
playsound SFX_DEX_FANFARE_230_PLUS
|
playsound SFX_DEX_FANFARE_230_PLUS
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext UnknownText_0x71760
|
writetext GameFreakGameDesignerPauseForDiplomaText
|
||||||
buttonsound
|
buttonsound
|
||||||
special Diploma
|
special Diploma
|
||||||
writetext UnknownText_0x71763
|
writetext GameFreakGameDesignerAfterDiplomaText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
setevent EVENT_ENABLE_DIPLOMA_PRINTING
|
setevent EVENT_ENABLE_DIPLOMA_PRINTING
|
||||||
end
|
end
|
||||||
|
|
||||||
CeladonMansion3FGymGuyScript:
|
GameFreakGraphicArtistScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
checkevent EVENT_ENABLE_DIPLOMA_PRINTING
|
checkevent EVENT_ENABLE_DIPLOMA_PRINTING
|
||||||
iftrue .CanPrintDiploma
|
iftrue .CanPrintDiploma
|
||||||
writetext UnknownText_0x717b4
|
writetext GameFreakGraphicArtistText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.CanPrintDiploma:
|
.CanPrintDiploma:
|
||||||
writetext UnknownText_0x717d8
|
writetext GameFreakGraphicArtistPrintDiplomaText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
special PrintDiploma
|
special PrintDiploma
|
||||||
@ -52,23 +52,23 @@ CeladonMansion3FGymGuyScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext UnknownText_0x71830
|
writetext GameFreakGraphicArtistRefusedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.CancelPrinting:
|
.CancelPrinting:
|
||||||
; unused
|
; unused
|
||||||
writetext UnknownText_0x71863
|
writetext GameFreakGraphicArtistErrorText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
CeladonMansion3FSuperNerdScript:
|
GameFreakProgrammerScript:
|
||||||
jumptextfaceplayer CeladonMansion3FSuperNerdText
|
jumptextfaceplayer GameFreakProgrammerText
|
||||||
|
|
||||||
CeladonMansion3FFisherScript:
|
GameFreakCharacterDesignerScript:
|
||||||
jumptextfaceplayer CeladonMansion3FFisherText
|
jumptextfaceplayer GameFreakCharacterDesignerText
|
||||||
|
|
||||||
CeladonMansion3FDevRoomSign:
|
CeladonMansion3FDevRoomSign:
|
||||||
jumptext CeladonMansion3FDevRoomSignText
|
jumptext CeladonMansion3FDevRoomSignText
|
||||||
@ -82,7 +82,7 @@ CeladonMansion3FGameProgram:
|
|||||||
CeladonMansion3FReferenceMaterial:
|
CeladonMansion3FReferenceMaterial:
|
||||||
jumptext CeladonMansion3FReferenceMaterialText
|
jumptext CeladonMansion3FReferenceMaterialText
|
||||||
|
|
||||||
UnknownText_0x716ce:
|
GameFreakGameDesignerText:
|
||||||
text "Is that right?"
|
text "Is that right?"
|
||||||
|
|
||||||
para "I'm the GAME"
|
para "I'm the GAME"
|
||||||
@ -93,7 +93,7 @@ UnknownText_0x716ce:
|
|||||||
cont "but don't give up!"
|
cont "but don't give up!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71725:
|
GameFreakGameDesignerCompletedPokedexText:
|
||||||
text "Wow! Excellent!"
|
text "Wow! Excellent!"
|
||||||
line "You completed your"
|
line "You completed your"
|
||||||
cont "#DEX!"
|
cont "#DEX!"
|
||||||
@ -101,11 +101,11 @@ UnknownText_0x71725:
|
|||||||
para "Congratulations!"
|
para "Congratulations!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71760:
|
GameFreakGameDesignerPauseForDiplomaText:
|
||||||
text "…"
|
text "…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71763:
|
GameFreakGameDesignerAfterDiplomaText:
|
||||||
text "The GRAPHIC ARTIST"
|
text "The GRAPHIC ARTIST"
|
||||||
line "will print out a"
|
line "will print out a"
|
||||||
cont "DIPLOMA for you."
|
cont "DIPLOMA for you."
|
||||||
@ -114,14 +114,14 @@ UnknownText_0x71763:
|
|||||||
line "it off."
|
line "it off."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x717b4:
|
GameFreakGraphicArtistText:
|
||||||
text "I'm the GRAPHIC"
|
text "I'm the GRAPHIC"
|
||||||
line "ARTIST."
|
line "ARTIST."
|
||||||
|
|
||||||
para "I drew you!"
|
para "I drew you!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x717d8:
|
GameFreakGraphicArtistPrintDiplomaText:
|
||||||
text "I'm the GRAPHIC"
|
text "I'm the GRAPHIC"
|
||||||
line "ARTIST."
|
line "ARTIST."
|
||||||
|
|
||||||
@ -132,19 +132,19 @@ UnknownText_0x717d8:
|
|||||||
line "out your DIPLOMA?"
|
line "out your DIPLOMA?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71830:
|
GameFreakGraphicArtistRefusedText:
|
||||||
text "Give me a shout if"
|
text "Give me a shout if"
|
||||||
line "you want your"
|
line "you want your"
|
||||||
cont "DIPLOMA printed."
|
cont "DIPLOMA printed."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71863:
|
GameFreakGraphicArtistErrorText:
|
||||||
text "Something's wrong."
|
text "Something's wrong."
|
||||||
line "I'll have to can-"
|
line "I'll have to can-"
|
||||||
cont "cel printing."
|
cont "cel printing."
|
||||||
done
|
done
|
||||||
|
|
||||||
CeladonMansion3FSuperNerdText:
|
GameFreakProgrammerText:
|
||||||
text "Who, me? I'm the"
|
text "Who, me? I'm the"
|
||||||
line "PROGRAMMER."
|
line "PROGRAMMER."
|
||||||
|
|
||||||
@ -152,7 +152,7 @@ CeladonMansion3FSuperNerdText:
|
|||||||
line "machines!"
|
line "machines!"
|
||||||
done
|
done
|
||||||
|
|
||||||
CeladonMansion3FFisherText:
|
GameFreakCharacterDesignerText:
|
||||||
text "Aren't the TWINS"
|
text "Aren't the TWINS"
|
||||||
line "adorable?"
|
line "adorable?"
|
||||||
|
|
||||||
@ -206,7 +206,7 @@ CeladonMansion3F_MapEvents:
|
|||||||
bg_event 1, 3, BGEVENT_UP, CeladonMansion3FReferenceMaterial
|
bg_event 1, 3, BGEVENT_UP, CeladonMansion3FReferenceMaterial
|
||||||
|
|
||||||
db 4 ; object events
|
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, 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, CeladonMansion3FGymGuyScript, -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, CeladonMansion3FSuperNerdScript, -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, CeladonMansion3FFisherScript, -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
|
opentext
|
||||||
checkevent EVENT_GOT_TM03_CURSE
|
checkevent EVENT_GOT_TM03_CURSE
|
||||||
iftrue .GotCurse
|
iftrue .GotCurse
|
||||||
writetext UnknownText_0x71b27
|
writetext CeladonMansionRoofHousePharmacistIntroText
|
||||||
buttonsound
|
buttonsound
|
||||||
checktime NITE
|
checktime NITE
|
||||||
iftrue .Night
|
iftrue .Night
|
||||||
writetext UnknownText_0x71b4a
|
writetext CeladonMansionRoofHousePharmacistNotNightText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Night:
|
.Night:
|
||||||
writetext UnknownText_0x71ba3
|
writetext CeladonMansionRoofHousePharmacistStoryText
|
||||||
buttonsound
|
buttonsound
|
||||||
verbosegiveitem TM_CURSE
|
verbosegiveitem TM_CURSE
|
||||||
iffalse .NoRoom
|
iffalse .NoRoom
|
||||||
setevent EVENT_GOT_TM03_CURSE
|
setevent EVENT_GOT_TM03_CURSE
|
||||||
.GotCurse:
|
.GotCurse:
|
||||||
writetext UnknownText_0x71db3
|
writetext CeladonMansionRoofHousePharmacistCurseText
|
||||||
waitbutton
|
waitbutton
|
||||||
.NoRoom:
|
.NoRoom:
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownText_0x71b27:
|
CeladonMansionRoofHousePharmacistIntroText:
|
||||||
text "Let me recount a"
|
text "Let me recount a"
|
||||||
line "terrifying tale…"
|
line "terrifying tale…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71b4a:
|
CeladonMansionRoofHousePharmacistNotNightText:
|
||||||
text "Then again, it's"
|
text "Then again, it's"
|
||||||
line "not as scary while"
|
line "not as scary while"
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ UnknownText_0x71b4a:
|
|||||||
line "sunset, OK?"
|
line "sunset, OK?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71ba3:
|
CeladonMansionRoofHousePharmacistStoryText:
|
||||||
text "Once upon a time,"
|
text "Once upon a time,"
|
||||||
line "there was a little"
|
line "there was a little"
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ UnknownText_0x71ba3:
|
|||||||
cont "take this--TM03!"
|
cont "take this--TM03!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x71db3:
|
CeladonMansionRoofHousePharmacistCurseText:
|
||||||
text "TM03 is CURSE."
|
text "TM03 is CURSE."
|
||||||
|
|
||||||
para "It's a terrifying"
|
para "It's a terrifying"
|
||||||
|
@ -26,18 +26,18 @@ CeruleanGym_MapScripts:
|
|||||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntRunsIntoYouMovement
|
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntRunsIntoYouMovement
|
||||||
playmusic MUSIC_ROCKET_ENCOUNTER
|
playmusic MUSIC_ROCKET_ENCOUNTER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1884fb
|
writetext CeruleanGymGruntIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
showemote EMOTE_SHOCK, CERULEANGYM_ROCKET, 15
|
showemote EMOTE_SHOCK, CERULEANGYM_ROCKET, 15
|
||||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntBacksAwayMovement
|
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntBacksAwayMovement
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x188574
|
writetext CeruleanGymGruntBigMistakeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntMovesCloseMovement
|
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntMovesCloseMovement
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1885a5
|
writetext CeruleanGymGruntByeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntRunsOutMovement
|
applymovement CERULEANGYM_ROCKET, CeruleanGymGruntRunsOutMovement
|
||||||
@ -61,10 +61,10 @@ CeruleanGymMistyScript:
|
|||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_CASCADEBADGE
|
checkflag ENGINE_CASCADEBADGE
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x188674
|
writetext MistyIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x18870c, 0
|
winlosstext MistyWinLossText, 0
|
||||||
loadtrainer MISTY, MISTY1
|
loadtrainer MISTY, MISTY1
|
||||||
startbattle
|
startbattle
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
@ -73,12 +73,12 @@ CeruleanGymMistyScript:
|
|||||||
setevent EVENT_BEAT_SWIMMERF_BRIANA
|
setevent EVENT_BEAT_SWIMMERF_BRIANA
|
||||||
setevent EVENT_BEAT_SWIMMERM_PARKER
|
setevent EVENT_BEAT_SWIMMERM_PARKER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x188768
|
writetext ReceivedCascadeBadgeText
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
waitsfx
|
waitsfx
|
||||||
setflag ENGINE_CASCADEBADGE
|
setflag ENGINE_CASCADEBADGE
|
||||||
.FightDone:
|
.FightDone:
|
||||||
writetext UnknownText_0x188782
|
writetext MistyFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -139,7 +139,7 @@ CeruleanGymStatue1:
|
|||||||
checkevent EVENT_TRAINERS_IN_CERULEAN_GYM
|
checkevent EVENT_TRAINERS_IN_CERULEAN_GYM
|
||||||
iffalse CeruleanGymStatue
|
iffalse CeruleanGymStatue
|
||||||
opentext
|
opentext
|
||||||
writetext CeruleanGymNote1
|
writetext CeruleanGymNote1Text
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -148,7 +148,7 @@ CeruleanGymStatue2:
|
|||||||
checkevent EVENT_TRAINERS_IN_CERULEAN_GYM
|
checkevent EVENT_TRAINERS_IN_CERULEAN_GYM
|
||||||
iffalse CeruleanGymStatue
|
iffalse CeruleanGymStatue
|
||||||
opentext
|
opentext
|
||||||
writetext CeruleanGymNote2
|
writetext CeruleanGymNote2Text
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -195,7 +195,7 @@ CeruleanGymGruntBacksAwayMovement:
|
|||||||
remove_fixed_facing
|
remove_fixed_facing
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x1884fb:
|
CeruleanGymGruntIntroText:
|
||||||
text "Oops! I so sorry!"
|
text "Oops! I so sorry!"
|
||||||
line "You not hurt,"
|
line "You not hurt,"
|
||||||
cont "okay?"
|
cont "okay?"
|
||||||
@ -207,13 +207,13 @@ UnknownText_0x1884fb:
|
|||||||
cont "seen by somebody."
|
cont "seen by somebody."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x188574:
|
CeruleanGymGruntBigMistakeText:
|
||||||
text "Oh no! You seen"
|
text "Oh no! You seen"
|
||||||
line "me already! I make"
|
line "me already! I make"
|
||||||
cont "big mistake!"
|
cont "big mistake!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1885a5:
|
CeruleanGymGruntByeText:
|
||||||
text "Hey, you! Forget"
|
text "Hey, you! Forget"
|
||||||
line "you see me, okay?"
|
line "you see me, okay?"
|
||||||
|
|
||||||
@ -226,19 +226,19 @@ UnknownText_0x1885a5:
|
|||||||
para "Bye-bye a go-go!"
|
para "Bye-bye a go-go!"
|
||||||
done
|
done
|
||||||
|
|
||||||
CeruleanGymNote1:
|
CeruleanGymNote1Text:
|
||||||
text "Sorry, I'll be out"
|
text "Sorry, I'll be out"
|
||||||
line "for a while."
|
line "for a while."
|
||||||
cont "MISTY, GYM LEADER"
|
cont "MISTY, GYM LEADER"
|
||||||
done
|
done
|
||||||
|
|
||||||
CeruleanGymNote2:
|
CeruleanGymNote2Text:
|
||||||
text "Since MISTY's out,"
|
text "Since MISTY's out,"
|
||||||
line "we'll be away too."
|
line "we'll be away too."
|
||||||
cont "GYM TRAINERS"
|
cont "GYM TRAINERS"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x188674:
|
MistyIntroText:
|
||||||
text "MISTY: I was ex-"
|
text "MISTY: I was ex-"
|
||||||
line "pecting you, you"
|
line "pecting you, you"
|
||||||
cont "pest!"
|
cont "pest!"
|
||||||
@ -254,7 +254,7 @@ UnknownText_0x188674:
|
|||||||
line "#MON are tough!"
|
line "#MON are tough!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x18870c:
|
MistyWinLossText:
|
||||||
text "MISTY: You really"
|
text "MISTY: You really"
|
||||||
line "are good…"
|
line "are good…"
|
||||||
|
|
||||||
@ -265,12 +265,12 @@ UnknownText_0x18870c:
|
|||||||
line "CASCADEBADGE."
|
line "CASCADEBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x188768:
|
ReceivedCascadeBadgeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "CASCADEBADGE."
|
line "CASCADEBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x188782:
|
MistyFightDoneText:
|
||||||
text "MISTY: Are there"
|
text "MISTY: Are there"
|
||||||
line "many strong train-"
|
line "many strong train-"
|
||||||
cont "ers in JOHTO? Like"
|
cont "ers in JOHTO? Like"
|
||||||
|
@ -15,23 +15,23 @@ AcademyEarl:
|
|||||||
applymovement EARLSPOKEMONACADEMY_EARL, AcademyEarlSpinMovement
|
applymovement EARLSPOKEMONACADEMY_EARL, AcademyEarlSpinMovement
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x68b3b
|
writetext AcademyEarlIntroText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Part1
|
iffalse .Part1
|
||||||
writetext UnknownText_0x68bbd
|
writetext AcademyEarlTeachHowToWinText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
.Part1:
|
.Part1:
|
||||||
writetext UnknownText_0x68c51
|
writetext AcademyEarlTeachMoreText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
writetext UnknownText_0x68c7b
|
writetext AcademyEarlTeachHowToRaiseWellText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Done:
|
.Done:
|
||||||
writetext UnknownText_0x68d31
|
writetext AcademyEarlNoMoreToTeachText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -161,7 +161,7 @@ AcademyEarlSpinMovement:
|
|||||||
turn_head DOWN
|
turn_head DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x68b3b:
|
AcademyEarlIntroText:
|
||||||
text "EARL, I am!"
|
text "EARL, I am!"
|
||||||
|
|
||||||
para "Wonderful are"
|
para "Wonderful are"
|
||||||
@ -176,7 +176,7 @@ UnknownText_0x68b3b:
|
|||||||
cont "a winner is you?"
|
cont "a winner is you?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x68bbd:
|
AcademyEarlTeachHowToWinText:
|
||||||
text "Good! Teach you,"
|
text "Good! Teach you,"
|
||||||
line "I will!"
|
line "I will!"
|
||||||
|
|
||||||
@ -192,13 +192,13 @@ UnknownText_0x68bbd:
|
|||||||
line "want to hear?"
|
line "want to hear?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x68c51:
|
AcademyEarlTeachMoreText:
|
||||||
text "So, want to know"
|
text "So, want to know"
|
||||||
line "how to raise"
|
line "how to raise"
|
||||||
cont "#MON well?"
|
cont "#MON well?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x68c7b:
|
AcademyEarlTeachHowToRaiseWellText:
|
||||||
text "Fine! Teach you,"
|
text "Fine! Teach you,"
|
||||||
line "I will!"
|
line "I will!"
|
||||||
|
|
||||||
@ -219,7 +219,7 @@ UnknownText_0x68c7b:
|
|||||||
cont "become!"
|
cont "become!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x68d31:
|
AcademyEarlNoMoreToTeachText:
|
||||||
text "Oh! Smart student"
|
text "Oh! Smart student"
|
||||||
line "you are! Nothing"
|
line "you are! Nothing"
|
||||||
cont "more do I teach!"
|
cont "more do I teach!"
|
||||||
|
@ -26,10 +26,10 @@ EcruteakGymMortyScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_BEAT_MORTY
|
checkevent EVENT_BEAT_MORTY
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x99e65
|
writetext MortyIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x9a00a, 0
|
winlosstext MortyWinLossText, 0
|
||||||
loadtrainer MORTY, MORTY1
|
loadtrainer MORTY, MORTY1
|
||||||
startbattle
|
startbattle
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
@ -62,7 +62,7 @@ EcruteakGymMortyScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
.GotShadowBall:
|
.GotShadowBall:
|
||||||
writetext UnknownText_0x9a145
|
writetext MortyFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
.NoRoomForShadowBall:
|
.NoRoomForShadowBall:
|
||||||
closetext
|
closetext
|
||||||
@ -83,7 +83,7 @@ EcruteakGymClosed:
|
|||||||
applymovement PLAYER, EcruteakGymPlayerStepUpMovement
|
applymovement PLAYER, EcruteakGymPlayerStepUpMovement
|
||||||
applymovement ECRUTEAKGYM_GRAMPS, EcruteakGymGrampsSlowStepDownMovement
|
applymovement ECRUTEAKGYM_GRAMPS, EcruteakGymGrampsSlowStepDownMovement
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x9a49c
|
writetext EcruteakGymClosedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
follow PLAYER, ECRUTEAKGYM_GRAMPS
|
follow PLAYER, ECRUTEAKGYM_GRAMPS
|
||||||
@ -177,7 +177,7 @@ EcruteakGymGrampsSlowStepDownMovement:
|
|||||||
slow_step DOWN
|
slow_step DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x99e65:
|
MortyIntroText:
|
||||||
text "Good of you to"
|
text "Good of you to"
|
||||||
line "have come."
|
line "have come."
|
||||||
|
|
||||||
@ -218,7 +218,7 @@ UnknownText_0x99e65:
|
|||||||
cont "level!"
|
cont "level!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x9a00a:
|
MortyWinLossText:
|
||||||
text "I'm not good"
|
text "I'm not good"
|
||||||
line "enough yet…"
|
line "enough yet…"
|
||||||
|
|
||||||
@ -259,7 +259,7 @@ MortyText_ShadowBallSpeech:
|
|||||||
line "appeals to you."
|
line "appeals to you."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x9a145:
|
MortyFightDoneText:
|
||||||
text "I see…"
|
text "I see…"
|
||||||
|
|
||||||
para "Your journey has"
|
para "Your journey has"
|
||||||
@ -374,7 +374,7 @@ EcruteakGymGuyWinText:
|
|||||||
cont "pure terror!"
|
cont "pure terror!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x9a49c:
|
EcruteakGymClosedText:
|
||||||
text "MORTY, the GYM"
|
text "MORTY, the GYM"
|
||||||
line "LEADER, is absent."
|
line "LEADER, is absent."
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ ElmCheckEverstone:
|
|||||||
writebyte TOGETIC
|
writebyte TOGETIC
|
||||||
special FindPartyMonThatSpeciesYourTrainerID
|
special FindPartyMonThatSpeciesYourTrainerID
|
||||||
iftrue ShowElmTogepiScript
|
iftrue ShowElmTogepiScript
|
||||||
writetext UnknownText_0x79a40
|
writetext ElmThoughtEggHatchedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -1064,7 +1064,7 @@ ElmWaitingEggHatchText:
|
|||||||
line "EGG changed any?"
|
line "EGG changed any?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x79a40:
|
ElmThoughtEggHatchedText:
|
||||||
text "<PLAY_G>? I thought"
|
text "<PLAY_G>? I thought"
|
||||||
line "the EGG hatched."
|
line "the EGG hatched."
|
||||||
|
|
||||||
|
@ -127,7 +127,7 @@ WorriedGrandpaSceneLeft:
|
|||||||
applymovement PLAYER, MovementData_0x7522e
|
applymovement PLAYER, MovementData_0x7522e
|
||||||
applymovement FASTSHIP1F_GENTLEMAN, MovementData_0x75220
|
applymovement FASTSHIP1F_GENTLEMAN, MovementData_0x75220
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x75412
|
writetext FastShip1FGrandpaText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject PLAYER, RIGHT
|
turnobject PLAYER, RIGHT
|
||||||
@ -257,7 +257,7 @@ FastShip1FSailor3Text:
|
|||||||
cont "their cabins."
|
cont "their cabins."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x75412:
|
FastShip1FGrandpaText:
|
||||||
text "Whoa! Excuse me."
|
text "Whoa! Excuse me."
|
||||||
line "I was in a hurry!"
|
line "I was in a hurry!"
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ FastShipB1FSailorScript:
|
|||||||
iftrue .LazySailor
|
iftrue .LazySailor
|
||||||
checkevent EVENT_FAST_SHIP_INFORMED_ABOUT_LAZY_SAILOR
|
checkevent EVENT_FAST_SHIP_INFORMED_ABOUT_LAZY_SAILOR
|
||||||
iftrue .AlreadyInformed
|
iftrue .AlreadyInformed
|
||||||
writetext UnknownText_0x7687b
|
writetext FastShipB1FOnDutySailorText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
setevent EVENT_FAST_SHIP_INFORMED_ABOUT_LAZY_SAILOR
|
setevent EVENT_FAST_SHIP_INFORMED_ABOUT_LAZY_SAILOR
|
||||||
@ -65,13 +65,13 @@ FastShipB1FSailorScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
.AlreadyInformed:
|
.AlreadyInformed:
|
||||||
writetext UnknownText_0x76907
|
writetext FastShipB1FOnDutySailorRefusedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.LazySailor:
|
.LazySailor:
|
||||||
writetext UnknownText_0x7692e
|
writetext FastShipB1FOnDutySailorThanksText
|
||||||
checkevent EVENT_FAST_SHIP_FOUND_GIRL
|
checkevent EVENT_FAST_SHIP_FOUND_GIRL
|
||||||
iffalse .NotFoundGirl
|
iffalse .NotFoundGirl
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -80,13 +80,13 @@ FastShipB1FSailorScript:
|
|||||||
|
|
||||||
.NotFoundGirl:
|
.NotFoundGirl:
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext UnknownText_0x7696d
|
writetext FastShipB1FOnDutySailorSawLittleGirlText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FirstTime:
|
.FirstTime:
|
||||||
writetext UnknownText_0x7699d
|
writetext FastShipB1FOnDutySailorDirectionsText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -218,7 +218,7 @@ FashShipB1FSailorBlocksLeftMovement:
|
|||||||
turn_head DOWN
|
turn_head DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x7687b:
|
FastShipB1FOnDutySailorText:
|
||||||
text "Hey, kid. Could I"
|
text "Hey, kid. Could I"
|
||||||
line "get you to look"
|
line "get you to look"
|
||||||
cont "for my buddy?"
|
cont "for my buddy?"
|
||||||
@ -232,14 +232,14 @@ UnknownText_0x7687b:
|
|||||||
cont "duty right now."
|
cont "duty right now."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x76907:
|
FastShipB1FOnDutySailorRefusedText:
|
||||||
text "Oh, gee…"
|
text "Oh, gee…"
|
||||||
|
|
||||||
para "The CAPTAIN will"
|
para "The CAPTAIN will"
|
||||||
line "be furious…"
|
line "be furious…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7692e:
|
FastShipB1FOnDutySailorThanksText:
|
||||||
text "Thanks, kid!"
|
text "Thanks, kid!"
|
||||||
line "I chewed him out"
|
line "I chewed him out"
|
||||||
|
|
||||||
@ -247,14 +247,14 @@ UnknownText_0x7692e:
|
|||||||
line "slacking off!"
|
line "slacking off!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7696d:
|
FastShipB1FOnDutySailorSawLittleGirlText:
|
||||||
text "A little girl?"
|
text "A little girl?"
|
||||||
|
|
||||||
para "I may have seen"
|
para "I may have seen"
|
||||||
line "her go by here."
|
line "her go by here."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7699d:
|
FastShipB1FOnDutySailorDirectionsText:
|
||||||
text "The dining room is"
|
text "The dining room is"
|
||||||
line "up ahead."
|
line "up ahead."
|
||||||
|
|
||||||
|
@ -82,17 +82,17 @@ FastShipLazySailorScript:
|
|||||||
playmusic MUSIC_HIKER_ENCOUNTER
|
playmusic MUSIC_HIKER_ENCOUNTER
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x75812
|
writetext SailorStanlySeenText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x75897, 0
|
winlosstext SailorStanlyBeatenText, 0
|
||||||
loadtrainer SAILOR, STANLY
|
loadtrainer SAILOR, STANLY
|
||||||
startbattle
|
startbattle
|
||||||
reloadmap
|
reloadmap
|
||||||
special HealParty
|
special HealParty
|
||||||
setevent EVENT_BEAT_SAILOR_STANLY
|
setevent EVENT_BEAT_SAILOR_STANLY
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x758b1
|
writetext SailorStanlyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
setevent EVENT_FAST_SHIP_LAZY_SAILOR
|
setevent EVENT_FAST_SHIP_LAZY_SAILOR
|
||||||
@ -200,7 +200,7 @@ HikerNolandAfterBattleText:
|
|||||||
line "KANTO?"
|
line "KANTO?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x75812:
|
SailorStanlySeenText:
|
||||||
text "Yeah, I'm a sail-"
|
text "Yeah, I'm a sail-"
|
||||||
line "or, all right."
|
line "or, all right."
|
||||||
|
|
||||||
@ -215,12 +215,12 @@ UnknownText_0x75812:
|
|||||||
line "Let's battle!"
|
line "Let's battle!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x75897:
|
SailorStanlyBeatenText:
|
||||||
text "Sorry! It's all my"
|
text "Sorry! It's all my"
|
||||||
line "fault!"
|
line "fault!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x758b1:
|
SailorStanlyAfterBattleText:
|
||||||
text "Being a sailor, I"
|
text "Being a sailor, I"
|
||||||
line "have to do phys-"
|
line "have to do phys-"
|
||||||
cont "ical labor. It's"
|
cont "ical labor. It's"
|
||||||
|
@ -50,14 +50,14 @@ TrainerGuitaristClyde:
|
|||||||
special Mobile_DummyReturnFalse
|
special Mobile_DummyReturnFalse
|
||||||
iftrue .mobile
|
iftrue .mobile
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x75d65
|
writetext GuitaristClydeAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.mobile
|
.mobile
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x75cfe
|
writetext GuitaristClydeAfterBattleMobileText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -180,7 +180,7 @@ GuitaristClydeBeatenText:
|
|||||||
line "Total distortion!"
|
line "Total distortion!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x75cfe:
|
GuitaristClydeAfterBattleMobileText:
|
||||||
text "I was going to"
|
text "I was going to"
|
||||||
line "make my debut at"
|
line "make my debut at"
|
||||||
cont "the BATTLE TOWER…"
|
cont "the BATTLE TOWER…"
|
||||||
@ -190,7 +190,7 @@ UnknownText_0x75cfe:
|
|||||||
cont "redo my training…"
|
cont "redo my training…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x75d65:
|
GuitaristClydeAfterBattleText:
|
||||||
text "Speaking of the"
|
text "Speaking of the"
|
||||||
line "RADIO STATION,"
|
line "RADIO STATION,"
|
||||||
|
|
||||||
|
@ -14,27 +14,27 @@ GoldenrodBikeShopClerkScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_GOT_BICYCLE
|
checkevent EVENT_GOT_BICYCLE
|
||||||
iftrue .GotBicycle
|
iftrue .GotBicycle
|
||||||
writetext UnknownText_0x54787
|
writetext GoldenrodBikeShopClerkIntroText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
writetext UnknownText_0x547f8
|
writetext GoldenrodBikeShopClerkAgreedText
|
||||||
buttonsound
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
giveitem BICYCLE
|
giveitem BICYCLE
|
||||||
writetext UnknownText_0x54848
|
writetext BorrowedABicycleText
|
||||||
playsound SFX_KEY_ITEM
|
playsound SFX_KEY_ITEM
|
||||||
waitsfx
|
waitsfx
|
||||||
itemnotify
|
itemnotify
|
||||||
setflag ENGINE_BIKE_SHOP_CALL_ENABLED
|
setflag ENGINE_BIKE_SHOP_CALL_ENABLED
|
||||||
setevent EVENT_GOT_BICYCLE
|
setevent EVENT_GOT_BICYCLE
|
||||||
.GotBicycle:
|
.GotBicycle:
|
||||||
writetext UnknownText_0x5485f
|
writetext GoldenrodBikeShopClerkFirstRateBikesText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext UnknownText_0x54898
|
writetext GoldenrodBikeShopClerkRefusedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -46,7 +46,7 @@ GoldenrodBikeShopJustReleasedCompactBike:
|
|||||||
GoldenrodBikeShopBicycle:
|
GoldenrodBikeShopBicycle:
|
||||||
jumptext GoldenrodBikeShopBicycleText
|
jumptext GoldenrodBikeShopBicycleText
|
||||||
|
|
||||||
UnknownText_0x54787:
|
GoldenrodBikeShopClerkIntroText:
|
||||||
text "…sigh… I moved"
|
text "…sigh… I moved"
|
||||||
line "here, but I can't"
|
line "here, but I can't"
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ UnknownText_0x54787:
|
|||||||
cont "tise for me?"
|
cont "tise for me?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x547f8:
|
GoldenrodBikeShopClerkAgreedText:
|
||||||
text "Really? Great!"
|
text "Really? Great!"
|
||||||
|
|
||||||
para "Give me your name"
|
para "Give me your name"
|
||||||
@ -68,12 +68,12 @@ UnknownText_0x547f8:
|
|||||||
line "a BICYCLE."
|
line "a BICYCLE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54848:
|
BorrowedABicycleText:
|
||||||
text "<PLAYER> borrowed a"
|
text "<PLAYER> borrowed a"
|
||||||
line "BICYCLE."
|
line "BICYCLE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5485f:
|
GoldenrodBikeShopClerkFirstRateBikesText:
|
||||||
text "My BICYCLES are"
|
text "My BICYCLES are"
|
||||||
line "first-rate! You"
|
line "first-rate! You"
|
||||||
|
|
||||||
@ -81,13 +81,12 @@ UnknownText_0x5485f:
|
|||||||
line "anywhere."
|
line "anywhere."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x54898:
|
GoldenrodBikeShopClerkRefusedText:
|
||||||
text "…sigh… Oh, for"
|
text "…sigh… Oh, for"
|
||||||
line "the kindness of"
|
line "the kindness of"
|
||||||
cont "people…"
|
cont "people…"
|
||||||
done
|
done
|
||||||
|
|
||||||
; possibly unused
|
|
||||||
GoldenrodBikeShopJustReleasedCompactBikeText:
|
GoldenrodBikeShopJustReleasedCompactBikeText:
|
||||||
text "Just released!"
|
text "Just released!"
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ GoldenrodDeptStoreB1FBlackBelt3Script:
|
|||||||
|
|
||||||
GoldenrodDeptStoreB1FMachopScript:
|
GoldenrodDeptStoreB1FMachopScript:
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x7d8bb
|
writetext GoldenrodDeptStoreB1FMachokeText
|
||||||
cry MACHOKE
|
cry MACHOKE
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@ -103,7 +103,7 @@ GoldenrodDeptStoreB1FBlackBelt3Text:
|
|||||||
line "want it!"
|
line "want it!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7d8bb:
|
GoldenrodDeptStoreB1FMachokeText:
|
||||||
text "MACHOKE: Maaacho!"
|
text "MACHOKE: Maaacho!"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ GoldenrodDeptStoreRoofPokefanFScript:
|
|||||||
GoldenrodDeptStoreRoofFisherScript:
|
GoldenrodDeptStoreRoofFisherScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x567d2
|
writetext GoldenrodDeptStoreRoofFisherText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject GOLDENRODDEPTSTOREROOF_FISHER, UP
|
turnobject GOLDENRODDEPTSTOREROOF_FISHER, UP
|
||||||
@ -60,12 +60,12 @@ GoldenrodDeptStoreRoofTwinScript:
|
|||||||
|
|
||||||
GoldenrodDeptStoreRoofSuperNerdScript:
|
GoldenrodDeptStoreRoofSuperNerdScript:
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x56867
|
writetext GoldenrodDeptStoreRoofSuperNerdOhWowText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject GOLDENRODDEPTSTOREROOF_SUPER_NERD, UP
|
turnobject GOLDENRODDEPTSTOREROOF_SUPER_NERD, UP
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x56871
|
writetext GoldenrodDeptStoreRoofSuperNerdQuitBotheringMeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject GOLDENRODDEPTSTOREROOF_SUPER_NERD, RIGHT
|
turnobject GOLDENRODDEPTSTOREROOF_SUPER_NERD, RIGHT
|
||||||
@ -102,7 +102,7 @@ GoldenrodDeptStoreRoofPokefanFText:
|
|||||||
line "from shopping."
|
line "from shopping."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x567d2:
|
GoldenrodDeptStoreRoofFisherText:
|
||||||
text "Pardon? Who says"
|
text "Pardon? Who says"
|
||||||
line "an adult can't get"
|
line "an adult can't get"
|
||||||
cont "into this?"
|
cont "into this?"
|
||||||
@ -120,11 +120,11 @@ GoldenrodDeptStoreRoofTwinText:
|
|||||||
cont "so often."
|
cont "so often."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x56867:
|
GoldenrodDeptStoreRoofSuperNerdOhWowText:
|
||||||
text "Oh, wow!"
|
text "Oh, wow!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x56871:
|
GoldenrodDeptStoreRoofSuperNerdQuitBotheringMeText:
|
||||||
text "Will you quit"
|
text "Will you quit"
|
||||||
line "bothering me?"
|
line "bothering me?"
|
||||||
done
|
done
|
||||||
|
@ -71,17 +71,17 @@ GoldenrodUndergroundWarehouseDirectorScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_RECEIVED_CARD_KEY
|
checkevent EVENT_RECEIVED_CARD_KEY
|
||||||
iftrue .GotCardKey
|
iftrue .GotCardKey
|
||||||
writetext UnknownText_0x7dbc6
|
writetext DirectorIntroText
|
||||||
buttonsound
|
buttonsound
|
||||||
verbosegiveitem CARD_KEY
|
verbosegiveitem CARD_KEY
|
||||||
setevent EVENT_RECEIVED_CARD_KEY
|
setevent EVENT_RECEIVED_CARD_KEY
|
||||||
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
||||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||||
writetext UnknownText_0x7dc5b
|
writetext DirectorCardKeyText
|
||||||
buttonsound
|
buttonsound
|
||||||
.GotCardKey:
|
.GotCardKey:
|
||||||
writetext UnknownText_0x7dc8d
|
writetext DirectorAfterText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -157,7 +157,7 @@ GruntM15AfterBattleText:
|
|||||||
cont "I'll remember you!"
|
cont "I'll remember you!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7dbc6:
|
DirectorIntroText:
|
||||||
text "DIRECTOR: Who?"
|
text "DIRECTOR: Who?"
|
||||||
line "What? You came to"
|
line "What? You came to"
|
||||||
cont "rescue me?"
|
cont "rescue me?"
|
||||||
@ -176,13 +176,13 @@ UnknownText_0x7dbc6:
|
|||||||
line "CARD KEY."
|
line "CARD KEY."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7dc5b:
|
DirectorCardKeyText:
|
||||||
text "DIRECTOR: Use that"
|
text "DIRECTOR: Use that"
|
||||||
line "to open the shut-"
|
line "to open the shut-"
|
||||||
cont "ters on 3F."
|
cont "ters on 3F."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7dc8d:
|
DirectorAfterText:
|
||||||
text "I'm begging you to"
|
text "I'm begging you to"
|
||||||
line "help."
|
line "help."
|
||||||
|
|
||||||
|
@ -89,13 +89,13 @@ IlexForestCharcoalApprenticeScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_HERDED_FARFETCHD
|
checkevent EVENT_HERDED_FARFETCHD
|
||||||
iftrue .DoneFarfetchd
|
iftrue .DoneFarfetchd
|
||||||
writetext UnknownText_0x6ef5c
|
writetext IlexForestApprenticeIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.DoneFarfetchd:
|
.DoneFarfetchd:
|
||||||
writetext UnknownText_0x6f019
|
writetext IlexForestApprenticeAfterText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -736,7 +736,7 @@ MovementData_0x6ef58:
|
|||||||
remove_fixed_facing
|
remove_fixed_facing
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x6ef5c:
|
IlexForestApprenticeIntroText:
|
||||||
text "Oh, man… My boss"
|
text "Oh, man… My boss"
|
||||||
line "is going to be"
|
line "is going to be"
|
||||||
cont "steaming…"
|
cont "steaming…"
|
||||||
@ -755,7 +755,7 @@ UnknownText_0x6ef5c:
|
|||||||
line "and scary for me…"
|
line "and scary for me…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6f019:
|
IlexForestApprenticeAfterText:
|
||||||
text "Wow! Thanks a"
|
text "Wow! Thanks a"
|
||||||
line "whole bunch!"
|
line "whole bunch!"
|
||||||
|
|
||||||
|
@ -43,14 +43,14 @@ RageCandyBarMerchantScript:
|
|||||||
|
|
||||||
.ClearedRocketHideout:
|
.ClearedRocketHideout:
|
||||||
opentext
|
opentext
|
||||||
writetext RageCandyBarMerchantText_SoldOut
|
writetext RageCandyBarMerchantSoldOutText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.SellRageCandyBars:
|
.SellRageCandyBars:
|
||||||
opentext
|
opentext
|
||||||
writetext RageCandyBarMerchantText_TryOne
|
writetext RageCandyBarMerchantTryOneText
|
||||||
special PlaceMoneyTopRight
|
special PlaceMoneyTopRight
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
@ -62,25 +62,25 @@ RageCandyBarMerchantScript:
|
|||||||
playsound SFX_TRANSACTION
|
playsound SFX_TRANSACTION
|
||||||
takemoney YOUR_MONEY, 300
|
takemoney YOUR_MONEY, 300
|
||||||
special PlaceMoneyTopRight
|
special PlaceMoneyTopRight
|
||||||
writetext RageCandyBarMerchantText_SavorIt
|
writetext RageCandyBarMerchantSavorItText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.NotEnoughMoney:
|
.NotEnoughMoney:
|
||||||
writetext RageCandyBarMerchantText_NotEnoughMoney
|
writetext RageCandyBarMerchantNotEnoughMoneyText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext RageCandyBarMerchantText_Refused
|
writetext RageCandyBarMerchantRefusedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.NoRoom:
|
.NoRoom:
|
||||||
writetext UnknownText_0x190188
|
writetext RageCandyBarMerchantNoRoomText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -138,7 +138,7 @@ MovementData_0x1900ad:
|
|||||||
turn_head DOWN
|
turn_head DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
RageCandyBarMerchantText_TryOne:
|
RageCandyBarMerchantTryOneText:
|
||||||
text "Hiya, kid!"
|
text "Hiya, kid!"
|
||||||
|
|
||||||
para "I see you're new"
|
para "I see you're new"
|
||||||
@ -155,25 +155,25 @@ RageCandyBarMerchantText_TryOne:
|
|||||||
cont "¥300! Want one?"
|
cont "¥300! Want one?"
|
||||||
done
|
done
|
||||||
|
|
||||||
RageCandyBarMerchantText_SavorIt:
|
RageCandyBarMerchantSavorItText:
|
||||||
text "Good! Savor it!"
|
text "Good! Savor it!"
|
||||||
done
|
done
|
||||||
|
|
||||||
RageCandyBarMerchantText_NotEnoughMoney:
|
RageCandyBarMerchantNotEnoughMoneyText:
|
||||||
text "You don't have"
|
text "You don't have"
|
||||||
line "enough money."
|
line "enough money."
|
||||||
done
|
done
|
||||||
|
|
||||||
RageCandyBarMerchantText_Refused:
|
RageCandyBarMerchantRefusedText:
|
||||||
text "Oh, fine then…"
|
text "Oh, fine then…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x190188:
|
RageCandyBarMerchantNoRoomText:
|
||||||
text "You don't have"
|
text "You don't have"
|
||||||
line "room for this."
|
line "room for this."
|
||||||
done
|
done
|
||||||
|
|
||||||
RageCandyBarMerchantText_SoldOut:
|
RageCandyBarMerchantSoldOutText:
|
||||||
text "RAGECANDYBAR's"
|
text "RAGECANDYBAR's"
|
||||||
line "sold out."
|
line "sold out."
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ NationalParkBugContest_MapScripts:
|
|||||||
BugCatchingContestant1AScript:
|
BugCatchingContestant1AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5c94c
|
writetext BugCatchingContestant1AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -28,7 +28,7 @@ BugCatchingContestant1AScript:
|
|||||||
BugCatchingContestant2AScript:
|
BugCatchingContestant2AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5c973
|
writetext BugCatchingContestant2AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -36,7 +36,7 @@ BugCatchingContestant2AScript:
|
|||||||
BugCatchingContestant3AScript:
|
BugCatchingContestant3AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5c9a3
|
writetext BugCatchingContestant3AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -44,7 +44,7 @@ BugCatchingContestant3AScript:
|
|||||||
BugCatchingContestant4AScript:
|
BugCatchingContestant4AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5c9cc
|
writetext BugCatchingContestant4AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -52,7 +52,7 @@ BugCatchingContestant4AScript:
|
|||||||
BugCatchingContestant5AScript:
|
BugCatchingContestant5AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5ca15
|
writetext BugCatchingContestant5AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -60,7 +60,7 @@ BugCatchingContestant5AScript:
|
|||||||
BugCatchingContestant6AScript:
|
BugCatchingContestant6AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5ca52
|
writetext BugCatchingContestant6AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -68,7 +68,7 @@ BugCatchingContestant6AScript:
|
|||||||
BugCatchingContestant7AScript:
|
BugCatchingContestant7AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5ca8f
|
writetext BugCatchingContestant7AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -76,7 +76,7 @@ BugCatchingContestant7AScript:
|
|||||||
BugCatchingContestant8AScript:
|
BugCatchingContestant8AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5cac8
|
writetext BugCatchingContestant8AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -84,7 +84,7 @@ BugCatchingContestant8AScript:
|
|||||||
BugCatchingContestant9AScript:
|
BugCatchingContestant9AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5cb25
|
writetext BugCatchingContestant9AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -92,7 +92,7 @@ BugCatchingContestant9AScript:
|
|||||||
BugCatchingContestant10AScript:
|
BugCatchingContestant10AScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x5cb64
|
writetext BugCatchingContestant10AText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -115,25 +115,25 @@ NationalParkBugContestTMDig:
|
|||||||
NationalParkBugContestHiddenFullHeal:
|
NationalParkBugContestHiddenFullHeal:
|
||||||
hiddenitem FULL_HEAL, EVENT_NATIONAL_PARK_HIDDEN_FULL_HEAL
|
hiddenitem FULL_HEAL, EVENT_NATIONAL_PARK_HIDDEN_FULL_HEAL
|
||||||
|
|
||||||
UnknownText_0x5c94c:
|
BugCatchingContestant1AText:
|
||||||
text "DON: I'm going to"
|
text "DON: I'm going to"
|
||||||
line "win! Don't bother"
|
line "win! Don't bother"
|
||||||
cont "me."
|
cont "me."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5c973:
|
BugCatchingContestant2AText:
|
||||||
text "ED: My PARASECT"
|
text "ED: My PARASECT"
|
||||||
line "puts #MON to"
|
line "puts #MON to"
|
||||||
cont "sleep with SPORE."
|
cont "sleep with SPORE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5c9a3:
|
BugCatchingContestant3AText:
|
||||||
text "NICK: I'm raising"
|
text "NICK: I'm raising"
|
||||||
line "fast #MON for"
|
line "fast #MON for"
|
||||||
cont "battles."
|
cont "battles."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5c9cc:
|
BugCatchingContestant4AText:
|
||||||
text "WILLIAM: I'm not"
|
text "WILLIAM: I'm not"
|
||||||
line "concerned about"
|
line "concerned about"
|
||||||
cont "winning."
|
cont "winning."
|
||||||
@ -142,7 +142,7 @@ UnknownText_0x5c9cc:
|
|||||||
line "for rare #MON."
|
line "for rare #MON."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5ca15:
|
BugCatchingContestant5AText:
|
||||||
text "BENNY: Ssh! You'll"
|
text "BENNY: Ssh! You'll"
|
||||||
line "scare off SCYTHER."
|
line "scare off SCYTHER."
|
||||||
|
|
||||||
@ -150,7 +150,7 @@ UnknownText_0x5ca15:
|
|||||||
line "later."
|
line "later."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5ca52:
|
BugCatchingContestant6AText:
|
||||||
text "BARRY: You should"
|
text "BARRY: You should"
|
||||||
line "weaken bug #MON"
|
line "weaken bug #MON"
|
||||||
|
|
||||||
@ -158,7 +158,7 @@ UnknownText_0x5ca52:
|
|||||||
line "a BALL."
|
line "a BALL."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5ca8f:
|
BugCatchingContestant7AText:
|
||||||
text "CINDY: I love bug"
|
text "CINDY: I love bug"
|
||||||
line "#MON."
|
line "#MON."
|
||||||
|
|
||||||
@ -166,7 +166,7 @@ UnknownText_0x5ca8f:
|
|||||||
line "like them too."
|
line "like them too."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5cac8:
|
BugCatchingContestant8AText:
|
||||||
text "JOSH: I've been"
|
text "JOSH: I've been"
|
||||||
line "collecting bug"
|
line "collecting bug"
|
||||||
|
|
||||||
@ -177,7 +177,7 @@ UnknownText_0x5cac8:
|
|||||||
line "going to lose!"
|
line "going to lose!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5cb25:
|
BugCatchingContestant9AText:
|
||||||
text "SAMUEL: If you've"
|
text "SAMUEL: If you've"
|
||||||
line "got the time to"
|
line "got the time to"
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ UnknownText_0x5cb25:
|
|||||||
line "bug #MON."
|
line "bug #MON."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x5cb64:
|
BugCatchingContestant10AText:
|
||||||
text "KIPP: I've studied"
|
text "KIPP: I've studied"
|
||||||
line "about bug #MON"
|
line "about bug #MON"
|
||||||
cont "a lot."
|
cont "a lot."
|
||||||
|
@ -33,7 +33,7 @@ OlivineCityRivalSceneTop:
|
|||||||
applymovement OLIVINECITY_OLIVINE_RIVAL, MovementData_0x1a88d2
|
applymovement OLIVINECITY_OLIVINE_RIVAL, MovementData_0x1a88d2
|
||||||
playmusic MUSIC_RIVAL_ENCOUNTER
|
playmusic MUSIC_RIVAL_ENCOUNTER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1a88fa
|
writetext OlivineCityRivalText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
applymovement PLAYER, MovementData_0x1a88f4
|
applymovement PLAYER, MovementData_0x1a88f4
|
||||||
@ -57,7 +57,7 @@ OlivineCityRivalSceneBottom:
|
|||||||
applymovement OLIVINECITY_OLIVINE_RIVAL, MovementData_0x1a88d6
|
applymovement OLIVINECITY_OLIVINE_RIVAL, MovementData_0x1a88d6
|
||||||
playmusic MUSIC_RIVAL_ENCOUNTER
|
playmusic MUSIC_RIVAL_ENCOUNTER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1a88fa
|
writetext OlivineCityRivalText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
applymovement PLAYER, MovementData_0x1a88f7
|
applymovement PLAYER, MovementData_0x1a88f7
|
||||||
@ -165,7 +165,7 @@ MovementData_0x1a88f7:
|
|||||||
turn_head DOWN
|
turn_head DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x1a88fa:
|
OlivineCityRivalText:
|
||||||
text "…"
|
text "…"
|
||||||
|
|
||||||
para "You again?"
|
para "You again?"
|
||||||
|
@ -13,27 +13,27 @@ PewterGymBrockScript:
|
|||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_BOULDERBADGE
|
checkflag ENGINE_BOULDERBADGE
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x1a28d0
|
writetext BrockIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x1a29bb, 0
|
winlosstext BrockWinLossText, 0
|
||||||
loadtrainer BROCK, BROCK1
|
loadtrainer BROCK, BROCK1
|
||||||
startbattle
|
startbattle
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
setevent EVENT_BEAT_BROCK
|
setevent EVENT_BEAT_BROCK
|
||||||
setevent EVENT_BEAT_CAMPER_JERRY
|
setevent EVENT_BEAT_CAMPER_JERRY
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1a2a3d
|
writetext ReceivedBoulderBadgeText
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
waitsfx
|
waitsfx
|
||||||
setflag ENGINE_BOULDERBADGE
|
setflag ENGINE_BOULDERBADGE
|
||||||
writetext UnknownText_0x1a2a57
|
writetext BrockBoulderBadgeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FightDone:
|
.FightDone:
|
||||||
writetext UnknownText_0x1a2ada
|
writetext BrockFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -73,7 +73,7 @@ PewterGymStatue:
|
|||||||
trainertotext BROCK, BROCK1, MEM_BUFFER_1
|
trainertotext BROCK, BROCK1, MEM_BUFFER_1
|
||||||
jumpstd gymstatue2
|
jumpstd gymstatue2
|
||||||
|
|
||||||
UnknownText_0x1a28d0:
|
BrockIntroText:
|
||||||
text "BROCK: Wow, it's"
|
text "BROCK: Wow, it's"
|
||||||
line "not often that we"
|
line "not often that we"
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ UnknownText_0x1a28d0:
|
|||||||
para "Come on!"
|
para "Come on!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a29bb:
|
BrockWinLossText:
|
||||||
text "BROCK: Your #-"
|
text "BROCK: Your #-"
|
||||||
line "MON's powerful at-"
|
line "MON's powerful at-"
|
||||||
cont "tacks overcame my"
|
cont "tacks overcame my"
|
||||||
@ -111,12 +111,12 @@ UnknownText_0x1a29bb:
|
|||||||
line "this BADGE."
|
line "this BADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a2a3d:
|
ReceivedBoulderBadgeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "BOULDERBADGE."
|
line "BOULDERBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a2a57:
|
BrockBoulderBadgeText:
|
||||||
text "BROCK: <PLAY_G>,"
|
text "BROCK: <PLAY_G>,"
|
||||||
line "thanks. I enjoyed"
|
line "thanks. I enjoyed"
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ UnknownText_0x1a2a57:
|
|||||||
line "powerful."
|
line "powerful."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a2ada:
|
BrockFightDoneText:
|
||||||
text "BROCK: The world"
|
text "BROCK: The world"
|
||||||
line "is huge. There are"
|
line "is huge. There are"
|
||||||
|
|
||||||
|
@ -11,22 +11,22 @@ Route12SuperRodHouseFishingGuruScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_GOT_SUPER_ROD
|
checkevent EVENT_GOT_SUPER_ROD
|
||||||
iftrue .GotSuperRod
|
iftrue .GotSuperRod
|
||||||
writetext UnknownText_0x7f4af
|
writetext OfferSuperRodText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
writetext UnknownText_0x7f52f
|
writetext GiveSuperRodText
|
||||||
buttonsound
|
buttonsound
|
||||||
verbosegiveitem SUPER_ROD
|
verbosegiveitem SUPER_ROD
|
||||||
iffalse .NoRoom
|
iffalse .NoRoom
|
||||||
setevent EVENT_GOT_SUPER_ROD
|
setevent EVENT_GOT_SUPER_ROD
|
||||||
.GotSuperRod:
|
.GotSuperRod:
|
||||||
writetext UnknownText_0x7f57c
|
writetext GaveSuperRodText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext UnknownText_0x7f5ec
|
writetext DontWantSuperRodText
|
||||||
waitbutton
|
waitbutton
|
||||||
.NoRoom:
|
.NoRoom:
|
||||||
closetext
|
closetext
|
||||||
@ -36,7 +36,7 @@ SuperRodHouseBookshelf:
|
|||||||
; unused
|
; unused
|
||||||
jumpstd picturebookshelf
|
jumpstd picturebookshelf
|
||||||
|
|
||||||
UnknownText_0x7f4af:
|
OfferSuperRodText:
|
||||||
text "I'm the FISHING"
|
text "I'm the FISHING"
|
||||||
line "GURU's younger"
|
line "GURU's younger"
|
||||||
cont "brother."
|
cont "brother."
|
||||||
@ -51,7 +51,7 @@ UnknownText_0x7f4af:
|
|||||||
line "right."
|
line "right."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7f52f:
|
GiveSuperRodText:
|
||||||
text "Yes, yes. Just as"
|
text "Yes, yes. Just as"
|
||||||
line "I thought!"
|
line "I thought!"
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ UnknownText_0x7f52f:
|
|||||||
cont "SUPER ROD."
|
cont "SUPER ROD."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7f57c:
|
GaveSuperRodText:
|
||||||
text "Try your hand at"
|
text "Try your hand at"
|
||||||
line "fishing wherever"
|
line "fishing wherever"
|
||||||
cont "there is water."
|
cont "there is water."
|
||||||
@ -72,7 +72,7 @@ UnknownText_0x7f57c:
|
|||||||
line "different RODS."
|
line "different RODS."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7f5ec:
|
DontWantSuperRodText:
|
||||||
text "Huh? My own eyes"
|
text "Huh? My own eyes"
|
||||||
line "deceived me?"
|
line "deceived me?"
|
||||||
done
|
done
|
||||||
|
@ -10,20 +10,20 @@ Route24RocketScript:
|
|||||||
faceplayer
|
faceplayer
|
||||||
playmusic MUSIC_ROCKET_ENCOUNTER
|
playmusic MUSIC_ROCKET_ENCOUNTER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1adc2e
|
writetext Route24RocketSeenText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x1add67, -1
|
winlosstext Route24RocketBeatenText, -1
|
||||||
loadtrainer GRUNTM, GRUNTM_31
|
loadtrainer GRUNTM, GRUNTM_31
|
||||||
startbattle
|
startbattle
|
||||||
dontrestartmapmusic
|
dontrestartmapmusic
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
playmusic MUSIC_ROCKET_ENCOUNTER
|
playmusic MUSIC_ROCKET_ENCOUNTER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1addc0
|
writetext Route24RocketAfterBattleText
|
||||||
buttonsound
|
buttonsound
|
||||||
special FadeOutMusic
|
special FadeOutMusic
|
||||||
writetext UnknownText_0x1adee1
|
writetext Route24RocketDisappearsText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
special FadeBlackQuickly
|
special FadeBlackQuickly
|
||||||
@ -34,7 +34,7 @@ Route24RocketScript:
|
|||||||
playmapmusic
|
playmapmusic
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownText_0x1adc2e:
|
Route24RocketSeenText:
|
||||||
text "Hey, kid! Me am a"
|
text "Hey, kid! Me am a"
|
||||||
line "TEAM ROCKET member"
|
line "TEAM ROCKET member"
|
||||||
cont "kind of guy!"
|
cont "kind of guy!"
|
||||||
@ -63,7 +63,7 @@ UnknownText_0x1adc2e:
|
|||||||
line "begin we do!"
|
line "begin we do!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1add67:
|
Route24RocketBeatenText:
|
||||||
text "Ayieeeh! No, no,"
|
text "Ayieeeh! No, no,"
|
||||||
line "no, believe it I"
|
line "no, believe it I"
|
||||||
cont "can't!"
|
cont "can't!"
|
||||||
@ -73,7 +73,7 @@ UnknownText_0x1add67:
|
|||||||
cont "not to you!"
|
cont "not to you!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1addc0:
|
Route24RocketAfterBattleText:
|
||||||
text "OK. Tell you mine"
|
text "OK. Tell you mine"
|
||||||
line "secret will I."
|
line "secret will I."
|
||||||
|
|
||||||
@ -102,7 +102,7 @@ UnknownText_0x1addc0:
|
|||||||
line "revenge they are."
|
line "revenge they are."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1adee1:
|
Route24RocketDisappearsText:
|
||||||
text "…"
|
text "…"
|
||||||
|
|
||||||
para "You say what? TEAM"
|
para "You say what? TEAM"
|
||||||
|
@ -9,7 +9,7 @@ Route26HealHouse_MapScripts:
|
|||||||
Route26HealHouseTeacherScript:
|
Route26HealHouseTeacherScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x7b14d
|
writetext Route26HealHouseRestAWhileText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
special FadeBlackQuickly
|
special FadeBlackQuickly
|
||||||
@ -21,7 +21,7 @@ Route26HealHouseTeacherScript:
|
|||||||
special FadeInQuickly
|
special FadeInQuickly
|
||||||
special RestartMapMusic
|
special RestartMapMusic
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x7b18b
|
writetext Route26HealHouseKeepAtItText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -29,7 +29,7 @@ Route26HealHouseTeacherScript:
|
|||||||
Route26HealHouseBookshelf:
|
Route26HealHouseBookshelf:
|
||||||
jumpstd picturebookshelf
|
jumpstd picturebookshelf
|
||||||
|
|
||||||
UnknownText_0x7b14d:
|
Route26HealHouseRestAWhileText:
|
||||||
text "Your #MON look"
|
text "Your #MON look"
|
||||||
line "a little tired."
|
line "a little tired."
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ UnknownText_0x7b14d:
|
|||||||
line "them a while."
|
line "them a while."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x7b18b:
|
Route26HealHouseKeepAtItText:
|
||||||
text "There!"
|
text "There!"
|
||||||
|
|
||||||
para "Your #MON are"
|
para "Your #MON are"
|
||||||
|
@ -125,7 +125,7 @@ CatchingTutorialDudeScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
.BoxFull:
|
.BoxFull:
|
||||||
writetext UnknownText_0x1a10a7
|
writetext CatchingTutorialBoxFullText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -246,7 +246,7 @@ DudeMovementData2b:
|
|||||||
step DOWN
|
step DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x1a10a7:
|
CatchingTutorialBoxFullText:
|
||||||
text "#MON hide in"
|
text "#MON hide in"
|
||||||
line "the grass. Who"
|
line "the grass. Who"
|
||||||
|
|
||||||
|
@ -308,13 +308,13 @@ BugCatchingContestant1BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b399
|
writetext BugCatchingContestant1BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b3c4
|
writetext BugCatchingContestant1BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -324,13 +324,13 @@ BugCatchingContestant2BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b40f
|
writetext BugCatchingContestant2BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b440
|
writetext BugCatchingContestant2BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -340,13 +340,13 @@ BugCatchingContestant3BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b462
|
writetext BugCatchingContestant3BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b496
|
writetext BugCatchingContestant3BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -356,13 +356,13 @@ BugCatchingContestant4BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b4da
|
writetext BugCatchingContestant4BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b50a
|
writetext BugCatchingContestant4BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -372,13 +372,13 @@ BugCatchingContestant5BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b54e
|
writetext BugCatchingContestant5BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b57c
|
writetext BugCatchingContestant5BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -388,13 +388,13 @@ BugCatchingContestant6BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b5b0
|
writetext BugCatchingContestant6BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b5dd
|
writetext BugCatchingContestant6BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -404,13 +404,13 @@ BugCatchingContestant7BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b64b
|
writetext BugCatchingContestant7BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b698
|
writetext BugCatchingContestant7BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -420,13 +420,13 @@ BugCatchingContestant8BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b6b8
|
writetext BugCatchingContestant8BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b6e9
|
writetext BugCatchingContestant8BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -436,13 +436,13 @@ BugCatchingContestant9BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b71b
|
writetext BugCatchingContestant9BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b740
|
writetext BugCatchingContestant9BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -452,13 +452,13 @@ BugCatchingContestant10BScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||||
iffalse .StillCompeting
|
iffalse .StillCompeting
|
||||||
writetext UnknownText_0x6b76f
|
writetext BugCatchingContestant10BText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.StillCompeting:
|
.StillCompeting:
|
||||||
writetext UnknownText_0x6b7af
|
writetext BugCatchingContestant10BStillCompetingText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -658,13 +658,13 @@ UnknownText_0x6b370:
|
|||||||
cont "the PARK."
|
cont "the PARK."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b399:
|
BugCatchingContestant1BText:
|
||||||
text "DON: Wow, you beat"
|
text "DON: Wow, you beat"
|
||||||
line "me. You're pretty"
|
line "me. You're pretty"
|
||||||
cont "good."
|
cont "good."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b3c4:
|
BugCatchingContestant1BStillCompetingText:
|
||||||
text "DON: Luck plays a"
|
text "DON: Luck plays a"
|
||||||
line "big part in this."
|
line "big part in this."
|
||||||
|
|
||||||
@ -673,24 +673,24 @@ UnknownText_0x6b3c4:
|
|||||||
cont "appear."
|
cont "appear."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b40f:
|
BugCatchingContestant2BText:
|
||||||
text "ED: I envy you."
|
text "ED: I envy you."
|
||||||
line "I just couldn't"
|
line "I just couldn't"
|
||||||
cont "do it this time."
|
cont "do it this time."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b440:
|
BugCatchingContestant2BStillCompetingText:
|
||||||
text "ED: Maybe you win"
|
text "ED: Maybe you win"
|
||||||
line "with big #MON?"
|
line "with big #MON?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b462:
|
BugCatchingContestant3BText:
|
||||||
text "NICK: Well done!"
|
text "NICK: Well done!"
|
||||||
line "I'm going to raise"
|
line "I'm going to raise"
|
||||||
cont "my #MON better."
|
cont "my #MON better."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b496:
|
BugCatchingContestant3BStillCompetingText:
|
||||||
text "NICK: Maybe you"
|
text "NICK: Maybe you"
|
||||||
line "get a higher score"
|
line "get a higher score"
|
||||||
|
|
||||||
@ -698,13 +698,13 @@ UnknownText_0x6b496:
|
|||||||
line "an unusual color."
|
line "an unusual color."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b4da:
|
BugCatchingContestant4BText:
|
||||||
text "WILLIAM: You're"
|
text "WILLIAM: You're"
|
||||||
line "the winner? What"
|
line "the winner? What"
|
||||||
cont "did you catch?"
|
cont "did you catch?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b50a:
|
BugCatchingContestant4BStillCompetingText:
|
||||||
text "WILLIAM: Well, I'm"
|
text "WILLIAM: Well, I'm"
|
||||||
line "satisfied because"
|
line "satisfied because"
|
||||||
|
|
||||||
@ -712,25 +712,25 @@ UnknownText_0x6b50a:
|
|||||||
line "that I wanted."
|
line "that I wanted."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b54e:
|
BugCatchingContestant5BText:
|
||||||
text "BENNY: Congrats!"
|
text "BENNY: Congrats!"
|
||||||
line "You have earned my"
|
line "You have earned my"
|
||||||
cont "respect!"
|
cont "respect!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b57c:
|
BugCatchingContestant5BStillCompetingText:
|
||||||
text "BENNY: I caught a"
|
text "BENNY: I caught a"
|
||||||
line "SCYTHER before,"
|
line "SCYTHER before,"
|
||||||
cont "but I didn't win."
|
cont "but I didn't win."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b5b0:
|
BugCatchingContestant6BText:
|
||||||
text "BARRY: That #-"
|
text "BARRY: That #-"
|
||||||
line "MON you caught…"
|
line "MON you caught…"
|
||||||
cont "it's awesome!"
|
cont "it's awesome!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b5dd:
|
BugCatchingContestant6BStillCompetingText:
|
||||||
text "BARRY: It's easier"
|
text "BARRY: It's easier"
|
||||||
line "to win if you get"
|
line "to win if you get"
|
||||||
|
|
||||||
@ -742,7 +742,7 @@ UnknownText_0x6b5dd:
|
|||||||
cont "other points."
|
cont "other points."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b64b:
|
BugCatchingContestant7BText:
|
||||||
text "CINDY: You won?"
|
text "CINDY: You won?"
|
||||||
line "That's great!"
|
line "That's great!"
|
||||||
|
|
||||||
@ -751,35 +751,35 @@ UnknownText_0x6b64b:
|
|||||||
cont "#MON with me?"
|
cont "#MON with me?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b698:
|
BugCatchingContestant7BStillCompetingText:
|
||||||
text "CINDY: I really"
|
text "CINDY: I really"
|
||||||
line "love bug #MON!"
|
line "love bug #MON!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b6b8:
|
BugCatchingContestant8BText:
|
||||||
text "JOSH: I… I can't"
|
text "JOSH: I… I can't"
|
||||||
line "believe I lost at"
|
line "believe I lost at"
|
||||||
cont "bug-catching…"
|
cont "bug-catching…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b6e9:
|
BugCatchingContestant8BStillCompetingText:
|
||||||
text "JOSH: I heard that"
|
text "JOSH: I heard that"
|
||||||
line "somebody won with"
|
line "somebody won with"
|
||||||
cont "a CATERPIE!"
|
cont "a CATERPIE!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b71b:
|
BugCatchingContestant9BText:
|
||||||
text "SAMUEL: Next time,"
|
text "SAMUEL: Next time,"
|
||||||
line "I'm going to win."
|
line "I'm going to win."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b740:
|
BugCatchingContestant9BStillCompetingText:
|
||||||
text "SAMUEL: Darn."
|
text "SAMUEL: Darn."
|
||||||
line "I thought I would"
|
line "I thought I would"
|
||||||
cont "score higher…"
|
cont "score higher…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b76f:
|
BugCatchingContestant10BText:
|
||||||
text "KIPP: Could you"
|
text "KIPP: Could you"
|
||||||
line "give me some tips?"
|
line "give me some tips?"
|
||||||
|
|
||||||
@ -787,7 +787,7 @@ UnknownText_0x6b76f:
|
|||||||
line "your style."
|
line "your style."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6b7af:
|
BugCatchingContestant10BStillCompetingText:
|
||||||
text "KIPP: I study a"
|
text "KIPP: I study a"
|
||||||
line "lot, but that's"
|
line "lot, but that's"
|
||||||
|
|
||||||
|
@ -13,14 +13,14 @@ Route39BarnTwin1Script:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_HEALED_MOOMOO
|
checkevent EVENT_HEALED_MOOMOO
|
||||||
iftrue .FeedingMooMoo
|
iftrue .FeedingMooMoo
|
||||||
writetext Text_MoomooIsSick
|
writetext Route39BarnTwinMoomooIsSickText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject ROUTE39BARN_TWIN1, RIGHT
|
turnobject ROUTE39BARN_TWIN1, RIGHT
|
||||||
end
|
end
|
||||||
|
|
||||||
.FeedingMooMoo:
|
.FeedingMooMoo:
|
||||||
writetext Text_WereFeedingMoomoo
|
writetext Route39BarnTwinWereFeedingMoomooText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject ROUTE39BARN_TWIN1, RIGHT
|
turnobject ROUTE39BARN_TWIN1, RIGHT
|
||||||
@ -31,28 +31,28 @@ Route39BarnTwin2Script:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_HEALED_MOOMOO
|
checkevent EVENT_HEALED_MOOMOO
|
||||||
iftrue .FeedingMooMoo
|
iftrue .FeedingMooMoo
|
||||||
writetext Text_MoomooIsSick
|
writetext Route39BarnTwinMoomooIsSickText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject ROUTE39BARN_TWIN2, LEFT
|
turnobject ROUTE39BARN_TWIN2, LEFT
|
||||||
end
|
end
|
||||||
|
|
||||||
.FeedingMooMoo:
|
.FeedingMooMoo:
|
||||||
writetext Text_WereFeedingMoomoo
|
writetext Route39BarnTwinWereFeedingMoomooText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
turnobject ROUTE39BARN_TWIN2, LEFT
|
turnobject ROUTE39BARN_TWIN2, LEFT
|
||||||
end
|
end
|
||||||
|
|
||||||
MooMoo:
|
MoomooScript:
|
||||||
opentext
|
opentext
|
||||||
checkevent EVENT_HEALED_MOOMOO
|
checkevent EVENT_HEALED_MOOMOO
|
||||||
iftrue .HappyCow
|
iftrue .HappyCow
|
||||||
writetext Text_WeakMoo
|
writetext MoomooWeakMooText
|
||||||
writebyte MILTANK
|
writebyte MILTANK
|
||||||
special PlaySlowCry
|
special PlaySlowCry
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext Text_ItsCryIsWeak
|
writetext Route39BarnItsCryIsWeakText
|
||||||
checkevent EVENT_TALKED_TO_FARMER_ABOUT_MOOMOO
|
checkevent EVENT_TALKED_TO_FARMER_ABOUT_MOOMOO
|
||||||
iftrue .GiveBerry
|
iftrue .GiveBerry
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -61,7 +61,7 @@ MooMoo:
|
|||||||
|
|
||||||
.GiveBerry:
|
.GiveBerry:
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext Text_AskGiveBerry
|
writetext Route39BarnAskGiveBerryText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
checkitem BERRY
|
checkitem BERRY
|
||||||
@ -73,113 +73,113 @@ MooMoo:
|
|||||||
ifequal 3, .ThreeBerries
|
ifequal 3, .ThreeBerries
|
||||||
ifequal 5, .FiveBerries
|
ifequal 5, .FiveBerries
|
||||||
ifequal 7, .SevenBerries
|
ifequal 7, .SevenBerries
|
||||||
writetext Text_GaveBerry
|
writetext Route39BarnGaveBerryText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.ThreeBerries:
|
.ThreeBerries:
|
||||||
writetext Text_GaveBerry
|
writetext Route39BarnGaveBerryText
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext Text_LittleHealthier
|
writetext Route39BarnLittleHealthierText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FiveBerries:
|
.FiveBerries:
|
||||||
writetext Text_GaveBerry
|
writetext Route39BarnGaveBerryText
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext Text_QuiteHealthy
|
writetext Route39BarnQuiteHealthyText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.SevenBerries:
|
.SevenBerries:
|
||||||
playmusic MUSIC_HEAL
|
playmusic MUSIC_HEAL
|
||||||
writetext Text_GaveBerry
|
writetext Route39BarnGaveBerryText
|
||||||
pause 60
|
pause 60
|
||||||
buttonsound
|
buttonsound
|
||||||
special RestartMapMusic
|
special RestartMapMusic
|
||||||
writetext Text_TotallyHealthy
|
writetext Route39BarnTotallyHealthyText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
setevent EVENT_HEALED_MOOMOO
|
setevent EVENT_HEALED_MOOMOO
|
||||||
end
|
end
|
||||||
|
|
||||||
.NoBerriesInBag:
|
.NoBerriesInBag:
|
||||||
writetext Text_NoBerries
|
writetext Route39BarnNoBerriesText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.Refused:
|
.Refused:
|
||||||
writetext Text_RefusedToGiveBerry
|
writetext Route39BarnRefusedBerryText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.HappyCow:
|
.HappyCow:
|
||||||
writetext UnknownText_0x9cd92
|
writetext MoomooHappyMooText
|
||||||
cry MILTANK
|
cry MILTANK
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
Text_MoomooIsSick:
|
Route39BarnTwinMoomooIsSickText:
|
||||||
text "MOOMOO is sick…"
|
text "MOOMOO is sick…"
|
||||||
|
|
||||||
para "She needs lots of"
|
para "She needs lots of"
|
||||||
line "BERRIES."
|
line "BERRIES."
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_WereFeedingMoomoo:
|
Route39BarnTwinWereFeedingMoomooText:
|
||||||
text "We're feeding"
|
text "We're feeding"
|
||||||
line "MOOMOO!"
|
line "MOOMOO!"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_WeakMoo:
|
MoomooWeakMooText:
|
||||||
text "MILTANK: …Moo…"
|
text "MILTANK: …Moo…"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_ItsCryIsWeak:
|
Route39BarnItsCryIsWeakText:
|
||||||
text "Its cry is weak…"
|
text "Its cry is weak…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x9cd92:
|
MoomooHappyMooText:
|
||||||
text "MILTANK: Mooo!"
|
text "MILTANK: Mooo!"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_AskGiveBerry:
|
Route39BarnAskGiveBerryText:
|
||||||
text "Give a BERRY to"
|
text "Give a BERRY to"
|
||||||
line "MILTANK?"
|
line "MILTANK?"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_GaveBerry:
|
Route39BarnGaveBerryText:
|
||||||
text "<PLAYER> gave a"
|
text "<PLAYER> gave a"
|
||||||
line "BERRY to MILTANK."
|
line "BERRY to MILTANK."
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_LittleHealthier:
|
Route39BarnLittleHealthierText:
|
||||||
text "MILTANK became a"
|
text "MILTANK became a"
|
||||||
line "little healthier!"
|
line "little healthier!"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_QuiteHealthy:
|
Route39BarnQuiteHealthyText:
|
||||||
text "MILTANK became"
|
text "MILTANK became"
|
||||||
line "quite healthy!"
|
line "quite healthy!"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_TotallyHealthy:
|
Route39BarnTotallyHealthyText:
|
||||||
text "MILTANK became"
|
text "MILTANK became"
|
||||||
line "totally healthy!"
|
line "totally healthy!"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_NoBerries:
|
Route39BarnNoBerriesText:
|
||||||
text "<PLAYER> has no"
|
text "<PLAYER> has no"
|
||||||
line "BERRIES…"
|
line "BERRIES…"
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_RefusedToGiveBerry:
|
Route39BarnRefusedBerryText:
|
||||||
text "<PLAYER> wouldn't"
|
text "<PLAYER> wouldn't"
|
||||||
line "give a BERRY."
|
line "give a BERRY."
|
||||||
|
|
||||||
@ -200,4 +200,4 @@ Route39Barn_MapEvents:
|
|||||||
db 3 ; object events
|
db 3 ; object events
|
||||||
object_event 2, 3, SPRITE_TWIN, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, Route39BarnTwin1Script, -1
|
object_event 2, 3, SPRITE_TWIN, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, Route39BarnTwin1Script, -1
|
||||||
object_event 4, 3, SPRITE_TWIN, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route39BarnTwin2Script, -1
|
object_event 4, 3, SPRITE_TWIN, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route39BarnTwin2Script, -1
|
||||||
object_event 3, 3, SPRITE_TAUROS, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MooMoo, -1
|
object_event 3, 3, SPRITE_TAUROS, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MoomooScript, -1
|
||||||
|
@ -11,18 +11,18 @@ Route43MahoganyGateOfficer:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_CLEARED_ROCKET_HIDEOUT
|
checkevent EVENT_CLEARED_ROCKET_HIDEOUT
|
||||||
iftrue .RocketsCleared
|
iftrue .RocketsCleared
|
||||||
writetext UnknownText_0x19ab1f
|
writetext Route43MahoganyGateOfficerText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.RocketsCleared:
|
.RocketsCleared:
|
||||||
writetext UnknownText_0x19ab65
|
writetext Route43MahoganyGateOfficerRocketsClearedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownText_0x19ab1f:
|
Route43MahoganyGateOfficerText:
|
||||||
text "Only people headed"
|
text "Only people headed"
|
||||||
line "up to LAKE OF RAGE"
|
line "up to LAKE OF RAGE"
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ UnknownText_0x19ab1f:
|
|||||||
line "here lately."
|
line "here lately."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x19ab65:
|
Route43MahoganyGateOfficerRocketsClearedText:
|
||||||
text "Nobody goes up to"
|
text "Nobody goes up to"
|
||||||
line "LAKE OF RAGE these"
|
line "LAKE OF RAGE these"
|
||||||
cont "days."
|
cont "days."
|
||||||
|
@ -16,10 +16,10 @@ SaffronGymSabrinaScript:
|
|||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_MARSHBADGE
|
checkflag ENGINE_MARSHBADGE
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x189cdf
|
writetext SabrinaIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x189df4, 0
|
winlosstext SabrinaWinLossText, 0
|
||||||
loadtrainer SABRINA, SABRINA1
|
loadtrainer SABRINA, SABRINA1
|
||||||
startbattle
|
startbattle
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
@ -29,17 +29,17 @@ SaffronGymSabrinaScript:
|
|||||||
setevent EVENT_BEAT_PSYCHIC_FRANKLIN
|
setevent EVENT_BEAT_PSYCHIC_FRANKLIN
|
||||||
setevent EVENT_BEAT_PSYCHIC_JARED
|
setevent EVENT_BEAT_PSYCHIC_JARED
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x189e95
|
writetext ReceivedMarshBadgeText
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
waitsfx
|
waitsfx
|
||||||
setflag ENGINE_MARSHBADGE
|
setflag ENGINE_MARSHBADGE
|
||||||
writetext UnknownText_0x189ead
|
writetext SabrinaMarshBadgeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FightDone:
|
.FightDone:
|
||||||
writetext UnknownText_0x189f6c
|
writetext SabrinaFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -112,7 +112,7 @@ SaffronGymStatue:
|
|||||||
trainertotext SABRINA, SABRINA1, MEM_BUFFER_1
|
trainertotext SABRINA, SABRINA1, MEM_BUFFER_1
|
||||||
jumpstd gymstatue2
|
jumpstd gymstatue2
|
||||||
|
|
||||||
UnknownText_0x189cdf:
|
SabrinaIntroText:
|
||||||
text "SABRINA: I knew"
|
text "SABRINA: I knew"
|
||||||
line "you were coming…"
|
line "you were coming…"
|
||||||
|
|
||||||
@ -138,7 +138,7 @@ UnknownText_0x189cdf:
|
|||||||
cont "psychic powers!"
|
cont "psychic powers!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x189df4:
|
SabrinaWinLossText:
|
||||||
text "SABRINA: Your"
|
text "SABRINA: Your"
|
||||||
line "power…"
|
line "power…"
|
||||||
|
|
||||||
@ -156,12 +156,12 @@ UnknownText_0x189df4:
|
|||||||
cont "MARSHBADGE."
|
cont "MARSHBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x189e95:
|
ReceivedMarshBadgeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "MARSHBADGE."
|
line "MARSHBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x189ead:
|
SabrinaMarshBadgeText:
|
||||||
text "SABRINA: MARSH-"
|
text "SABRINA: MARSH-"
|
||||||
line "BADGE draws out"
|
line "BADGE draws out"
|
||||||
|
|
||||||
@ -179,7 +179,7 @@ UnknownText_0x189ead:
|
|||||||
cont "beloved CHAMPION!"
|
cont "beloved CHAMPION!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x189f6c:
|
SabrinaFightDoneText:
|
||||||
text "SABRINA: Your love"
|
text "SABRINA: Your love"
|
||||||
line "for your #MON"
|
line "for your #MON"
|
||||||
|
|
||||||
|
@ -15,23 +15,23 @@ SaffronPokecenter1FNurseScript:
|
|||||||
SaffronPokecenter1FTeacherScript:
|
SaffronPokecenter1FTeacherScript:
|
||||||
special Mobile_DummyReturnFalse
|
special Mobile_DummyReturnFalse
|
||||||
iftrue .mobile
|
iftrue .mobile
|
||||||
jumptextfaceplayer UnknownText_0x18a4a3
|
jumptextfaceplayer SaffronPokecenter1FTeacherText
|
||||||
|
|
||||||
.mobile
|
.mobile
|
||||||
jumptextfaceplayer UnknownText_0x18a532
|
jumptextfaceplayer SaffronPokecenter1FTeacherMobileText
|
||||||
|
|
||||||
SaffronPokecenter1FFisherScript:
|
SaffronPokecenter1FFisherScript:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
checkevent EVENT_RETURNED_MACHINE_PART
|
checkevent EVENT_RETURNED_MACHINE_PART
|
||||||
iftrue .SolvedKantoPowerCrisis
|
iftrue .SolvedKantoPowerCrisis
|
||||||
writetext UnknownText_0x18a5d3
|
writetext SaffronPokecenter1FFisherText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.SolvedKantoPowerCrisis:
|
.SolvedKantoPowerCrisis:
|
||||||
writetext UnknownText_0x18a62e
|
writetext SaffronPokecenter1FFisherReturnedMachinePartText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -39,7 +39,7 @@ SaffronPokecenter1FFisherScript:
|
|||||||
SaffronPokecenter1FYoungsterScript:
|
SaffronPokecenter1FYoungsterScript:
|
||||||
jumptextfaceplayer SaffronPokecenter1FYoungsterText
|
jumptextfaceplayer SaffronPokecenter1FYoungsterText
|
||||||
|
|
||||||
UnknownText_0x18a4a3:
|
SaffronPokecenter1FTeacherText:
|
||||||
text "What are JOHTO's"
|
text "What are JOHTO's"
|
||||||
line "#MON CENTERS"
|
line "#MON CENTERS"
|
||||||
cont "like?"
|
cont "like?"
|
||||||
@ -55,7 +55,7 @@ UnknownText_0x18a4a3:
|
|||||||
cont "then!"
|
cont "then!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x18a532:
|
SaffronPokecenter1FTeacherMobileText:
|
||||||
text "What are JOHTO's"
|
text "What are JOHTO's"
|
||||||
line "#MON CENTERS"
|
line "#MON CENTERS"
|
||||||
cont "like?"
|
cont "like?"
|
||||||
@ -73,7 +73,7 @@ UnknownText_0x18a532:
|
|||||||
line "trade it to me!"
|
line "trade it to me!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x18a5d3:
|
SaffronPokecenter1FFisherText:
|
||||||
text "I just happened to"
|
text "I just happened to"
|
||||||
line "come through ROCK"
|
line "come through ROCK"
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ UnknownText_0x18a5d3:
|
|||||||
cont "the POWER PLANT."
|
cont "the POWER PLANT."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x18a62e:
|
SaffronPokecenter1FFisherReturnedMachinePartText:
|
||||||
text "Caves collapse"
|
text "Caves collapse"
|
||||||
line "easily."
|
line "easily."
|
||||||
|
|
||||||
|
@ -16,10 +16,10 @@ SeafoamGymBlaineScript:
|
|||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_VOLCANOBADGE
|
checkflag ENGINE_VOLCANOBADGE
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x1ab548
|
writetext BlaineIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x1ab646, 0
|
winlosstext BlaineWinLossText, 0
|
||||||
loadtrainer BLAINE, BLAINE1
|
loadtrainer BLAINE, BLAINE1
|
||||||
startbattle
|
startbattle
|
||||||
iftrue .ReturnAfterBattle
|
iftrue .ReturnAfterBattle
|
||||||
@ -28,17 +28,17 @@ SeafoamGymBlaineScript:
|
|||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
setevent EVENT_BEAT_BLAINE
|
setevent EVENT_BEAT_BLAINE
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1ab683
|
writetext ReceivedVolcanoBadgeText
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
waitsfx
|
waitsfx
|
||||||
setflag ENGINE_VOLCANOBADGE
|
setflag ENGINE_VOLCANOBADGE
|
||||||
writetext UnknownText_0x1ab69d
|
writetext BlaineAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FightDone:
|
.FightDone:
|
||||||
writetext UnknownText_0x1ab71c
|
writetext BlaineFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -60,7 +60,7 @@ SeafoamGymGuyScript:
|
|||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownText_0x1ab548:
|
BlaineIntroText:
|
||||||
text "BLAINE: Waaah!"
|
text "BLAINE: Waaah!"
|
||||||
|
|
||||||
para "My GYM in CINNABAR"
|
para "My GYM in CINNABAR"
|
||||||
@ -88,7 +88,7 @@ UnknownText_0x1ab548:
|
|||||||
line "have BURN HEAL!"
|
line "have BURN HEAL!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1ab646:
|
BlaineWinLossText:
|
||||||
text "BLAINE: Awesome."
|
text "BLAINE: Awesome."
|
||||||
line "I've burned out…"
|
line "I've burned out…"
|
||||||
|
|
||||||
@ -96,12 +96,12 @@ UnknownText_0x1ab646:
|
|||||||
line "VOLCANOBADGE!"
|
line "VOLCANOBADGE!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1ab683:
|
ReceivedVolcanoBadgeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "VOLCANOBADGE."
|
line "VOLCANOBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1ab69d:
|
BlaineAfterBattleText:
|
||||||
text "BLAINE: I did lose"
|
text "BLAINE: I did lose"
|
||||||
line "this time, but I'm"
|
line "this time, but I'm"
|
||||||
|
|
||||||
@ -115,7 +115,7 @@ UnknownText_0x1ab69d:
|
|||||||
line "a rematch."
|
line "a rematch."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1ab71c:
|
BlaineFightDoneText:
|
||||||
text "BLAINE: My fire"
|
text "BLAINE: My fire"
|
||||||
line "#MON will be"
|
line "#MON will be"
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ SproutTower3FRivalScene:
|
|||||||
applymovement PLAYER, MovementData_0x184a1d
|
applymovement PLAYER, MovementData_0x184a1d
|
||||||
applymovement SPROUTTOWER3F_SILVER, MovementData_0x184a22
|
applymovement SPROUTTOWER3F_SILVER, MovementData_0x184a22
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x184a27
|
writetext SproutTowerElderLecturesRivalText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
showemote EMOTE_SHOCK, SPROUTTOWER3F_SILVER, 15
|
showemote EMOTE_SHOCK, SPROUTTOWER3F_SILVER, 15
|
||||||
@ -151,7 +151,7 @@ MovementData_0x184a24:
|
|||||||
step DOWN
|
step DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0x184a27:
|
SproutTowerElderLecturesRivalText:
|
||||||
text "ELDER: You are in-"
|
text "ELDER: You are in-"
|
||||||
line "deed skilled as a"
|
line "deed skilled as a"
|
||||||
cont "trainer."
|
cont "trainer."
|
||||||
|
@ -183,13 +183,13 @@ TeamRocketBaseB3FLockedDoor:
|
|||||||
jump .OpenSesame
|
jump .OpenSesame
|
||||||
|
|
||||||
.NeedsPassword:
|
.NeedsPassword:
|
||||||
writetext UnknownText_0x6e970
|
writetext TeamRocketBaseB3FLockedDoorNeedsPasswordText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.OpenSesame:
|
.OpenSesame:
|
||||||
writetext UnknownText_0x6e9a3
|
writetext TeamRocketBaseB3FLockedDoorOpenSesameText
|
||||||
waitbutton
|
waitbutton
|
||||||
playsound SFX_ENTER_DOOR
|
playsound SFX_ENTER_DOOR
|
||||||
changeblock 10, 8, $07 ; floor
|
changeblock 10, 8, $07 ; floor
|
||||||
@ -547,14 +547,14 @@ ScientistMitchAfterBattleText:
|
|||||||
line "excites me!"
|
line "excites me!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6e970:
|
TeamRocketBaseB3FLockedDoorNeedsPasswordText:
|
||||||
text "The door's closed…"
|
text "The door's closed…"
|
||||||
|
|
||||||
para "It needs two"
|
para "It needs two"
|
||||||
line "passwords to open."
|
line "passwords to open."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6e9a3:
|
TeamRocketBaseB3FLockedDoorOpenSesameText:
|
||||||
text "The door's closed…"
|
text "The door's closed…"
|
||||||
|
|
||||||
para "<PLAYER> entered"
|
para "<PLAYER> entered"
|
||||||
|
@ -15,10 +15,10 @@ VermilionGymSurgeScript:
|
|||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_THUNDERBADGE
|
checkflag ENGINE_THUNDERBADGE
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x192142
|
writetext LtSurgeIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x192238, 0
|
winlosstext LtSurgeWinLossText, 0
|
||||||
loadtrainer LT_SURGE, LT_SURGE1
|
loadtrainer LT_SURGE, LT_SURGE1
|
||||||
startbattle
|
startbattle
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
@ -27,17 +27,17 @@ VermilionGymSurgeScript:
|
|||||||
setevent EVENT_BEAT_GUITARIST_VINCENT
|
setevent EVENT_BEAT_GUITARIST_VINCENT
|
||||||
setevent EVENT_BEAT_JUGGLER_HORTON
|
setevent EVENT_BEAT_JUGGLER_HORTON
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x192277
|
writetext ReceivedThunderBadgeText
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
waitsfx
|
waitsfx
|
||||||
setflag ENGINE_THUNDERBADGE
|
setflag ENGINE_THUNDERBADGE
|
||||||
writetext UnknownText_0x192291
|
writetext LtSurgeThunderBadgeText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FightDone:
|
.FightDone:
|
||||||
writetext UnknownText_0x192303
|
writetext LtSurgeFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -102,7 +102,7 @@ VermilionGymStatue:
|
|||||||
trainertotext LT_SURGE, LT_SURGE1, MEM_BUFFER_1
|
trainertotext LT_SURGE, LT_SURGE1, MEM_BUFFER_1
|
||||||
jumpstd gymstatue2
|
jumpstd gymstatue2
|
||||||
|
|
||||||
UnknownText_0x192142:
|
LtSurgeIntroText:
|
||||||
text "SURGE: Hey, you"
|
text "SURGE: Hey, you"
|
||||||
line "little tyke!"
|
line "little tyke!"
|
||||||
|
|
||||||
@ -125,7 +125,7 @@ UnknownText_0x192142:
|
|||||||
cont "enemies in war!"
|
cont "enemies in war!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x192238:
|
LtSurgeWinLossText:
|
||||||
text "SURGE: Arrrgh!"
|
text "SURGE: Arrrgh!"
|
||||||
line "You are strong!"
|
line "You are strong!"
|
||||||
|
|
||||||
@ -133,12 +133,12 @@ UnknownText_0x192238:
|
|||||||
line "THUNDERBADGE!"
|
line "THUNDERBADGE!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x192277:
|
ReceivedThunderBadgeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "THUNDERBADGE."
|
line "THUNDERBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x192291:
|
LtSurgeThunderBadgeText:
|
||||||
text "SURGE: THUNDER-"
|
text "SURGE: THUNDER-"
|
||||||
line "BADGE increases"
|
line "BADGE increases"
|
||||||
cont "#MON's speed. "
|
cont "#MON's speed. "
|
||||||
@ -150,7 +150,7 @@ UnknownText_0x192291:
|
|||||||
line "proudly, hear?"
|
line "proudly, hear?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x192303:
|
LtSurgeFightDoneText:
|
||||||
text "SURGE: Hey, kid!"
|
text "SURGE: Hey, kid!"
|
||||||
line "Still slugging and"
|
line "Still slugging and"
|
||||||
cont "chugging away?"
|
cont "chugging away?"
|
||||||
|
@ -14,16 +14,16 @@ VioletGymFalknerScript:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_BEAT_FALKNER
|
checkevent EVENT_BEAT_FALKNER
|
||||||
iftrue .FightDone
|
iftrue .FightDone
|
||||||
writetext UnknownText_0x68473
|
writetext FalknerIntroText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
winlosstext UnknownText_0x6854a, 0
|
winlosstext FalknerWinLossText, 0
|
||||||
loadtrainer FALKNER, FALKNER1
|
loadtrainer FALKNER, FALKNER1
|
||||||
startbattle
|
startbattle
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
setevent EVENT_BEAT_FALKNER
|
setevent EVENT_BEAT_FALKNER
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x685af
|
writetext ReceivedZephyrBadgeText
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
waitsfx
|
waitsfx
|
||||||
setflag ENGINE_ZEPHYRBADGE
|
setflag ENGINE_ZEPHYRBADGE
|
||||||
@ -36,18 +36,18 @@ VioletGymFalknerScript:
|
|||||||
setevent EVENT_BEAT_BIRD_KEEPER_ABE
|
setevent EVENT_BEAT_BIRD_KEEPER_ABE
|
||||||
setmapscene ELMS_LAB, SCENE_ELMSLAB_NOTHING
|
setmapscene ELMS_LAB, SCENE_ELMSLAB_NOTHING
|
||||||
specialphonecall SPECIALCALL_ASSISTANT
|
specialphonecall SPECIALCALL_ASSISTANT
|
||||||
writetext UnknownText_0x685c8
|
writetext FalknerZephyrBadgeText
|
||||||
buttonsound
|
buttonsound
|
||||||
verbosegiveitem TM_MUD_SLAP
|
verbosegiveitem TM_MUD_SLAP
|
||||||
iffalse .NoRoomForMudSlap
|
iffalse .NoRoomForMudSlap
|
||||||
setevent EVENT_GOT_TM31_MUD_SLAP
|
setevent EVENT_GOT_TM31_MUD_SLAP
|
||||||
writetext UnknownText_0x68648
|
writetext FalknerTMMudSlapText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.SpeechAfterTM:
|
.SpeechAfterTM:
|
||||||
writetext UnknownText_0x68735
|
writetext FalknerFightDoneText
|
||||||
waitbutton
|
waitbutton
|
||||||
.NoRoomForMudSlap:
|
.NoRoomForMudSlap:
|
||||||
closetext
|
closetext
|
||||||
@ -110,7 +110,7 @@ VioletGymStatue:
|
|||||||
trainertotext FALKNER, FALKNER1, MEM_BUFFER_1
|
trainertotext FALKNER, FALKNER1, MEM_BUFFER_1
|
||||||
jumpstd gymstatue2
|
jumpstd gymstatue2
|
||||||
|
|
||||||
UnknownText_0x68473:
|
FalknerIntroText:
|
||||||
text "I'm FALKNER, the"
|
text "I'm FALKNER, the"
|
||||||
line "VIOLET #MON GYM"
|
line "VIOLET #MON GYM"
|
||||||
cont "leader!"
|
cont "leader!"
|
||||||
@ -133,7 +133,7 @@ UnknownText_0x68473:
|
|||||||
line "#MON!"
|
line "#MON!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x6854a:
|
FalknerWinLossText:
|
||||||
text "…Darn! My dad's"
|
text "…Darn! My dad's"
|
||||||
line "cherished bird"
|
line "cherished bird"
|
||||||
cont "#MON…"
|
cont "#MON…"
|
||||||
@ -146,12 +146,12 @@ UnknownText_0x6854a:
|
|||||||
cont "ZEPHYRBADGE."
|
cont "ZEPHYRBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x685af:
|
ReceivedZephyrBadgeText:
|
||||||
text "<PLAYER> received"
|
text "<PLAYER> received"
|
||||||
line "ZEPHYRBADGE."
|
line "ZEPHYRBADGE."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x685c8:
|
FalknerZephyrBadgeText:
|
||||||
text "ZEPHYRBADGE"
|
text "ZEPHYRBADGE"
|
||||||
line "raises the attack"
|
line "raises the attack"
|
||||||
cont "power of #MON."
|
cont "power of #MON."
|
||||||
@ -166,7 +166,7 @@ UnknownText_0x685c8:
|
|||||||
line "too."
|
line "too."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x68648:
|
FalknerTMMudSlapText:
|
||||||
text "By using a TM, a"
|
text "By using a TM, a"
|
||||||
line "#MON will"
|
line "#MON will"
|
||||||
|
|
||||||
@ -191,7 +191,7 @@ UnknownText_0x68648:
|
|||||||
cont "and offensive."
|
cont "and offensive."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x68735:
|
FalknerFightDoneText:
|
||||||
text "There are #MON"
|
text "There are #MON"
|
||||||
line "GYMS in cities and"
|
line "GYMS in cities and"
|
||||||
cont "towns ahead."
|
cont "towns ahead."
|
||||||
|
@ -17,16 +17,16 @@ ViridianCity_MapScripts:
|
|||||||
ViridianCityCoffeeGramps:
|
ViridianCityCoffeeGramps:
|
||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x1a9aa5
|
writetext ViridianCityCoffeeGrampsQuestionText
|
||||||
yesorno
|
yesorno
|
||||||
iffalse .no
|
iffalse .no
|
||||||
writetext UnknownText_0x1a9b6f
|
writetext ViridianCityCoffeeGrampsBelievedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.no:
|
.no:
|
||||||
writetext UnknownText_0x1a9bb7
|
writetext ViridianCityCoffeeGrampsDoubtedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -36,13 +36,13 @@ ViridianCityGrampsNearGym:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_BLUE_IN_CINNABAR
|
checkevent EVENT_BLUE_IN_CINNABAR
|
||||||
iftrue .BlueReturned
|
iftrue .BlueReturned
|
||||||
writetext UnknownText_0x1a9c11
|
writetext ViridianCityGrampsNearGymText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.BlueReturned:
|
.BlueReturned:
|
||||||
writetext UnknownText_0x1a9c7e
|
writetext ViridianCityGrampsNearGymBlueReturnedText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -52,13 +52,13 @@ ViridianCityDreamEaterFisher:
|
|||||||
opentext
|
opentext
|
||||||
checkevent EVENT_GOT_TM42_DREAM_EATER
|
checkevent EVENT_GOT_TM42_DREAM_EATER
|
||||||
iftrue .GotDreamEater
|
iftrue .GotDreamEater
|
||||||
writetext UnknownText_0x1a9cc4
|
writetext ViridianCityDreamEaterFisherText
|
||||||
buttonsound
|
buttonsound
|
||||||
verbosegiveitem TM_DREAM_EATER
|
verbosegiveitem TM_DREAM_EATER
|
||||||
iffalse .NoRoomForDreamEater
|
iffalse .NoRoomForDreamEater
|
||||||
setevent EVENT_GOT_TM42_DREAM_EATER
|
setevent EVENT_GOT_TM42_DREAM_EATER
|
||||||
.GotDreamEater:
|
.GotDreamEater:
|
||||||
writetext UnknownText_0x1a9d86
|
writetext ViridianCityDreamEaterFisherGotDreamEaterText
|
||||||
waitbutton
|
waitbutton
|
||||||
.NoRoomForDreamEater:
|
.NoRoomForDreamEater:
|
||||||
closetext
|
closetext
|
||||||
@ -85,7 +85,7 @@ ViridianCityPokecenterSign:
|
|||||||
ViridianCityMartSign:
|
ViridianCityMartSign:
|
||||||
jumpstd martsign
|
jumpstd martsign
|
||||||
|
|
||||||
UnknownText_0x1a9aa5:
|
ViridianCityCoffeeGrampsQuestionText:
|
||||||
text "Hey, kid! I just"
|
text "Hey, kid! I just"
|
||||||
line "had a double shot"
|
line "had a double shot"
|
||||||
|
|
||||||
@ -105,7 +105,7 @@ UnknownText_0x1a9aa5:
|
|||||||
para "Do you believe me?"
|
para "Do you believe me?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a9b6f:
|
ViridianCityCoffeeGrampsBelievedText:
|
||||||
text "Good, good. Yes, I"
|
text "Good, good. Yes, I"
|
||||||
line "was something out"
|
line "was something out"
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ UnknownText_0x1a9b6f:
|
|||||||
line "let me tell you!"
|
line "let me tell you!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a9bb7:
|
ViridianCityCoffeeGrampsDoubtedText:
|
||||||
text "What? You little"
|
text "What? You little"
|
||||||
line "whelp!"
|
line "whelp!"
|
||||||
|
|
||||||
@ -124,7 +124,7 @@ UnknownText_0x1a9bb7:
|
|||||||
line "or two. Humph!"
|
line "or two. Humph!"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a9c11:
|
ViridianCityGrampsNearGymText:
|
||||||
text "This GYM didn't"
|
text "This GYM didn't"
|
||||||
line "have a LEADER"
|
line "have a LEADER"
|
||||||
cont "until recently."
|
cont "until recently."
|
||||||
@ -136,7 +136,7 @@ UnknownText_0x1a9c11:
|
|||||||
line "often away."
|
line "often away."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a9c7e:
|
ViridianCityGrampsNearGymBlueReturnedText:
|
||||||
text "Are you going to"
|
text "Are you going to"
|
||||||
line "battle the LEADER?"
|
line "battle the LEADER?"
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ UnknownText_0x1a9c7e:
|
|||||||
line "You'll need it."
|
line "You'll need it."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a9cc4:
|
ViridianCityDreamEaterFisherText:
|
||||||
text "Yawn!"
|
text "Yawn!"
|
||||||
|
|
||||||
para "I must have dozed"
|
para "I must have dozed"
|
||||||
@ -167,7 +167,7 @@ UnknownText_0x1a9cc4:
|
|||||||
cont "this TM."
|
cont "this TM."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1a9d86:
|
ViridianCityDreamEaterFisherGotDreamEaterText:
|
||||||
text "TM42 contains"
|
text "TM42 contains"
|
||||||
line "DREAM EATER…"
|
line "DREAM EATER…"
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ WiseTriosRoom_CannotEnterTinTowerScript:
|
|||||||
stopfollow
|
stopfollow
|
||||||
turnobject PLAYER, RIGHT
|
turnobject PLAYER, RIGHT
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x98712
|
writetext WiseTriosRoomSage3BlocksExitText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
applymovement WISETRIOSROOM_SAGE3, MovementData_0x98625
|
applymovement WISETRIOSROOM_SAGE3, MovementData_0x98625
|
||||||
@ -71,7 +71,7 @@ TrainerSageGaku:
|
|||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x98938
|
writetext SageGakuAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -81,7 +81,7 @@ TrainerSageMasa:
|
|||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x98a35
|
writetext SageMasaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -95,9 +95,9 @@ TrainerSageKoji:
|
|||||||
pause 10
|
pause 10
|
||||||
showemote EMOTE_SHOCK, WISETRIOSROOM_SAGE6, 20
|
showemote EMOTE_SHOCK, WISETRIOSROOM_SAGE6, 20
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x98c6c
|
writetext SageKojiAfterBattleQuestionText
|
||||||
buttonsound
|
buttonsound
|
||||||
writetext UnknownText_0x98cac
|
writetext SageKojiAfterBattleSpeechText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
applymovement WISETRIOSROOM_SAGE6, MovementData_0x98628
|
applymovement WISETRIOSROOM_SAGE6, MovementData_0x98628
|
||||||
@ -108,7 +108,7 @@ TrainerSageKoji:
|
|||||||
|
|
||||||
.KojiAllowsPassage:
|
.KojiAllowsPassage:
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x98db5
|
writetext SageKojiAfterBattleFinalText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -153,7 +153,7 @@ WiseTriosRoomSage2Text:
|
|||||||
line "by someone."
|
line "by someone."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x98712:
|
WiseTriosRoomSage3BlocksExitText:
|
||||||
text "TIN TOWER may be"
|
text "TIN TOWER may be"
|
||||||
line "entered by those"
|
line "entered by those"
|
||||||
|
|
||||||
@ -213,7 +213,7 @@ SageGakuBeatenText:
|
|||||||
line "thought? Perhaps…"
|
line "thought? Perhaps…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x98938:
|
SageGakuAfterBattleText:
|
||||||
text "Ah, so it is you"
|
text "Ah, so it is you"
|
||||||
line "who claim to have"
|
line "who claim to have"
|
||||||
|
|
||||||
@ -241,7 +241,7 @@ SageMasaBeatenText:
|
|||||||
line "the truth…"
|
line "the truth…"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x98a35:
|
SageMasaAfterBattleText:
|
||||||
text "In the past, there"
|
text "In the past, there"
|
||||||
line "were two nine-tier"
|
line "were two nine-tier"
|
||||||
cont "towers here."
|
cont "towers here."
|
||||||
@ -301,7 +301,7 @@ SageKojiBeatenText:
|
|||||||
line "Why?"
|
line "Why?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x98c6c:
|
SageKojiAfterBattleQuestionText:
|
||||||
text "You… Are you the"
|
text "You… Are you the"
|
||||||
line "trainer who is"
|
line "trainer who is"
|
||||||
|
|
||||||
@ -309,7 +309,7 @@ UnknownText_0x98c6c:
|
|||||||
line "legendary #MON?"
|
line "legendary #MON?"
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x98cac:
|
SageKojiAfterBattleSpeechText:
|
||||||
text "I see…"
|
text "I see…"
|
||||||
|
|
||||||
para "We, the WISE TRIO,"
|
para "We, the WISE TRIO,"
|
||||||
@ -335,7 +335,7 @@ UnknownText_0x98cac:
|
|||||||
line "you to the test."
|
line "you to the test."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x98db5:
|
SageKojiAfterBattleFinalText:
|
||||||
text "Please, do go on."
|
text "Please, do go on."
|
||||||
|
|
||||||
para "SUICUNE will put"
|
para "SUICUNE will put"
|
||||||
|
Loading…
Reference in New Issue
Block a user