PKHeX/PKHeX.Core/Saves/Encryption/MemeCrypto/MemeKeyIndex.cs
Kurt bedc52943e Trailing commas
No functional change
2021-08-20 13:49:20 -07:00

24 lines
580 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Different Key Types used for <see cref="MemeCrypto"/>
/// </summary>
public enum MemeKeyIndex
{
LocalWireless = -1,
FriendlyCompetition = 0,
LiveCompetition = 1,
RentalTeam = 2,
PokedexAndSaveFile = 3,
GaOle = 4,
MagearnaEvent = 5,
MoncolleGet = 6,
IslandScanEventSpecial = 7,
TvTokyoDataBroadcasting = 8,
CapPikachuEvent = 9,
Unknown10 = 10,
Unknown11 = 11,
Unknown12 = 12,
Unknown13 = 13,
}
}