Skip to content

Commit c8eb4f5

Browse files
committed
Update 25.12.15
1 parent a2a209f commit c8eb4f5

File tree

7 files changed

+13
-4
lines changed

7 files changed

+13
-4
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>25.12.12</Version>
3+
<Version>25.12.15</Version>
44
<LangVersion>13</LangVersion>
55
<Nullable>enable</Nullable>
66
<NeutralLanguage>en</NeutralLanguage>

PKHeX.Core/Legality/Verifiers/LegendsZAVerifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ private static bool WasPossiblyObtainedBeforeDLC(PKM pk, IEncounterTemplate enc)
304304
private static bool IsPermittedUnsetPlusMove(Species species, Move move) => species switch
305305
{
306306
// Relearn moves added in DLC:
307-
Pichu or Pikachu or Raichu when move is DrainingKiss => true,
307+
Pikachu or Raichu when move is DrainingKiss => true,
308308
Onix or Steelix when move is RockBlast => true,
309309
Absol when move is Snarl or PhantomForce => true,
310310
Roserade or Whirlipede or Scolipede when move is MortalSpin => true,
1.39 KB
Binary file not shown.
548 Bytes
Binary file not shown.
116 Bytes
Binary file not shown.

PKHeX.WinForms/Resources/text/changelog.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
PKHeX - By Kaphotics
22
http://projectpokemon.org/pkhex/
33

4-
25/12/12 - New Update:
4+
25/12/15 - New Update:
5+
- Legality: Improved location ID detection of wild encounters, should work for 99.9%.
6+
- - Crossovers are not currently handled for detecting location IDs. Generating from encounter template is 100% legal.
7+
- Added: Gen9a Donut editor. Can randomize, clone, fill, export, import, and manually edit individual donuts. Thanks @Lusamine & @sora10pls !
8+
- Added: Gen9a Trainer Editor can now change Hyperspace Survey Points. Refer to the DLC tab in the editor.
9+
- Fixed: Gen9a Meowstic/Magearna mega entries now update the Pokédex as expected.
10+
- Fixed: Gen9a Event Flag editor no longer sometimes opens with a popup warning.
11+
- Fixed: Gen3 Battle Frontier streak edits no longer reset adjacent streak values. Thanks @rjgabel !
12+
13+
25/12/12 - New Update: (178684) [11901482]
514
- Added: Support for Legends: Z-A (Mega Dimension) DLC, 2.0.0
615
- Legality:
716
- - New encounters not yet added to the database. Any currently present in this release may not be accurate.

Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static void VerifyCanLearn(string species, params string[] moves)
1818
}
1919

2020
[Theory]
21-
[InlineData(nameof(Species.Perrserker), "Swift")]
21+
//[InlineData(nameof(Species.Perrserker), "Swift")] // added in Z-A DLC
2222
[InlineData(nameof(Species.Perrserker), "Shock Wave")]
2323
[InlineData(nameof(Species.Sirfetchd), "False Swipe")]
2424
[InlineData(nameof(Species.Bulbasaur), "Fly")]

0 commit comments

Comments
 (0)