mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
88830e0d00
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now. Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes. Adds functionality for Batch Editor commands to `>`, `<` and <=/>= TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants. Main window has a new layout to account for DPI scaling (8 point grid) Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724) Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720) Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714) Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691) Added: Properties for ribbon/mark count (closes #3659) Fixed: Traded SV eggs are now checked correctly (closes #3692)
26 lines
966 B
C#
26 lines
966 B
C#
namespace PKHeX.Core;
|
|
|
|
public static partial class Legal
|
|
{
|
|
internal const int MaxSpeciesID_1 = 151;
|
|
internal const int MaxMoveID_1 = 165;
|
|
internal const int MaxItemID_1 = 255;
|
|
internal const int MaxAbilityID_1 = 0;
|
|
|
|
internal static readonly ushort[] Pouch_Items_RBY =
|
|
{
|
|
000,001,002,003,004,005,006, 010,011,012,013,014,015,
|
|
016,017,018,019,020, 029,030,031,
|
|
032,033,034,035,036,037,038,039,040,041,042,043, 045,046,047,
|
|
048,049, 051,052,053,054,055,056,057,058, 060,061,062,063,
|
|
064,065,066,067,068,069,070,071,072,073,074,075,076,077,078,079,
|
|
080,081,082,083,
|
|
|
|
// ...
|
|
|
|
196,197,198,199,200,201,202,203,204,205,206,207,
|
|
208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,
|
|
224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,
|
|
240,241,242,243,244,245,246,247,248,249,250,
|
|
};
|
|
}
|