2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-03-07 08:47:21 +00:00

RAID: Shadow Legends

Need to differentiate these from regular raid encounters so that they can be excluded from LGPE GO encounter data (purified can only be sent to HOME).
This commit is contained in:
sora10pls 2023-05-20 11:56:19 -04:00
parent b08843fcc5
commit 302f0593e6

View file

@ -21,6 +21,9 @@ public enum PogoType : byte
RaidM,
/// <summary> Ultra Beasts captured after completing Raid Battles. Only Beast Balls can be used. </summary>
RaidUB,
/// <summary> Shadow Pokémon captured after completing Shadow Raid Battles. Must be Purified before transferring to Pokémon HOME. </summary>
/// <remarks> Pokémon with this <see cref="PogoType"/> can not be moved to <see cref="GameVersion.GG"/>. </remarks>
RaidS,
/// <summary> Pokémon captured after completing Field Research. </summary>
Research = 20,
@ -38,7 +41,7 @@ public enum PogoType : byte
/// <summary> Pokémon captured from the GO Battle League during GO Battle Day, excluding Legendary and Mythical Pokémon. </summary>
GBLD,
/// <summary> Pokémon captured after defeating members of Team GO Rocket. Must become Purified before transferring to Pokémon HOME. </summary>
/// <summary> Pokémon captured after defeating members of Team GO Rocket. Must be Purified before transferring to Pokémon HOME. </summary>
/// <remarks> Pokémon with this <see cref="PogoType"/> can not be moved to <see cref="GameVersion.GG"/>. </remarks>
Shadow = 40,