trainers put the class and id first: trainer YOUNGSTER, JOEY1, ...

This commit is contained in:
Rangi
2018-01-23 13:08:48 -05:00
parent dea26c6639
commit 8f2878c37e
88 changed files with 339 additions and 339 deletions

View File

@@ -168,5 +168,5 @@ Object types:
- `OBJECTTYPE_TRAINER` - `OBJECTTYPE_TRAINER`
<pre> <pre>
trainer <i>event_flag</i>, <i>group_id</i>, <i>trainer_id</i>, <i>seen_text</i>, <i>beaten_text</i>, <i>loss_text</i>, <i>script</i> trainer <i>group_id</i>, <i>trainer_id</i>, <i>event_flag</i>, <i>seen_text</i>, <i>beaten_text</i>, <i>loss_text</i>, <i>script</i>
</pre> </pre>

View File

@@ -76,15 +76,15 @@ ENDM
trainer: MACRO trainer: MACRO
;\1: flag: an EVENT_BEAT_* constant ;\1: trainer group
;\2: trainer group ;\2: trainer id
;\3: trainer id ;\3: flag: an EVENT_BEAT_* constant
;\4: seen text ;\4: seen text
;\5: win text ;\5: win text
;\6: loss text ;\6: loss text
;\7: after-battle text ;\7: after-battle text
dw \1 dw \3
db \2, \3 db \1, \2
dw \4, \5, \6, \7 dw \4, \5, \6, \7
ENDM ENDM

View File

@@ -70,7 +70,7 @@ AzaleaGymActivateRockets:
jumpstd radiotowerrockets jumpstd radiotowerrockets
TrainerTwinsAmyandmay1: TrainerTwinsAmyandmay1:
trainer EVENT_BEAT_TWINS_AMY_AND_MAY, TWINS, AMYANDMAY1, TwinsAmyandmay1SeenText, TwinsAmyandmay1BeatenText, 0, .AfterScript trainer TWINS, AMYANDMAY1, EVENT_BEAT_TWINS_AMY_AND_MAY, TwinsAmyandmay1SeenText, TwinsAmyandmay1BeatenText, 0, .AfterScript
.AfterScript: .AfterScript:
end_if_just_battled end_if_just_battled
@@ -81,7 +81,7 @@ TrainerTwinsAmyandmay1:
end end
TrainerTwinsAmyandmay2: TrainerTwinsAmyandmay2:
trainer EVENT_BEAT_TWINS_AMY_AND_MAY, TWINS, AMYANDMAY2, TwinsAmyandmay2SeenText, TwinsAmyandmay2BeatenText, 0, .AfterScript trainer TWINS, AMYANDMAY2, EVENT_BEAT_TWINS_AMY_AND_MAY, TwinsAmyandmay2SeenText, TwinsAmyandmay2BeatenText, 0, .AfterScript
.AfterScript: .AfterScript:
end_if_just_battled end_if_just_battled
@@ -92,7 +92,7 @@ TrainerTwinsAmyandmay2:
end end
TrainerBugCatcherBenny: TrainerBugCatcherBenny:
trainer EVENT_BEAT_BUG_CATCHER_BENNY, BUG_CATCHER, BUG_CATCHER_BENNY, BugCatcherBennySeenText, BugCatcherBennyBeatenText, 0, .AfterScript trainer BUG_CATCHER, BUG_CATCHER_BENNY, EVENT_BEAT_BUG_CATCHER_BENNY, BugCatcherBennySeenText, BugCatcherBennyBeatenText, 0, .AfterScript
.AfterScript: .AfterScript:
end_if_just_battled end_if_just_battled
@@ -103,7 +103,7 @@ TrainerBugCatcherBenny:
end end
TrainerBugCatcherAl: TrainerBugCatcherAl:
trainer EVENT_BEAT_BUG_CATCHER_AL, BUG_CATCHER, AL, BugCatcherAlSeenText, BugCatcherAlBeatenText, 0, .AfterScript trainer BUG_CATCHER, AL, EVENT_BEAT_BUG_CATCHER_AL, BugCatcherAlSeenText, BugCatcherAlBeatenText, 0, .AfterScript
.AfterScript: .AfterScript:
end_if_just_battled end_if_just_battled
@@ -114,7 +114,7 @@ TrainerBugCatcherAl:
end end
TrainerBugCatcherJosh: TrainerBugCatcherJosh:
trainer EVENT_BEAT_BUG_CATCHER_JOSH, BUG_CATCHER, JOSH, BugCatcherJoshSeenText, BugCatcherJoshBeatenText, 0, .AfterScript trainer BUG_CATCHER, JOSH, EVENT_BEAT_BUG_CATCHER_JOSH, BugCatcherJoshSeenText, BugCatcherJoshBeatenText, 0, .AfterScript
.AfterScript: .AfterScript:
end_if_just_battled end_if_just_battled

View File

@@ -93,7 +93,7 @@ BlackthornGymClairScript:
end end
TrainerCooltrainermPaul: TrainerCooltrainermPaul:
trainer EVENT_BEAT_COOLTRAINERM_PAUL, COOLTRAINERM, PAUL, CooltrainermPaulSeenText, CooltrainermPaulBeatenText, 0, .Script trainer COOLTRAINERM, PAUL, EVENT_BEAT_COOLTRAINERM_PAUL, CooltrainermPaulSeenText, CooltrainermPaulBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -104,7 +104,7 @@ TrainerCooltrainermPaul:
end end
TrainerCooltrainermMike: TrainerCooltrainermMike:
trainer EVENT_BEAT_COOLTRAINERM_MIKE, COOLTRAINERM, MIKE, CooltrainermMikeSeenText, CooltrainermMikeBeatenText, 0, .Script trainer COOLTRAINERM, MIKE, EVENT_BEAT_COOLTRAINERM_MIKE, CooltrainermMikeSeenText, CooltrainermMikeBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -115,7 +115,7 @@ TrainerCooltrainermMike:
end end
TrainerCooltrainerfLola: TrainerCooltrainerfLola:
trainer EVENT_BEAT_COOLTRAINERF_LOLA, COOLTRAINERF, LOLA, CooltrainerfLolaSeenText, CooltrainerfLolaBeatenText, 0, .Script trainer COOLTRAINERF, LOLA, EVENT_BEAT_COOLTRAINERF_LOLA, CooltrainerfLolaSeenText, CooltrainerfLolaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -59,7 +59,7 @@ BlackthornGymBoulder:
jumpstd strengthboulder jumpstd strengthboulder
TrainerCooltrainermCody: TrainerCooltrainermCody:
trainer EVENT_BEAT_COOLTRAINERM_CODY, COOLTRAINERM, CODY, CooltrainermCodySeenText, CooltrainermCodyBeatenText, 0, .Script trainer COOLTRAINERM, CODY, EVENT_BEAT_COOLTRAINERM_CODY, CooltrainermCodySeenText, CooltrainermCodyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -70,7 +70,7 @@ TrainerCooltrainermCody:
end end
TrainerCooltrainerfFran: TrainerCooltrainerfFran:
trainer EVENT_BEAT_COOLTRAINERF_FRAN, COOLTRAINERF, FRAN, CooltrainerfFranSeenText, CooltrainerfFranBeatenText, 0, .Script trainer COOLTRAINERF, FRAN, EVENT_BEAT_COOLTRAINERF_FRAN, CooltrainerfFranSeenText, CooltrainerfFranBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -50,7 +50,7 @@ UnknownScript_0x72aae:
end end
TrainerLassMichelle: TrainerLassMichelle:
trainer EVENT_BEAT_LASS_MICHELLE, LASS, MICHELLE, LassMichelleSeenText, LassMichelleBeatenText, 0, .Script trainer LASS, MICHELLE, EVENT_BEAT_LASS_MICHELLE, LassMichelleSeenText, LassMichelleBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -61,7 +61,7 @@ TrainerLassMichelle:
end end
TrainerPicnickerTanya: TrainerPicnickerTanya:
trainer EVENT_BEAT_PICNICKER_TANYA, PICNICKER, TANYA, PicnickerTanyaSeenText, PicnickerTanyaBeatenText, 0, .Script trainer PICNICKER, TANYA, EVENT_BEAT_PICNICKER_TANYA, PicnickerTanyaSeenText, PicnickerTanyaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -72,7 +72,7 @@ TrainerPicnickerTanya:
end end
TrainerBeautyJulia: TrainerBeautyJulia:
trainer EVENT_BEAT_BEAUTY_JULIA, BEAUTY, JULIA, BeautyJuliaSeenText, BeautyJuliaBeatenText, 0, .Script trainer BEAUTY, JULIA, EVENT_BEAT_BEAUTY_JULIA, BeautyJuliaSeenText, BeautyJuliaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -83,7 +83,7 @@ TrainerBeautyJulia:
end end
TrainerTwinsJoandzoe1: TrainerTwinsJoandzoe1:
trainer EVENT_BEAT_TWINS_JO_AND_ZOE, TWINS, JOANDZOE1, TwinsJoandzoe1SeenText, TwinsJoandzoe1BeatenText, 0, .Script trainer TWINS, JOANDZOE1, EVENT_BEAT_TWINS_JO_AND_ZOE, TwinsJoandzoe1SeenText, TwinsJoandzoe1BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -94,7 +94,7 @@ TrainerTwinsJoandzoe1:
end end
TrainerTwinsJoandzoe2: TrainerTwinsJoandzoe2:
trainer EVENT_BEAT_TWINS_JO_AND_ZOE, TWINS, JOANDZOE2, TwinsJoandzoe2SeenText, TwinsJoandzoe2BeatenText, 0, .Script trainer TWINS, JOANDZOE2, EVENT_BEAT_TWINS_JO_AND_ZOE, TwinsJoandzoe2SeenText, TwinsJoandzoe2BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -86,7 +86,7 @@ MistyScript_0x188432:
end end
TrainerSwimmerfDiana: TrainerSwimmerfDiana:
trainer EVENT_BEAT_SWIMMERF_DIANA, SWIMMERF, DIANA, SwimmerfDianaSeenText, SwimmerfDianaBeatenText, 0, .Script trainer SWIMMERF, DIANA, EVENT_BEAT_SWIMMERF_DIANA, SwimmerfDianaSeenText, SwimmerfDianaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -97,7 +97,7 @@ TrainerSwimmerfDiana:
end end
TrainerSwimmerfBriana: TrainerSwimmerfBriana:
trainer EVENT_BEAT_SWIMMERF_BRIANA, SWIMMERF, BRIANA, SwimmerfBrianaSeenText, SwimmerfBrianaBeatenText, 0, .Script trainer SWIMMERF, BRIANA, EVENT_BEAT_SWIMMERF_BRIANA, SwimmerfBrianaSeenText, SwimmerfBrianaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -108,7 +108,7 @@ TrainerSwimmerfBriana:
end end
TrainerSwimmermParker: TrainerSwimmermParker:
trainer EVENT_BEAT_SWIMMERM_PARKER, SWIMMERM, PARKER, SwimmermParkerSeenText, SwimmermParkerBeatenText, 0, .Script trainer SWIMMERM, PARKER, EVENT_BEAT_SWIMMERM_PARKER, SwimmermParkerSeenText, SwimmermParkerBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -87,7 +87,7 @@ CianwoodGymActivateRockets:
jumpstd radiotowerrockets jumpstd radiotowerrockets
TrainerBlackbeltYoshi: TrainerBlackbeltYoshi:
trainer EVENT_BEAT_BLACKBELT_YOSHI, BLACKBELT_T, YOSHI, BlackbeltYoshiSeenText, BlackbeltYoshiBeatenText, 0, .Script trainer BLACKBELT_T, YOSHI, EVENT_BEAT_BLACKBELT_YOSHI, BlackbeltYoshiSeenText, BlackbeltYoshiBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -98,7 +98,7 @@ TrainerBlackbeltYoshi:
end end
TrainerBlackbeltLao: TrainerBlackbeltLao:
trainer EVENT_BEAT_BLACKBELT_LAO, BLACKBELT_T, LAO, BlackbeltLaoSeenText, BlackbeltLaoBeatenText, 0, .Script trainer BLACKBELT_T, LAO, EVENT_BEAT_BLACKBELT_LAO, BlackbeltLaoSeenText, BlackbeltLaoBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -109,7 +109,7 @@ TrainerBlackbeltLao:
end end
TrainerBlackbeltNob: TrainerBlackbeltNob:
trainer EVENT_BEAT_BLACKBELT_NOB, BLACKBELT_T, NOB, BlackbeltNobSeenText, BlackbeltNobBeatenText, 0, .Script trainer BLACKBELT_T, NOB, EVENT_BEAT_BLACKBELT_NOB, BlackbeltNobSeenText, BlackbeltNobBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -120,7 +120,7 @@ TrainerBlackbeltNob:
end end
TrainerBlackbeltLung: TrainerBlackbeltLung:
trainer EVENT_BEAT_BLACKBELT_LUNG, BLACKBELT_T, LUNG, BlackbeltLungSeenText, BlackbeltLungBeatenText, 0, .Script trainer BLACKBELT_T, LUNG, EVENT_BEAT_BLACKBELT_LUNG, BlackbeltLungSeenText, BlackbeltLungBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -17,7 +17,7 @@ DanceTheatre_MapScripts:
db 0 db 0
TrainerKimonoGirlNaoko2: TrainerKimonoGirlNaoko2:
trainer EVENT_BEAT_KIMONO_GIRL_NAOKO, KIMONO_GIRL, NAOKO2, KimonoGirlNaoko2SeenText, KimonoGirlNaoko2BeatenText, 0, .Script trainer KIMONO_GIRL, NAOKO2, EVENT_BEAT_KIMONO_GIRL_NAOKO, KimonoGirlNaoko2SeenText, KimonoGirlNaoko2BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -28,7 +28,7 @@ TrainerKimonoGirlNaoko2:
end end
TrainerKimonoGirlSayo: TrainerKimonoGirlSayo:
trainer EVENT_BEAT_KIMONO_GIRL_SAYO, KIMONO_GIRL, SAYO, KimonoGirlSayoSeenText, KimonoGirlSayoBeatenText, 0, .Script trainer KIMONO_GIRL, SAYO, EVENT_BEAT_KIMONO_GIRL_SAYO, KimonoGirlSayoSeenText, KimonoGirlSayoBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -39,7 +39,7 @@ TrainerKimonoGirlSayo:
end end
TrainerKimonoGirlZuki: TrainerKimonoGirlZuki:
trainer EVENT_BEAT_KIMONO_GIRL_ZUKI, KIMONO_GIRL, ZUKI, KimonoGirlZukiSeenText, KimonoGirlZukiBeatenText, 0, .Script trainer KIMONO_GIRL, ZUKI, EVENT_BEAT_KIMONO_GIRL_ZUKI, KimonoGirlZukiSeenText, KimonoGirlZukiBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -50,7 +50,7 @@ TrainerKimonoGirlZuki:
end end
TrainerKimonoGirlKuni: TrainerKimonoGirlKuni:
trainer EVENT_BEAT_KIMONO_GIRL_KUNI, KIMONO_GIRL, KUNI, KimonoGirlKuniSeenText, KimonoGirlKuniBeatenText, 0, .Script trainer KIMONO_GIRL, KUNI, EVENT_BEAT_KIMONO_GIRL_KUNI, KimonoGirlKuniSeenText, KimonoGirlKuniBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -61,7 +61,7 @@ TrainerKimonoGirlKuni:
end end
TrainerKimonoGirlMiki: TrainerKimonoGirlMiki:
trainer EVENT_BEAT_KIMONO_GIRL_MIKI, KIMONO_GIRL, MIKI, KimonoGirlMikiSeenText, KimonoGirlMikiBeatenText, 0, .Script trainer KIMONO_GIRL, MIKI, EVENT_BEAT_KIMONO_GIRL_MIKI, KimonoGirlMikiSeenText, KimonoGirlMikiBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -84,7 +84,7 @@ DragonsDenB1F_ClairScene:
end end
TrainerCooltrainermDarin: TrainerCooltrainermDarin:
trainer EVENT_BEAT_COOLTRAINERM_DARIN, COOLTRAINERM, DARIN, CooltrainermDarinSeenText, CooltrainermDarinBeatenText, 0, .Script trainer COOLTRAINERM, DARIN, EVENT_BEAT_COOLTRAINERM_DARIN, CooltrainermDarinSeenText, CooltrainermDarinBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -95,7 +95,7 @@ TrainerCooltrainermDarin:
end end
TrainerCooltrainerfCara: TrainerCooltrainerfCara:
trainer EVENT_BEAT_COOLTRAINERF_CARA, COOLTRAINERF, CARA, CooltrainerfCaraSeenText, CooltrainerfCaraBeatenText, 0, .Script trainer COOLTRAINERF, CARA, EVENT_BEAT_COOLTRAINERF_CARA, CooltrainerfCaraSeenText, CooltrainerfCaraBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -106,7 +106,7 @@ TrainerCooltrainerfCara:
end end
TrainerTwinsLeaandpia1: TrainerTwinsLeaandpia1:
trainer EVENT_BEAT_TWINS_LEA_AND_PIA, TWINS, LEAANDPIA1, TwinsLeaandpia1SeenText, TwinsLeaandpia1BeatenText, 0, .Script trainer TWINS, LEAANDPIA1, EVENT_BEAT_TWINS_LEA_AND_PIA, TwinsLeaandpia1SeenText, TwinsLeaandpia1BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -117,7 +117,7 @@ TrainerTwinsLeaandpia1:
end end
TrainerTwinsLeaandpia2: TrainerTwinsLeaandpia2:
trainer EVENT_BEAT_TWINS_LEA_AND_PIA, TWINS, LEAANDPIA1, TwinsLeaandpia2SeenText, TwinsLeaandpia2BeatenText, 0, .Script trainer TWINS, LEAANDPIA1, EVENT_BEAT_TWINS_LEA_AND_PIA, TwinsLeaandpia2SeenText, TwinsLeaandpia2BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -98,7 +98,7 @@ EcruteakGymClosed:
end end
TrainerSageJeffrey: TrainerSageJeffrey:
trainer EVENT_BEAT_SAGE_JEFFREY, SAGE, JEFFREY, SageJeffreySeenText, SageJeffreyBeatenText, 0, .Script trainer SAGE, JEFFREY, EVENT_BEAT_SAGE_JEFFREY, SageJeffreySeenText, SageJeffreyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -109,7 +109,7 @@ TrainerSageJeffrey:
end end
TrainerSagePing: TrainerSagePing:
trainer EVENT_BEAT_SAGE_PING, SAGE, PING, SagePingSeenText, SagePingBeatenText, 0, .Script trainer SAGE, PING, EVENT_BEAT_SAGE_PING, SagePingSeenText, SagePingBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -120,7 +120,7 @@ TrainerSagePing:
end end
TrainerMediumMartha: TrainerMediumMartha:
trainer EVENT_BEAT_MEDIUM_MARTHA, MEDIUM, MARTHA, MediumMarthaSeenText, MediumMarthaBeatenText, 0, .Script trainer MEDIUM, MARTHA, EVENT_BEAT_MEDIUM_MARTHA, MediumMarthaSeenText, MediumMarthaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -131,7 +131,7 @@ TrainerMediumMartha:
end end
TrainerMediumGrace: TrainerMediumGrace:
trainer EVENT_BEAT_MEDIUM_GRACE, MEDIUM, GRACE, MediumGraceSeenText, MediumGraceBeatenText, 0, .Script trainer MEDIUM, GRACE, EVENT_BEAT_MEDIUM_GRACE, MediumGraceSeenText, MediumGraceBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -94,7 +94,7 @@ UnknownScript_0x767a0:
end end
TrainerSailorJeff: TrainerSailorJeff:
trainer EVENT_BEAT_SAILOR_JEFF, SAILOR, JEFF, SailorJeffSeenText, SailorJeffBeatenText, 0, .Script trainer SAILOR, JEFF, EVENT_BEAT_SAILOR_JEFF, SailorJeffSeenText, SailorJeffBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -105,7 +105,7 @@ TrainerSailorJeff:
end end
TrainerPicnickerDebra: TrainerPicnickerDebra:
trainer EVENT_BEAT_PICNICKER_DEBRA, PICNICKER, DEBRA, PicnickerDebraSeenText, PicnickerDebraBeatenText, 0, .Script trainer PICNICKER, DEBRA, EVENT_BEAT_PICNICKER_DEBRA, PicnickerDebraSeenText, PicnickerDebraBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -116,7 +116,7 @@ TrainerPicnickerDebra:
end end
TrainerJugglerFritz: TrainerJugglerFritz:
trainer EVENT_BEAT_JUGGLER_FRITZ, JUGGLER, FRITZ, JugglerFritzSeenText, JugglerFritzBeatenText, 0, .Script trainer JUGGLER, FRITZ, EVENT_BEAT_JUGGLER_FRITZ, JugglerFritzSeenText, JugglerFritzBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -127,7 +127,7 @@ TrainerJugglerFritz:
end end
TrainerSailorGarrett: TrainerSailorGarrett:
trainer EVENT_BEAT_SAILOR_GARRETT, SAILOR, GARRETT, SailorGarrettSeenText, SailorGarrettBeatenText, 0, .Script trainer SAILOR, GARRETT, EVENT_BEAT_SAILOR_GARRETT, SailorGarrettSeenText, SailorGarrettBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -138,7 +138,7 @@ TrainerSailorGarrett:
end end
TrainerFisherJonah: TrainerFisherJonah:
trainer EVENT_BEAT_FISHER_JONAH, FISHER, JONAH, FisherJonahSeenText, FisherJonahBeatenText, 0, .Script trainer FISHER, JONAH, EVENT_BEAT_FISHER_JONAH, FisherJonahSeenText, FisherJonahBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -149,7 +149,7 @@ TrainerFisherJonah:
end end
TrainerBlackbeltWai: TrainerBlackbeltWai:
trainer EVENT_BEAT_BLACKBELT_WAI, BLACKBELT_T, WAI, BlackbeltWaiSeenText, BlackbeltWaiBeatenText, 0, .Script trainer BLACKBELT_T, WAI, EVENT_BEAT_BLACKBELT_WAI, BlackbeltWaiSeenText, BlackbeltWaiBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -160,7 +160,7 @@ TrainerBlackbeltWai:
end end
TrainerSailorKenneth: TrainerSailorKenneth:
trainer EVENT_BEAT_SAILOR_KENNETH, SAILOR, KENNETH, SailorKennethSeenText, SailorKennethBeatenText, 0, .Script trainer SAILOR, KENNETH, EVENT_BEAT_SAILOR_KENNETH, SailorKennethSeenText, SailorKennethBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -171,7 +171,7 @@ TrainerSailorKenneth:
end end
TrainerTeacherShirley: TrainerTeacherShirley:
trainer EVENT_BEAT_TEACHER_SHIRLEY, TEACHER, SHIRLEY, TeacherShirleySeenText, TeacherShirleyBeatenText, 0, .Script trainer TEACHER, SHIRLEY, EVENT_BEAT_TEACHER_SHIRLEY, TeacherShirleySeenText, TeacherShirleyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -182,7 +182,7 @@ TrainerTeacherShirley:
end end
TrainerSchoolboyNate: TrainerSchoolboyNate:
trainer EVENT_BEAT_SCHOOLBOY_NATE, SCHOOLBOY, NATE, SchoolboyNateSeenText, SchoolboyNateBeatenText, 0, .Script trainer SCHOOLBOY, NATE, EVENT_BEAT_SCHOOLBOY_NATE, SchoolboyNateSeenText, SchoolboyNateBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -193,7 +193,7 @@ TrainerSchoolboyNate:
end end
TrainerSchoolboyRicky: TrainerSchoolboyRicky:
trainer EVENT_BEAT_SCHOOLBOY_RICKY, SCHOOLBOY, RICKY, SchoolboyRickySeenText, SchoolboyRickyBeatenText, 0, .Script trainer SCHOOLBOY, RICKY, EVENT_BEAT_SCHOOLBOY_RICKY, SchoolboyRickySeenText, SchoolboyRickyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -15,7 +15,7 @@ FastShipCabins_NNW_NNE_NE_MapScripts:
db 0 db 0
TrainerCooltrainermSean: TrainerCooltrainermSean:
trainer EVENT_BEAT_COOLTRAINERM_SEAN, COOLTRAINERM, SEAN, CooltrainermSeanSeenText, CooltrainermSeanBeatenText, 0, .Script trainer COOLTRAINERM, SEAN, EVENT_BEAT_COOLTRAINERM_SEAN, CooltrainermSeanSeenText, CooltrainermSeanBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -26,7 +26,7 @@ TrainerCooltrainermSean:
end end
TrainerCooltrainerfCarol: TrainerCooltrainerfCarol:
trainer EVENT_BEAT_COOLTRAINERF_CAROL, COOLTRAINERF, CAROL, CooltrainerfCarolSeenText, CooltrainerfCarolBeatenText, 0, .Script trainer COOLTRAINERF, CAROL, EVENT_BEAT_COOLTRAINERF_CAROL, CooltrainerfCarolSeenText, CooltrainerfCarolBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -37,7 +37,7 @@ TrainerCooltrainerfCarol:
end end
TrainerPokemaniacEthan: TrainerPokemaniacEthan:
trainer EVENT_BEAT_POKEMANIAC_ETHAN, POKEMANIAC, ETHAN, PokemaniacEthanSeenText, PokemaniacEthanBeatenText, 0, .Script trainer POKEMANIAC, ETHAN, EVENT_BEAT_POKEMANIAC_ETHAN, PokemaniacEthanSeenText, PokemaniacEthanBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -48,7 +48,7 @@ TrainerPokemaniacEthan:
end end
TrainerHikerNoland: TrainerHikerNoland:
trainer EVENT_BEAT_HIKER_NOLAND, HIKER, NOLAND, HikerNolandSeenText, HikerNolandBeatenText, 0, .Script trainer HIKER, NOLAND, EVENT_BEAT_HIKER_NOLAND, HikerNolandSeenText, HikerNolandBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -59,7 +59,7 @@ TrainerHikerNoland:
end end
TrainerGentlemanEdward: TrainerGentlemanEdward:
trainer EVENT_BEAT_GENTLEMAN_EDWARD, GENTLEMAN, EDWARD, GentlemanEdwardSeenText, GentlemanEdwardBeatenText, 0, .Script trainer GENTLEMAN, EDWARD, EVENT_BEAT_GENTLEMAN_EDWARD, GentlemanEdwardSeenText, GentlemanEdwardBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -70,7 +70,7 @@ TrainerGentlemanEdward:
end end
TrainerBurglarCorey: TrainerBurglarCorey:
trainer EVENT_BEAT_BURGLAR_COREY, BURGLAR, COREY, BurglarCoreySeenText, BurglarCoreyBeatenText, 0, .Script trainer BURGLAR, COREY, EVENT_BEAT_BURGLAR_COREY, BurglarCoreySeenText, BurglarCoreyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -141,7 +141,7 @@ SSAquaGranddaughterAfter:
end end
TrainerPokefanmColin: TrainerPokefanmColin:
trainer EVENT_BEAT_POKEFANM_COLIN, POKEFANM, COLIN, PokefanmColinSeenText, PokefanmColinBeatenText, 0, .Script trainer POKEFANM, COLIN, EVENT_BEAT_POKEFANM_COLIN, PokefanmColinSeenText, PokefanmColinBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -152,7 +152,7 @@ TrainerPokefanmColin:
end end
TrainerTwinsMegandpeg1: TrainerTwinsMegandpeg1:
trainer EVENT_BEAT_TWINS_MEG_AND_PEG, TWINS, MEGANDPEG1, TwinsMegandpeg1SeenText, TwinsMegandpeg1BeatenText, 0, .Script trainer TWINS, MEGANDPEG1, EVENT_BEAT_TWINS_MEG_AND_PEG, TwinsMegandpeg1SeenText, TwinsMegandpeg1BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -163,7 +163,7 @@ TrainerTwinsMegandpeg1:
end end
TrainerTwinsMegandpeg2: TrainerTwinsMegandpeg2:
trainer EVENT_BEAT_TWINS_MEG_AND_PEG, TWINS, MEGANDPEG2, TwinsMegandpeg2SeenText, TwinsMegandpeg2BeatenText, 0, .Script trainer TWINS, MEGANDPEG2, EVENT_BEAT_TWINS_MEG_AND_PEG, TwinsMegandpeg2SeenText, TwinsMegandpeg2BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -174,7 +174,7 @@ TrainerTwinsMegandpeg2:
end end
TrainerPsychicRodney: TrainerPsychicRodney:
trainer EVENT_BEAT_PSYCHIC_RODNEY, PSYCHIC_T, RODNEY, PsychicRodneySeenText, PsychicRodneyBeatenText, 0, .Script trainer PSYCHIC_T, RODNEY, EVENT_BEAT_PSYCHIC_RODNEY, PsychicRodneySeenText, PsychicRodneyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -185,7 +185,7 @@ TrainerPsychicRodney:
end end
TrainerPokefanmJeremy: TrainerPokefanmJeremy:
trainer EVENT_BEAT_POKEFANM_JEREMY, POKEFANM, JEREMY, PokefanmJeremySeenText, PokefanmJeremyBeatenText, 0, .Script trainer POKEFANM, JEREMY, EVENT_BEAT_POKEFANM_JEREMY, PokefanmJeremySeenText, PokefanmJeremyBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -196,7 +196,7 @@ TrainerPokefanmJeremy:
end end
TrainerPokefanfGeorgia: TrainerPokefanfGeorgia:
trainer EVENT_BEAT_POKEFANF_GEORGIA, POKEFANF, GEORGIA, PokefanfGeorgiaSeenText, PokefanfGeorgiaBeatenText, 0, .Script trainer POKEFANF, GEORGIA, EVENT_BEAT_POKEFANF_GEORGIA, PokefanfGeorgiaSeenText, PokefanfGeorgiaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -207,7 +207,7 @@ TrainerPokefanfGeorgia:
end end
TrainerSupernerdShawn: TrainerSupernerdShawn:
trainer EVENT_BEAT_SUPER_NERD_SHAWN, SUPER_NERD, SHAWN, SupernerdShawnSeenText, SupernerdShawnBeatenText, 0, .Script trainer SUPER_NERD, SHAWN, EVENT_BEAT_SUPER_NERD_SHAWN, SupernerdShawnSeenText, SupernerdShawnBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -12,7 +12,7 @@ FastShipCabins_SW_SSW_NW_MapScripts:
db 0 db 0
TrainerFirebreatherLyle: TrainerFirebreatherLyle:
trainer EVENT_BEAT_FIREBREATHER_LYLE, FIREBREATHER, LYLE, FirebreatherLyleSeenText, FirebreatherLyleBeatenText, 0, .Script trainer FIREBREATHER, LYLE, EVENT_BEAT_FIREBREATHER_LYLE, FirebreatherLyleSeenText, FirebreatherLyleBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -23,7 +23,7 @@ TrainerFirebreatherLyle:
end end
TrainerBugCatcherKen: TrainerBugCatcherKen:
trainer EVENT_BEAT_BUG_CATCHER_KEN, BUG_CATCHER, KEN, BugCatcherKenSeenText, BugCatcherKenBeatenText, 0, .Script trainer BUG_CATCHER, KEN, EVENT_BEAT_BUG_CATCHER_KEN, BugCatcherKenSeenText, BugCatcherKenBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -34,7 +34,7 @@ TrainerBugCatcherKen:
end end
TrainerBeautyCassie: TrainerBeautyCassie:
trainer EVENT_BEAT_BEAUTY_CASSIE, BEAUTY, CASSIE, BeautyCassieSeenText, BeautyCassieBeatenText, 0, .Script trainer BEAUTY, CASSIE, EVENT_BEAT_BEAUTY_CASSIE, BeautyCassieSeenText, BeautyCassieBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -45,7 +45,7 @@ TrainerBeautyCassie:
end end
TrainerGuitaristClyde: TrainerGuitaristClyde:
trainer EVENT_BEAT_GUITARIST_CLYDE, GUITARIST, CLYDE, GuitaristClydeSeenText, GuitaristClydeBeatenText, 0, .Script trainer GUITARIST, CLYDE, EVENT_BEAT_GUITARIST_CLYDE, GuitaristClydeSeenText, GuitaristClydeBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -93,7 +93,7 @@ GoldenrodGymActivateRockets:
jumpstd radiotowerrockets jumpstd radiotowerrockets
TrainerLassCarrie: TrainerLassCarrie:
trainer EVENT_BEAT_LASS_CARRIE, LASS, CARRIE, LassCarrieSeenText, LassCarrieBeatenText, 0, .Script trainer LASS, CARRIE, EVENT_BEAT_LASS_CARRIE, LassCarrieSeenText, LassCarrieBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -117,7 +117,7 @@ WhitneyCriesScript:
end end
TrainerLassBridget: TrainerLassBridget:
trainer EVENT_BEAT_LASS_BRIDGET, LASS, BRIDGET, LassBridgetSeenText, LassBridgetBeatenText, 0, .Script trainer LASS, BRIDGET, EVENT_BEAT_LASS_BRIDGET, LassBridgetSeenText, LassBridgetBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -128,7 +128,7 @@ TrainerLassBridget:
end end
TrainerBeautyVictoria: TrainerBeautyVictoria:
trainer EVENT_BEAT_BEAUTY_VICTORIA, BEAUTY, VICTORIA, BeautyVictoriaSeenText, BeautyVictoriaBeatenText, 0, .Script trainer BEAUTY, VICTORIA, EVENT_BEAT_BEAUTY_VICTORIA, BeautyVictoriaSeenText, BeautyVictoriaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -139,7 +139,7 @@ TrainerBeautyVictoria:
end end
TrainerBeautySamantha: TrainerBeautySamantha:
trainer EVENT_BEAT_BEAUTY_SAMANTHA, BEAUTY, SAMANTHA, BeautySamanthaSeenText, BeautySamanthaBeatenText, 0, .Script trainer BEAUTY, SAMANTHA, EVENT_BEAT_BEAUTY_SAMANTHA, BeautySamanthaSeenText, BeautySamanthaBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -111,7 +111,7 @@ GoldenrodUnderground_MapScripts:
return return
TrainerSupernerdEric: TrainerSupernerdEric:
trainer EVENT_BEAT_SUPER_NERD_ERIC, SUPER_NERD, ERIC, SupernerdEricSeenText, SupernerdEricBeatenText, 0, .Script trainer SUPER_NERD, ERIC, EVENT_BEAT_SUPER_NERD_ERIC, SupernerdEricSeenText, SupernerdEricBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -122,7 +122,7 @@ TrainerSupernerdEric:
end end
TrainerSupernerdTeru: TrainerSupernerdTeru:
trainer EVENT_BEAT_SUPER_NERD_TERU, SUPER_NERD, TERU, SupernerdTeruSeenText, SupernerdTeruBeatenText, 0, .Script trainer SUPER_NERD, TERU, EVENT_BEAT_SUPER_NERD_TERU, SupernerdTeruSeenText, SupernerdTeruBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -133,7 +133,7 @@ TrainerSupernerdTeru:
end end
TrainerPokemaniacIssac: TrainerPokemaniacIssac:
trainer EVENT_BEAT_POKEMANIAC_ISSAC, POKEMANIAC, ISSAC, PokemaniacIssacSeenText, PokemaniacIssacBeatenText, 0, .Script trainer POKEMANIAC, ISSAC, EVENT_BEAT_POKEMANIAC_ISSAC, PokemaniacIssacSeenText, PokemaniacIssacBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -144,7 +144,7 @@ TrainerPokemaniacIssac:
end end
TrainerPokemaniacDonald: TrainerPokemaniacDonald:
trainer EVENT_BEAT_POKEMANIAC_DONALD, POKEMANIAC, DONALD, PokemaniacDonaldSeenText, PokemaniacDonaldBeatenText, 0, .Script trainer POKEMANIAC, DONALD, EVENT_BEAT_POKEMANIAC_DONALD, PokemaniacDonaldSeenText, PokemaniacDonaldBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -207,7 +207,7 @@ UndergroundSilverBattleScript:
end end
TrainerGruntM11: TrainerGruntM11:
trainer EVENT_BEAT_ROCKET_GRUNTM_11, GRUNTM, GRUNTM_11, GruntM11SeenText, GruntM11BeatenText, 0, .Script trainer GRUNTM, GRUNTM_11, EVENT_BEAT_ROCKET_GRUNTM_11, GruntM11SeenText, GruntM11BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -218,7 +218,7 @@ TrainerGruntM11:
end end
TrainerGruntM25: TrainerGruntM25:
trainer EVENT_BEAT_ROCKET_GRUNTM_25, GRUNTM, GRUNTM_25, GruntM25SeenText, GruntM25BeatenText, 0, .Script trainer GRUNTM, GRUNTM_25, EVENT_BEAT_ROCKET_GRUNTM_25, GruntM25SeenText, GruntM25BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -229,7 +229,7 @@ TrainerGruntM25:
end end
TrainerBurglarDuncan: TrainerBurglarDuncan:
trainer EVENT_BEAT_BURGLAR_DUNCAN, BURGLAR, DUNCAN, BurglarDuncanSeenText, BurglarDuncanBeatenText, 0, .Script trainer BURGLAR, DUNCAN, EVENT_BEAT_BURGLAR_DUNCAN, BurglarDuncanSeenText, BurglarDuncanBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -240,7 +240,7 @@ TrainerBurglarDuncan:
end end
TrainerBurglarEddie: TrainerBurglarEddie:
trainer EVENT_BEAT_BURGLAR_EDDIE, BURGLAR, EDDIE, BurglarEddieSeenText, BurglarEddieBeatenText, 0, .Script trainer BURGLAR, EDDIE, EVENT_BEAT_BURGLAR_EDDIE, BurglarEddieSeenText, BurglarEddieBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -251,7 +251,7 @@ TrainerBurglarEddie:
end end
TrainerGruntM13: TrainerGruntM13:
trainer EVENT_BEAT_ROCKET_GRUNTM_13, GRUNTM, GRUNTM_13, GruntM13SeenText, GruntM13BeatenText, 0, .Script trainer GRUNTM, GRUNTM_13, EVENT_BEAT_ROCKET_GRUNTM_13, GruntM13SeenText, GruntM13BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -262,7 +262,7 @@ TrainerGruntM13:
end end
TrainerGruntF3: TrainerGruntF3:
trainer EVENT_BEAT_ROCKET_GRUNTF_3, GRUNTF, GRUNTF_3, GruntF3SeenText, GruntF3BeatenText, 0, .Script trainer GRUNTF, GRUNTF_3, EVENT_BEAT_ROCKET_GRUNTF_3, GruntF3SeenText, GruntF3BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -36,7 +36,7 @@ GoldenrodUndergroundWarehouse_MapScripts:
return return
TrainerGruntM24: TrainerGruntM24:
trainer EVENT_BEAT_ROCKET_GRUNTM_24, GRUNTM, GRUNTM_24, GruntM24SeenText, GruntM24BeatenText, 0, .Script trainer GRUNTM, GRUNTM_24, EVENT_BEAT_ROCKET_GRUNTM_24, GruntM24SeenText, GruntM24BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -47,7 +47,7 @@ TrainerGruntM24:
end end
TrainerGruntM14: TrainerGruntM14:
trainer EVENT_BEAT_ROCKET_GRUNTM_14, GRUNTM, GRUNTM_14, GruntM14SeenText, GruntM14BeatenText, 0, .Script trainer GRUNTM, GRUNTM_14, EVENT_BEAT_ROCKET_GRUNTM_14, GruntM14SeenText, GruntM14BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled
@@ -58,7 +58,7 @@ TrainerGruntM14:
end end
TrainerGruntM15: TrainerGruntM15:
trainer EVENT_BEAT_ROCKET_GRUNTM_15, GRUNTM, GRUNTM_15, GruntM15SeenText, GruntM15BeatenText, 0, .Script trainer GRUNTM, GRUNTM_15, EVENT_BEAT_ROCKET_GRUNTM_15, GruntM15SeenText, GruntM15BeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

View File

@@ -388,7 +388,7 @@ IlexForestHeadbuttGuyScript:
end end
TrainerBugCatcherWayne: TrainerBugCatcherWayne:
trainer EVENT_BEAT_BUG_CATCHER_WAYNE, BUG_CATCHER, WAYNE, BugCatcherWayneSeenText, BugCatcherWayneBeatenText, 0, .Script trainer BUG_CATCHER, WAYNE, EVENT_BEAT_BUG_CATCHER_WAYNE, BugCatcherWayneSeenText, BugCatcherWayneBeatenText, 0, .Script
.Script: .Script:
end_if_just_battled end_if_just_battled

Some files were not shown because too many files have changed in this diff Show More