2020-11-27 18:45:06 -08:00
|
|
|
|
namespace PKHeX.Core
|
2016-03-10 20:36:32 -08:00
|
|
|
|
{
|
2021-03-14 11:28:46 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Collection of analyzers that are used for parsing secondary details.
|
|
|
|
|
/// </summary>
|
2020-11-27 12:00:49 -08:00
|
|
|
|
internal static class LegalityAnalyzers
|
2016-03-13 20:19:04 -07:00
|
|
|
|
{
|
2020-12-31 10:33:30 -08:00
|
|
|
|
public static readonly LanguageVerifier LanguageIndex = new();
|
|
|
|
|
public static readonly NicknameVerifier Nickname = new();
|
|
|
|
|
public static readonly EffortValueVerifier EffortValues = new();
|
|
|
|
|
public static readonly IndividualValueVerifier IndividualValues = 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();
|
2021-06-29 20:58:06 -07:00
|
|
|
|
public static readonly GroundTileVerifier Gen4GroundTile = new();
|
2020-12-31 10:33:30 -08:00
|
|
|
|
public static readonly HyperTrainingVerifier HyperTraining = new();
|
|
|
|
|
public static readonly GenderVerifier GenderValues = new();
|
|
|
|
|
public static readonly PIDVerifier PIDEC = new();
|
|
|
|
|
public static readonly NHarmoniaVerifier NHarmonia = 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();
|
2018-06-23 22:00:01 -07:00
|
|
|
|
|
2020-12-21 17:17:56 -08:00
|
|
|
|
public static readonly TrainerNameVerifier Trainer = new();
|
2021-11-25 19:15:42 -08:00
|
|
|
|
public static readonly TrainerIDVerifier TrainerID = new();
|
2020-12-21 17:17:56 -08:00
|
|
|
|
public static readonly LevelVerifier Level = new();
|
|
|
|
|
public static readonly MiscVerifier MiscValues = new();
|
|
|
|
|
public static readonly TransferVerifier Transfer = new();
|
|
|
|
|
public static readonly MarkVerifier Mark = new();
|
2022-02-04 17:35:15 -08:00
|
|
|
|
public static readonly LegendsArceusVerifier Arceus = new();
|
2016-03-10 20:36:32 -08:00
|
|
|
|
}
|
|
|
|
|
}
|