mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
07b2568b1f
has no egg moves -> no moves generated!
88 lines
2.6 KiB
C#
88 lines
2.6 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Egg Encounter Data
|
|
/// </summary>
|
|
public class EncounterEgg : IEncounterable, IVersion
|
|
{
|
|
public int Species { get; set; }
|
|
public string Name => "Egg";
|
|
public bool EggEncounter => true;
|
|
public int LevelMin => Level;
|
|
public int LevelMax => Level;
|
|
public int Level;
|
|
|
|
public GameVersion Version { get; set; }
|
|
public bool SplitBreed;
|
|
|
|
public PKM ConvertToPKM(ITrainerInfo SAV)
|
|
{
|
|
int gen = Math.Max(2, Version.GetGeneration());
|
|
var pk = PKMConverter.GetBlank(gen);
|
|
SAV.ApplyToPKM(pk);
|
|
|
|
pk.Species = Species;
|
|
pk.Nickname = PKX.GetSpeciesNameGeneration(Species, SAV.Language, gen);
|
|
pk.CurrentLevel = Level;
|
|
pk.Version = (int)Version;
|
|
|
|
var moves = Legal.GetEggMoves(pk, Species, pk.AltForm, Version);
|
|
if (moves.Length == 0)
|
|
moves = Legal.GetEncounterMoves(pk, Level, Version);
|
|
pk.Moves = moves;
|
|
pk.SetMaximumPPCurrent(moves);
|
|
pk.OT_Friendship = pk.PersonalInfo.BaseFriendship;
|
|
|
|
pk.SetRandomIVs(flawless: 3);
|
|
|
|
if (pk.Format <= 2 && Version != GameVersion.C)
|
|
return pk;
|
|
|
|
pk.Met_Level = EncounterSuggestion.GetSuggestedEncounterEggMetLevel(pk);
|
|
pk.Met_Location = Math.Max(0, EncounterSuggestion.GetSuggestedEggMetLocation(pk));
|
|
|
|
if (pk.Format < 3)
|
|
return pk;
|
|
|
|
pk.Ball = 4;
|
|
|
|
int gender = Util.Rand.Next(2);
|
|
int nature = Util.Rand.Next(25);
|
|
|
|
gender = pk.GetSaneGender(gender);
|
|
if (pk.Format <= 5)
|
|
{
|
|
pk.SetPIDGender(gender);
|
|
pk.SetPIDNature(nature);
|
|
pk.RefreshAbility(pk.PIDAbility);
|
|
}
|
|
else
|
|
{
|
|
pk.PID = Util.Rand32();
|
|
pk.Nature = nature;
|
|
pk.Gender = gender;
|
|
pk.RefreshAbility(Util.Rand.Next(2));
|
|
}
|
|
|
|
bool traded = (int)Version == SAV.Game;
|
|
var today = pk.MetDate = DateTime.Today;
|
|
if (pk.GenNumber >= 4)
|
|
{
|
|
pk.Egg_Location = EncounterSuggestion.GetSuggestedEncounterEggLocationEgg(pk, traded);
|
|
pk.EggMetDate = today;
|
|
}
|
|
|
|
if (pk.Format < 6)
|
|
return pk;
|
|
if (pk.Gen6)
|
|
pk.SetHatchMemory6();
|
|
|
|
pk.SetRandomEC();
|
|
pk.RelearnMoves = moves;
|
|
|
|
return pk;
|
|
}
|
|
}
|
|
}
|