mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Update GO minimum Level requirements (#2953)
GO Fest 2020 made Alolan Marowak available in wild spawns, and further testing has proved that Raid/Research PKM can be downleveled to 15 after trading to low-level accounts. This'll probably end up being deprecated in the future when we have GO->HOME transfer checks, in addition to IV checking.
This commit is contained in:
parent
a221a27074
commit
3a02bf457f
1 changed files with 5 additions and 6 deletions
|
@ -122,19 +122,18 @@ namespace PKHeX.Core
|
|||
088, // Grimer
|
||||
089, // Muk
|
||||
103, // Exeggutor
|
||||
|
||||
// Level 20+
|
||||
026, // Raichu
|
||||
105, // Marowak
|
||||
|
||||
// Level 15+
|
||||
026, // Raichu
|
||||
};
|
||||
|
||||
var regular = obtainable.Select(z => GetSlot(z, 0));
|
||||
var alolan = AlolanKanto.Select(z => GetSlot(z, 1));
|
||||
var slots = regular.Concat(alolan).ToArray();
|
||||
|
||||
slots[slots.Length - 2].LevelMin = 20; // Raichu
|
||||
slots[slots.Length - 1].LevelMin = 20; // Marowak
|
||||
slots[(int)Species.Mewtwo - 1].LevelMin = 20;
|
||||
slots[slots.Length - 1].LevelMin = 15; // Raichu
|
||||
slots[(int)Species.Mewtwo - 1].LevelMin = 15;
|
||||
slots[(int)Species.Articuno - 1].LevelMin = 15;
|
||||
slots[(int)Species.Zapdos - 1].LevelMin = 15;
|
||||
slots[(int)Species.Moltres - 1].LevelMin = 15;
|
||||
|
|
Loading…
Reference in a new issue