mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Verifies the Contest stat details.
|
|
/// </summary>
|
|
public class ContestStatVerifier : Verifier
|
|
{
|
|
protected override CheckIdentifier Identifier => CheckIdentifier.Memory;
|
|
public override void Verify(LegalityAnalysis data)
|
|
{
|
|
var pkm = data.pkm;
|
|
if (pkm.Format <= 4)
|
|
return; // legal || not present
|
|
|
|
if (pkm is IContestStats s && s.HasContestStats() && !CanHaveContestStats(pkm, data.Info.Generation))
|
|
data.AddLine(GetInvalid(LegalityCheckStrings.LContestZero));
|
|
|
|
// some encounters have contest stats built in. they're already checked by the initial encounter match.
|
|
}
|
|
|
|
private static bool CanHaveContestStats(PKM pkm, int origin)
|
|
{
|
|
return origin switch
|
|
{
|
|
1 => false,
|
|
2 => false,
|
|
3 => true,
|
|
4 => true,
|
|
5 => (pkm.Format >= 6), // ORAS Contests
|
|
6 => (!pkm.IsUntraded || pkm.AO),
|
|
7 => false,
|
|
_ => false
|
|
};
|
|
}
|
|
}
|
|
}
|