mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
265 lines
14 KiB
C#
265 lines
14 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public static partial class Legal
|
|
{
|
|
internal const int MaxSpeciesID_8a = (int)Species.Enamorus;
|
|
internal const int MaxMoveID_8a = (int)Move.TakeHeart;
|
|
internal const int MaxItemID_8a = 1828; // Legend Plate
|
|
internal const int MaxBallID_8a = (int)Ball.LAOrigin;
|
|
internal const int MaxGameID_8a = (int)GameVersion.SP;
|
|
internal const int MaxAbilityID_8a = MaxAbilityID_8_R2;
|
|
|
|
internal static readonly ushort[] Pouch_Items_LA =
|
|
{
|
|
017, 023, 024, 025, 026, 027, 028, 029, 039, 041,
|
|
050, 054, 072, 073, 075, 080, 081, 082, 083, 084,
|
|
085, 090, 091, 092, 107, 108, 109, 110, 149, 150,
|
|
151, 152, 153, 154, 155, 157, 158, 159, 160, 161,
|
|
162, 163, 164, 166, 168, 233, 252, 321, 322, 323,
|
|
324, 325, 326, 327, 583, 849,
|
|
|
|
1125, 1126, 1127, 1128, 1231, 1232, 1233, 1234, 1235, 1236,
|
|
1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246,
|
|
1247, 1248, 1249, 1250, 1251,
|
|
|
|
1611, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621,
|
|
1628, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638,
|
|
1651, 1679, 1681, 1682, 1684, 1686, 1687, 1688, 1689, 1690,
|
|
1691, 1692, 1693, 1694, 1695, 1696, 1699, 1700, 1701, 1702,
|
|
1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712,
|
|
1713, 1716, 1717, 1720, 1724, 1725, 1726, 1727, 1728, 1732,
|
|
1733, 1734, 1735, 1736, 1738, 1739, 1740, 1741, 1742, 1746,
|
|
1747, 1748, 1749, 1750, 1754, 1755, 1756, 1757, 1758, 1759,
|
|
1760, 1761, 1762, 1764, 1785,
|
|
};
|
|
|
|
internal static readonly ushort[] Pouch_Recipe_LA =
|
|
{
|
|
1640, 1641, 1642, 1643, 1644, 1646, 1647, 1648, 1649,
|
|
1650, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659,
|
|
1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669,
|
|
1670, 1671, 1673, 1674, 1675, 1676, 1677,
|
|
|
|
1729,
|
|
1730, 1731,
|
|
|
|
1751, 1752, 1753,
|
|
|
|
1783, 1784,
|
|
};
|
|
|
|
internal static readonly ushort[] Pouch_Key_LA =
|
|
{
|
|
111,
|
|
298, 299,
|
|
300, 301, 302, 303, 304, 305, 306, 307, 308, 309,
|
|
310, 311, 312, 313,
|
|
441, 455, 466,
|
|
632, 638, 644,
|
|
1608, 1609, 1610, 1612, 1622, 1624, 1625, 1626, 1627, 1629,
|
|
1639, 1678, 1721, 1722, 1723, 1737, 1743, 1744, 1745, 1763,
|
|
1765, 1766, 1767, 1768, 1769, 1771, 1776, 1777, 1778, 1779,
|
|
1780, 1782, 1786, 1787, 1788, 1789, 1790, 1792, 1793, 1794,
|
|
1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804,
|
|
1805, 1806, 1807,
|
|
1828,
|
|
};
|
|
|
|
internal static readonly ushort[] HeldItems_LA = { 0 };
|
|
|
|
internal static readonly HashSet<int> HisuiOriginForms = new()
|
|
{
|
|
(int)Species.Sneasel,
|
|
(int)Species.Growlithe,
|
|
(int)Species.Arcanine,
|
|
(int)Species.Voltorb,
|
|
(int)Species.Electrode,
|
|
(int)Species.Qwilfish,
|
|
(int)Species.Sliggoo,
|
|
(int)Species.Goodra,
|
|
};
|
|
|
|
internal static readonly IReadOnlyDictionary<int, int> HisuiForm0Evolutions = new Dictionary<int, int>
|
|
{
|
|
{(int)Species.Sneasler, 1},
|
|
};
|
|
|
|
internal static readonly HashSet<int> HisuiVariantFormEvolutions = new()
|
|
{
|
|
(int)Species.Decidueye,
|
|
(int)Species.Typhlosion,
|
|
(int)Species.Samurott,
|
|
(int)Species.Lilligant,
|
|
(int)Species.Braviary,
|
|
(int)Species.Avalugg,
|
|
};
|
|
|
|
#region Moves
|
|
|
|
internal static readonly ushort[] MoveShop8_LA =
|
|
{
|
|
(int)Move.FalseSwipe,
|
|
(int)Move.FireFang,
|
|
(int)Move.ThunderFang,
|
|
(int)Move.IceFang,
|
|
(int)Move.IceBall,
|
|
(int)Move.RockSmash,
|
|
(int)Move.Spikes,
|
|
(int)Move.Bulldoze,
|
|
(int)Move.AerialAce,
|
|
(int)Move.StealthRock,
|
|
(int)Move.Swift,
|
|
(int)Move.TriAttack,
|
|
(int)Move.MagicalLeaf,
|
|
(int)Move.OminousWind,
|
|
(int)Move.PowerShift,
|
|
(int)Move.FocusEnergy,
|
|
(int)Move.BulkUp,
|
|
(int)Move.CalmMind,
|
|
(int)Move.Rest,
|
|
(int)Move.BabyDollEyes,
|
|
(int)Move.FirePunch,
|
|
(int)Move.ThunderPunch,
|
|
(int)Move.IcePunch,
|
|
(int)Move.DrainPunch,
|
|
(int)Move.PoisonJab,
|
|
(int)Move.PsychoCut,
|
|
(int)Move.ZenHeadbutt,
|
|
(int)Move.LeechLife,
|
|
(int)Move.XScissor,
|
|
(int)Move.RockSlide,
|
|
(int)Move.ShadowClaw,
|
|
(int)Move.IronHead,
|
|
(int)Move.IronTail,
|
|
(int)Move.MysticalFire,
|
|
(int)Move.WaterPulse,
|
|
(int)Move.ChargeBeam,
|
|
(int)Move.EnergyBall,
|
|
(int)Move.IcyWind,
|
|
(int)Move.SludgeBomb,
|
|
(int)Move.EarthPower,
|
|
(int)Move.ShadowBall,
|
|
(int)Move.Snarl,
|
|
(int)Move.FlashCannon,
|
|
(int)Move.DazzlingGleam,
|
|
(int)Move.GigaImpact,
|
|
(int)Move.AquaTail,
|
|
(int)Move.WildCharge,
|
|
(int)Move.HighHorsepower,
|
|
(int)Move.Megahorn,
|
|
(int)Move.StoneEdge,
|
|
(int)Move.Outrage,
|
|
(int)Move.PlayRough,
|
|
(int)Move.HyperBeam,
|
|
(int)Move.Flamethrower,
|
|
(int)Move.Thunderbolt,
|
|
(int)Move.IceBeam,
|
|
(int)Move.Psychic,
|
|
(int)Move.DarkPulse,
|
|
(int)Move.DracoMeteor,
|
|
(int)Move.SteelBeam,
|
|
(int)Move.VoltTackle,
|
|
};
|
|
|
|
internal static readonly byte[] MovePP_LA =
|
|
{
|
|
00,
|
|
35, 25, 10, 15, 20, 20, 10, 10, 10, 35, 30, 05, 10, 20, 30, 25, 35, 20, 15, 20, 20, 25, 20, 30, 05, 10, 15, 15, 15, 25, 20, 05, 30, 15, 20, 20, 10, 05, 30, 20, 20, 20, 30, 20, 40, 20, 15, 20, 20, 20,
|
|
30, 25, 10, 30, 25, 05, 15, 10, 05, 20, 20, 20, 05, 35, 20, 20, 20, 20, 20, 15, 20, 15, 10, 20, 25, 10, 20, 20, 20, 10, 40, 10, 15, 25, 10, 20, 05, 15, 10, 05, 10, 10, 20, 10, 20, 40, 30, 20, 20, 20,
|
|
15, 10, 40, 15, 10, 30, 10, 20, 10, 40, 40, 20, 30, 30, 20, 20, 10, 10, 20, 05, 10, 30, 20, 20, 20, 05, 15, 15, 20, 10, 15, 35, 20, 15, 10, 10, 30, 15, 20, 20, 10, 10, 05, 10, 25, 10, 10, 20, 15, 40,
|
|
20, 10, 05, 15, 10, 10, 10, 15, 30, 30, 10, 10, 15, 10, 01, 01, 10, 25, 10, 05, 15, 20, 15, 10, 15, 30, 05, 40, 15, 10, 25, 10, 20, 10, 20, 10, 10, 10, 20, 15, 20, 05, 40, 05, 05, 20, 05, 10, 05, 10,
|
|
10, 10, 10, 20, 20, 30, 15, 10, 20, 20, 25, 05, 15, 10, 05, 20, 15, 20, 25, 20, 05, 30, 05, 05, 20, 40, 05, 20, 40, 20, 05, 35, 10, 05, 05, 05, 15, 05, 25, 05, 05, 10, 20, 10, 05, 15, 10, 10, 20, 15,
|
|
10, 10, 10, 20, 10, 10, 10, 10, 15, 15, 15, 10, 20, 20, 10, 20, 20, 20, 20, 20, 10, 10, 10, 20, 20, 05, 15, 10, 10, 15, 10, 20, 05, 05, 10, 10, 20, 05, 10, 20, 10, 20, 20, 20, 05, 05, 15, 20, 10, 15,
|
|
20, 15, 10, 10, 15, 10, 05, 05, 10, 25, 10, 05, 20, 15, 05, 40, 15, 15, 40, 15, 20, 20, 05, 15, 20, 15, 15, 15, 05, 10, 30, 20, 30, 20, 05, 40, 10, 05, 10, 05, 15, 25, 25, 05, 20, 15, 10, 10, 20, 10,
|
|
20, 20, 05, 05, 10, 05, 40, 10, 10, 05, 10, 10, 15, 10, 20, 15, 30, 10, 20, 05, 10, 10, 15, 10, 10, 05, 15, 05, 10, 10, 30, 20, 20, 10, 10, 05, 05, 10, 05, 20, 10, 20, 10, 05, 10, 10, 20, 10, 10, 15,
|
|
10, 15, 10, 10, 10, 10, 10, 10, 10, 30, 05, 10, 05, 10, 10, 05, 20, 20, 10, 20, 15, 15, 15, 15, 20, 15, 15, 10, 10, 10, 20, 15, 05, 05, 15, 15, 05, 10, 05, 15, 05, 10, 20, 05, 20, 20, 20, 20, 05, 20,
|
|
15, 05, 20, 15, 10, 10, 05, 10, 05, 05, 10, 05, 05, 10, 05, 15, 05, 15, 10, 10, 10, 10, 10, 15, 15, 20, 15, 10, 15, 10, 15, 10, 20, 10, 10, 10, 20, 20, 20, 20, 20, 15, 15, 15, 15, 15, 15, 20, 15, 10,
|
|
15, 15, 15, 15, 10, 15, 10, 10, 10, 15, 15, 15, 15, 05, 05, 15, 05, 10, 10, 10, 20, 20, 20, 10, 10, 30, 15, 10, 10, 15, 25, 10, 15, 10, 10, 10, 20, 10, 10, 10, 10, 05, 15, 15, 05, 05, 10, 10, 10, 05,
|
|
05, 10, 05, 05, 15, 10, 05, 05, 05, 10, 10, 10, 10, 20, 25, 10, 20, 30, 25, 20, 20, 15, 20, 15, 20, 20, 15, 10, 10, 10, 10, 20, 10, 25, 10, 10, 10, 10, 20, 20, 05, 05, 05, 20, 10, 10, 20, 15, 20, 20,
|
|
10, 20, 30, 10, 10, 40, 40, 20, 20, 40, 20, 20, 10, 10, 10, 10, 05, 10, 10, 05, 05, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01, 01,
|
|
01, 01, 01, 01, 01, 01, 01, 01, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 25, 15, 20, 30, 20, 15, 15, 20, 10, 15, 15, 10, 05, 10, 10, 20, 15, 10, 15, 15, 15, 05, 15, 20, 20, 01, 01, 01, 01, 01, 01,
|
|
01, 01, 01, 05, 05, 10, 10, 10, 20, 10, 10, 10, 05, 05, 20, 10, 10, 10, 01, 05, 15, 05, 01, 01, 01, 01, 01, 01, 10, 15, 15, 20, 20, 20, 20, 15, 15, 10, 10, 05, 20, 05, 10, 05, 15, 10, 10, 05, 15, 20,
|
|
10, 10, 15, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 05, 10, 15, 10, 15, 05, 05, 05, 10, 15, 40, 10, 10, 10, 15, 10, 10, 10, 10, 05, 05, 05, 10, 05, 20, 10,
|
|
10, 05, 20, 20, 10, 10, 05, 05, 05, 40, 10, 20, 10, 10, 10, 10, 05, 05, 15, 05, 10, 10, 10, 05, 05, 35, 15, 10, 10, 15, 05, 10, 10, 10, 05, 05, 10, 05, 15, 10, 15, 10, 15, 15, 15, 05, 05, 05, 10, 10,
|
|
};
|
|
|
|
/// <summary>
|
|
/// Moves that are kill
|
|
/// </summary>
|
|
public static readonly HashSet<int> DummiedMoves_LA = new()
|
|
{
|
|
001, 002, 003, 004, 005, 006, 010, 011, 012, 013,
|
|
015, 017, 018, 019, 020, 021, 022, 023, 024, 025,
|
|
026, 027, 028, 029, 030, 031, 032, 034, 035, 036,
|
|
037, 039, 041, 043, 045, 046, 047, 048, 049, 050,
|
|
051, 054, 055, 057, 060, 061, 062, 064, 065, 066,
|
|
067, 068, 069, 070, 072, 073, 074, 075, 076, 081,
|
|
082, 083, 088, 089, 090, 091, 092, 096, 097, 099,
|
|
101, 103, 104, 106, 107, 108, 109, 110, 111, 112,
|
|
113, 114, 115, 117, 118, 119, 121, 122, 123, 124,
|
|
125, 127, 128, 130, 131, 132, 133, 134, 136, 137,
|
|
138, 140, 142, 143, 144, 146, 148, 149, 152, 153,
|
|
154, 155, 158, 159, 160, 162, 164, 166, 167, 168,
|
|
169, 170, 171, 173, 174, 175, 176, 177, 178, 179,
|
|
180, 182, 184, 185, 186, 187, 192, 193, 194, 195,
|
|
197, 198, 199, 201, 202, 203, 204, 207, 208, 210,
|
|
211, 212, 213, 214, 215, 216, 217, 218, 219, 220,
|
|
221, 222, 223, 225, 226, 227, 228, 229, 230, 232,
|
|
233, 234, 235, 236, 238, 240, 241, 243, 244, 245,
|
|
248, 250, 251, 252, 253, 254, 255, 256, 257, 258,
|
|
259, 260, 261, 262, 263, 264, 265, 266, 267, 268,
|
|
269, 270, 271, 272, 273, 274, 275, 276, 277, 278,
|
|
279, 280, 281, 282, 283, 284, 285, 286, 287, 288,
|
|
289, 290, 291, 292, 293, 294, 295, 296, 297, 298,
|
|
299, 300, 302, 303, 304, 305, 306, 307, 308, 309,
|
|
311, 312, 313, 316, 317, 319, 320, 321, 322, 323,
|
|
324, 325, 327, 328, 329, 330, 331, 333, 335, 336,
|
|
338, 340, 341, 342, 343, 346, 349, 350, 351, 353,
|
|
354, 356, 357, 358, 359, 360, 361, 362, 363, 364,
|
|
365, 366, 367, 368, 369, 371, 372, 373, 374, 375,
|
|
376, 377, 378, 379, 380, 381, 382, 383, 384, 385,
|
|
386, 387, 388, 389, 390, 391, 392, 393, 395, 397,
|
|
402, 407, 410, 411, 415, 419, 429, 431, 432, 433,
|
|
435, 436, 438, 439, 441, 443, 445, 447, 448, 450,
|
|
454, 455, 456, 461, 468, 469, 470, 471, 472, 473,
|
|
475, 476, 477, 478, 479, 480, 481, 482, 483, 484,
|
|
485, 486, 487, 488, 489, 490, 492, 493, 494, 495,
|
|
496, 497, 498, 499, 500, 501, 502, 503, 504, 505,
|
|
507, 508, 509, 510, 511, 512, 513, 514, 515, 516,
|
|
517, 518, 519, 520, 521, 524, 525, 526, 527, 529,
|
|
530, 531, 532, 533, 534, 535, 536, 537, 538, 539,
|
|
540, 541, 543, 544, 545, 546, 547, 548, 549, 550,
|
|
551, 552, 553, 554, 557, 558, 559, 560, 561, 562,
|
|
563, 564, 565, 566, 567, 568, 569, 570, 571, 572,
|
|
573, 574, 575, 576, 578, 579, 580, 581, 582, 586,
|
|
587, 588, 589, 590, 591, 592, 593, 594, 596, 597,
|
|
598, 599, 600, 601, 602, 603, 604, 606, 607, 609,
|
|
610, 611, 612, 613, 614, 615, 616, 617, 618, 619,
|
|
620, 621, 622, 623, 624, 625, 626, 627, 628, 629,
|
|
630, 631, 632, 633, 634, 635, 636, 637, 638, 639,
|
|
640, 641, 642, 643, 644, 645, 646, 647, 648, 649,
|
|
650, 651, 652, 653, 654, 655, 656, 657, 658, 659,
|
|
660, 661, 662, 663, 664, 665, 666, 668, 669, 671,
|
|
672, 673, 674, 675, 676, 677, 678, 679, 680, 681,
|
|
682, 683, 684, 685, 686, 687, 688, 689, 690, 691,
|
|
692, 693, 694, 695, 696, 697, 698, 699, 700, 701,
|
|
702, 703, 704, 705, 706, 707, 708, 709, 711, 712,
|
|
713, 714, 715, 716, 717, 718, 719, 720, 721, 722,
|
|
723, 724, 725, 726, 727, 728, 729, 730, 731, 732,
|
|
733, 734, 735, 736, 737, 738, 739, 740, 741, 742,
|
|
743, 744, 745, 746, 747, 748, 749, 750, 751, 752,
|
|
753, 754, 755, 756, 757, 758, 759, 760, 761, 762,
|
|
763, 764, 765, 766, 767, 768, 769, 770, 771, 772,
|
|
773, 774, 775, 776, 777, 778, 779, 780, 781, 782,
|
|
783, 784, 785, 786, 787, 788, 789, 790, 791, 792,
|
|
793, 794, 795, 797, 798, 799, 800, 801, 802, 803,
|
|
804, 805, 806, 807, 808, 809, 810, 811, 812, 813,
|
|
814, 815, 816, 817, 818, 819, 820, 821, 822, 823,
|
|
824, 825, 826,
|
|
};
|
|
|
|
#endregion
|
|
}
|
|
}
|