2020-11-28 02:45:06 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-03-11 04:36:32 +00:00
|
|
|
|
{
|
2021-03-14 18:28:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Collection of analyzers that are used for parsing secondary details.
|
|
|
|
|
/// </summary>
|
2020-11-27 20:00:49 +00:00
|
|
|
|
internal static class LegalityAnalyzers
|
2016-03-14 03:19:04 +00:00
|
|
|
|
{
|
2020-12-31 18:33:30 +00: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();
|
|
|
|
|
public static readonly EncounterTypeVerifier Gen4EncounterType = new();
|
|
|
|
|
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-24 05:00:01 +00:00
|
|
|
|
|
2020-12-22 01:17:56 +00:00
|
|
|
|
public static readonly TrainerNameVerifier Trainer = 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();
|
2016-03-11 04:36:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|