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:
parent
b08843fcc5
commit
302f0593e6
1 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue