mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
21 lines
479 B
C#
21 lines
479 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
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
|
||
|
}
|
||
|
}
|