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
|
|
|
|
{
|
2021-01-01 23:01:22 +00:00
|
|
|
|
public static int[] GetEggMoves(PersonalInfo pi, int species, int form, GameVersion version, int generation)
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2021-01-01 23:01:22 +00:00
|
|
|
|
if (species > GetMaxSpeciesOrigin(generation))
|
2018-08-02 01:30:51 +00:00
|
|
|
|
return Array.Empty<int>();
|
2018-11-20 21:38:05 +00:00
|
|
|
|
|
2021-01-01 23:01:22 +00:00
|
|
|
|
if (pi.Genderless && !FixedGenderFromBiGender.Contains(species))
|
2018-11-20 21:38:05 +00:00
|
|
|
|
return Array.Empty<int>();
|
|
|
|
|
|
2021-01-01 23:01:22 +00:00
|
|
|
|
if (!Breeding.CanGameGenerateEggs(version))
|
|
|
|
|
return Array.Empty<int>();
|
|
|
|
|
|
|
|
|
|
return GetEggMoves(generation, species, form, version);
|
2018-06-10 17:44:05 +00:00
|
|
|
|
}
|
2018-08-03 03:11:42 +00:00
|
|
|
|
|
2021-01-02 01:08:49 +00:00
|
|
|
|
public static int[] GetEggMoves(int generation, int species, int form, GameVersion version) => generation switch
|
2018-06-10 17:44:05 +00:00
|
|
|
|
{
|
2021-01-02 01:08:49 +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,
|
|
|
|
|
|
|
|
|
|
6 when version is X or Y => EggMovesXY[species].Moves,
|
|
|
|
|
6 when version is OR or AS => EggMovesAO[species].Moves,
|
|
|
|
|
|
|
|
|
|
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),
|
2021-01-03 04:52:39 +00:00
|
|
|
|
SN or MN when species <= MaxSpeciesID_7 => getMoves(LevelUpSM, PersonalTable.SM),
|
2020-12-24 01:14:38 +00:00
|
|
|
|
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;
|
2021-02-01 07:07:14 +00:00
|
|
|
|
var egg = GetSharedEggMoves(pkm, gen);
|
|
|
|
|
return Array.IndexOf(egg, move) >= 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static int[] GetSharedEggMoves(PKM pkm, int gen)
|
|
|
|
|
{
|
|
|
|
|
if (gen < 8 || pkm.IsEgg)
|
|
|
|
|
return Array.Empty<int>();
|
2020-02-17 03:47:57 +00:00
|
|
|
|
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;
|
2021-02-01 07:07:14 +00:00
|
|
|
|
return GetEggMoves(8, baseSpecies, baseForm, SW);
|
2020-02-17 03:47:57 +00:00
|
|
|
|
}
|
2018-06-10 17:44:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|