using System; using System.Collections.Generic; using System.Linq; using static PKHeX.Core.MessageStrings; namespace PKHeX.Core { /// /// Utility for editing a /// public static class EditPKMUtil { public static List GetSuggestionMessage(PKM pkm, int level, int location, int minlvl) { var suggestion = new List { MsgPKMSuggestionStart }; if (pkm.Format >= 3) { var met_list = GameInfo.GetLocationList((GameVersion)pkm.Version, pkm.Format, egg: false); var locstr = met_list.First(loc => loc.Value == location).Text; suggestion.Add($"{MsgPKMSuggestionMetLocation} {locstr}"); suggestion.Add($"{MsgPKMSuggestionMetLevel} {level}"); } if (pkm.CurrentLevel < minlvl) suggestion.Add($"{MsgPKMSuggestionLevel} {minlvl}"); return suggestion; } /// /// Applies junk data to a , which is preferable to a completely empty entity. /// /// Blank data /// Trainer info to apply public static void TemplateFields(PKM pk, ITrainerInfo tr) { pk.Move1 = 1; pk.Move1_PP = 40; pk.Ball = 4; pk.MetDate = DateTime.Today; if (tr.Game >= 0) pk.Version = tr.Game; int spec = ((GameVersion)pk.Version).GetMaxSpeciesID(); if (spec <= 0) spec = pk.MaxSpeciesID; pk.Species = spec; var lang = tr.Language; if (lang <= 0) lang = (int)LanguageID.English; pk.Language = lang; pk.ClearNickname(); pk.OT_Name = tr.OT; pk.OT_Gender = tr.Gender; pk.TID = tr.TID; pk.SID = tr.SID; if (tr.ConsoleRegion != 0) { pk.ConsoleRegion = tr.ConsoleRegion; pk.Country = tr.Country; pk.Region = tr.SubRegion; } // Copy OT trash bytes for sensitive games (Gen1/2) if (pk is _K12 pk12) { switch (tr) { case SAV1 s1: pk12.OT_Trash = s1.OT_Trash; break; case SAV2 s2: pk12.OT_Trash = s2.OT_Trash; break; } } pk.RefreshChecksum(); } } }