mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
bedc52943e
No functional change
24 lines
580 B
C#
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,
|
|
}
|
|
}
|