mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-14 20:25:50 -05: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:
@@ -122,19 +122,18 @@ EncounterSlot GetSlot(int species, int form)
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user