mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Merge branch 'master' of https://github.com/kwsch/PKHeX
This commit is contained in:
commit
8315f740cb
2 changed files with 3 additions and 2 deletions
|
@ -692,9 +692,9 @@ namespace PKHeX.Core
|
|||
return $"C-{form}";
|
||||
|
||||
// Necrozma
|
||||
case (int)Core.Species.Necrozma when form == "Dusk-Mane":
|
||||
case (int)Core.Species.Necrozma when form == "Dusk-Mane" || form == "Dusk Mane":
|
||||
return "Dusk";
|
||||
case (int)Core.Species.Necrozma when form == "Dawn-Wings":
|
||||
case (int)Core.Species.Necrozma when form == "Dawn-Wings" || form == "Dawn Wings":
|
||||
return "Dawn";
|
||||
|
||||
// Toxtricity
|
||||
|
|
|
@ -289,6 +289,7 @@ namespace PKHeX.Core
|
|||
484, 487, 489, 490, 491, 492, 493, 494, 643, 644, 646,
|
||||
647, 648, 649, 716, 717, 718, 719, 720, 721, 789, 790,
|
||||
791, 792, 800, 801, 802, 807, 808, 809,
|
||||
(int)Species.Zacian, (int)Species.Zamazenta, (int)Species.Eternatus,
|
||||
};
|
||||
|
||||
public static readonly HashSet<int> SubLegends = new HashSet<int>
|
||||
|
|
Loading…
Reference in a new issue