PKHeX/PKHeX.Core/Saves/MemeCrypto/MemeKeyIndex.cs
Michael Scire b1641772e6 Refactor Memecrypto API, Add Memecrypto Tests
Refactors the Memecrypto API to improve generalized usage.

Adds unit tests that verify memecrypto works, so that future changes
don't potentially break the code.
2017-11-06 03:24:48 -08:00

21 lines
No EOL
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
}
}