mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
a89c0c3312
add more gameversions (soon)
71 lines
2.1 KiB
C#
71 lines
2.1 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 = 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);
|
|
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.PID = Util.Rand32();
|
|
pk.RefreshAbility(Util.Rand.Next(2));
|
|
pk.Ball = 4;
|
|
|
|
pk.Met_Level = EncounterSuggestion.GetSuggestedEncounterEggMetLevel(pk);
|
|
pk.Met_Location = Math.Max(0, EncounterSuggestion.GetSuggestedEggMetLocation(pk));
|
|
|
|
if (pk.Format < 4)
|
|
return pk;
|
|
|
|
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;
|
|
SAV.ApplyHandlingTrainerInfo(pk);
|
|
if (pk.Gen6)
|
|
pk.SetHatchMemory6();
|
|
|
|
pk.SetRandomEC();
|
|
pk.RelearnMoves = moves;
|
|
|
|
return pk;
|
|
}
|
|
}
|
|
}
|