mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Add references for GG tutoring
Only pikachu/eevee forms so far, probably none else
This commit is contained in:
parent
98ebf4c5cb
commit
010134f6ff
1 changed files with 10 additions and 0 deletions
|
@ -238,6 +238,8 @@ namespace PKHeX.Core
|
||||||
|
|
||||||
private static void AddMovesTutor7(List<int> moves, int species, int form, PKM pkm, bool specialTutors)
|
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);
|
var pi = PersonalTable.USUM.GetFormeEntry(species, form);
|
||||||
moves.AddRange(TypeTutor6.Where((_, i) => pi.TypeTutors[i]));
|
moves.AddRange(TypeTutor6.Where((_, i) => pi.TypeTutors[i]));
|
||||||
if (specialTutors && pkm.HasVisitedUSUM())
|
if (specialTutors && pkm.HasVisitedUSUM())
|
||||||
|
@ -271,6 +273,14 @@ namespace PKHeX.Core
|
||||||
if (index >= 0 && index < CosplayPikachuMoves.Length)
|
if (index >= 0 && index < CosplayPikachuMoves.Length)
|
||||||
r.Add(CosplayPikachuMoves[index]);
|
r.Add(CosplayPikachuMoves[index]);
|
||||||
break;
|
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 25 when Generation == 7:
|
||||||
case 26 when Generation == 7:
|
case 26 when Generation == 7:
|
||||||
r.Add(344); // Volt Tackle
|
r.Add(344); // Volt Tackle
|
||||||
|
|
Loading…
Reference in a new issue