mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-23 10:53:10 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
using static PKHeX.Core.LegalityCheckStrings;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Verifies the <see cref="PK5.NSparkle"/> data.
|
|
/// </summary>
|
|
public sealed class NHarmoniaVerifier : Verifier
|
|
{
|
|
protected override CheckIdentifier Identifier => CheckIdentifier.Trainer;
|
|
|
|
public override void Verify(LegalityAnalysis data)
|
|
{
|
|
var pk = data.Entity;
|
|
bool checksRequired = data.EncounterMatch is EncounterStatic5N;
|
|
if (pk is PK5 pk5)
|
|
{
|
|
bool has = pk5.NSparkle;
|
|
if (checksRequired && !has)
|
|
data.AddLine(GetInvalid(LG5SparkleRequired, CheckIdentifier.Fateful));
|
|
if (!checksRequired && has)
|
|
data.AddLine(GetInvalid(LG5SparkleInvalid, CheckIdentifier.Fateful));
|
|
}
|
|
|
|
if (!checksRequired)
|
|
return;
|
|
|
|
if (pk.OT_Gender != 0)
|
|
data.AddLine(GetInvalid(LG5OTGenderN, CheckIdentifier.Trainer));
|
|
if (pk.IVTotal != 30*6)
|
|
data.AddLine(GetInvalid(LG5IVAll30, CheckIdentifier.IVs));
|
|
if (!VerifyNsPKMOTValid(pk))
|
|
data.AddLine(GetInvalid(LG5ID_N, CheckIdentifier.Trainer));
|
|
if (pk.IsShiny)
|
|
data.AddLine(GetInvalid(LG5PIDShinyN, CheckIdentifier.Shiny));
|
|
}
|
|
|
|
private static bool VerifyNsPKMOTValid(PKM pk)
|
|
{
|
|
if (pk.TID != 00002 || pk.SID != 00000)
|
|
return false;
|
|
var ot = pk.OT_Name;
|
|
if (ot.Length != 1)
|
|
return false;
|
|
var c = EncounterStatic5N.GetOT(pk.Language);
|
|
return c == ot;
|
|
}
|
|
}
|