From 3e4bb9f32095057cccce8f3ac57afc36d195cac5 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 15 Feb 2020 13:30:50 -0800 Subject: [PATCH] Ignore keldeo resolute form check on gen8+ can mismatch in gen8+ as the form activates in battle when knowing the move; outside of battle can be either state. --- PKHeX.Core/Legality/Verifiers/FormVerifier.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Verifiers/FormVerifier.cs b/PKHeX.Core/Legality/Verifiers/FormVerifier.cs index be8768192..9470ec17a 100644 --- a/PKHeX.Core/Legality/Verifiers/FormVerifier.cs +++ b/PKHeX.Core/Legality/Verifiers/FormVerifier.cs @@ -91,7 +91,9 @@ bool IsValidPikachuCap() } case (int)Species.Keldeo: { - if (Info.Generation == 5) // can mismatch in gen5 via BW tutor and transfer up + // can mismatch in gen5 via BW tutor and transfer up + // can mismatch in gen8+ as the form activates in battle when knowing the move; outside of battle can be either state. + if (Info.Generation == 5 || pkm.Format >= 8) break; int index = Array.IndexOf(pkm.Moves, 548); // Secret Sword bool noSword = index < 0;