From 5b251b614cca11d0cda71799039b40aab168e8e8 Mon Sep 17 00:00:00 2001 From: Martin Griffin Date: Thu, 25 Jul 2024 14:50:32 +0100 Subject: [PATCH] trainerproc: Support Ogerpon --- include/constants/species.h | 4 ++++ tools/trainerproc/main.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/include/constants/species.h b/include/constants/species.h index bdf3bdce1f8b..685ebae474dd 100644 --- a/include/constants/species.h +++ b/include/constants/species.h @@ -1704,6 +1704,10 @@ #define SPECIES_MR_MIME_GALAR SPECIES_MR_MIME_GALARIAN #define SPECIES_MUK_ALOLA SPECIES_MUK_ALOLAN #define SPECIES_NINETALES_ALOLA SPECIES_NINETALES_ALOLAN +#define SPECIES_OGERPON_TEAL SPECIES_OGERPON_TEAL_MASK +#define SPECIES_OGERPON_WELLSPRING SPECIES_OGERPON_WELLSPRING_MASK +#define SPECIES_OGERPON_HEARTHFLAME SPECIES_OGERPON_HEARTHFLAME_MASK +#define SPECIES_OGERPON_CORNERSTONE SPECIES_OGERPON_CORNERSTONE_MASK #define SPECIES_ORBEETLE_GMAX SPECIES_ORBEETLE_GIGANTAMAX #define SPECIES_PERSIAN_ALOLA SPECIES_PERSIAN_ALOLAN #define SPECIES_PIKACHU_ALOLA SPECIES_PIKACHU_ALOLA_CAP diff --git a/tools/trainerproc/main.c b/tools/trainerproc/main.c index c6eb99cb9516..bd18995a2e12 100644 --- a/tools/trainerproc/main.c +++ b/tools/trainerproc/main.c @@ -1057,6 +1057,9 @@ static const struct { { "Genesect-Chill", "Genesect", "Chill Drive" }, { "Genesect-Douse", "Genesect", "Douse Drive" }, { "Genesect-Shock", "Genesect", "Shock Drive" }, + { "Ogerpon-Cornerstone", "Ogerpon", "Cornerstone Mask" }, + { "Ogerpon-Hearthflame", "Ogerpon", "Hearthflame Mask" }, + { "Ogerpon-Wellspring", "Ogerpon", "Wellspring Mask" }, { "Silvally-Bug", "Silvally", "Bug Memory" }, { "Silvally-Dark", "Silvally", "Dark Memory" }, { "Silvally-Dragon", "Silvally", "Dragon Memory" },