diff --git a/Directory.Build.props b/Directory.Build.props index 5f9ec2b6a..66eb28cfd 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - 25.12.12 + 25.12.15 13 enable en diff --git a/PKHeX.Core/Legality/Verifiers/LegendsZAVerifier.cs b/PKHeX.Core/Legality/Verifiers/LegendsZAVerifier.cs index 2c005a032..e3a600931 100644 --- a/PKHeX.Core/Legality/Verifiers/LegendsZAVerifier.cs +++ b/PKHeX.Core/Legality/Verifiers/LegendsZAVerifier.cs @@ -304,7 +304,7 @@ private static bool WasPossiblyObtainedBeforeDLC(PKM pk, IEncounterTemplate enc) private static bool IsPermittedUnsetPlusMove(Species species, Move move) => species switch { // Relearn moves added in DLC: - Pichu or Pikachu or Raichu when move is DrainingKiss => true, + Pikachu or Raichu when move is DrainingKiss => true, Onix or Steelix when move is RockBlast => true, Absol when move is Snarl or PhantomForce => true, Roserade or Whirlipede or Scolipede when move is MortalSpin => true, diff --git a/PKHeX.Core/Resources/legality/mgdb/wa9.pkl b/PKHeX.Core/Resources/legality/mgdb/wa9.pkl index 0791ff830..bf895f100 100644 Binary files a/PKHeX.Core/Resources/legality/mgdb/wa9.pkl and b/PKHeX.Core/Resources/legality/mgdb/wa9.pkl differ diff --git a/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl b/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl index f8cf719d1..426bee617 100644 Binary files a/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl and b/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl differ diff --git a/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl b/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl index f096b4aa9..96739904c 100644 Binary files a/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl and b/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl differ diff --git a/PKHeX.WinForms/Resources/text/changelog.txt b/PKHeX.WinForms/Resources/text/changelog.txt index 7507ae955..749ce6e64 100644 --- a/PKHeX.WinForms/Resources/text/changelog.txt +++ b/PKHeX.WinForms/Resources/text/changelog.txt @@ -1,7 +1,16 @@ PKHeX - By Kaphotics http://projectpokemon.org/pkhex/ -25/12/12 - New Update: +25/12/15 - New Update: + - Legality: Improved location ID detection of wild encounters, should work for 99.9%. + - - Crossovers are not currently handled for detecting location IDs. Generating from encounter template is 100% legal. + - Added: Gen9a Donut editor. Can randomize, clone, fill, export, import, and manually edit individual donuts. Thanks @Lusamine & @sora10pls ! + - Added: Gen9a Trainer Editor can now change Hyperspace Survey Points. Refer to the DLC tab in the editor. + - Fixed: Gen9a Meowstic/Magearna mega entries now update the Pokédex as expected. + - Fixed: Gen9a Event Flag editor no longer sometimes opens with a popup warning. + - Fixed: Gen3 Battle Frontier streak edits no longer reset adjacent streak values. Thanks @rjgabel ! + +25/12/12 - New Update: (178684) [11901482] - Added: Support for Legends: Z-A (Mega Dimension) DLC, 2.0.0 - Legality: - - New encounters not yet added to the database. Any currently present in this release may not be accurate. diff --git a/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs b/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs index 56ae41794..2707ace89 100644 --- a/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs +++ b/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs @@ -18,7 +18,7 @@ public static void VerifyCanLearn(string species, params string[] moves) } [Theory] - [InlineData(nameof(Species.Perrserker), "Swift")] + //[InlineData(nameof(Species.Perrserker), "Swift")] // added in Z-A DLC [InlineData(nameof(Species.Perrserker), "Shock Wave")] [InlineData(nameof(Species.Sirfetchd), "False Swipe")] [InlineData(nameof(Species.Bulbasaur), "Fly")]