2018-08-02 01:30:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-06-10 17:44:05 +00:00
|
|
|
|
using static PKHeX.Core.Legal;
|
2020-12-24 01:14:38 +00:00
|
|
|
|
using static PKHeX.Core.GameVersion;
|
2018-06-10 17:44:05 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2020-10-27 16:25:33 +00:00
|
|
|
|
public static class MoveEgg
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2020-12-23 04:50:33 +00:00
|
|
|
|
public static int[] GetEggMoves(PKM pkm, int species, int form, GameVersion version)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2020-12-11 04:42:30 +00:00
|
|
|
|
int gen = pkm.Format <= 2 || pkm.VC ? 2 : pkm.Generation;
|
2020-06-27 17:01:28 +00:00
|
|
|
|
if (!pkm.InhabitedGeneration(gen, species) || (pkm.PersonalInfo.Genderless && !FixedGenderFromBiGender.Contains(species)))
|
2018-08-02 01:30:51 +00:00
|
|
|
|
return Array.Empty<int>();
|
2018-11-20 21:38:05 +00:00
|
|
|
|
|
2021-01-01 01:45:11 +00:00
|
|
|
|
if (pkm.Version is (int)GO or (int)GP or (int)GE or (int)CXD)
|
2018-11-20 21:38:05 +00:00
|
|
|
|
return Array.Empty<int>();
|
|
|
|
|
|
2020-12-24 01:14:38 +00:00
|
|
|
|
if (version == Any)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
version = (GameVersion)pkm.Version;
|
2020-12-23 04:50:33 +00:00
|
|
|
|
return GetEggMoves(gen, species, form, version);
|
2018-06-10 17:44:05 +00:00
|
|
|
|
}
|
2018-08-03 03:11:42 +00:00
|
|
|
|
|
2020-12-23 04:50:33 +00:00
|
|
|
|
public static int[] GetEggMoves(int gen, int species, int form, GameVersion version)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2020-12-24 01:14:38 +00:00
|
|
|
|
return gen switch
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2020-12-24 01:14:38 +00:00
|
|
|
|
1 or 2 => (version == C ? EggMovesC : EggMovesGS)[species].Moves,
|
|
|
|
|
3 => EggMovesRS[species].Moves,
|
|
|
|
|
4 when version is D or P or Pt => EggMovesDPPt[species].Moves,
|
|
|
|
|
4 when version is HG or SS => EggMovesHGSS[species].Moves,
|
|
|
|
|
5 => EggMovesBW[species].Moves,
|
2018-06-10 17:44:05 +00:00
|
|
|
|
|
2020-12-24 01:14:38 +00:00
|
|
|
|
6 when version is X or Y => EggMovesXY[species].Moves,
|
|
|
|
|
6 when version is OR or AS => EggMovesAO[species].Moves,
|
2018-06-10 17:44:05 +00:00
|
|
|
|
|
2020-12-24 01:14:38 +00:00
|
|
|
|
7 when version is SN or MN => GetFormEggMoves(species, form, EggMovesSM),
|
|
|
|
|
7 when version is US or UM => GetFormEggMoves(species, form, EggMovesUSUM),
|
|
|
|
|
8 => GetFormEggMoves(species, form, EggMovesSWSH),
|
|
|
|
|
_ => Array.Empty<int>(),
|
|
|
|
|
};
|
2018-06-10 17:44:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-23 04:50:33 +00:00
|
|
|
|
private static int[] GetFormEggMoves(int species, int form, IReadOnlyList<EggMoves7> table)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
|
|
|
|
var entry = table[species];
|
2020-12-23 04:50:33 +00:00
|
|
|
|
if (form > 0 && entry.FormTableIndex > species)
|
|
|
|
|
entry = table[entry.FormTableIndex + form - 1];
|
2018-06-10 17:44:05 +00:00
|
|
|
|
return entry.Moves;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:14:38 +00:00
|
|
|
|
internal static int[] GetRelearnLVLMoves(PKM pkm, int species, int form, int lvl, GameVersion version = Any)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2020-12-24 01:14:38 +00:00
|
|
|
|
if (version == Any)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
version = (GameVersion)pkm.Version;
|
|
|
|
|
// A pkm can only have levelup relearn moves from the game it originated on
|
|
|
|
|
// eg Plusle/Minun have Charm/Fake Tears (respectively) only in OR/AS, not X/Y
|
2020-12-24 01:14:38 +00:00
|
|
|
|
return version switch
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2020-12-24 01:14:38 +00:00
|
|
|
|
X or Y => getMoves(LevelUpXY, PersonalTable.XY),
|
|
|
|
|
OR or AS => getMoves(LevelUpAO, PersonalTable.AO),
|
|
|
|
|
SN or MN when species > MaxSpeciesID_7 => getMoves(LevelUpSM, PersonalTable.SM),
|
|
|
|
|
US or UM => getMoves(LevelUpUSUM, PersonalTable.USUM),
|
|
|
|
|
SW or SH => getMoves(LevelUpSWSH, PersonalTable.SWSH),
|
|
|
|
|
_ => Array.Empty<int>(),
|
|
|
|
|
};
|
2018-06-10 17:44:05 +00:00
|
|
|
|
|
2020-12-23 04:50:33 +00:00
|
|
|
|
int[] getMoves(IReadOnlyList<Learnset> moves, PersonalTable table) => moves[table.GetFormIndex(species, form)].GetMoves(lvl);
|
2018-06-10 17:44:05 +00:00
|
|
|
|
}
|
2020-02-17 03:47:57 +00:00
|
|
|
|
|
|
|
|
|
public static bool GetIsSharedEggMove(PKM pkm, int gen, int move)
|
|
|
|
|
{
|
|
|
|
|
if (gen < 8 || pkm.IsEgg)
|
|
|
|
|
return false;
|
|
|
|
|
var table = PersonalTable.SWSH;
|
2020-12-11 04:42:30 +00:00
|
|
|
|
var entry = (PersonalInfoSWSH)table.GetFormEntry(pkm.Species, pkm.Form);
|
2020-10-08 20:12:25 +00:00
|
|
|
|
var baseSpecies = entry.HatchSpecies;
|
|
|
|
|
var baseForm = entry.HatchFormIndexEverstone;
|
2020-12-24 01:14:38 +00:00
|
|
|
|
var egg = GetEggMoves(8, baseSpecies, baseForm, SW);
|
2020-02-17 03:47:57 +00:00
|
|
|
|
return Array.Exists(egg, z => z == move);
|
|
|
|
|
}
|
2018-06-10 17:44:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|