2022-07-10 22:53:33 +00:00
|
|
|
namespace PKHeX.Core;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Collection of analyzers that are used for parsing secondary details.
|
|
|
|
/// </summary>
|
|
|
|
internal static class LegalityAnalyzers
|
2016-03-11 04:36:32 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
public static readonly LanguageVerifier LanguageIndex = new();
|
|
|
|
public static readonly NicknameVerifier Nickname = new();
|
|
|
|
public static readonly EffortValueVerifier EVs = new();
|
|
|
|
public static readonly IndividualValueVerifier IVs = new();
|
|
|
|
public static readonly BallVerifier BallIndex = new();
|
|
|
|
public static readonly FormVerifier FormValues = new();
|
|
|
|
public static readonly ConsoleRegionVerifier ConsoleRegion = new();
|
|
|
|
public static readonly AbilityVerifier AbilityValues = new();
|
|
|
|
public static readonly MedalVerifier Medal = new();
|
|
|
|
public static readonly RibbonVerifier Ribbon = new();
|
|
|
|
public static readonly ItemVerifier Item = new();
|
|
|
|
public static readonly GroundTileVerifier Gen4GroundTile = new();
|
|
|
|
public static readonly HyperTrainingVerifier HyperTraining = new();
|
|
|
|
public static readonly GenderVerifier GenderValues = new();
|
|
|
|
public static readonly PIDVerifier PIDEC = new();
|
|
|
|
public static readonly CXDVerifier CXD = new();
|
|
|
|
public static readonly MemoryVerifier Memory = new();
|
|
|
|
public static readonly HistoryVerifier History = new();
|
|
|
|
public static readonly ContestStatVerifier Contest = new();
|
|
|
|
public static readonly MarkingVerifier Marking = new();
|
2024-04-26 19:33:03 +00:00
|
|
|
public static readonly MovePPVerifier MovePP = new();
|
2018-06-24 05:00:01 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public static readonly TrainerNameVerifier Trainer = new();
|
|
|
|
public static readonly TrainerIDVerifier TrainerID = new();
|
|
|
|
public static readonly LevelVerifier Level = new();
|
|
|
|
public static readonly MiscVerifier MiscValues = new();
|
|
|
|
public static readonly TransferVerifier Transfer = new();
|
|
|
|
public static readonly MarkVerifier Mark = new();
|
|
|
|
public static readonly LegendsArceusVerifier Arceus = new();
|
2022-07-10 22:53:33 +00:00
|
|
|
public static readonly AwakenedValueVerifier Awakening = new();
|
2024-05-27 23:21:11 +00:00
|
|
|
public static readonly TrashByteVerifier Trash = new();
|
2024-06-15 05:14:49 +00:00
|
|
|
public static readonly SlotTypeVerifier SlotType = new();
|
2016-03-11 04:36:32 +00:00
|
|
|
}
|