From a45215b00d403941ae8f32e0223169de866ce950 Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 21 Dec 2023 12:31:10 -0800 Subject: [PATCH] Update SpeciesCategory.cs #4126 --- PKHeX.Core/Legality/Tables/SpeciesCategory.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PKHeX.Core/Legality/Tables/SpeciesCategory.cs b/PKHeX.Core/Legality/Tables/SpeciesCategory.cs index fcb8cf6b3..a1152af55 100644 --- a/PKHeX.Core/Legality/Tables/SpeciesCategory.cs +++ b/PKHeX.Core/Legality/Tables/SpeciesCategory.cs @@ -66,6 +66,7 @@ public static class SpeciesCategory /// Checks if the is a Paradox Pokémon. /// public static bool IsParadox(ushort species) => species is (>= (int)GreatTusk and <= (int)IronThorns) + or (int)WalkingWake or (int)IronLeaves or (int)RoaringMoon or (int)IronValiant or (int)GougingFire or (int)RagingBolt or (int)IronBoulder or (int)IronCrown;