mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-23 01:37:04 -05:00
Add references for GG tutoring
Only pikachu/eevee forms so far, probably none else
This commit is contained in:
@@ -238,6 +238,8 @@ private static void AddMovesTutor6(List<int> moves, int species, int form, PKM p
|
||||
|
||||
private static void AddMovesTutor7(List<int> moves, int species, int form, PKM pkm, bool specialTutors)
|
||||
{
|
||||
if (pkm.GG)
|
||||
return;
|
||||
var pi = PersonalTable.USUM.GetFormeEntry(species, form);
|
||||
moves.AddRange(TypeTutor6.Where((_, i) => pi.TypeTutors[i]));
|
||||
if (specialTutors && pkm.HasVisitedUSUM())
|
||||
@@ -271,6 +273,14 @@ internal static void AddSpecialTutorMoves(List<int> r, PKM pkm, int Generation,
|
||||
if (index >= 0 && index < CosplayPikachuMoves.Length)
|
||||
r.Add(CosplayPikachuMoves[index]);
|
||||
break;
|
||||
|
||||
case 25 when Generation == 7 && pkm.AltForm == 8:
|
||||
r.AddRange(Tutor_StarterPikachu);
|
||||
break;
|
||||
case 133 when Generation == 7 && pkm.AltForm == 1:
|
||||
r.AddRange(Tutor_StarterEevee);
|
||||
break;
|
||||
|
||||
case 25 when Generation == 7:
|
||||
case 26 when Generation == 7:
|
||||
r.Add(344); // Volt Tackle
|
||||
|
||||
Reference in New Issue
Block a user