Update 25.12.15

This commit is contained in:
Kurt 2025-12-15 23:19:16 -06:00
parent a2a209ff2c
commit c8eb4f548f
7 changed files with 13 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>25.12.12</Version>
<Version>25.12.15</Version>
<LangVersion>13</LangVersion>
<Nullable>enable</Nullable>
<NeutralLanguage>en</NeutralLanguage>

View File

@ -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,

View File

@ -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.

View File

@ -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")]