diff --git a/PKHeX.WinForms/MainWindow/Main.cs b/PKHeX.WinForms/MainWindow/Main.cs index 973bed859..cd3bc4ca2 100644 --- a/PKHeX.WinForms/MainWindow/Main.cs +++ b/PKHeX.WinForms/MainWindow/Main.cs @@ -143,9 +143,10 @@ namespace PKHeX.WinForms mnuL.Items.Insert(0, mnuLLegality); }; - // Load WC6 folder to legality + // Load Event Databases + refreshPCDDB(); + refreshPGFDB(); refreshWC6DB(); - // Load WC7 folder to legality refreshWC7DB(); #endregion @@ -1270,6 +1271,49 @@ namespace PKHeX.WinForms // Indicate audibly the save is loaded SystemSounds.Beep.Play(); } + + private static void refreshPCDDB() + { + List db = new List(); + byte[] bin = Resources.pcd; + for (int i = 0; i < bin.Length; i += PCD.Size) + { + byte[] data = new byte[PCD.Size]; + Buffer.BlockCopy(bin, i, data, 0, PCD.Size); + db.Add(new PCD(data)); + } + if (Directory.Exists(MGDatabasePath)) + { + foreach (var file in Directory.GetFiles(MGDatabasePath, "*", SearchOption.AllDirectories)) + { + var fi = new FileInfo(file); + if (fi.Length == PCD.Size && fi.Extension == ".pcd") + db.Add(new PCD(File.ReadAllBytes(file))); + else if (fi.Length == PGT.Size && fi.Extension == ".pgt") + db.Add(new PCD {Gift = new PGT(File.ReadAllBytes(file)), CardTitle = "MGDB PGT"}); + } + } + + Legal.MGDB_G4 = db.Distinct().ToArray(); + } + private static void refreshPGFDB() + { + List db = new List(); + byte[] bin = Resources.pgf; + for (int i = 0; i < bin.Length; i += PGF.Size) + { + byte[] data = new byte[PGF.Size]; + Buffer.BlockCopy(bin, i, data, 0, PGF.Size); + db.Add(new PGF(data)); + } + if (Directory.Exists(MGDatabasePath)) + db.AddRange(from file in Directory.GetFiles(MGDatabasePath, "*", SearchOption.AllDirectories) + let fi = new FileInfo(file) + where ".pgf" == fi.Extension && PGF.Size == fi.Length + select new PGF(File.ReadAllBytes(file))); + + Legal.MGDB_G5 = db.Distinct().ToArray(); + } private static void refreshWC6DB() { List wc6db = new List(); diff --git a/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs b/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs index a29dab9f3..22b5d903d 100644 --- a/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs +++ b/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs @@ -75,6 +75,8 @@ namespace PKHeX.WinForms // Load Data RawDB = new List(); + RawDB.AddRange(Legal.MGDB_G4); + RawDB.AddRange(Legal.MGDB_G5); RawDB.AddRange(Legal.MGDB_G6); RawDB.AddRange(Legal.MGDB_G7); diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 3b1257ebe..6b564308c 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -871,7 +871,7 @@ namespace PKHeX.Core switch (pkm.GenNumber) { case 4: - return getMatchingPGT(pkm, MGDB_G4); + return getMatchingPCD(pkm, MGDB_G4); case 5: return getMatchingPGF(pkm, MGDB_G5); case 6: @@ -882,17 +882,17 @@ namespace PKHeX.Core return new List(); } } - private static IEnumerable getMatchingPGT(PKM pkm, IEnumerable DB) + private static IEnumerable getMatchingPCD(PKM pkm, IEnumerable DB) { - var validPGT = new List(); + var validPCD = new List(); if (DB == null) - return validPGT; + return validPCD; // todo var vs = getValidPreEvolutions(pkm).ToArray(); - foreach (PGT mg in DB.OfType().Where(wc => vs.Any(dl => dl.Species == wc.Species))) + foreach (PCD mg in DB.OfType().Where(wc => vs.Any(dl => dl.Species == wc.Species))) { - var wc = mg.PK; + var wc = mg.Gift.PK; if (pkm.Egg_Location == 0) // Not Egg { if (wc.SID != pkm.SID) continue; @@ -922,9 +922,9 @@ namespace PKHeX.Core // if (wc.Level > pkm.CurrentLevel) continue; // Defer to level legality // RIBBONS: Defer to ribbon legality - validPGT.Add(mg); + validPCD.Add(mg); } - return validPGT; + return validPCD; } private static IEnumerable getMatchingPGF(PKM pkm, IEnumerable DB) { diff --git a/PKHeX/MysteryGifts/PGF.cs b/PKHeX/MysteryGifts/PGF.cs index 051b1c896..20c330afb 100644 --- a/PKHeX/MysteryGifts/PGF.cs +++ b/PKHeX/MysteryGifts/PGF.cs @@ -5,7 +5,7 @@ namespace PKHeX.Core { public sealed class PGF : MysteryGift { - internal const int Size = 0xCC; + public const int Size = 0xCC; public override int Format => 5; public PGF(byte[] data = null) diff --git a/PKHeX/MysteryGifts/PGT.cs b/PKHeX/MysteryGifts/PGT.cs index 76f2322cd..19beab60b 100644 --- a/PKHeX/MysteryGifts/PGT.cs +++ b/PKHeX/MysteryGifts/PGT.cs @@ -102,7 +102,7 @@ namespace PKHeX.Core } public sealed class PGT : MysteryGift { - internal const int Size = 0x104; // 260 + public const int Size = 0x104; // 260 public override int Format => 4; public override int Level { diff --git a/PKHeX/PKHeX.Core.csproj b/PKHeX/PKHeX.Core.csproj index 54130c2ad..7d040fc2d 100644 --- a/PKHeX/PKHeX.Core.csproj +++ b/PKHeX/PKHeX.Core.csproj @@ -324,9 +324,11 @@ + + diff --git a/PKHeX/Properties/Resources.Designer.cs b/PKHeX/Properties/Resources.Designer.cs index 4490613b4..35fc9f5ac 100644 --- a/PKHeX/Properties/Resources.Designer.cs +++ b/PKHeX/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Este código fue generado por una herramienta. -// Versión de runtime:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si -// se vuelve a generar el código. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace PKHeX.Core.Properties { /// - /// Clase de recurso fuertemente tipado, para buscar cadenas traducidas, etc. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // StronglyTypedResourceBuilder generó automáticamente esta clase - // a través de una herramienta como ResGen o Visual Studio. - // Para agregar o quitar un miembro, edite el archivo .ResX y, a continuación, vuelva a ejecutar ResGen - // con la opción /str o recompile su proyecto de VS. + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ namespace PKHeX.Core.Properties { } /// - /// Devuelve la instancia de ResourceManager almacenada en caché utilizada por esta clase. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ namespace PKHeX.Core.Properties { } /// - /// Reemplaza la propiedad CurrentUICulture del subproceso actual para todas las - /// búsquedas de recursos mediante esta clase de recurso fuertemente tipado. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _0 { get { @@ -71,7 +71,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _1 { get { @@ -81,7 +81,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _10 { get { @@ -91,7 +91,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _100 { get { @@ -101,7 +101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _101 { get { @@ -111,7 +111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _102 { get { @@ -121,7 +121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103 { get { @@ -131,7 +131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103_1 { get { @@ -141,7 +141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _104 { get { @@ -151,7 +151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105 { get { @@ -161,7 +161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105_1 { get { @@ -171,7 +171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _106 { get { @@ -181,7 +181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _107 { get { @@ -191,7 +191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _108 { get { @@ -201,7 +201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _109 { get { @@ -211,7 +211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _11 { get { @@ -221,7 +221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _110 { get { @@ -231,7 +231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _111 { get { @@ -241,7 +241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _112 { get { @@ -251,7 +251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _113 { get { @@ -261,7 +261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _114 { get { @@ -271,7 +271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115 { get { @@ -281,7 +281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115_1 { get { @@ -291,7 +291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _116 { get { @@ -301,7 +301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _117 { get { @@ -311,7 +311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _118 { get { @@ -321,7 +321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _119 { get { @@ -331,7 +331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _12 { get { @@ -341,7 +341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _120 { get { @@ -351,7 +351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _121 { get { @@ -361,7 +361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _122 { get { @@ -371,7 +371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _123 { get { @@ -381,7 +381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _124 { get { @@ -391,7 +391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _125 { get { @@ -401,7 +401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _126 { get { @@ -411,7 +411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127 { get { @@ -421,7 +421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127_1 { get { @@ -431,7 +431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _128 { get { @@ -441,7 +441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _129 { get { @@ -451,7 +451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _13 { get { @@ -461,7 +461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130 { get { @@ -471,7 +471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130_1 { get { @@ -481,7 +481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _131 { get { @@ -491,7 +491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _132 { get { @@ -501,7 +501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _133 { get { @@ -511,7 +511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _134 { get { @@ -521,7 +521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _135 { get { @@ -531,7 +531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _136 { get { @@ -541,7 +541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _137 { get { @@ -551,7 +551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _138 { get { @@ -561,7 +561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _139 { get { @@ -571,7 +571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _14 { get { @@ -581,7 +581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _140 { get { @@ -591,7 +591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _141 { get { @@ -601,7 +601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142 { get { @@ -611,7 +611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142_1 { get { @@ -621,7 +621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _143 { get { @@ -631,7 +631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _144 { get { @@ -641,7 +641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _145 { get { @@ -651,7 +651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _146 { get { @@ -661,7 +661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _147 { get { @@ -671,7 +671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _148 { get { @@ -681,7 +681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _149 { get { @@ -691,7 +691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15 { get { @@ -701,7 +701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15_1 { get { @@ -711,7 +711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150 { get { @@ -721,7 +721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_1 { get { @@ -731,7 +731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_2 { get { @@ -741,7 +741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _151 { get { @@ -751,7 +751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _152 { get { @@ -761,7 +761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _153 { get { @@ -771,7 +771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _154 { get { @@ -781,7 +781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _155 { get { @@ -791,7 +791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _156 { get { @@ -801,7 +801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _157 { get { @@ -811,7 +811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _158 { get { @@ -821,7 +821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _159 { get { @@ -831,7 +831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _16 { get { @@ -841,7 +841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _160 { get { @@ -851,7 +851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _161 { get { @@ -861,7 +861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _162 { get { @@ -871,7 +871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _163 { get { @@ -881,7 +881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _164 { get { @@ -891,7 +891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _165 { get { @@ -901,7 +901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _166 { get { @@ -911,7 +911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _167 { get { @@ -921,7 +921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _168 { get { @@ -931,7 +931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _169 { get { @@ -941,7 +941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _17 { get { @@ -951,7 +951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _170 { get { @@ -961,7 +961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _171 { get { @@ -971,7 +971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172 { get { @@ -981,7 +981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172_1 { get { @@ -991,7 +991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _173 { get { @@ -1001,7 +1001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _174 { get { @@ -1011,7 +1011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _175 { get { @@ -1021,7 +1021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _176 { get { @@ -1031,7 +1031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _177 { get { @@ -1041,7 +1041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _178 { get { @@ -1051,7 +1051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _179 { get { @@ -1061,7 +1061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18 { get { @@ -1071,7 +1071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18_1 { get { @@ -1081,7 +1081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _180 { get { @@ -1091,7 +1091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181 { get { @@ -1101,7 +1101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181_1 { get { @@ -1111,7 +1111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _182 { get { @@ -1121,7 +1121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _183 { get { @@ -1131,7 +1131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _184 { get { @@ -1141,7 +1141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _185 { get { @@ -1151,7 +1151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _186 { get { @@ -1161,7 +1161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _187 { get { @@ -1171,7 +1171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _188 { get { @@ -1181,7 +1181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _189 { get { @@ -1191,7 +1191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19 { get { @@ -1201,7 +1201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19_1 { get { @@ -1211,7 +1211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _190 { get { @@ -1221,7 +1221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _191 { get { @@ -1231,7 +1231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _192 { get { @@ -1241,7 +1241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _193 { get { @@ -1251,7 +1251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _194 { get { @@ -1261,7 +1261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _195 { get { @@ -1271,7 +1271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _196 { get { @@ -1281,7 +1281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _197 { get { @@ -1291,7 +1291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _198 { get { @@ -1301,7 +1301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _199 { get { @@ -1311,7 +1311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _2 { get { @@ -1321,7 +1321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20 { get { @@ -1331,7 +1331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20_1 { get { @@ -1341,7 +1341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _200 { get { @@ -1351,7 +1351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201 { get { @@ -1361,7 +1361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_1 { get { @@ -1371,7 +1371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_10 { get { @@ -1381,7 +1381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_11 { get { @@ -1391,7 +1391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_12 { get { @@ -1401,7 +1401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_13 { get { @@ -1411,7 +1411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_14 { get { @@ -1421,7 +1421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_15 { get { @@ -1431,7 +1431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_16 { get { @@ -1441,7 +1441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_17 { get { @@ -1451,7 +1451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_18 { get { @@ -1461,7 +1461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_19 { get { @@ -1471,7 +1471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_2 { get { @@ -1481,7 +1481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_20 { get { @@ -1491,7 +1491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_21 { get { @@ -1501,7 +1501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_22 { get { @@ -1511,7 +1511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_23 { get { @@ -1521,7 +1521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_24 { get { @@ -1531,7 +1531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_25 { get { @@ -1541,7 +1541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_26 { get { @@ -1551,7 +1551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_27 { get { @@ -1561,7 +1561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_3 { get { @@ -1571,7 +1571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_4 { get { @@ -1581,7 +1581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_5 { get { @@ -1591,7 +1591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_6 { get { @@ -1601,7 +1601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_7 { get { @@ -1611,7 +1611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_8 { get { @@ -1621,7 +1621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_9 { get { @@ -1631,7 +1631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _202 { get { @@ -1641,7 +1641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _203 { get { @@ -1651,7 +1651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _204 { get { @@ -1661,7 +1661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _205 { get { @@ -1671,7 +1671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _206 { get { @@ -1681,7 +1681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _207 { get { @@ -1691,7 +1691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208 { get { @@ -1701,7 +1701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208_1 { get { @@ -1711,7 +1711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _209 { get { @@ -1721,7 +1721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _21 { get { @@ -1731,7 +1731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _210 { get { @@ -1741,7 +1741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _211 { get { @@ -1751,7 +1751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212 { get { @@ -1761,7 +1761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212_1 { get { @@ -1771,7 +1771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _213 { get { @@ -1781,7 +1781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214 { get { @@ -1791,7 +1791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214_1 { get { @@ -1801,7 +1801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _215 { get { @@ -1811,7 +1811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _216 { get { @@ -1821,7 +1821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _217 { get { @@ -1831,7 +1831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _218 { get { @@ -1841,7 +1841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _219 { get { @@ -1851,7 +1851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _22 { get { @@ -1861,7 +1861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _220 { get { @@ -1871,7 +1871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _221 { get { @@ -1881,7 +1881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _222 { get { @@ -1891,7 +1891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _223 { get { @@ -1901,7 +1901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _224 { get { @@ -1911,7 +1911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _225 { get { @@ -1921,7 +1921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _226 { get { @@ -1931,7 +1931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _227 { get { @@ -1941,7 +1941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _228 { get { @@ -1951,7 +1951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229 { get { @@ -1961,7 +1961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229_1 { get { @@ -1971,7 +1971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _23 { get { @@ -1981,7 +1981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _230 { get { @@ -1991,7 +1991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _231 { get { @@ -2001,7 +2001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _232 { get { @@ -2011,7 +2011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _233 { get { @@ -2021,7 +2021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _234 { get { @@ -2031,7 +2031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _235 { get { @@ -2041,7 +2041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _236 { get { @@ -2051,7 +2051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _237 { get { @@ -2061,7 +2061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _238 { get { @@ -2071,7 +2071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _239 { get { @@ -2081,7 +2081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _24 { get { @@ -2091,7 +2091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _240 { get { @@ -2101,7 +2101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _241 { get { @@ -2111,7 +2111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _242 { get { @@ -2121,7 +2121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _243 { get { @@ -2131,7 +2131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _244 { get { @@ -2141,7 +2141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _245 { get { @@ -2151,7 +2151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _246 { get { @@ -2161,7 +2161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _247 { get { @@ -2171,7 +2171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248 { get { @@ -2181,7 +2181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248_1 { get { @@ -2191,7 +2191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _249 { get { @@ -2201,7 +2201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25 { get { @@ -2211,7 +2211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1 { get { @@ -2221,7 +2221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1c { get { @@ -2231,7 +2231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2 { get { @@ -2241,7 +2241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2c { get { @@ -2251,7 +2251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3 { get { @@ -2261,7 +2261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3c { get { @@ -2271,7 +2271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4 { get { @@ -2281,7 +2281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4c { get { @@ -2291,7 +2291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5 { get { @@ -2301,7 +2301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5c { get { @@ -2311,7 +2311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6 { get { @@ -2321,7 +2321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6c { get { @@ -2331,7 +2331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _250 { get { @@ -2341,7 +2341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _251 { get { @@ -2351,7 +2351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _252 { get { @@ -2361,7 +2361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _253 { get { @@ -2371,7 +2371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254 { get { @@ -2381,7 +2381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254_1 { get { @@ -2391,7 +2391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _255 { get { @@ -2401,7 +2401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _256 { get { @@ -2411,7 +2411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257 { get { @@ -2421,7 +2421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257_1 { get { @@ -2431,7 +2431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _258 { get { @@ -2441,7 +2441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _259 { get { @@ -2451,7 +2451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26 { get { @@ -2461,7 +2461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26_1 { get { @@ -2471,7 +2471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260 { get { @@ -2481,7 +2481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260_1 { get { @@ -2491,7 +2491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _261 { get { @@ -2501,7 +2501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _262 { get { @@ -2511,7 +2511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _263 { get { @@ -2521,7 +2521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _264 { get { @@ -2531,7 +2531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _265 { get { @@ -2541,7 +2541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _266 { get { @@ -2551,7 +2551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _267 { get { @@ -2561,7 +2561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _268 { get { @@ -2571,7 +2571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _269 { get { @@ -2581,7 +2581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27 { get { @@ -2591,7 +2591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27_1 { get { @@ -2601,7 +2601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _270 { get { @@ -2611,7 +2611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _271 { get { @@ -2621,7 +2621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _272 { get { @@ -2631,7 +2631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _273 { get { @@ -2641,7 +2641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _274 { get { @@ -2651,7 +2651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _275 { get { @@ -2661,7 +2661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _276 { get { @@ -2671,7 +2671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _277 { get { @@ -2681,7 +2681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _278 { get { @@ -2691,7 +2691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _279 { get { @@ -2701,7 +2701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28 { get { @@ -2711,7 +2711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28_1 { get { @@ -2721,7 +2721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _280 { get { @@ -2731,7 +2731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _281 { get { @@ -2741,7 +2741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282 { get { @@ -2751,7 +2751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282_1 { get { @@ -2761,7 +2761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _283 { get { @@ -2771,7 +2771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _284 { get { @@ -2781,7 +2781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _285 { get { @@ -2791,7 +2791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _286 { get { @@ -2801,7 +2801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _287 { get { @@ -2811,7 +2811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _288 { get { @@ -2821,7 +2821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _289 { get { @@ -2831,7 +2831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _29 { get { @@ -2841,7 +2841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _290 { get { @@ -2851,7 +2851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _291 { get { @@ -2861,7 +2861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _292 { get { @@ -2871,7 +2871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _293 { get { @@ -2881,7 +2881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _294 { get { @@ -2891,7 +2891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _295 { get { @@ -2901,7 +2901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _296 { get { @@ -2911,7 +2911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _297 { get { @@ -2921,7 +2921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _298 { get { @@ -2931,7 +2931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _299 { get { @@ -2941,7 +2941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3 { get { @@ -2951,7 +2951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3_1 { get { @@ -2961,7 +2961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _30 { get { @@ -2971,7 +2971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _300 { get { @@ -2981,7 +2981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _301 { get { @@ -2991,7 +2991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302 { get { @@ -3001,7 +3001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302_1 { get { @@ -3011,7 +3011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303 { get { @@ -3021,7 +3021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303_1 { get { @@ -3031,7 +3031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _304 { get { @@ -3041,7 +3041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _305 { get { @@ -3051,7 +3051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306 { get { @@ -3061,7 +3061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306_1 { get { @@ -3071,7 +3071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _307 { get { @@ -3081,7 +3081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308 { get { @@ -3091,7 +3091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308_1 { get { @@ -3101,7 +3101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _309 { get { @@ -3111,7 +3111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _31 { get { @@ -3121,7 +3121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310 { get { @@ -3131,7 +3131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310_1 { get { @@ -3141,7 +3141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _311 { get { @@ -3151,7 +3151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _312 { get { @@ -3161,7 +3161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _313 { get { @@ -3171,7 +3171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _314 { get { @@ -3181,7 +3181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _315 { get { @@ -3191,7 +3191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _316 { get { @@ -3201,7 +3201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _317 { get { @@ -3211,7 +3211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _318 { get { @@ -3221,7 +3221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319 { get { @@ -3231,7 +3231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319_1 { get { @@ -3241,7 +3241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _32 { get { @@ -3251,7 +3251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _320 { get { @@ -3261,7 +3261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _321 { get { @@ -3271,7 +3271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _322 { get { @@ -3281,7 +3281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323 { get { @@ -3291,7 +3291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323_1 { get { @@ -3301,7 +3301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _324 { get { @@ -3311,7 +3311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _325 { get { @@ -3321,7 +3321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _326 { get { @@ -3331,7 +3331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _327 { get { @@ -3341,7 +3341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _328 { get { @@ -3351,7 +3351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _329 { get { @@ -3361,7 +3361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _33 { get { @@ -3371,7 +3371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _330 { get { @@ -3381,7 +3381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _331 { get { @@ -3391,7 +3391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _332 { get { @@ -3401,7 +3401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _333 { get { @@ -3411,7 +3411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334 { get { @@ -3421,7 +3421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334_1 { get { @@ -3431,7 +3431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _335 { get { @@ -3441,7 +3441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _336 { get { @@ -3451,7 +3451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _337 { get { @@ -3461,7 +3461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _338 { get { @@ -3471,7 +3471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _339 { get { @@ -3481,7 +3481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _34 { get { @@ -3491,7 +3491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _340 { get { @@ -3501,7 +3501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _341 { get { @@ -3511,7 +3511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _342 { get { @@ -3521,7 +3521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _343 { get { @@ -3531,7 +3531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _344 { get { @@ -3541,7 +3541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _345 { get { @@ -3551,7 +3551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _346 { get { @@ -3561,7 +3561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _347 { get { @@ -3571,7 +3571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _348 { get { @@ -3581,7 +3581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _349 { get { @@ -3591,7 +3591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _35 { get { @@ -3601,7 +3601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _350 { get { @@ -3611,7 +3611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351 { get { @@ -3621,7 +3621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_1 { get { @@ -3631,7 +3631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_2 { get { @@ -3641,7 +3641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_3 { get { @@ -3651,7 +3651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _352 { get { @@ -3661,7 +3661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _353 { get { @@ -3671,7 +3671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354 { get { @@ -3681,7 +3681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354_1 { get { @@ -3691,7 +3691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _355 { get { @@ -3701,7 +3701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _356 { get { @@ -3711,7 +3711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _357 { get { @@ -3721,7 +3721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _358 { get { @@ -3731,7 +3731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359 { get { @@ -3741,7 +3741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359_1 { get { @@ -3751,7 +3751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _36 { get { @@ -3761,7 +3761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _360 { get { @@ -3771,7 +3771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _361 { get { @@ -3781,7 +3781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362 { get { @@ -3791,7 +3791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362_1 { get { @@ -3801,7 +3801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _363 { get { @@ -3811,7 +3811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _364 { get { @@ -3821,7 +3821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _365 { get { @@ -3831,7 +3831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _366 { get { @@ -3841,7 +3841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _367 { get { @@ -3851,7 +3851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _368 { get { @@ -3861,7 +3861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _369 { get { @@ -3871,7 +3871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37 { get { @@ -3881,7 +3881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37_1 { get { @@ -3891,7 +3891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _370 { get { @@ -3901,7 +3901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _371 { get { @@ -3911,7 +3911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _372 { get { @@ -3921,7 +3921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373 { get { @@ -3931,7 +3931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373_1 { get { @@ -3941,7 +3941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _374 { get { @@ -3951,7 +3951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _375 { get { @@ -3961,7 +3961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376 { get { @@ -3971,7 +3971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376_1 { get { @@ -3981,7 +3981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _377 { get { @@ -3991,7 +3991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _378 { get { @@ -4001,7 +4001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _379 { get { @@ -4011,7 +4011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38 { get { @@ -4021,7 +4021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38_1 { get { @@ -4031,7 +4031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380 { get { @@ -4041,7 +4041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380_1 { get { @@ -4051,7 +4051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381 { get { @@ -4061,7 +4061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381_1 { get { @@ -4071,7 +4071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382 { get { @@ -4081,7 +4081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382_1 { get { @@ -4091,7 +4091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383 { get { @@ -4101,7 +4101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383_1 { get { @@ -4111,7 +4111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384 { get { @@ -4121,7 +4121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384_1 { get { @@ -4131,7 +4131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _385 { get { @@ -4141,7 +4141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386 { get { @@ -4151,7 +4151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_1 { get { @@ -4161,7 +4161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_2 { get { @@ -4171,7 +4171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_3 { get { @@ -4181,7 +4181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _387 { get { @@ -4191,7 +4191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _388 { get { @@ -4201,7 +4201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _389 { get { @@ -4211,7 +4211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _39 { get { @@ -4221,7 +4221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _390 { get { @@ -4231,7 +4231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _391 { get { @@ -4241,7 +4241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _392 { get { @@ -4251,7 +4251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _393 { get { @@ -4261,7 +4261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _394 { get { @@ -4271,7 +4271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _395 { get { @@ -4281,7 +4281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _396 { get { @@ -4291,7 +4291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _397 { get { @@ -4301,7 +4301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _398 { get { @@ -4311,7 +4311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _399 { get { @@ -4321,7 +4321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _4 { get { @@ -4331,7 +4331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _40 { get { @@ -4341,7 +4341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _400 { get { @@ -4351,7 +4351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _401 { get { @@ -4361,7 +4361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _402 { get { @@ -4371,7 +4371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _403 { get { @@ -4381,7 +4381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _404 { get { @@ -4391,7 +4391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _405 { get { @@ -4401,7 +4401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _406 { get { @@ -4411,7 +4411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _407 { get { @@ -4421,7 +4421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _408 { get { @@ -4431,7 +4431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _409 { get { @@ -4441,7 +4441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _41 { get { @@ -4451,7 +4451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _410 { get { @@ -4461,7 +4461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _411 { get { @@ -4471,7 +4471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412 { get { @@ -4481,7 +4481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_1 { get { @@ -4491,7 +4491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_2 { get { @@ -4501,7 +4501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413 { get { @@ -4511,7 +4511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_1 { get { @@ -4521,7 +4521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_2 { get { @@ -4531,7 +4531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _414 { get { @@ -4541,7 +4541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _415 { get { @@ -4551,7 +4551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _416 { get { @@ -4561,7 +4561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _417 { get { @@ -4571,7 +4571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _418 { get { @@ -4581,7 +4581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _419 { get { @@ -4591,7 +4591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _42 { get { @@ -4601,7 +4601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _420 { get { @@ -4611,7 +4611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421 { get { @@ -4621,7 +4621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421_1 { get { @@ -4631,7 +4631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422 { get { @@ -4641,7 +4641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422_1 { get { @@ -4651,7 +4651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423 { get { @@ -4661,7 +4661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423_1 { get { @@ -4671,7 +4671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _424 { get { @@ -4681,7 +4681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _425 { get { @@ -4691,7 +4691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _426 { get { @@ -4701,7 +4701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _427 { get { @@ -4711,7 +4711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428 { get { @@ -4721,7 +4721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428_1 { get { @@ -4731,7 +4731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _429 { get { @@ -4741,7 +4741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _43 { get { @@ -4751,7 +4751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _430 { get { @@ -4761,7 +4761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _431 { get { @@ -4771,7 +4771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _432 { get { @@ -4781,7 +4781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _433 { get { @@ -4791,7 +4791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _434 { get { @@ -4801,7 +4801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _435 { get { @@ -4811,7 +4811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _436 { get { @@ -4821,7 +4821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _437 { get { @@ -4831,7 +4831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _438 { get { @@ -4841,7 +4841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _439 { get { @@ -4851,7 +4851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _44 { get { @@ -4861,7 +4861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _440 { get { @@ -4871,7 +4871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _441 { get { @@ -4881,7 +4881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _442 { get { @@ -4891,7 +4891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _443 { get { @@ -4901,7 +4901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _444 { get { @@ -4911,7 +4911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445 { get { @@ -4921,7 +4921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445_1 { get { @@ -4931,7 +4931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _446 { get { @@ -4941,7 +4941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _447 { get { @@ -4951,7 +4951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448 { get { @@ -4961,7 +4961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448_1 { get { @@ -4971,7 +4971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _449 { get { @@ -4981,7 +4981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _45 { get { @@ -4991,7 +4991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _450 { get { @@ -5001,7 +5001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _451 { get { @@ -5011,7 +5011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _452 { get { @@ -5021,7 +5021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _453 { get { @@ -5031,7 +5031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _454 { get { @@ -5041,7 +5041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _455 { get { @@ -5051,7 +5051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _456 { get { @@ -5061,7 +5061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _457 { get { @@ -5071,7 +5071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _458 { get { @@ -5081,7 +5081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _459 { get { @@ -5091,7 +5091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _46 { get { @@ -5101,7 +5101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460 { get { @@ -5111,7 +5111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460_1 { get { @@ -5121,7 +5121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _461 { get { @@ -5131,7 +5131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _462 { get { @@ -5141,7 +5141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _463 { get { @@ -5151,7 +5151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _464 { get { @@ -5161,7 +5161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _465 { get { @@ -5171,7 +5171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _466 { get { @@ -5181,7 +5181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _467 { get { @@ -5191,7 +5191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _468 { get { @@ -5201,7 +5201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _469 { get { @@ -5211,7 +5211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _47 { get { @@ -5221,7 +5221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _470 { get { @@ -5231,7 +5231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _471 { get { @@ -5241,7 +5241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _472 { get { @@ -5251,7 +5251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _473 { get { @@ -5261,7 +5261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _474 { get { @@ -5271,7 +5271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475 { get { @@ -5281,7 +5281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475_1 { get { @@ -5291,7 +5291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _476 { get { @@ -5301,7 +5301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _477 { get { @@ -5311,7 +5311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _478 { get { @@ -5321,7 +5321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479 { get { @@ -5331,7 +5331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_1 { get { @@ -5341,7 +5341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_2 { get { @@ -5351,7 +5351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_3 { get { @@ -5361,7 +5361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_4 { get { @@ -5371,7 +5371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_5 { get { @@ -5381,7 +5381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _48 { get { @@ -5391,7 +5391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _480 { get { @@ -5401,7 +5401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _481 { get { @@ -5411,7 +5411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _482 { get { @@ -5421,7 +5421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _483 { get { @@ -5431,7 +5431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _484 { get { @@ -5441,7 +5441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _485 { get { @@ -5451,7 +5451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _486 { get { @@ -5461,7 +5461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487 { get { @@ -5471,7 +5471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487_1 { get { @@ -5481,7 +5481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _488 { get { @@ -5491,7 +5491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _489 { get { @@ -5501,7 +5501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _49 { get { @@ -5511,7 +5511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _490 { get { @@ -5521,7 +5521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _491 { get { @@ -5531,7 +5531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492 { get { @@ -5541,7 +5541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492_1 { get { @@ -5551,7 +5551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _493 { get { @@ -5561,7 +5561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _494 { get { @@ -5571,7 +5571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _495 { get { @@ -5581,7 +5581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _496 { get { @@ -5591,7 +5591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _497 { get { @@ -5601,7 +5601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _498 { get { @@ -5611,7 +5611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _499 { get { @@ -5621,7 +5621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _5 { get { @@ -5631,7 +5631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50 { get { @@ -5641,7 +5641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50_1 { get { @@ -5651,7 +5651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _500 { get { @@ -5661,7 +5661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _501 { get { @@ -5671,7 +5671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _502 { get { @@ -5681,7 +5681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _503 { get { @@ -5691,7 +5691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _504 { get { @@ -5701,7 +5701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _505 { get { @@ -5711,7 +5711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _506 { get { @@ -5721,7 +5721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _507 { get { @@ -5731,7 +5731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _508 { get { @@ -5741,7 +5741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _509 { get { @@ -5751,7 +5751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51 { get { @@ -5761,7 +5761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51_1 { get { @@ -5771,7 +5771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _510 { get { @@ -5781,7 +5781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _511 { get { @@ -5791,7 +5791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _512 { get { @@ -5801,7 +5801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _513 { get { @@ -5811,7 +5811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _514 { get { @@ -5821,7 +5821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _515 { get { @@ -5831,7 +5831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _516 { get { @@ -5841,7 +5841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _517 { get { @@ -5851,7 +5851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _518 { get { @@ -5861,7 +5861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _519 { get { @@ -5871,7 +5871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52 { get { @@ -5881,7 +5881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52_1 { get { @@ -5891,7 +5891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _520 { get { @@ -5901,7 +5901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521 { get { @@ -5911,7 +5911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521_1 { get { @@ -5921,7 +5921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _522 { get { @@ -5931,7 +5931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _523 { get { @@ -5941,7 +5941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _524 { get { @@ -5951,7 +5951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _525 { get { @@ -5961,7 +5961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _526 { get { @@ -5971,7 +5971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _527 { get { @@ -5981,7 +5981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _528 { get { @@ -5991,7 +5991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _529 { get { @@ -6001,7 +6001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53 { get { @@ -6011,7 +6011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53_1 { get { @@ -6021,7 +6021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _530 { get { @@ -6031,7 +6031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531 { get { @@ -6041,7 +6041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531_1 { get { @@ -6051,7 +6051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _532 { get { @@ -6061,7 +6061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _533 { get { @@ -6071,7 +6071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _534 { get { @@ -6081,7 +6081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _535 { get { @@ -6091,7 +6091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _536 { get { @@ -6101,7 +6101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _537 { get { @@ -6111,7 +6111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _538 { get { @@ -6121,7 +6121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _539 { get { @@ -6131,7 +6131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _54 { get { @@ -6141,7 +6141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _540 { get { @@ -6151,7 +6151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _541 { get { @@ -6161,7 +6161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _542 { get { @@ -6171,7 +6171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _543 { get { @@ -6181,7 +6181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _544 { get { @@ -6191,7 +6191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _545 { get { @@ -6201,7 +6201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _546 { get { @@ -6211,7 +6211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _547 { get { @@ -6221,7 +6221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _548 { get { @@ -6231,7 +6231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _549 { get { @@ -6241,7 +6241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _55 { get { @@ -6251,7 +6251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550 { get { @@ -6261,7 +6261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550_1 { get { @@ -6271,7 +6271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _551 { get { @@ -6281,7 +6281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _552 { get { @@ -6291,7 +6291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _553 { get { @@ -6301,7 +6301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _554 { get { @@ -6311,7 +6311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555 { get { @@ -6321,7 +6321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555_1 { get { @@ -6331,7 +6331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _556 { get { @@ -6341,7 +6341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _557 { get { @@ -6351,7 +6351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _558 { get { @@ -6361,7 +6361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _559 { get { @@ -6371,7 +6371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _56 { get { @@ -6381,7 +6381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _560 { get { @@ -6391,7 +6391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _561 { get { @@ -6401,7 +6401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _562 { get { @@ -6411,7 +6411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _563 { get { @@ -6421,7 +6421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _564 { get { @@ -6431,7 +6431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _565 { get { @@ -6441,7 +6441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _566 { get { @@ -6451,7 +6451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _567 { get { @@ -6461,7 +6461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _568 { get { @@ -6471,7 +6471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _569 { get { @@ -6481,7 +6481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _57 { get { @@ -6491,7 +6491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _570 { get { @@ -6501,7 +6501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _571 { get { @@ -6511,7 +6511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _572 { get { @@ -6521,7 +6521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _573 { get { @@ -6531,7 +6531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _574 { get { @@ -6541,7 +6541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _575 { get { @@ -6551,7 +6551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _576 { get { @@ -6561,7 +6561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _577 { get { @@ -6571,7 +6571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _578 { get { @@ -6581,7 +6581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _579 { get { @@ -6591,7 +6591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _58 { get { @@ -6601,7 +6601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _580 { get { @@ -6611,7 +6611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _581 { get { @@ -6621,7 +6621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _582 { get { @@ -6631,7 +6631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _583 { get { @@ -6641,7 +6641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _584 { get { @@ -6651,7 +6651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585 { get { @@ -6661,7 +6661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_1 { get { @@ -6671,7 +6671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_2 { get { @@ -6681,7 +6681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_3 { get { @@ -6691,7 +6691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586 { get { @@ -6701,7 +6701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_1 { get { @@ -6711,7 +6711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_2 { get { @@ -6721,7 +6721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_3 { get { @@ -6731,7 +6731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _587 { get { @@ -6741,7 +6741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _588 { get { @@ -6751,7 +6751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _589 { get { @@ -6761,7 +6761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _59 { get { @@ -6771,7 +6771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _590 { get { @@ -6781,7 +6781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _591 { get { @@ -6791,7 +6791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592 { get { @@ -6801,7 +6801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592_1 { get { @@ -6811,7 +6811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593 { get { @@ -6821,7 +6821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593_1 { get { @@ -6831,7 +6831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _594 { get { @@ -6841,7 +6841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _595 { get { @@ -6851,7 +6851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _596 { get { @@ -6861,7 +6861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _597 { get { @@ -6871,7 +6871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _598 { get { @@ -6881,7 +6881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _599 { get { @@ -6891,7 +6891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6 { get { @@ -6901,7 +6901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_1 { get { @@ -6911,7 +6911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_2 { get { @@ -6921,7 +6921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _60 { get { @@ -6931,7 +6931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _600 { get { @@ -6941,7 +6941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _601 { get { @@ -6951,7 +6951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _602 { get { @@ -6961,7 +6961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _603 { get { @@ -6971,7 +6971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _604 { get { @@ -6981,7 +6981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _605 { get { @@ -6991,7 +6991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _606 { get { @@ -7001,7 +7001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _607 { get { @@ -7011,7 +7011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _608 { get { @@ -7021,7 +7021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _609 { get { @@ -7031,7 +7031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _61 { get { @@ -7041,7 +7041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _610 { get { @@ -7051,7 +7051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _611 { get { @@ -7061,7 +7061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _612 { get { @@ -7071,7 +7071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _613 { get { @@ -7081,7 +7081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _614 { get { @@ -7091,7 +7091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _615 { get { @@ -7101,7 +7101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _616 { get { @@ -7111,7 +7111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _617 { get { @@ -7121,7 +7121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _618 { get { @@ -7131,7 +7131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _619 { get { @@ -7141,7 +7141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _62 { get { @@ -7151,7 +7151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _620 { get { @@ -7161,7 +7161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _621 { get { @@ -7171,7 +7171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _622 { get { @@ -7181,7 +7181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _623 { get { @@ -7191,7 +7191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _624 { get { @@ -7201,7 +7201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _625 { get { @@ -7211,7 +7211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _626 { get { @@ -7221,7 +7221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _627 { get { @@ -7231,7 +7231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _628 { get { @@ -7241,7 +7241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _629 { get { @@ -7251,7 +7251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _63 { get { @@ -7261,7 +7261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _630 { get { @@ -7271,7 +7271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _631 { get { @@ -7281,7 +7281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _632 { get { @@ -7291,7 +7291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _633 { get { @@ -7301,7 +7301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _634 { get { @@ -7311,7 +7311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _635 { get { @@ -7321,7 +7321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _636 { get { @@ -7331,7 +7331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _637 { get { @@ -7341,7 +7341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _638 { get { @@ -7351,7 +7351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _639 { get { @@ -7361,7 +7361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _64 { get { @@ -7371,7 +7371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _640 { get { @@ -7381,7 +7381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641 { get { @@ -7391,7 +7391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641_1 { get { @@ -7401,7 +7401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642 { get { @@ -7411,7 +7411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642_1 { get { @@ -7421,7 +7421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _643 { get { @@ -7431,7 +7431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _644 { get { @@ -7441,7 +7441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645 { get { @@ -7451,7 +7451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645_1 { get { @@ -7461,7 +7461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646 { get { @@ -7471,7 +7471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_1 { get { @@ -7481,7 +7481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_2 { get { @@ -7491,7 +7491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647 { get { @@ -7501,7 +7501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647_1 { get { @@ -7511,7 +7511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648 { get { @@ -7521,7 +7521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648_1 { get { @@ -7531,7 +7531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649 { get { @@ -7541,7 +7541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_1 { get { @@ -7551,7 +7551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_2 { get { @@ -7561,7 +7561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_3 { get { @@ -7571,7 +7571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_4 { get { @@ -7581,7 +7581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65 { get { @@ -7591,7 +7591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65_1 { get { @@ -7601,7 +7601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _650 { get { @@ -7611,7 +7611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _651 { get { @@ -7621,7 +7621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _652 { get { @@ -7631,7 +7631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _653 { get { @@ -7641,7 +7641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _654 { get { @@ -7651,7 +7651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _655 { get { @@ -7661,7 +7661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _656 { get { @@ -7671,7 +7671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _657 { get { @@ -7681,7 +7681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658 { get { @@ -7691,7 +7691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_1 { get { @@ -7701,7 +7701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_2 { get { @@ -7711,7 +7711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _659 { get { @@ -7721,7 +7721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _66 { get { @@ -7731,7 +7731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _660 { get { @@ -7741,7 +7741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _661 { get { @@ -7751,7 +7751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _662 { get { @@ -7761,7 +7761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _663 { get { @@ -7771,7 +7771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _664 { get { @@ -7781,7 +7781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _665 { get { @@ -7791,7 +7791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666 { get { @@ -7801,7 +7801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_1 { get { @@ -7811,7 +7811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_10 { get { @@ -7821,7 +7821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_11 { get { @@ -7831,7 +7831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_12 { get { @@ -7841,7 +7841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_13 { get { @@ -7851,7 +7851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_14 { get { @@ -7861,7 +7861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_15 { get { @@ -7871,7 +7871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_16 { get { @@ -7881,7 +7881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_17 { get { @@ -7891,7 +7891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_18 { get { @@ -7901,7 +7901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_19 { get { @@ -7911,7 +7911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_2 { get { @@ -7921,7 +7921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_3 { get { @@ -7931,7 +7931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_4 { get { @@ -7941,7 +7941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_5 { get { @@ -7951,7 +7951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_6 { get { @@ -7961,7 +7961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_7 { get { @@ -7971,7 +7971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_8 { get { @@ -7981,7 +7981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_9 { get { @@ -7991,7 +7991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _667 { get { @@ -8001,7 +8001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668 { get { @@ -8011,7 +8011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668_1 { get { @@ -8021,7 +8021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669 { get { @@ -8031,7 +8031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_1 { get { @@ -8041,7 +8041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_2 { get { @@ -8051,7 +8051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_3 { get { @@ -8061,7 +8061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_4 { get { @@ -8071,7 +8071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _67 { get { @@ -8081,7 +8081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670 { get { @@ -8091,7 +8091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_1 { get { @@ -8101,7 +8101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_2 { get { @@ -8111,7 +8111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_3 { get { @@ -8121,7 +8121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_4 { get { @@ -8131,7 +8131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_5 { get { @@ -8141,7 +8141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671 { get { @@ -8151,7 +8151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_1 { get { @@ -8161,7 +8161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_2 { get { @@ -8171,7 +8171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_3 { get { @@ -8181,7 +8181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_4 { get { @@ -8191,7 +8191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _672 { get { @@ -8201,7 +8201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _673 { get { @@ -8211,7 +8211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _674 { get { @@ -8221,7 +8221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _675 { get { @@ -8231,7 +8231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676 { get { @@ -8241,7 +8241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_1 { get { @@ -8251,7 +8251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_2 { get { @@ -8261,7 +8261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_3 { get { @@ -8271,7 +8271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_4 { get { @@ -8281,7 +8281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_5 { get { @@ -8291,7 +8291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_6 { get { @@ -8301,7 +8301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_7 { get { @@ -8311,7 +8311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_8 { get { @@ -8321,7 +8321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_9 { get { @@ -8331,7 +8331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _677 { get { @@ -8341,7 +8341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678 { get { @@ -8351,7 +8351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678_1 { get { @@ -8361,7 +8361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _679 { get { @@ -8371,7 +8371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _68 { get { @@ -8381,7 +8381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _680 { get { @@ -8391,7 +8391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681 { get { @@ -8401,7 +8401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681_1 { get { @@ -8411,7 +8411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _682 { get { @@ -8421,7 +8421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _683 { get { @@ -8431,7 +8431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _684 { get { @@ -8441,7 +8441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _685 { get { @@ -8451,7 +8451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _686 { get { @@ -8461,7 +8461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _687 { get { @@ -8471,7 +8471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _688 { get { @@ -8481,7 +8481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _689 { get { @@ -8491,7 +8491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _69 { get { @@ -8501,7 +8501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _690 { get { @@ -8511,7 +8511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _691 { get { @@ -8521,7 +8521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _692 { get { @@ -8531,7 +8531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _693 { get { @@ -8541,7 +8541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _694 { get { @@ -8551,7 +8551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _695 { get { @@ -8561,7 +8561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _696 { get { @@ -8571,7 +8571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _697 { get { @@ -8581,7 +8581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _698 { get { @@ -8591,7 +8591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _699 { get { @@ -8601,7 +8601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6th { get { @@ -8611,7 +8611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _7 { get { @@ -8621,7 +8621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _70 { get { @@ -8631,7 +8631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _700 { get { @@ -8641,7 +8641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _701 { get { @@ -8651,7 +8651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _702 { get { @@ -8661,7 +8661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _703 { get { @@ -8671,7 +8671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _704 { get { @@ -8681,7 +8681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _705 { get { @@ -8691,7 +8691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _706 { get { @@ -8701,7 +8701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _707 { get { @@ -8711,7 +8711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _708 { get { @@ -8721,7 +8721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _709 { get { @@ -8731,7 +8731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _71 { get { @@ -8741,7 +8741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710 { get { @@ -8751,7 +8751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_1 { get { @@ -8761,7 +8761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_2 { get { @@ -8771,7 +8771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_3 { get { @@ -8781,7 +8781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711 { get { @@ -8791,7 +8791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_1 { get { @@ -8801,7 +8801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_2 { get { @@ -8811,7 +8811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_3 { get { @@ -8821,7 +8821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _712 { get { @@ -8831,7 +8831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _713 { get { @@ -8841,7 +8841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _714 { get { @@ -8851,7 +8851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _715 { get { @@ -8861,7 +8861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716 { get { @@ -8871,7 +8871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716_1 { get { @@ -8881,7 +8881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _717 { get { @@ -8891,7 +8891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718 { get { @@ -8901,7 +8901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_1 { get { @@ -8911,7 +8911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_2 { get { @@ -8921,7 +8921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_3 { get { @@ -8931,7 +8931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_4 { get { @@ -8941,7 +8941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719 { get { @@ -8951,7 +8951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719_1 { get { @@ -8961,7 +8961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _72 { get { @@ -8971,7 +8971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720 { get { @@ -8981,7 +8981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720_1 { get { @@ -8991,7 +8991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _721 { get { @@ -9001,7 +9001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _722 { get { @@ -9011,7 +9011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _723 { get { @@ -9021,7 +9021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _724 { get { @@ -9031,7 +9031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _725 { get { @@ -9041,7 +9041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _726 { get { @@ -9051,7 +9051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _727 { get { @@ -9061,7 +9061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _728 { get { @@ -9071,7 +9071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _729 { get { @@ -9081,7 +9081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _73 { get { @@ -9091,7 +9091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _730 { get { @@ -9101,7 +9101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _731 { get { @@ -9111,7 +9111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _732 { get { @@ -9121,7 +9121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _733 { get { @@ -9131,7 +9131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _734 { get { @@ -9141,7 +9141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _735 { get { @@ -9151,7 +9151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _736 { get { @@ -9161,7 +9161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _737 { get { @@ -9171,7 +9171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _738 { get { @@ -9181,7 +9181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _739 { get { @@ -9191,7 +9191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74 { get { @@ -9201,7 +9201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74_1 { get { @@ -9211,7 +9211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _740 { get { @@ -9221,7 +9221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741 { get { @@ -9231,7 +9231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_1 { get { @@ -9241,7 +9241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_2 { get { @@ -9251,7 +9251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_3 { get { @@ -9261,7 +9261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _742 { get { @@ -9271,7 +9271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _743 { get { @@ -9281,7 +9281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _744 { get { @@ -9291,7 +9291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745 { get { @@ -9301,7 +9301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745_1 { get { @@ -9311,7 +9311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746 { get { @@ -9321,7 +9321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746_1 { get { @@ -9331,7 +9331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _747 { get { @@ -9341,7 +9341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _748 { get { @@ -9351,7 +9351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _749 { get { @@ -9361,7 +9361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75 { get { @@ -9371,7 +9371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75_1 { get { @@ -9381,7 +9381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _750 { get { @@ -9391,7 +9391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _751 { get { @@ -9401,7 +9401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _752 { get { @@ -9411,7 +9411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _753 { get { @@ -9421,7 +9421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _754 { get { @@ -9431,7 +9431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _755 { get { @@ -9441,7 +9441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _756 { get { @@ -9451,7 +9451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _757 { get { @@ -9461,7 +9461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _758 { get { @@ -9471,7 +9471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _759 { get { @@ -9481,7 +9481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76 { get { @@ -9491,7 +9491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76_1 { get { @@ -9501,7 +9501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _760 { get { @@ -9511,7 +9511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _761 { get { @@ -9521,7 +9521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _762 { get { @@ -9531,7 +9531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _763 { get { @@ -9541,7 +9541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _764 { get { @@ -9551,7 +9551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _765 { get { @@ -9561,7 +9561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _766 { get { @@ -9571,7 +9571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _767 { get { @@ -9581,7 +9581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _768 { get { @@ -9591,7 +9591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _769 { get { @@ -9601,7 +9601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _77 { get { @@ -9611,7 +9611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _770 { get { @@ -9621,7 +9621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _771 { get { @@ -9631,7 +9631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _772 { get { @@ -9641,7 +9641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _773 { get { @@ -9651,7 +9651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774 { get { @@ -9661,7 +9661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_1 { get { @@ -9671,7 +9671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_10 { get { @@ -9681,7 +9681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_11 { get { @@ -9691,7 +9691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_12 { get { @@ -9701,7 +9701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_13 { get { @@ -9711,7 +9711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_2 { get { @@ -9721,7 +9721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_3 { get { @@ -9731,7 +9731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_4 { get { @@ -9741,7 +9741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_5 { get { @@ -9751,7 +9751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_6 { get { @@ -9761,7 +9761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_7 { get { @@ -9771,7 +9771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_8 { get { @@ -9781,7 +9781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_9 { get { @@ -9791,7 +9791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _775 { get { @@ -9801,7 +9801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _776 { get { @@ -9811,7 +9811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _777 { get { @@ -9821,7 +9821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _778 { get { @@ -9831,7 +9831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _779 { get { @@ -9841,7 +9841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _78 { get { @@ -9851,7 +9851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _780 { get { @@ -9861,7 +9861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _781 { get { @@ -9871,7 +9871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _782 { get { @@ -9881,7 +9881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _783 { get { @@ -9891,7 +9891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _784 { get { @@ -9901,7 +9901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _785 { get { @@ -9911,7 +9911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _786 { get { @@ -9921,7 +9921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _787 { get { @@ -9931,7 +9931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _788 { get { @@ -9941,7 +9941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _789 { get { @@ -9951,7 +9951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _79 { get { @@ -9961,7 +9961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _790 { get { @@ -9971,7 +9971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _791 { get { @@ -9981,7 +9981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _792 { get { @@ -9991,7 +9991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _793 { get { @@ -10001,7 +10001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _794 { get { @@ -10011,7 +10011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _795 { get { @@ -10021,7 +10021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _796 { get { @@ -10031,7 +10031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _797 { get { @@ -10041,7 +10041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _798 { get { @@ -10051,7 +10051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _799 { get { @@ -10061,7 +10061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _8 { get { @@ -10071,7 +10071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80 { get { @@ -10081,7 +10081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80_1 { get { @@ -10091,7 +10091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _800 { get { @@ -10101,7 +10101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801 { get { @@ -10111,7 +10111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801_1 { get { @@ -10121,7 +10121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _802 { get { @@ -10131,7 +10131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _81 { get { @@ -10141,7 +10141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _82 { get { @@ -10151,7 +10151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _83 { get { @@ -10161,7 +10161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _84 { get { @@ -10171,7 +10171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _85 { get { @@ -10181,7 +10181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _86 { get { @@ -10191,7 +10191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _87 { get { @@ -10201,7 +10201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88 { get { @@ -10211,7 +10211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88_1 { get { @@ -10221,7 +10221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89 { get { @@ -10231,7 +10231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89_1 { get { @@ -10241,7 +10241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9 { get { @@ -10251,7 +10251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9_1 { get { @@ -10261,7 +10261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _90 { get { @@ -10271,7 +10271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _91 { get { @@ -10281,7 +10281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _92 { get { @@ -10291,7 +10291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _93 { get { @@ -10301,7 +10301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94 { get { @@ -10311,7 +10311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94_1 { get { @@ -10321,7 +10321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _95 { get { @@ -10331,7 +10331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _96 { get { @@ -10341,7 +10341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _97 { get { @@ -10351,7 +10351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _98 { get { @@ -10361,7 +10361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _99 { get { @@ -10371,7 +10371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball1 { get { @@ -10381,7 +10381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball10 { get { @@ -10391,7 +10391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball11 { get { @@ -10401,7 +10401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball12 { get { @@ -10411,7 +10411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball13 { get { @@ -10421,7 +10421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball14 { get { @@ -10431,7 +10431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball15 { get { @@ -10441,7 +10441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball16 { get { @@ -10451,7 +10451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball17 { get { @@ -10461,7 +10461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball18 { get { @@ -10471,7 +10471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball19 { get { @@ -10481,7 +10481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball2 { get { @@ -10491,7 +10491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball20 { get { @@ -10501,7 +10501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball21 { get { @@ -10511,7 +10511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball22 { get { @@ -10521,7 +10521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball23 { get { @@ -10531,7 +10531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball24 { get { @@ -10541,7 +10541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball25 { get { @@ -10551,7 +10551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball26 { get { @@ -10561,7 +10561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball3 { get { @@ -10571,7 +10571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball4 { get { @@ -10581,7 +10581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball5 { get { @@ -10591,7 +10591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball6 { get { @@ -10601,7 +10601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball7 { get { @@ -10611,7 +10611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball8 { get { @@ -10621,7 +10621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball9 { get { @@ -10631,7 +10631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap about { get { @@ -10641,7 +10641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap alora { get { @@ -10651,7 +10651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap anti_pokerus_icon { get { @@ -10661,7 +10661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_01 { get { @@ -10671,7 +10671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_02 { get { @@ -10681,7 +10681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_03 { get { @@ -10691,7 +10691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_04 { get { @@ -10701,7 +10701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_05 { get { @@ -10711,7 +10711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_06 { get { @@ -10721,7 +10721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_07 { get { @@ -10731,7 +10731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_08 { get { @@ -10741,7 +10741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_1 { get { @@ -10751,7 +10751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_2 { get { @@ -10761,7 +10761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_3 { get { @@ -10771,7 +10771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_4 { get { @@ -10781,7 +10781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_5 { get { @@ -10791,7 +10791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_6 { get { @@ -10801,7 +10801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_7 { get { @@ -10811,7 +10811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_8 { get { @@ -10821,7 +10821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Free { get { @@ -10831,7 +10831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_PCItems { get { @@ -10841,7 +10841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Z { get { @@ -10851,7 +10851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap bak { get { @@ -10861,7 +10861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_01 { get { @@ -10871,7 +10871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_02 { get { @@ -10881,7 +10881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_03 { get { @@ -10891,7 +10891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_04 { get { @@ -10901,7 +10901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_05 { get { @@ -10911,7 +10911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_06 { get { @@ -10921,7 +10921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01bw { get { @@ -10931,7 +10931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01dp { get { @@ -10941,7 +10941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01e { get { @@ -10951,7 +10951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01rs { get { @@ -10961,7 +10961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01xy { get { @@ -10971,7 +10971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02bw { get { @@ -10981,7 +10981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02dp { get { @@ -10991,7 +10991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02e { get { @@ -11001,7 +11001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02rs { get { @@ -11011,7 +11011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02xy { get { @@ -11021,7 +11021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03bw { get { @@ -11031,7 +11031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03dp { get { @@ -11041,7 +11041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03e { get { @@ -11051,7 +11051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03rs { get { @@ -11061,7 +11061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03xy { get { @@ -11071,7 +11071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04bw { get { @@ -11081,7 +11081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04dp { get { @@ -11091,7 +11091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04e { get { @@ -11101,7 +11101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04rs { get { @@ -11111,7 +11111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04xy { get { @@ -11121,7 +11121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05bw { get { @@ -11131,7 +11131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05dp { get { @@ -11141,7 +11141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05e { get { @@ -11151,7 +11151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05rs { get { @@ -11161,7 +11161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05xy { get { @@ -11171,7 +11171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06bw { get { @@ -11181,7 +11181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06dp { get { @@ -11191,7 +11191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06e { get { @@ -11201,7 +11201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06rs { get { @@ -11211,7 +11211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06xy { get { @@ -11221,7 +11221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07bw { get { @@ -11231,7 +11231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07dp { get { @@ -11241,7 +11241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07e { get { @@ -11251,7 +11251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07rs { get { @@ -11261,7 +11261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07xy { get { @@ -11271,7 +11271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08bw { get { @@ -11281,7 +11281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08dp { get { @@ -11291,7 +11291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08e { get { @@ -11301,7 +11301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08rs { get { @@ -11311,7 +11311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08xy { get { @@ -11321,7 +11321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09bw { get { @@ -11331,7 +11331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09dp { get { @@ -11341,7 +11341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09e { get { @@ -11351,7 +11351,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09rs { get { @@ -11361,7 +11361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09xy { get { @@ -11371,7 +11371,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10bw { get { @@ -11381,7 +11381,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10dp { get { @@ -11391,7 +11391,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10e { get { @@ -11401,7 +11401,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10rs { get { @@ -11411,7 +11411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10xy { get { @@ -11421,7 +11421,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11bw { get { @@ -11431,7 +11431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11dp { get { @@ -11441,7 +11441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11e { get { @@ -11451,7 +11451,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11rs { get { @@ -11461,7 +11461,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11xy { get { @@ -11471,7 +11471,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12bw { get { @@ -11481,7 +11481,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12dp { get { @@ -11491,7 +11491,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12e { get { @@ -11501,7 +11501,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12rs { get { @@ -11511,7 +11511,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12xy { get { @@ -11521,7 +11521,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13bw { get { @@ -11531,7 +11531,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13dp { get { @@ -11541,7 +11541,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13e { get { @@ -11551,7 +11551,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13frlg { get { @@ -11561,7 +11561,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13rs { get { @@ -11571,7 +11571,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13xy { get { @@ -11581,7 +11581,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14bw { get { @@ -11591,7 +11591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14dp { get { @@ -11601,7 +11601,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14e { get { @@ -11611,7 +11611,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14frlg { get { @@ -11621,7 +11621,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14rs { get { @@ -11631,7 +11631,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14xy { get { @@ -11641,7 +11641,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15bw { get { @@ -11651,7 +11651,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15dp { get { @@ -11661,7 +11661,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15e { get { @@ -11671,7 +11671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15frlg { get { @@ -11681,7 +11681,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15rs { get { @@ -11691,7 +11691,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15xy { get { @@ -11701,7 +11701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16bw { get { @@ -11711,7 +11711,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16dp { get { @@ -11721,7 +11721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16e { get { @@ -11731,7 +11731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16frlg { get { @@ -11741,7 +11741,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16rs { get { @@ -11751,7 +11751,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16xy { get { @@ -11761,7 +11761,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17ao { get { @@ -11771,7 +11771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17b2w2 { get { @@ -11781,7 +11781,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17bw { get { @@ -11791,7 +11791,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17dp { get { @@ -11801,7 +11801,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17hgss { get { @@ -11811,7 +11811,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17pt { get { @@ -11821,7 +11821,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17xy { get { @@ -11831,7 +11831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18ao { get { @@ -11841,7 +11841,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18b2w2 { get { @@ -11851,7 +11851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18bw { get { @@ -11861,7 +11861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18dp { get { @@ -11871,7 +11871,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18hgss { get { @@ -11881,7 +11881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18pt { get { @@ -11891,7 +11891,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18xy { get { @@ -11901,7 +11901,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19ao { get { @@ -11911,7 +11911,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19b2w2 { get { @@ -11921,7 +11921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19bw { get { @@ -11931,7 +11931,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19dp { get { @@ -11941,7 +11941,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19hgss { get { @@ -11951,7 +11951,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19pt { get { @@ -11961,7 +11961,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19xy { get { @@ -11971,7 +11971,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20ao { get { @@ -11981,7 +11981,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20b2w2 { get { @@ -11991,7 +11991,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20bw { get { @@ -12001,7 +12001,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20dp { get { @@ -12011,7 +12011,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20hgss { get { @@ -12021,7 +12021,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20pt { get { @@ -12031,7 +12031,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20xy { get { @@ -12041,7 +12041,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21ao { get { @@ -12051,7 +12051,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21b2w2 { get { @@ -12061,7 +12061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21bw { get { @@ -12071,7 +12071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21dp { get { @@ -12081,7 +12081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21hgss { get { @@ -12091,7 +12091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21pt { get { @@ -12101,7 +12101,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21xy { get { @@ -12111,7 +12111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22ao { get { @@ -12121,7 +12121,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22b2w2 { get { @@ -12131,7 +12131,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22bw { get { @@ -12141,7 +12141,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22dp { get { @@ -12151,7 +12151,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22hgss { get { @@ -12161,7 +12161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22pt { get { @@ -12171,7 +12171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22xy { get { @@ -12181,7 +12181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23ao { get { @@ -12191,7 +12191,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23b2w2 { get { @@ -12201,7 +12201,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23bw { get { @@ -12211,7 +12211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23dp { get { @@ -12221,7 +12221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23hgss { get { @@ -12231,7 +12231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23pt { get { @@ -12241,7 +12241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23xy { get { @@ -12251,7 +12251,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24ao { get { @@ -12261,7 +12261,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24b2w2 { get { @@ -12271,7 +12271,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24bw { get { @@ -12281,7 +12281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24dp { get { @@ -12291,7 +12291,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24hgss { get { @@ -12301,7 +12301,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24pt { get { @@ -12311,7 +12311,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24xy { get { @@ -12321,7 +12321,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a PKHeX - By Kaphotics + /// Looks up a localized string similar to PKHeX - By Kaphotics ///http://projectpokemon.org/pkhex /// ///17/03/18 - New Update: @@ -12332,7 +12332,7 @@ namespace PKHeX.Core.Properties { /// - Fixed: Colosseum/XD Purification value editing. Thanks ArcticLoveBunny! /// - Fixed: Joyful Game Corner now editable by Emerald saves. /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string changelog { get { @@ -12341,7 +12341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 60 Ash + /// Looks up a localized string similar to 60 Ash ///21 Test1 ///22 Test2 ///24 Test3. @@ -12353,7 +12353,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 148 Starter 00:Rowlet,01:Litten,02:Popplio + /// Looks up a localized string similar to 148 Starter 00:Rowlet,01:Litten,02:Popplio ///432 Tapu Koku 03:Battleable,04:Defeated,05:Captured ///433 Tapu Lele 01:Battleable,02:Defeated,03:Captured ///434 Tapu Bulu 01:Battleable,02:Defeated,03:Captured @@ -12366,7 +12366,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Country ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Country ID,JP,EN,FR,DE,IT,ES,ZH,KO ///1,日本,Japan,Japon,Japan,Giappone,Japón,日本,일본 ///8,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라 ///9,アンティグア・バーブーダ,Antigua and Barbuda,Antigua-et-Barbuda,Antigua und Barbuda,Antigua e Barbuda,Antigua y Barbuda,安提瓜和巴布达,앤티가 바부다 @@ -12374,7 +12374,7 @@ namespace PKHeX.Core.Properties { ///11,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바 ///12,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마 ///13,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스 - ///14,ベリーズ,Beli [resto de la cadena truncado]";. + ///14,ベリーズ,Beli [rest of string was truncated]";. /// public static string countries { get { @@ -12383,7 +12383,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap data { get { @@ -12393,7 +12393,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap database { get { @@ -12403,7 +12403,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap dump { get { @@ -12413,7 +12413,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap egg { get { @@ -12423,7 +12423,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_ao { get { @@ -12433,7 +12433,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_bw { get { @@ -12443,7 +12443,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_c { get { @@ -12453,7 +12453,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_dppt { get { @@ -12463,7 +12463,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_gs { get { @@ -12473,7 +12473,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_hgss { get { @@ -12483,7 +12483,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_rs { get { @@ -12493,7 +12493,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_sm { get { @@ -12503,7 +12503,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_xy { get { @@ -12513,7 +12513,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_a { get { @@ -12523,7 +12523,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_b { get { @@ -12533,7 +12533,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_b2 { get { @@ -12543,7 +12543,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_blue { get { @@ -12553,7 +12553,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_crystal { get { @@ -12563,7 +12563,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_crystal_h { get { @@ -12573,7 +12573,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_d { get { @@ -12583,7 +12583,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_e { get { @@ -12593,7 +12593,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_fr { get { @@ -12603,7 +12603,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_gold { get { @@ -12613,7 +12613,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_gold_h { get { @@ -12623,7 +12623,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_gsc_f { get { @@ -12633,7 +12633,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_hg { get { @@ -12643,7 +12643,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_lg { get { @@ -12653,7 +12653,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_mn { get { @@ -12663,7 +12663,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_mn_sos { get { @@ -12673,7 +12673,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_o { get { @@ -12683,7 +12683,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_p { get { @@ -12693,7 +12693,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_pt { get { @@ -12703,7 +12703,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_r { get { @@ -12713,7 +12713,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_rb_f { get { @@ -12723,7 +12723,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_red { get { @@ -12733,7 +12733,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_s { get { @@ -12743,7 +12743,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_silver { get { @@ -12753,7 +12753,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_silver_h { get { @@ -12763,7 +12763,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_sn { get { @@ -12773,7 +12773,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_sn_sos { get { @@ -12783,7 +12783,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_ss { get { @@ -12793,7 +12793,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_w { get { @@ -12803,7 +12803,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_w2 { get { @@ -12813,7 +12813,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_x { get { @@ -12823,7 +12823,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_y { get { @@ -12833,7 +12833,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_yellow { get { @@ -12843,7 +12843,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_yellow_f { get { @@ -12853,7 +12853,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encunters_hb_hg { get { @@ -12863,7 +12863,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encunters_hb_ss { get { @@ -12873,7 +12873,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_ao { get { @@ -12883,7 +12883,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_g3 { get { @@ -12893,7 +12893,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_g4 { get { @@ -12903,7 +12903,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_g5 { get { @@ -12913,7 +12913,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_gsc { get { @@ -12923,7 +12923,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_rby { get { @@ -12933,7 +12933,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_sm { get { @@ -12943,7 +12943,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap exit { get { @@ -12953,7 +12953,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap export { get { @@ -12963,7 +12963,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_f_sm { get { @@ -12973,7 +12973,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_f_sm_illegal { get { @@ -12983,7 +12983,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_m_sm { get { @@ -12993,7 +12993,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_m_sm_illegal { get { @@ -13003,7 +13003,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 0648 (OR) Groudon Defeated + /// Looks up a localized string similar to 0648 (OR) Groudon Defeated ///2839 (OR) Groudon Captured ///0647 (AS) Kyogre Defeated ///2840 (AS) Kyogre Captured @@ -13021,7 +13021,7 @@ namespace PKHeX.Core.Properties { ///0183 (AS) Zekrom Defeated ///2831 (AS) Zekrom Captured ///0419 (OR) Latias Defeated - ///2834 (OR) Latias Captu [resto de la cadena truncado]";. + ///2834 (OR) Latias Captu [rest of string was truncated]";. /// public static string flags_oras { get { @@ -13030,7 +13030,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 3100 Is Alolan Champion + Magearna Event Active + /// Looks up a localized string similar to 3100 Is Alolan Champion + Magearna Event Active ///3487 Received Magearna Gift ///1216 Received Gift Cosmog ///0499 Received Gift Type:Null @@ -13043,7 +13043,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 2237 2237 + /// Looks up a localized string similar to 2237 2237 ///2238 2238 ///2239 2239 ///0963 Mewtwo Defeated @@ -13070,7 +13070,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap folder { get { @@ -13080,7 +13080,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap gift { get { @@ -13090,7 +13090,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap helditem { get { @@ -13100,7 +13100,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] hmtm_g3 { get { @@ -13110,7 +13110,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap horohoro { get { @@ -13120,7 +13120,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap icon { get { @@ -13130,7 +13130,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap import { get { @@ -13140,7 +13140,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_1 { get { @@ -13150,7 +13150,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_10 { get { @@ -13160,7 +13160,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_100 { get { @@ -13170,7 +13170,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_101 { get { @@ -13180,7 +13180,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_102 { get { @@ -13190,7 +13190,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_103 { get { @@ -13200,7 +13200,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_104 { get { @@ -13210,7 +13210,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_105 { get { @@ -13220,7 +13220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_106 { get { @@ -13230,7 +13230,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_107 { get { @@ -13240,7 +13240,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_108 { get { @@ -13250,7 +13250,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_109 { get { @@ -13260,7 +13260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_11 { get { @@ -13270,7 +13270,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_110 { get { @@ -13280,7 +13280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_112 { get { @@ -13290,7 +13290,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_116 { get { @@ -13300,7 +13300,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_117 { get { @@ -13310,7 +13310,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_118 { get { @@ -13320,7 +13320,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_119 { get { @@ -13330,7 +13330,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_12 { get { @@ -13340,7 +13340,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_13 { get { @@ -13350,7 +13350,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_134 { get { @@ -13360,7 +13360,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_135 { get { @@ -13370,7 +13370,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_136 { get { @@ -13380,7 +13380,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_14 { get { @@ -13390,7 +13390,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_149 { get { @@ -13400,7 +13400,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_15 { get { @@ -13410,7 +13410,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_150 { get { @@ -13420,7 +13420,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_151 { get { @@ -13430,7 +13430,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_152 { get { @@ -13440,7 +13440,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_153 { get { @@ -13450,7 +13450,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_154 { get { @@ -13460,7 +13460,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_155 { get { @@ -13470,7 +13470,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_156 { get { @@ -13480,7 +13480,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_157 { get { @@ -13490,7 +13490,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_158 { get { @@ -13500,7 +13500,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_159 { get { @@ -13510,7 +13510,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_16 { get { @@ -13520,7 +13520,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_160 { get { @@ -13530,7 +13530,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_161 { get { @@ -13540,7 +13540,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_162 { get { @@ -13550,7 +13550,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_163 { get { @@ -13560,7 +13560,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_164 { get { @@ -13570,7 +13570,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_165 { get { @@ -13580,7 +13580,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_166 { get { @@ -13590,7 +13590,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_167 { get { @@ -13600,7 +13600,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_168 { get { @@ -13610,7 +13610,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_169 { get { @@ -13620,7 +13620,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_17 { get { @@ -13630,7 +13630,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_170 { get { @@ -13640,7 +13640,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_171 { get { @@ -13650,7 +13650,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_172 { get { @@ -13660,7 +13660,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_173 { get { @@ -13670,7 +13670,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_174 { get { @@ -13680,7 +13680,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_175 { get { @@ -13690,7 +13690,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_176 { get { @@ -13700,7 +13700,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_177 { get { @@ -13710,7 +13710,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_178 { get { @@ -13720,7 +13720,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_179 { get { @@ -13730,7 +13730,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_18 { get { @@ -13740,7 +13740,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_180 { get { @@ -13750,7 +13750,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_181 { get { @@ -13760,7 +13760,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_182 { get { @@ -13770,7 +13770,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_183 { get { @@ -13780,7 +13780,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_184 { get { @@ -13790,7 +13790,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_185 { get { @@ -13800,7 +13800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_186 { get { @@ -13810,7 +13810,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_187 { get { @@ -13820,7 +13820,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_188 { get { @@ -13830,7 +13830,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_189 { get { @@ -13840,7 +13840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_19 { get { @@ -13850,7 +13850,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_190 { get { @@ -13860,7 +13860,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_191 { get { @@ -13870,7 +13870,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_192 { get { @@ -13880,7 +13880,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_193 { get { @@ -13890,7 +13890,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_194 { get { @@ -13900,7 +13900,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_195 { get { @@ -13910,7 +13910,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_196 { get { @@ -13920,7 +13920,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_197 { get { @@ -13930,7 +13930,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_198 { get { @@ -13940,7 +13940,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_199 { get { @@ -13950,7 +13950,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_2 { get { @@ -13960,7 +13960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_20 { get { @@ -13970,7 +13970,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_200 { get { @@ -13980,7 +13980,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_201 { get { @@ -13990,7 +13990,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_202 { get { @@ -14000,7 +14000,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_203 { get { @@ -14010,7 +14010,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_204 { get { @@ -14020,7 +14020,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_205 { get { @@ -14030,7 +14030,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_206 { get { @@ -14040,7 +14040,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_207 { get { @@ -14050,7 +14050,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_208 { get { @@ -14060,7 +14060,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_209 { get { @@ -14070,7 +14070,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_21 { get { @@ -14080,7 +14080,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_210 { get { @@ -14090,7 +14090,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_211 { get { @@ -14100,7 +14100,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_212 { get { @@ -14110,7 +14110,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_213 { get { @@ -14120,7 +14120,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_214 { get { @@ -14130,7 +14130,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_215 { get { @@ -14140,7 +14140,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_217 { get { @@ -14150,7 +14150,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_218 { get { @@ -14160,7 +14160,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_219 { get { @@ -14170,7 +14170,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_22 { get { @@ -14180,7 +14180,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_220 { get { @@ -14190,7 +14190,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_221 { get { @@ -14200,7 +14200,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_222 { get { @@ -14210,7 +14210,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_223 { get { @@ -14220,7 +14220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_224 { get { @@ -14230,7 +14230,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_225 { get { @@ -14240,7 +14240,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_226 { get { @@ -14250,7 +14250,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_227 { get { @@ -14260,7 +14260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_228 { get { @@ -14270,7 +14270,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_229 { get { @@ -14280,7 +14280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_23 { get { @@ -14290,7 +14290,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_230 { get { @@ -14300,7 +14300,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_231 { get { @@ -14310,7 +14310,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_232 { get { @@ -14320,7 +14320,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_233 { get { @@ -14330,7 +14330,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_234 { get { @@ -14340,7 +14340,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_235 { get { @@ -14350,7 +14350,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_236 { get { @@ -14360,7 +14360,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_237 { get { @@ -14370,7 +14370,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_238 { get { @@ -14380,7 +14380,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_239 { get { @@ -14390,7 +14390,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_24 { get { @@ -14400,7 +14400,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_240 { get { @@ -14410,7 +14410,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_241 { get { @@ -14420,7 +14420,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_242 { get { @@ -14430,7 +14430,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_243 { get { @@ -14440,7 +14440,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_244 { get { @@ -14450,7 +14450,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_245 { get { @@ -14460,7 +14460,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_246 { get { @@ -14470,7 +14470,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_247 { get { @@ -14480,7 +14480,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_248 { get { @@ -14490,7 +14490,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_249 { get { @@ -14500,7 +14500,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_25 { get { @@ -14510,7 +14510,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_250 { get { @@ -14520,7 +14520,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_251 { get { @@ -14530,7 +14530,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_252 { get { @@ -14540,7 +14540,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_253 { get { @@ -14550,7 +14550,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_254 { get { @@ -14560,7 +14560,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_255 { get { @@ -14570,7 +14570,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_256 { get { @@ -14580,7 +14580,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_257 { get { @@ -14590,7 +14590,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_258 { get { @@ -14600,7 +14600,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_259 { get { @@ -14610,7 +14610,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_26 { get { @@ -14620,7 +14620,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_260 { get { @@ -14630,7 +14630,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_261 { get { @@ -14640,7 +14640,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_262 { get { @@ -14650,7 +14650,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_263 { get { @@ -14660,7 +14660,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_264 { get { @@ -14670,7 +14670,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_265 { get { @@ -14680,7 +14680,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_266 { get { @@ -14690,7 +14690,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_267 { get { @@ -14700,7 +14700,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_268 { get { @@ -14710,7 +14710,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_269 { get { @@ -14720,7 +14720,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_27 { get { @@ -14730,7 +14730,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_270 { get { @@ -14740,7 +14740,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_271 { get { @@ -14750,7 +14750,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_272 { get { @@ -14760,7 +14760,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_273 { get { @@ -14770,7 +14770,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_274 { get { @@ -14780,7 +14780,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_275 { get { @@ -14790,7 +14790,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_276 { get { @@ -14800,7 +14800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_277 { get { @@ -14810,7 +14810,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_278 { get { @@ -14820,7 +14820,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_279 { get { @@ -14830,7 +14830,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_28 { get { @@ -14840,7 +14840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_280 { get { @@ -14850,7 +14850,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_281 { get { @@ -14860,7 +14860,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_282 { get { @@ -14870,7 +14870,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_283 { get { @@ -14880,7 +14880,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_284 { get { @@ -14890,7 +14890,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_285 { get { @@ -14900,7 +14900,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_286 { get { @@ -14910,7 +14910,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_287 { get { @@ -14920,7 +14920,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_288 { get { @@ -14930,7 +14930,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_289 { get { @@ -14940,7 +14940,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_29 { get { @@ -14950,7 +14950,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_290 { get { @@ -14960,7 +14960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_291 { get { @@ -14970,7 +14970,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_292 { get { @@ -14980,7 +14980,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_293 { get { @@ -14990,7 +14990,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_294 { get { @@ -15000,7 +15000,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_295 { get { @@ -15010,7 +15010,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_296 { get { @@ -15020,7 +15020,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_297 { get { @@ -15030,7 +15030,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_298 { get { @@ -15040,7 +15040,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_299 { get { @@ -15050,7 +15050,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_3 { get { @@ -15060,7 +15060,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_30 { get { @@ -15070,7 +15070,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_300 { get { @@ -15080,7 +15080,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_301 { get { @@ -15090,7 +15090,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_302 { get { @@ -15100,7 +15100,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_303 { get { @@ -15110,7 +15110,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_304 { get { @@ -15120,7 +15120,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_305 { get { @@ -15130,7 +15130,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_306 { get { @@ -15140,7 +15140,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_307 { get { @@ -15150,7 +15150,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_308 { get { @@ -15160,7 +15160,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_309 { get { @@ -15170,7 +15170,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_31 { get { @@ -15180,7 +15180,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_310 { get { @@ -15190,7 +15190,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_311 { get { @@ -15200,7 +15200,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_312 { get { @@ -15210,7 +15210,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_313 { get { @@ -15220,7 +15220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_314 { get { @@ -15230,7 +15230,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_315 { get { @@ -15240,7 +15240,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_316 { get { @@ -15250,7 +15250,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_317 { get { @@ -15260,7 +15260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_318 { get { @@ -15270,7 +15270,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_319 { get { @@ -15280,7 +15280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_32 { get { @@ -15290,7 +15290,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_320 { get { @@ -15300,7 +15300,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_321 { get { @@ -15310,7 +15310,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_322 { get { @@ -15320,7 +15320,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_323 { get { @@ -15330,7 +15330,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_324 { get { @@ -15340,7 +15340,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_325 { get { @@ -15350,7 +15350,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_326 { get { @@ -15360,7 +15360,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_327 { get { @@ -15370,7 +15370,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_33 { get { @@ -15380,7 +15380,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_34 { get { @@ -15390,7 +15390,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_35 { get { @@ -15400,7 +15400,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_36 { get { @@ -15410,7 +15410,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_37 { get { @@ -15420,7 +15420,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_38 { get { @@ -15430,7 +15430,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_39 { get { @@ -15440,7 +15440,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_4 { get { @@ -15450,7 +15450,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_40 { get { @@ -15460,7 +15460,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_41 { get { @@ -15470,7 +15470,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_42 { get { @@ -15480,7 +15480,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_43 { get { @@ -15490,7 +15490,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_44 { get { @@ -15500,7 +15500,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_45 { get { @@ -15510,7 +15510,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_46 { get { @@ -15520,7 +15520,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_47 { get { @@ -15530,7 +15530,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_48 { get { @@ -15540,7 +15540,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_49 { get { @@ -15550,7 +15550,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_5 { get { @@ -15560,7 +15560,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_50 { get { @@ -15570,7 +15570,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_504 { get { @@ -15580,7 +15580,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_51 { get { @@ -15590,7 +15590,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_52 { get { @@ -15600,7 +15600,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_53 { get { @@ -15610,7 +15610,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_534 { get { @@ -15620,7 +15620,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_535 { get { @@ -15630,7 +15630,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_537 { get { @@ -15640,7 +15640,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_538 { get { @@ -15650,7 +15650,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_539 { get { @@ -15660,7 +15660,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_54 { get { @@ -15670,7 +15670,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_540 { get { @@ -15680,7 +15680,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_541 { get { @@ -15690,7 +15690,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_542 { get { @@ -15700,7 +15700,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_543 { get { @@ -15710,7 +15710,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_544 { get { @@ -15720,7 +15720,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_545 { get { @@ -15730,7 +15730,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_546 { get { @@ -15740,7 +15740,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_547 { get { @@ -15750,7 +15750,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_548 { get { @@ -15760,7 +15760,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_549 { get { @@ -15770,7 +15770,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_55 { get { @@ -15780,7 +15780,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_550 { get { @@ -15790,7 +15790,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_551 { get { @@ -15800,7 +15800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_552 { get { @@ -15810,7 +15810,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_553 { get { @@ -15820,7 +15820,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_554 { get { @@ -15830,7 +15830,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_555 { get { @@ -15840,7 +15840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_556 { get { @@ -15850,7 +15850,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_557 { get { @@ -15860,7 +15860,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_558 { get { @@ -15870,7 +15870,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_559 { get { @@ -15880,7 +15880,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_56 { get { @@ -15890,7 +15890,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_560 { get { @@ -15900,7 +15900,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_561 { get { @@ -15910,7 +15910,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_562 { get { @@ -15920,7 +15920,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_563 { get { @@ -15930,7 +15930,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_564 { get { @@ -15940,7 +15940,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_57 { get { @@ -15950,7 +15950,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_571 { get { @@ -15960,7 +15960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_572 { get { @@ -15970,7 +15970,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_573 { get { @@ -15980,7 +15980,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_577 { get { @@ -15990,7 +15990,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_58 { get { @@ -16000,7 +16000,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_580 { get { @@ -16010,7 +16010,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_581 { get { @@ -16020,7 +16020,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_582 { get { @@ -16030,7 +16030,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_583 { get { @@ -16040,7 +16040,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_584 { get { @@ -16050,7 +16050,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_585 { get { @@ -16060,7 +16060,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_586 { get { @@ -16070,7 +16070,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_587 { get { @@ -16080,7 +16080,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_588 { get { @@ -16090,7 +16090,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_589 { get { @@ -16100,7 +16100,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_59 { get { @@ -16110,7 +16110,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_590 { get { @@ -16120,7 +16120,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_591 { get { @@ -16130,7 +16130,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_6 { get { @@ -16140,7 +16140,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_60 { get { @@ -16150,7 +16150,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_61 { get { @@ -16160,7 +16160,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_62 { get { @@ -16170,7 +16170,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_63 { get { @@ -16180,7 +16180,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_639 { get { @@ -16190,7 +16190,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_64 { get { @@ -16200,7 +16200,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_640 { get { @@ -16210,7 +16210,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_644 { get { @@ -16220,7 +16220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_645 { get { @@ -16230,7 +16230,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_646 { get { @@ -16240,7 +16240,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_647 { get { @@ -16250,7 +16250,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_648 { get { @@ -16260,7 +16260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_649 { get { @@ -16270,7 +16270,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_65 { get { @@ -16280,7 +16280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_650 { get { @@ -16290,7 +16290,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_652 { get { @@ -16300,7 +16300,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_653 { get { @@ -16310,7 +16310,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_654 { get { @@ -16320,7 +16320,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_655 { get { @@ -16330,7 +16330,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_656 { get { @@ -16340,7 +16340,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_657 { get { @@ -16350,7 +16350,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_658 { get { @@ -16360,7 +16360,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_659 { get { @@ -16370,7 +16370,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_66 { get { @@ -16380,7 +16380,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_660 { get { @@ -16390,7 +16390,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_661 { get { @@ -16400,7 +16400,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_662 { get { @@ -16410,7 +16410,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_663 { get { @@ -16420,7 +16420,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_664 { get { @@ -16430,7 +16430,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_665 { get { @@ -16440,7 +16440,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_666 { get { @@ -16450,7 +16450,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_667 { get { @@ -16460,7 +16460,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_668 { get { @@ -16470,7 +16470,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_669 { get { @@ -16480,7 +16480,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_67 { get { @@ -16490,7 +16490,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_670 { get { @@ -16500,7 +16500,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_671 { get { @@ -16510,7 +16510,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_672 { get { @@ -16520,7 +16520,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_673 { get { @@ -16530,7 +16530,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_674 { get { @@ -16540,7 +16540,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_675 { get { @@ -16550,7 +16550,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_676 { get { @@ -16560,7 +16560,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_677 { get { @@ -16570,7 +16570,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_678 { get { @@ -16580,7 +16580,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_679 { get { @@ -16590,7 +16590,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_68 { get { @@ -16600,7 +16600,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_680 { get { @@ -16610,7 +16610,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_681 { get { @@ -16620,7 +16620,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_682 { get { @@ -16630,7 +16630,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_683 { get { @@ -16640,7 +16640,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_684 { get { @@ -16650,7 +16650,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_685 { get { @@ -16660,7 +16660,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_686 { get { @@ -16670,7 +16670,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_687 { get { @@ -16680,7 +16680,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_688 { get { @@ -16690,7 +16690,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_69 { get { @@ -16700,7 +16700,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_699 { get { @@ -16710,7 +16710,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_7 { get { @@ -16720,7 +16720,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_70 { get { @@ -16730,7 +16730,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_704 { get { @@ -16740,7 +16740,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_708 { get { @@ -16750,7 +16750,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_709 { get { @@ -16760,7 +16760,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_71 { get { @@ -16770,7 +16770,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_710 { get { @@ -16780,7 +16780,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_711 { get { @@ -16790,7 +16790,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_715 { get { @@ -16800,7 +16800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_72 { get { @@ -16810,7 +16810,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_73 { get { @@ -16820,7 +16820,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_74 { get { @@ -16830,7 +16830,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_75 { get { @@ -16840,7 +16840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_752 { get { @@ -16850,7 +16850,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_753 { get { @@ -16860,7 +16860,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_754 { get { @@ -16870,7 +16870,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_755 { get { @@ -16880,7 +16880,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_756 { get { @@ -16890,7 +16890,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_757 { get { @@ -16900,7 +16900,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_758 { get { @@ -16910,7 +16910,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_759 { get { @@ -16920,7 +16920,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_76 { get { @@ -16930,7 +16930,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_760 { get { @@ -16940,7 +16940,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_761 { get { @@ -16950,7 +16950,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_762 { get { @@ -16960,7 +16960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_763 { get { @@ -16970,7 +16970,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_764 { get { @@ -16980,7 +16980,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_767 { get { @@ -16990,7 +16990,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_768 { get { @@ -17000,7 +17000,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_769 { get { @@ -17010,7 +17010,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_77 { get { @@ -17020,7 +17020,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_770 { get { @@ -17030,7 +17030,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_776 { get { @@ -17040,7 +17040,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_777 { get { @@ -17050,7 +17050,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_778 { get { @@ -17060,7 +17060,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_779 { get { @@ -17070,7 +17070,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_78 { get { @@ -17080,7 +17080,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_780 { get { @@ -17090,7 +17090,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_781 { get { @@ -17100,7 +17100,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_782 { get { @@ -17110,7 +17110,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_783 { get { @@ -17120,7 +17120,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_784 { get { @@ -17130,7 +17130,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_785 { get { @@ -17140,7 +17140,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_786 { get { @@ -17150,7 +17150,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_787 { get { @@ -17160,7 +17160,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_788 { get { @@ -17170,7 +17170,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_789 { get { @@ -17180,7 +17180,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_79 { get { @@ -17190,7 +17190,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_790 { get { @@ -17200,7 +17200,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_791 { get { @@ -17210,7 +17210,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_792 { get { @@ -17220,7 +17220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_793 { get { @@ -17230,7 +17230,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_794 { get { @@ -17240,7 +17240,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_795 { get { @@ -17250,7 +17250,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_796 { get { @@ -17260,7 +17260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_798 { get { @@ -17270,7 +17270,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_799 { get { @@ -17280,7 +17280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_8 { get { @@ -17290,7 +17290,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_80 { get { @@ -17300,7 +17300,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_800 { get { @@ -17310,7 +17310,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_801 { get { @@ -17320,7 +17320,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_802 { get { @@ -17330,7 +17330,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_803 { get { @@ -17340,7 +17340,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_804 { get { @@ -17350,7 +17350,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_805 { get { @@ -17360,7 +17360,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_806 { get { @@ -17370,7 +17370,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_81 { get { @@ -17380,7 +17380,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_82 { get { @@ -17390,7 +17390,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_83 { get { @@ -17400,7 +17400,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_836 { get { @@ -17410,7 +17410,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_84 { get { @@ -17420,7 +17420,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_846 { get { @@ -17430,7 +17430,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_849 { get { @@ -17440,7 +17440,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_85 { get { @@ -17450,7 +17450,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_851 { get { @@ -17460,7 +17460,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_852 { get { @@ -17470,7 +17470,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_853 { get { @@ -17480,7 +17480,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_854 { get { @@ -17490,7 +17490,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_855 { get { @@ -17500,7 +17500,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_856 { get { @@ -17510,7 +17510,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_86 { get { @@ -17520,7 +17520,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_87 { get { @@ -17530,7 +17530,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_879 { get { @@ -17540,7 +17540,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_88 { get { @@ -17550,7 +17550,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_880 { get { @@ -17560,7 +17560,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_881 { get { @@ -17570,7 +17570,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_882 { get { @@ -17580,7 +17580,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_883 { get { @@ -17590,7 +17590,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_884 { get { @@ -17600,7 +17600,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_89 { get { @@ -17610,7 +17610,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_9 { get { @@ -17620,7 +17620,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_90 { get { @@ -17630,7 +17630,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_904 { get { @@ -17640,7 +17640,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_905 { get { @@ -17650,7 +17650,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_906 { get { @@ -17660,7 +17660,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_907 { get { @@ -17670,7 +17670,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_908 { get { @@ -17680,7 +17680,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_909 { get { @@ -17690,7 +17690,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_91 { get { @@ -17700,7 +17700,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_910 { get { @@ -17710,7 +17710,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_911 { get { @@ -17720,7 +17720,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_912 { get { @@ -17730,7 +17730,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_913 { get { @@ -17740,7 +17740,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_914 { get { @@ -17750,7 +17750,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_915 { get { @@ -17760,7 +17760,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_916 { get { @@ -17770,7 +17770,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_917 { get { @@ -17780,7 +17780,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_918 { get { @@ -17790,7 +17790,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_919 { get { @@ -17800,7 +17800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_92 { get { @@ -17810,7 +17810,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_920 { get { @@ -17820,7 +17820,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_93 { get { @@ -17830,7 +17830,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_94 { get { @@ -17840,7 +17840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_95 { get { @@ -17850,7 +17850,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_96 { get { @@ -17860,7 +17860,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_97 { get { @@ -17870,7 +17870,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_98 { get { @@ -17880,7 +17880,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_99 { get { @@ -17890,7 +17890,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_tm { get { @@ -17900,7 +17900,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17914,7 +17914,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_de { get { @@ -17923,7 +17923,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17937,7 +17937,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_en { get { @@ -17946,7 +17946,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = Inglés ///! lang_jp.txt = Japonés @@ -17960,7 +17960,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THIS [resto de la cadena truncado]";. + ///- DO NOT CHANGE THIS [rest of string was truncated]";. /// public static string lang_es { get { @@ -17969,7 +17969,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17983,7 +17983,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_fr { get { @@ -17992,7 +17992,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -18006,7 +18006,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_it { get { @@ -18015,7 +18015,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -18029,7 +18029,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_ja { get { @@ -18038,7 +18038,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -18052,7 +18052,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_ko { get { @@ -18061,7 +18061,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -18075,7 +18075,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_pt { get { @@ -18084,7 +18084,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -18098,7 +18098,7 @@ namespace PKHeX.Core.Properties { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_zh { get { @@ -18107,7 +18107,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap language { get { @@ -18117,7 +18117,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ID,Language + /// Looks up a localized string similar to ID,Language ///1,JPN (日本語) ///2,ENG (English) ///3,FRE (Français) @@ -18135,7 +18135,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap load { get { @@ -18145,7 +18145,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap locked { get { @@ -18155,7 +18155,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_ao { get { @@ -18165,7 +18165,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_b2w2 { get { @@ -18175,7 +18175,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_bw { get { @@ -18185,7 +18185,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_c { get { @@ -18195,7 +18195,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_dp { get { @@ -18205,7 +18205,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_e { get { @@ -18215,7 +18215,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_fr { get { @@ -18225,7 +18225,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_gs { get { @@ -18235,7 +18235,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_hgss { get { @@ -18245,7 +18245,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_lg { get { @@ -18255,7 +18255,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_pt { get { @@ -18265,7 +18265,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_rb { get { @@ -18275,7 +18275,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_rs { get { @@ -18285,7 +18285,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_sm { get { @@ -18295,7 +18295,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_xy { get { @@ -18305,7 +18305,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_y { get { @@ -18315,7 +18315,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap main { get { @@ -18325,7 +18325,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap nocheck { get { @@ -18335,7 +18335,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap open { get { @@ -18345,7 +18345,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap other { get { @@ -18355,7 +18355,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap party { get { @@ -18365,7 +18365,17 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. + /// + public static byte[] pcd { + get { + object obj = ResourceManager.GetObject("pcd", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_ao { get { @@ -18375,7 +18385,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_b2w2 { get { @@ -18385,7 +18395,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_bw { get { @@ -18395,7 +18405,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_c { get { @@ -18405,7 +18415,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_dp { get { @@ -18415,7 +18425,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_e { get { @@ -18425,7 +18435,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_fr { get { @@ -18435,7 +18445,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_gs { get { @@ -18445,7 +18455,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_hgss { get { @@ -18455,7 +18465,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_lg { get { @@ -18465,7 +18475,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_pt { get { @@ -18475,7 +18485,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_rb { get { @@ -18485,7 +18495,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_rs { get { @@ -18495,7 +18505,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_sm { get { @@ -18505,7 +18515,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_xy { get { @@ -18515,7 +18525,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_y { get { @@ -18525,7 +18535,17 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. + /// + public static byte[] pgf { + get { + object obj = ResourceManager.GetObject("pgf", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] pgldings_normalregular { get { @@ -18535,7 +18555,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 20170318. + /// Looks up a localized string similar to 20170318. /// public static string ProgramVersion { get { @@ -18544,7 +18564,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon { get { @@ -18554,7 +18574,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon_alt { get { @@ -18564,7 +18584,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ID,3DS Region + /// Looks up a localized string similar to ID,3DS Region ///0,Japan (日本) ///1,Americas (NA/SA) ///2,Europe (EU/AU) @@ -18579,7 +18599,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap report { get { @@ -18589,7 +18609,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonability { get { @@ -18599,7 +18619,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitydouble { get { @@ -18609,7 +18629,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitygreat { get { @@ -18619,7 +18639,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitymulti { get { @@ -18629,7 +18649,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitypair { get { @@ -18639,7 +18659,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilityworld { get { @@ -18649,7 +18669,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonalert { get { @@ -18659,7 +18679,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonartist { get { @@ -18669,7 +18689,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerexpert { get { @@ -18679,7 +18699,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattleroyale { get { @@ -18689,7 +18709,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerskillful { get { @@ -18699,7 +18719,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreegreat { get { @@ -18709,7 +18729,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreemaster { get { @@ -18719,7 +18739,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbestfriends { get { @@ -18729,7 +18749,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbirthday { get { @@ -18739,7 +18759,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncareless { get { @@ -18749,7 +18769,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionalola { get { @@ -18759,7 +18779,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionbattle { get { @@ -18769,7 +18789,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong3hoenn { get { @@ -18779,7 +18799,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong6hoenn { get { @@ -18789,7 +18809,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionkalos { get { @@ -18799,7 +18819,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionnational { get { @@ -18809,7 +18829,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionregional { get { @@ -18819,7 +18839,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionsinnoh { get { @@ -18829,7 +18849,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionworld { get { @@ -18839,7 +18859,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonclassic { get { @@ -18849,7 +18869,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonconteststar { get { @@ -18859,7 +18879,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle { get { @@ -18869,7 +18889,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle2 { get { @@ -18879,7 +18899,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest { get { @@ -18889,7 +18909,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest2 { get { @@ -18899,7 +18919,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountry { get { @@ -18909,7 +18929,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbondowncast { get { @@ -18919,7 +18939,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonearth { get { @@ -18929,7 +18949,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboneffort { get { @@ -18939,7 +18959,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonevent { get { @@ -18949,7 +18969,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonfootprint { get { @@ -18959,7 +18979,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beauty { get { @@ -18969,7 +18989,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautyhyper { get { @@ -18979,7 +18999,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautymaster { get { @@ -18989,7 +19009,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautysuper { get { @@ -18999,7 +19019,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cool { get { @@ -19009,7 +19029,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolhyper { get { @@ -19019,7 +19039,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolmaster { get { @@ -19029,7 +19049,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolsuper { get { @@ -19039,7 +19059,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cute { get { @@ -19049,7 +19069,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutehyper { get { @@ -19059,7 +19079,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutemaster { get { @@ -19069,7 +19089,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutesuper { get { @@ -19079,7 +19099,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smart { get { @@ -19089,7 +19109,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smarthyper { get { @@ -19099,7 +19119,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartmaster { get { @@ -19109,7 +19129,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartsuper { get { @@ -19119,7 +19139,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3tough { get { @@ -19129,7 +19149,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughhyper { get { @@ -19139,7 +19159,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughmaster { get { @@ -19149,7 +19169,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughsuper { get { @@ -19159,7 +19179,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beauty { get { @@ -19169,7 +19189,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautygreat { get { @@ -19179,7 +19199,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautymaster { get { @@ -19189,7 +19209,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautyultra { get { @@ -19199,7 +19219,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cool { get { @@ -19209,7 +19229,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolgreat { get { @@ -19219,7 +19239,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolmaster { get { @@ -19229,7 +19249,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolultra { get { @@ -19239,7 +19259,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cute { get { @@ -19249,7 +19269,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutegreat { get { @@ -19259,7 +19279,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutemaster { get { @@ -19269,7 +19289,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cuteultra { get { @@ -19279,7 +19299,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smart { get { @@ -19289,7 +19309,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartgreat { get { @@ -19299,7 +19319,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartmaster { get { @@ -19309,7 +19329,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartultra { get { @@ -19319,7 +19339,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4tough { get { @@ -19329,7 +19349,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughgreat { get { @@ -19339,7 +19359,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughmaster { get { @@ -19349,7 +19369,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughultra { get { @@ -19359,7 +19379,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeous { get { @@ -19369,7 +19389,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeousroyal { get { @@ -19379,7 +19399,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonlegend { get { @@ -19389,7 +19409,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmasterbeauty { get { @@ -19399,7 +19419,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercleverness { get { @@ -19409,7 +19429,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercoolness { get { @@ -19419,7 +19439,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercuteness { get { @@ -19429,7 +19449,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastertoughness { get { @@ -19439,7 +19459,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonnational { get { @@ -19449,7 +19469,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonpremier { get { @@ -19459,7 +19479,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrecord { get { @@ -19469,7 +19489,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrelax { get { @@ -19479,7 +19499,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonroyal { get { @@ -19489,7 +19509,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonshock { get { @@ -19499,7 +19519,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsmile { get { @@ -19509,7 +19529,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsnooze { get { @@ -19519,7 +19539,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsouvenir { get { @@ -19529,7 +19549,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonspecial { get { @@ -19539,7 +19559,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbontraining { get { @@ -19549,7 +19569,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonvictory { get { @@ -19559,7 +19579,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwinning { get { @@ -19569,7 +19589,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwishing { get { @@ -19579,7 +19599,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonworld { get { @@ -19589,7 +19609,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap savePKM { get { @@ -19599,7 +19619,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap saveSAV { get { @@ -19609,7 +19629,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap settings { get { @@ -19619,7 +19639,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a If you are having issues viewing certain symbols/text: Options -> Unicode + /// Looks up a localized string similar to If you are having issues viewing certain symbols/text: Options -> Unicode /// ///// Main Window /// @@ -19639,7 +19659,7 @@ namespace PKHeX.Core.Properties { ///Control + Click on... ///- Species: Import Showdown/Smogon set from Clipboard. ///- Nickname/OT box: Bring up the ingame-special characters. - ///- Individual [resto de la cadena truncado]";. + ///- Individual [rest of string was truncated]";. /// public static string shortcuts { get { @@ -19648,7 +19668,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap showdown { get { @@ -19658,7 +19678,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel { get { @@ -19668,7 +19688,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel1 { get { @@ -19678,7 +19698,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDrag { get { @@ -19688,7 +19708,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet { get { @@ -19698,7 +19718,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet1 { get { @@ -19708,7 +19728,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans { get { @@ -19718,7 +19738,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans1 { get { @@ -19728,7 +19748,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView { get { @@ -19738,7 +19758,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView1 { get { @@ -19748,7 +19768,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,東京都,Tokyo,Tokyo,Tokio,Tokyo,Tokio,东京都,도쿄 도, ///003,北海道,Hokkaido,Hokkaido,Hokkaido,Hokkaido,Hokaido,北海道,홋카이도, @@ -19757,7 +19777,7 @@ namespace PKHeX.Core.Properties { ///006,宮城県,Miyagi,Miyagi,Miyagi,Miyagi,Miyagi,宫城县,미야기 현, ///007,秋田県,Akita,Akita,Akita,Akita,Akita,秋田县,아키타 현, ///008,山形県,Yamagata,Yamagata,Yamagata,Yamagata,Yamagata,山形县,야마가타 현, - ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [resto de la cadena truncado]";. + ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [rest of string was truncated]";. /// public static string sr_001 { get { @@ -19766,7 +19786,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라,. /// @@ -19777,14 +19797,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・ジョン,Saint John,Saint-Jean,Saint John's,Saint John,Saint John,圣约翰区,세인트존, ///003,バーブーダ島,Barbuda,Barbuda,Barbuda,Barbuda,Barbuda,巴布达岛,바부다, ///004,セント・ジョージ,Saint George,Saint-Georges,Saint George,Saint George,Saint George,圣乔治区,세인트조지, ///005,セント・メアリー,Saint Mary,Sainte-Marie,Saint Mary,Saint Mary,Saint Mary,圣玛丽区,세인트메리, ///006,セント・ポール,Saint Paul,Saint-Paul,Saint Paul,Saint Paul,Saint Paul,圣保罗区,세인트폴, - ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [resto de la cadena truncado]";. + ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [rest of string was truncated]";. /// public static string sr_009 { get { @@ -19793,14 +19813,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,特別区,Distrito Federal,District Fédéral,Autonome Stadt Buenos Aires,Capitale Federale,Ciudad de Buenos Aires,联邦首都区,아르헨티나 연방구, ///003,ブエノスアイレス州,Buenos Aires,Buenos Aires,Buenos Aires,Buenos Aires,Provincia de Buenos Aires,布宜诺斯艾利斯省,부에노스아이레스 주, ///004,カタマルカ州,Catamarca,Catamarca,Catamarca,Catamarca,Catamarca,卡塔马卡省,카타마르카 주, ///005,チャコ州,Chaco,Chaco,Chaco,Chaco,Chaco,查科省,차코 주, ///006,チュブト州,Chubut,Chubut,Chubut,Chubut,Chubut,丘布特省,추부트 주, - ///007,コルドバ州,Córdoba,Córdoba [resto de la cadena truncado]";. + ///007,コルドバ州,Córdoba,Córdoba [rest of string was truncated]";. /// public static string sr_010 { get { @@ -19809,7 +19829,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바,. /// @@ -19820,7 +19840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마,. /// @@ -19831,7 +19851,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스,. /// @@ -19842,7 +19862,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,カヨー州,Cayo,Cayo,Cayo,Cayo,Cayo,卡约区,카요 주, ///003,ベリーズ州,Belize,Belize,Belize,Belize,Belice,伯利兹城,벨리즈 주, @@ -19858,7 +19878,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ラパス県,La Paz,La Paz,La Paz,La Paz,La Paz,拉巴斯省,라파스 주, ///003,チュキサカ県,Chuquisaca,Chuquisaca,Chuquisaca,Chuquisaca,Chuquisaca,丘基萨卡省,추키사카 주, @@ -19867,7 +19887,7 @@ namespace PKHeX.Core.Properties { ///006,オルロ県,Oruro,Oruro,Oruro,Oruro,Oruro,奥鲁罗省,오루로 주, ///007,パンド県,Pando,Pando,Pando,Pando,Pando,潘多省,판도 주, ///008,ポトシ県,Potosí,Potosí,Potosí,Potosí,Potosí,波托西省,포토시 주, - ///009,サンタ・クルス県,Santa Cruz [resto de la cadena truncado]";. + ///009,サンタ・クルス県,Santa Cruz [rest of string was truncated]";. /// public static string sr_015 { get { @@ -19876,7 +19896,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・フェデラル州,Distrito Federal,District Fédéral,Distrito Federal,Distretto Federale,Distrito Federal,联邦区,브라질 연방구, ///003,アクレ州,Acre,Acre,Acre,Acre,Acre,阿克里州,아크리 주, @@ -19884,7 +19904,7 @@ namespace PKHeX.Core.Properties { ///005,アマパー州,Amapá,Amapá,Amapá,Amapá,Amapá,阿马帕州,아마파 주, ///006,アマゾナス州,Amazonas,Amazonas,Amazonas,Amazonas,Amazonas,亚马孙州,아마조나스 주, ///007,バイア州,Bahia,Bahia,Bahia,Bahia,Bahía,巴伊亚州,바이아 주, - ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [resto de la cadena truncado]";. + ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [rest of string was truncated]";. /// public static string sr_016 { get { @@ -19893,7 +19913,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,英領ヴァージン諸島,British Virgin Islands,Îles Vierges britanniques,Britische Jungferninseln,Isole Vergini Britanniche,Islas Vírgenes Británicas,英属维尔京群岛,영국령 버진아일랜드,. /// @@ -19904,14 +19924,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,オンタリオ州,Ontario,Ontario,Ontario,Ontario,Ontario,安大略省,온타리오 주, ///003,アルバータ州,Alberta,Alberta,Alberta,Alberta,Alberta,艾伯塔省,앨버타 주, ///004,ブリティッシュ・コロンビア州,British Columbia,Colombie-Britannique,Britisch-Kolumbien,Columbia Britannica,Columbia Británica,不列颠哥伦比亚省,브리티시컬럼비아 주, ///005,マニトバ州,Manitoba,Manitoba,Manitoba,Manitoba,Manitoba,马尼托巴省,매니토바 주, ///006,ニュー・ブランズウィック州,New Brunswick,Nouveau-Brunswick,Neubraunschweig,Nuovo Brunswick,Nuevo Brunswick,新不伦瑞克省,뉴브런즈윅 주, - ///00 [resto de la cadena truncado]";. + ///00 [rest of string was truncated]";. /// public static string sr_018 { get { @@ -19920,7 +19940,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ケイマン諸島,Cayman Islands,Îles Caïmans,Kaimaninseln,Isole Cayman,Islas Caimán,开曼群岛,케이맨 제도,. /// @@ -19931,11 +19951,11 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,レジョン・メトロポリタナ州,Región Metropolitana,Région Métropolitaine de Santiago,Región Metropolitana,Regione Metropolitana di Santiago,Región Metropolitana,圣地亚哥首都区,산티아고 수도주, ///003,バルパライソ州,Valparaíso,Valparaiso,Valparaíso (Region V),Valparaíso,Valparaíso,瓦尔帕莱索大区,발파라이소 주, - ///004,アイセン・デル・G・カルロス・イバニェス・デル・カンポ州,Aisén del General Carlos Ibáñez del Campo,Aisén del General Carlos Ibáñez del Campo,Aisén (Region XI),Aisén del General Carlos Ibáñez del Campo,Aisén del Ge [resto de la cadena truncado]";. + ///004,アイセン・デル・G・カルロス・イバニェス・デル・カンポ州,Aisén del General Carlos Ibáñez del Campo,Aisén del General Carlos Ibáñez del Campo,Aisén (Region XI),Aisén del General Carlos Ibáñez del Campo,Aisén del Ge [rest of string was truncated]";. /// public static string sr_020 { get { @@ -19944,14 +19964,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・キャピタル,Distrito Capital,District Capital de Santa Fe de Bogotá,Bogotá D.C.,Distretto Capitale,Distrito Capital,波哥大首都区,콜롬비아 수도주, ///003,クンディナマルカ県,Cundinamarca,Cundinamarca,Cundinamarca,Cundinamarca,Cundinamarca,昆迪纳马卡省,쿤디나마르카 주, ///004,アマソナス県,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙省,아마소나스 주, ///005,アンティオキア県,Antioquia,Antioquia,Antioquia,Antioquia,Antioquia,安提奥基亚省,안티오키아 주, ///006,アラウカ県,Arauca,Arauca,Arauca,Arauca,Arauca,阿劳卡省,아라우카 주, - ///007,アトラン [resto de la cadena truncado]";. + ///007,アトラン [rest of string was truncated]";. /// public static string sr_021 { get { @@ -19960,7 +19980,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,サン・ホセ州,San José,San José,San José,San José,San José,圣何塞省,산호세 주, ///003,アラフエラ州,Alajuela,Alajuela,Alajuela,Alajuela,Alajuela,阿拉胡埃拉省,알라후엘라 주, @@ -19968,7 +19988,7 @@ namespace PKHeX.Core.Properties { ///005,グアナカステ州,Guanacaste,Guanacaste,Guanacaste,Guanacaste,Guanacaste,瓜纳卡斯特省,과나카스테 주, ///006,エレディア州,Heredia,Heredia,Heredia,Heredia,Heredia,埃雷迪亚省,에레디아 주, ///007,リモン州,Limón,Limón,Limón,Limón,Limón,利蒙省,리몬 주, - ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [resto de la cadena truncado]";. + ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [rest of string was truncated]";. /// public static string sr_022 { get { @@ -19977,7 +19997,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ドミニカ国,Dominica,Dominique,Dominica,Dominica,Dominica,多米尼克,도미니카 연방,. /// @@ -19988,7 +20008,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・ナショナル首都圏,Distrito Nacional,District National,Distrito Nacional,Distretto Nazionale,Distrito Nacional,国家区,도미니카 행정구, ///003,アスア,Azua,Azua,Azua,Azua,Azua,阿苏阿省,아수아, @@ -19996,7 +20016,7 @@ namespace PKHeX.Core.Properties { ///005,バラオナ,Barahona,Barahona,Barahona,Barahona,Barahona,巴拉奥纳省,바라오나, ///006,ダハボン,Dajabón,Dajabón,Dajabón,Dajabón,Dajabón,达哈朋省,다하본, ///007,ドゥアルテ,Duarte,Duarte,Duarte,Duarte,Duarte,杜华德省,두아르테, - ///008,エスパイジャト,Espaillat,Espaillat,Espa [resto de la cadena truncado]";. + ///008,エスパイジャト,Espaillat,Espaillat,Espa [rest of string was truncated]";. /// public static string sr_024 { get { @@ -20005,7 +20025,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ピチンチャ,Pichincha,Pichincha,Pichincha,Pichincha,Pichincha,皮钦查省,피친차, ///003,ガラパゴス,Galápagos,Galápagos,Galapagosinseln,Galápagos,Galápagos,加拉帕戈斯省,갈라파고스, @@ -20014,7 +20034,7 @@ namespace PKHeX.Core.Properties { ///006,カニャル,Cañar,Cañar,Cañar,Cañar,Cañar,卡尼亚尔省,카냐르, ///007,カルチ,Carchi,Carchi,Carchi,Carchi,Carchi,卡尔奇省,카르치, ///008,チンボラソ,Chimborazo,Chimborazo,Chimborazo,Chimborazo,Chimborazo,钦博拉索省,침보라소, - ///009, [resto de la cadena truncado]";. + ///009, [rest of string was truncated]";. /// public static string sr_025 { get { @@ -20023,14 +20043,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,サン・サルバドル県,San Salvador,San Salvador,San Salvador,San Salvador,San Salvador,圣萨尔瓦多省,산살바도르 주, ///003,アワチャパン県,Ahuachapán,Ahuachapán,Ahuachapán,Ahuachapán,Ahuachapán,阿瓦查潘省,아우아차판 주, ///004,カバニャス県,Cabañas,Cabañas,Cabañas,Cabañas,Cabañas,卡瓦尼亚斯省,카바냐스 주, ///005,チャラテナンゴ県,Chalatenango,Chalatenango,Chalatenango,Chalatenango,Chalatenango,查拉特南戈省,찰라테낭고 주, ///006,クスカトラン県,Cuscatlán,Cuscatlán,Cuscatlán,Cuscatlán,Cuscatlán,库斯卡特兰省,쿠스카틀란 주, - ///007,ラ・リベルター県,La Libertad,La Liber [resto de la cadena truncado]";. + ///007,ラ・リベルター県,La Libertad,La Liber [rest of string was truncated]";. /// public static string sr_026 { get { @@ -20039,7 +20059,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,フランス領ギアナ,French Guiana,Guyane,Französisch-Guyana,Guyana Francese,Guayana Francesa,法属圭亚那,프랑스령 기아나,. /// @@ -20050,7 +20070,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グレナダ,Grenada,Grenade,Grenada,Grenada,Granada,格林纳达,그레나다,. /// @@ -20061,7 +20081,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グアドループ,Guadeloupe,Guadeloupe,Guadeloupe,Guadalupa,Guadalupe,瓜德罗普,과들루프,. /// @@ -20072,14 +20092,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,グアテマラ県,Guatemala,Guatemala,Guatemala,Guatemala,Guatemala,危地马拉省,과테말라 주, ///003,アルタ・べラパス県,Alta Verapaz,Alta Verapaz,Alta Verapaz,Alta Verapaz,Alta Verapaz,上韦拉帕斯省,알타베라파스 주, ///004,バハ・べラパス県,Baja Verapaz,Baja Verapaz,Baja Verapaz,Baja Verapaz,Baja Verapaz,下韦拉帕斯省,바하베라파스 주, ///005,チマルテナンゴ県,Chimaltenango,Chimaltenango,Chimaltenango,Chimaltenango,Chimaltenango,奇马尔特南戈省,치말테낭고 주, ///006,チキムラ県,Chiquimula,Chiquimula,Chiquimula,Chiquimula,Chiquimula,奇基穆拉省,치키물라 주, - ///007 [resto de la cadena truncado]";. + ///007 [rest of string was truncated]";. /// public static string sr_030 { get { @@ -20088,12 +20108,12 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,デメララ・マハイカ州,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,德梅拉拉-马海卡区,데메라라-마하이카 주, ///003,バリマ・ワイニ州,Barima-Waini,Barima-Waini,Barima-Waini,Barima-Waini,Barima-Waini,巴里马-瓦伊尼区,바리마-와이니 주, ///004,クユニ・マザルニ州,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,库尤尼-马扎鲁尼区,쿠유니-마자루니 주, - ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [resto de la cadena truncado]";. + ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [rest of string was truncated]";. /// public static string sr_031 { get { @@ -20102,7 +20122,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,西県,Ouest,Ouest,Ouest,Ovest,Oeste,西部省,서부, ///003,北西県,Nord-Ouest,Nord-Ouest,Nord-Ouest,Nord-Ovest,Noroeste,西北省,북서부, @@ -20111,7 +20131,7 @@ namespace PKHeX.Core.Properties { ///006,湾岸県,Grand'Anse,Grande-Anse,Grand'Anse,Grande Anse,Grand'Anse,大湾省,그랑당스, ///007,北県,Nord,Nord,Nord,Nord,Norte,北部省,북부, ///008,北東県,Nord-Est,Nord-Est,Nord-Est,Nord-Est,Noreste,东北省,북동부, - ///009,南県,Sud,Sud,Sud [resto de la cadena truncado]";. + ///009,南県,Sud,Sud,Sud [rest of string was truncated]";. /// public static string sr_032 { get { @@ -20120,7 +20140,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,フランシスコ・モラサン,Francisco Morazán,Francisco Morazán,Francisco Morazán,Francisco Morazán,Francisco Morazán,弗朗西斯科-莫拉桑省,프란시스코모라산, ///003,アトランティダ,Atlántida,Atlántida,Atlántida,Atlántida,Atlántida,阿特兰蒂达省,아틀란티다, @@ -20128,7 +20148,7 @@ namespace PKHeX.Core.Properties { ///005,コロン,Colón,Colón,Colón,Colón,Colón,科隆省,콜론, ///006,コマヤグア,Comayagua,Comayagua,Comayagua,Comayagua,Comayagua,科马亚瓜省,코마야과, ///007,コパン,Copán,Copán,Copán,Copán,Copán,科潘省,코판, - ///008,コルテス [resto de la cadena truncado]";. + ///008,コルテス [rest of string was truncated]";. /// public static string sr_033 { get { @@ -20137,14 +20157,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・トーマス,Saint Thomas,Saint-Thomas,Saint Thomas,Saint Thomas,Saint Thomas,圣托马斯区,세인트토머스, ///003,クラレンドン,Clarendon,Clarendon,Clarendon,Clarendon,Clarendon,克拉伦登区,클래런던, ///004,ハノーバー,Hanover,Hanover,Hanover,Hanover,Hanover,汉诺威区,해노버, ///005,マンチェスター,Manchester,Manchester,Manchester,Manchester,Manchester,曼彻斯特区,맨체스터, ///006,ポートランド,Portland,Portland,Portland,Portland,Portland,波特兰区,포틀랜드, - ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [resto de la cadena truncado]";. + ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [rest of string was truncated]";. /// public static string sr_034 { get { @@ -20153,7 +20173,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルティニーク,Martinique,Martinique,Martinique,Martinica,Martinica,马提尼克,마르티니크,. /// @@ -20164,12 +20184,12 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・フェデラル連邦区,Distrito Federal,District Fédéral,México D.F.,Distretto Federale,Distrito Federal,联邦区,멕시코 연방구, ///003,アグアスカリエンテス州,Aguascalientes,Aguascalientes,Aguascalientes,Aguascalientes,Aguascalientes,阿瓜斯卡连特斯州,아과스칼리엔테스 주, ///004,バハ・カリフォルニア州,Baja California,Basse-Californie,Niederkalifornien,Bassa California,Baja California,下加里福尼亚州,바하칼리포르니아 주, - ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [resto de la cadena truncado]";. + ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [rest of string was truncated]";. /// public static string sr_036 { get { @@ -20178,7 +20198,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モントセラト,Montserrat,Montserrat,Montserrat,Montserrat,Montserrat,蒙特塞拉特,몬트세랫,. /// @@ -20189,7 +20209,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,オランダ領アンティル,Netherlands Antilles,Antilles néerlandaises,Niederländische Antillen,Antille Olandesi,Antillas Neerlandesas,荷属安的列斯,네덜란드령 앤틸리스,. /// @@ -20200,7 +20220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マナグア,Managua,Managua,Managua,Managua,Managua,马那瓜省,마나과, ///003,ボアコ,Boaco,Boaco,Boaco,Boaco,Boaco,博阿科省,보아코, @@ -20209,7 +20229,7 @@ namespace PKHeX.Core.Properties { ///006,チョンタレス,Chontales,Chontales,Chontales,Chontales,Chontales,琼塔莱斯省,촌탈레스, ///007,エステリ,Estelí,Estelí,Estelí,Estelí,Estelí,埃斯特利省,에스텔리, ///008,グラナダ,Granada,Granada,Granada,Granada,Granada,格拉纳达省,그라나다, - ///009,ヒノテガ,Jinotega,J [resto de la cadena truncado]";. + ///009,ヒノテガ,Jinotega,J [rest of string was truncated]";. /// public static string sr_039 { get { @@ -20218,7 +20238,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パナマ,Panamá,Panama,Panama,Panamá,Panamá,巴拿马省,파나마, ///003,ボカズ・デル・トーロ,Bocas del Toro,Bocas del Toro,Bocas del Toro,Bocas del Toro,Bocas del Toro,博卡斯-德尔托罗省,보카스델토로, @@ -20227,7 +20247,7 @@ namespace PKHeX.Core.Properties { ///006,コロン,Colón,Colón,Colón,Colón,Colón,科隆省,콜론, ///007,ダリエン,Darién,Darién,Darién,Darién,Darién,达连省,다리엔, ///008,エレーラ,Herrera,Herrera,Herrera,Herrera,Herrera,埃雷拉省,에레라, - ///009,ロス・サントス,Los [resto de la cadena truncado]";. + ///009,ロス・サントス,Los [rest of string was truncated]";. /// public static string sr_040 { get { @@ -20236,7 +20256,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セントラル県,Central,Central,Central,Central,Central,中央省,센트랄 주, ///003,アルト・パラナ県,Alto Paraná,Alto Paraná,Alto Paraná,Alto Paraná,Alto Paraná,上巴拉那省,알토파라나 주, @@ -20244,7 +20264,7 @@ namespace PKHeX.Core.Properties { ///005,カアグアスー県,Caaguazú,Caaguazú,Caaguazú,Caaguazú,Caaguazú,卡瓜苏省,카아과수 주, ///006,カアサパ県,Caazapá,Caazapá,Caazapá,Caazapá,Caazapá,卡萨帕省,카아사파 주, ///007,コンセプシオン県,Concepción,Concepción,Concepción,Concepción,Concepción,康塞普西翁省,콘셉시온 주, - ///008,コルディリェラ県,Cord [resto de la cadena truncado]";. + ///008,コルディリェラ県,Cord [rest of string was truncated]";. /// public static string sr_041 { get { @@ -20253,7 +20273,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リマ,Lima,Province de Lima,Lima Metropolitana,Lima,Lima,利马省,리마, ///003,アマソナス,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙省,아마소나스, @@ -20261,7 +20281,7 @@ namespace PKHeX.Core.Properties { ///005,アプリマック,Apurímac,Apurímac,Apurímac,Apurímac,Apurímac,阿普里马克省,아푸리막, ///006,アレキパ,Arequipa,Arequipa,Arequipa,Arequipa,Arequipa,阿雷基帕省,아레키파, ///007,アヤクーチョ,Ayacucho,Ayacucho,Ayacucho,Ayacucho,Ayacucho,阿亚库乔省,아야쿠초, - ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [resto de la cadena truncado]";. + ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [rest of string was truncated]";. /// public static string sr_042 { get { @@ -20270,11 +20290,11 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・ジョージ・バセテール,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,圣乔治巴斯特尔区,세인트조지바스테르, ///003,クライスト・チャーチ・ニコラタウン,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,克赖斯特彻奇尼古拉镇区,크라이스트처치니콜라타운, - ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [resto de la cadena truncado]";. + ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [rest of string was truncated]";. /// public static string sr_043 { get { @@ -20283,7 +20303,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントルシア,St. Lucia,Sainte-Lucie,St. Lucia,Santa Lucia,Santa Lucía,圣卢西亚,세인트루시아,. /// @@ -20294,7 +20314,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントビンセント・グレナディーン,St. Vincent and the Grenadines,Saint-Vincent-et-les-Grenadines,St. Vincent und die Grenadinen,Saint Vincent e Grenadine,San Vicente y las Granadinas,圣文森特和格林纳丁斯,세인트빈센트 그레나딘,. /// @@ -20305,7 +20325,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パラマリボ,Paramaribo,Paramaribo,Paramaribo,Paramaribo,Paramaribo,帕拉马里博市,파라마리보, ///003,ブロコポンド,Brokopondo,Brokopondo,Brokopondo,Brokopondo,Brokopondo,布罗科蓬多区,브로코폰도, @@ -20313,7 +20333,7 @@ namespace PKHeX.Core.Properties { ///005,コロニー,Coronie,Coronie,Coronie,Coronie,Coronie,科罗尼区,코로니, ///006,マロウィネ,Marowijne,Marowijne,Marowijne,Marowijne,Marowijne,马罗韦讷区,마로베이너, ///007,ニッケリー,Nickerie,Nickerie,Nickerie,Nickerie,Nickerie,尼克里区,니케리, - ///008,パラ,Para,P [resto de la cadena truncado]";. + ///008,パラ,Para,P [rest of string was truncated]";. /// public static string sr_046 { get { @@ -20322,7 +20342,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ポート・オブ・スペイン,Port-of-Spain,Port d'Espagne,Port-of-Spain,Port of Spain,Puerto España,西班牙港市,포트오브스페인, ///003,アリマ,Arima,Arima,Arima,Arima,Arima,阿里马市,아리마, @@ -20330,7 +20350,7 @@ namespace PKHeX.Core.Properties { ///005,マジャロ州,Mayaro,Mayaro,Mayaro,Mayaro,Mayaro,马亚罗郡,마야로 주, ///006,ナリバ州,Nariva,Nariva,Nariva,Nariva,Nariva,纳里瓦郡,나리바 주, ///007,セント・アンドリュー州,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,圣安德鲁郡,세인트앤드루 주, - ///008,セント・デビッド州,Saint David,Saint [resto de la cadena truncado]";. + ///008,セント・デビッド州,Saint David,Saint [rest of string was truncated]";. /// public static string sr_047 { get { @@ -20339,7 +20359,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,タークス・カイコス諸島,Turks and Caicos Islands,Îles Turques-et-Caïques,Turks- und Caicosinseln,Isole Turks e Caicos,Islas Turcas y Caicos,特克斯和凯科斯群岛,터크스 케이커스 제도,. /// @@ -20350,14 +20370,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,コロンビア特別区,District of Columbia,Washington (District de Columbia),District of Columbia,Distretto di Columbia,Distrito de Columbia,哥伦比亚特区,컬럼비아 특별구, ///003,アラスカ州,Alaska,Alaska,Alaska,Alaska,Alaska,阿拉斯加州,알래스카 주, ///004,アラバマ州,Alabama,Alabama,Alabama,Alabama,Alabama,亚拉巴马州,앨라배마 주, ///005,アーカンソー州,Arkansas,Arkansas,Arkansas,Arkansas,Arkansas,阿肯色州,아칸소 주, ///006,アリゾナ州,Arizona,Arizona,Arizona,Arizona,Arizona,亚利桑那州,애리조나 주, - ///007,カリフォルニア州,California,Californie,Kaliforn [resto de la cadena truncado]";. + ///007,カリフォルニア州,California,Californie,Kaliforn [rest of string was truncated]";. /// public static string sr_049 { get { @@ -20366,7 +20386,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,モンテビデオ,Montevideo,Montevideo,Montevideo,Montevideo,Montevideo,蒙得维的亚省,몬테비데오, ///003,アルティガス,Artigas,Artigas,Artigas,Artigas,Artigas,阿蒂加斯省,아르티가스, @@ -20374,7 +20394,7 @@ namespace PKHeX.Core.Properties { ///005,セロ・ラルゴ,Cerro Largo,Cerro Largo,Cerro Largo,Cerro Largo,Cerro Largo,塞罗拉尔戈省,세로라르고, ///006,コロニア,Colonia,Colonia,Colonia,Colonia,Colonia,科洛尼亚省,콜로니아, ///007,ドゥラスノ,Durazno,Durazno,Durazno,Durazno,Durazno,杜拉斯诺省,두라스노, - ///008,フロレス,Flores,Flore [resto de la cadena truncado]";. + ///008,フロレス,Flores,Flore [rest of string was truncated]";. /// public static string sr_050 { get { @@ -20383,7 +20403,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,米領バージン諸島,US Virgin Islands,Îles Vierges américaines,Amerikanische Jungferninseln,Isole Vergini Statunitensi,Islas Vírgenes de los EE. UU.,美属维尔京群岛,미국령 버진아일랜드,. /// @@ -20394,7 +20414,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト首都地区,Distrito Federal,District Fédéral,Caracas D.F.,Distretto Capitale,Distrito Capital,首都区,베네수엘라 연방구, ///003,アマソナス,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙边疆区,아마소나스, @@ -20402,7 +20422,7 @@ namespace PKHeX.Core.Properties { ///005,アプレ,Apure,Apure,Apure,Apure,Apure,阿普雷州,아푸레, ///006,アラグア,Aragua,Aragua,Aragua,Aragua,Aragua,阿拉瓜州,아라과, ///007,バリナス,Barinas,Barinas,Barinas,Barinas,Barinas,巴里纳斯州,바리나스, - ///008,ボリーバル,Bolívar,Bolív [resto de la cadena truncado]";. + ///008,ボリーバル,Bolívar,Bolív [rest of string was truncated]";. /// public static string sr_052 { get { @@ -20411,7 +20431,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ティラナ州,Tirana,Tirana,Tirana,Tirana,Tirana,地拉那州,티라나 주, ///003,ベラト州,Berat,Berat,Berat,Berat,Berat,培拉特州,베라트 주, @@ -20420,7 +20440,7 @@ namespace PKHeX.Core.Properties { ///006,エルバサン州,Elbasan,Elbasan,Elbasan,Elbasan,Elbasan,爱尔巴桑州,엘바산 주, ///007,フィエル州,Fier,Fier,Fier,Fier,Fier,费里州,피에르 주, ///008,ギロカストラ州,Gjirokastër,Gjirokastër,Gjirokastra,Argirocastro,Gjirokastra,吉诺卡斯特州,지로카스터르 주, - ///009,コルチャ州,Korçë,Korçë,Korça, [resto de la cadena truncado]";. + ///009,コルチャ州,Korçë,Korçë,Korça, [rest of string was truncated]";. /// public static string sr_064 { get { @@ -20429,11 +20449,11 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,オーストラリア首都特別地域,Australian Capital Territory,Territoire de la capitale australienne,Australisches Hauptstadtterritorium,Territorio della Capitale Australiana,Territorio de la Capital Australiana,澳大利亚首都直辖区,오스트레일리아캐피털테리토리, ///003,ニューサウスウェールズ州,New South Wales,Nouvelle-Galles du Sud,Neusüdwales,Nuovo Galles del Sud,Nueva Gales del Sur,新南威尔士州,뉴사우스웨일스 주, - ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [resto de la cadena truncado]";. + ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [rest of string was truncated]";. /// public static string sr_065 { get { @@ -20442,14 +20462,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ウィーン,Vienna,Vienne,Wien,Vienna,Viena,维也纳州,빈, ///003,ブルゲンラント州,Burgenland,Burgenland,Burgenland,Burgenland,Burgenland,布尔根兰州,부르겐란트 주, ///004,ケルンテン州,Carinthia,Carinthie,Kärnten,Carinzia,Carintia,克恩顿州,케른텐 주, ///005,ニーダー・エスターライヒ州,Lower Austria,Basse-Autriche,Niederösterreich,Bassa Austria,Baja Austria,下奥地利州,니더외스터라이히 주, ///006,オーバー・エスターライヒ州,Upper Austria,Haute-Autriche,Oberösterreich,Alta Austria,Alta Austria,上奥地利州,오버외스터라이히 주, - ///007,ザルツブルク州,Salzburg,Salzbourg,S [resto de la cadena truncado]";. + ///007,ザルツブルク州,Salzburg,Salzbourg,S [rest of string was truncated]";. /// public static string sr_066 { get { @@ -20458,7 +20478,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブリュッセル首都地域圏,Brussels Region,Région de Bruxelles-Capitale,Region Brüssel-Hauptstadt,Regione di Bruxelles,Región de Bruselas-Capital,布鲁塞尔首都大区,브뤼셀 지역, ///003,フランデレン地域圏,Flanders,Région flamande,Flandern,Fiandre,Región de Flandes,佛兰德大区,플랑드르 지역, @@ -20471,11 +20491,11 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ボスニア・ヘルツェゴビナ連邦,Federation of Bosnia and Herzegovina,Fédération de Bosnie-Herzégovine,Föderation Bosnien und Herzegowina,Federazione di Bosnia-Erzegovina,Federación de Bosnia-Herzegovina,波黑联邦,보스니아헤르체고비나 연방, ///003,セルビア人共和国,Republika Srpska,République serbe de Bosnie,Serbische Republik,Repubblica Serba di Bosnia-Erzegovina,República Srpska,塞族共和国,스릅스카 공화국, - ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [resto de la cadena truncado]";. + ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [rest of string was truncated]";. /// public static string sr_068 { get { @@ -20484,7 +20504,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ボツワナ,Botswana,Botswana,Botsuana,Botswana,Botsuana,博茨瓦纳,보츠와나,. /// @@ -20495,7 +20515,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ソフィア市,Sofia City,Sofia (ville),Sofia (Stadt),Sofia,Ciudad de Sofía,索非亚市,소피아, ///003,ソフィア州,Sofia Province,Sofia (oblast),Sofia (Region),Regione di Sofia,Provincia de Sofía,索非亚州,소피아 주, @@ -20503,7 +20523,7 @@ namespace PKHeX.Core.Properties { ///005,プレベン州,Pleven,Pleven,Plewen,Pleven,Pleven,普列文州,플레벤 주, ///006,ビディン州,Vidin,Vidin,Widin,Vidin,Vidin,维丁州,비딘 주, ///007,バルナ州,Varna,Varna,Warna,Varna,Varna,瓦尔纳州,바르나 주, - ///008,ブルガス州, [resto de la cadena truncado]";. + ///008,ブルガス州, [rest of string was truncated]";. /// public static string sr_070 { get { @@ -20512,12 +20532,12 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///006,ザグレブ直轄市,Zagreb,Zagreb (ville),Zagreb (Stadt),Zagabria,Ciudad de Zagreb,萨格勒布市,자그레브, ///007,ビェロヴァル=ビロゴラ郡,Bjelovar-Bilogora County,Bjelovar-Bilogora,Bjelovar-Bilogora,Regione di Bjelovar e della Bilogora,Condado de Bjelovar-Bilogora,别洛瓦尔-比洛戈拉县,벨로바르-빌로고라 군, ///008,ブロド=ポサヴィナ郡,Brod-Posavina County,Brod-Posavina,Brod-Posavina,Regione di Brod e della Posavina,Condado de Brod-Posavina,布罗德-波萨维纳县,브로드-포사비나 군, - ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [resto de la cadena truncado]";. + ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [rest of string was truncated]";. /// public static string sr_071 { get { @@ -20526,7 +20546,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,キプロス,Cyprus,Chypre,Zypern,Cipro,Chipre,塞浦路斯,키프로스,. /// @@ -20537,13 +20557,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,プラハ,Prague,Prague,Prag,Praga,Praga,布拉格市,프라하, ///003,中部ボヘミア地方,Central Bohemian Region,Bohême centrale,Mittelböhmische Region,Boemia Centrale,Región de Bohemia Central,中捷克州,스트르제도체스키 지방, ///004,南ボヘミア地方,South Bohemian Region,Bohême du Sud,Südböhmische Region,Boemia Meridionale,Región de Bohemia Meridional,南捷克州,이호체스키 지방, ///005,プルゼニ地方,Plzeň Region,Région de Pilsen,Region Pilsen,Regione di Plseň,Región de Pilsen,比尔森州,플젠 지방, - ///006,カールスバート地方,Karlovy Vary Regio [resto de la cadena truncado]";. + ///006,カールスバート地方,Karlovy Vary Regio [rest of string was truncated]";. /// public static string sr_073 { get { @@ -20552,13 +20572,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///018,グリーンランド,Greenland,Groenland,Grönland,Groenlandia,Groenlandia,格陵兰,그린란드, ///019,デンマーク首都地域,Capital Region of Denmark,Hovedstaden,Hauptstadtregion,Hovedstaden,Hovedstaden,首都大区,덴마크 수도권 지역, ///020,中央ユラン地域,Central Denmark Region,Jutland-Central,Mitteljütland,Jutland Centrale,Jutlandia Central,中日德兰大区,중부 덴마크 지역, ///021,北ユラン地域,North Denmark Region,Jutland-du-Nord,Nordjütland,Jutland Settentrionale,Jutlandia Septentrional,北日德兰大区,북부 덴마크 지역, - ///022,シェラン地域,Region Zea [resto de la cadena truncado]";. + ///022,シェラン地域,Region Zea [rest of string was truncated]";. /// public static string sr_074 { get { @@ -20567,7 +20587,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エストニア,Estonia,Estonie,Estland,Estonia,Estonia,爱沙尼亚,에스토니아,. /// @@ -20578,13 +20598,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///008,ウーシマー県,Uusimaa / Nyland,Uusimaa,Uusimaa,Uusimaa,Uusimaa,新地区,우시마 주, ///009,ラッピ州,Lappi / Lapland,Laponie,Lappland,Lapponia,Laponia finlandesa,拉普兰省,라피 주, ///010,北ポフヤンマー県,Pohjois-Pohjanmaa / Norra Österbotten,Ostrobotnie du Nord,Nordösterbotten,Ostrobotnia Settentrionale,Ostrobothnia del Norte,北博滕区,북오스트로보트니아 주, ///011,カイヌー県,Kainuu / Kajanaland,Kainuu,Kainuu,Kainuu,Kainuu,凯努区,카이누 주, - ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [resto de la cadena truncado]";. + ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [rest of string was truncated]";. /// public static string sr_076 { get { @@ -20593,14 +20613,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イール・ド・フランス,Île-de-France,Île-de-France,Île-de-France,Île-de-France,Isla de Francia,法兰西岛大区,일드프랑스, ///003,アルザス,Alsace,Alsace,Elsass,Alsazia,Alsacia,阿尔萨斯大区,알자스, ///004,アキテーヌ,Aquitaine,Aquitaine,Aquitanien,Aquitania,Aquitania,阿基坦大区,아키텐, ///005,オーベルニュ,Auvergne,Auvergne,Auvergne,Alvernia,Auvernia,奥弗涅大区,오베르뉴, ///006,バス・ノルマンディ,Lower Normandy,Basse-Normandie,Basse-Normandie,Bassa Normandia,Baja Normandía,下诺曼底大区,바스노르망디, - ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [resto de la cadena truncado]";. + ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [rest of string was truncated]";. /// public static string sr_077 { get { @@ -20609,7 +20629,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルリン,Berlin,Berlin,Berlin,Berlino,Berlín,柏林市,베를린, ///003,ヘッセン州,Hesse,Hesse,Hessen,Assia,Hesse,黑森州,헤센 주, @@ -20617,7 +20637,7 @@ namespace PKHeX.Core.Properties { ///005,バイエルン州,Bavaria,Bavière,Bayern,Baviera,Baviera,巴伐利亚州,바이에른 주, ///006,ブランデンブルク州,Brandenburg,Brandebourg,Brandenburg,Brandeburgo,Brandeburgo,勃兰登堡州,브란덴부르크 주, ///007,ブレーメン,Bremen,Brême,Bremen,Brema,Bremen,不来梅市,브레멘 주, - ///008,ハンブ [resto de la cadena truncado]";. + ///008,ハンブ [rest of string was truncated]";. /// public static string sr_078 { get { @@ -20626,13 +20646,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アッティカ,Attica,Attique,Attika,Attica,Ática,阿提卡大区,아티카, ///003,中央ギリシャ,Central Greece,Grèce-Centrale,Mittelgriechenland,Grecia Centrale,Grecia Central,中希腊大区,중부 그리스, ///004,中央マケドニア,Central Macedonia,Macédoine-Centrale,Zentralmakedonien,Macedonia Centrale,Macedonia Central,中马其顿大区,중부 마케도니아, ///005,クレタ,Crete,Crète,Kreta,Creta,Creta,克里特大区,크레타, - ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [resto de la cadena truncado]";. + ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [rest of string was truncated]";. /// public static string sr_079 { get { @@ -20641,13 +20661,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブダペスト,Budapest,Budapest,Budapest,Budapest,Budapest,布达佩斯市,부다페스트, ///003,バーチ・キシュクン州,Bács-Kiskun County,Bács-Kiskun,Bács-Kiskun,Bács-Kiskun,Bács-Kiskun,巴奇-基什孔州,바치키슈쿤 주, ///004,バラニャ州,Baranya County,Baranya,Baranya,Baranya,Baranya,巴兰尼亚州,버러녀 주, ///005,ベーケーシュ州,Békés County,Békés,Békés,Békés,Békés,贝凯什州,베케시 주, - ///006,ボルショド・アバウーイ・ゼンプレーン州,Borsod-Abaúj-Zemplén County,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,包尔绍德-奥包乌伊-曾普伦州, [resto de la cadena truncado]";. + ///006,ボルショド・アバウーイ・ゼンプレーン州,Borsod-Abaúj-Zemplén County,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,包尔绍德-奥包乌伊-曾普伦州, [rest of string was truncated]";. /// public static string sr_080 { get { @@ -20656,7 +20676,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アイスランド,Iceland,Islande,Island,Islanda,Islandia,冰岛,아이슬란드,. /// @@ -20667,7 +20687,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ダブリン州,Dublin,Dublin,Dublin,Dublino,Dublín,都柏林地区,더블린, ///010,カーロウ州,County Carlow,Carlow,Carlow,Carlow,Carlow,卡洛郡,칼로우 주, @@ -20676,7 +20696,7 @@ namespace PKHeX.Core.Properties { ///013,コーク州,County Cork,Cork,Cork,Cork,Cork,科克郡,코크 주, ///014,ドニゴール州,County Donegal,Donegal,Donegal,Donegal,Donegal,多内加尔郡,도니골 주, ///015,ゴールウェイ州,County Galway,Galway,Galway,Galway,Galway,戈尔韦郡,골웨이 주, - ///016,ケリー州,County Kerry,K [resto de la cadena truncado]";. + ///016,ケリー州,County Kerry,K [rest of string was truncated]";. /// public static string sr_082 { get { @@ -20685,14 +20705,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ラツィオ州,Lazio,Latium,Latium,Lazio,Lacio,拉齐奥大区,라치오 주, ///003,バッレ・ダオスタ州,Aosta Valley,Vallée d'Aoste,Aostatal,Valle d'Aosta,Valle de Aosta,瓦莱-达奥斯塔大区,발레다오스타 주, ///004,ピエモンテ州,Piedmont,Piémont,Piemont,Piemonte,Piamonte,皮埃蒙特大区,피에몬테 주, ///005,リグリア州,Liguria,Ligurie,Ligurien,Liguria,Liguria,利古里亚大区,리구리아 주, ///006,ロンバルディア州,Lombardy,Lombardie,Lombardei,Lombardia,Lombardía,伦巴第大区,롬바르디아 주, - ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [resto de la cadena truncado]";. + ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [rest of string was truncated]";. /// public static string sr_083 { get { @@ -20701,7 +20721,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ラトビア,Latvia,Lettonie,Lettland,Lettonia,Letonia,拉脱维亚,라트비아,. /// @@ -20712,7 +20732,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マセル県,Maseru,Maseru,Maseru,Maseru,Maseru,马塞卢区,마세루 주, ///003,べレア県,Berea,Berea,Berea,Berea,Berea,伯里亚区,베레아 주, @@ -20720,7 +20740,7 @@ namespace PKHeX.Core.Properties { ///005,レリベ県,Leribe,Leribe,Leribe,Leribe,Leribe,莱里贝区,레리베 주, ///006,マフェテング県,Mafeteng,Mafeteng,Mafeteng,Mafeteng,Mafeteng,马费滕区,마페텡 주, ///007,モハーレスフーク県,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,莫哈莱斯胡克区,모할레스후크 주, - ///008,モコトロング県,Mokhotlong,Mok [resto de la cadena truncado]";. + ///008,モコトロング県,Mokhotlong,Mok [rest of string was truncated]";. /// public static string sr_085 { get { @@ -20729,7 +20749,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,リヒテンシュタイン,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,列支敦士登,리히텐슈타인,. /// @@ -20740,14 +20760,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ヴィリニュス州,Vilnius,Vilnius,Vilnius,Vilnius,Condado de Vilna,维尔纽斯县,빌뉴스 주, ///003,アリートゥス州,Alytus,Alytus,Alytus,Alytus,Condado de Alytus,阿利图斯县,알리투스 주, ///004,カウナス州,Kaunas,Kaunas,Kaunas,Kaunas,Condado de Kaunas,考纳斯县,카우나스 주, ///005,クライペダ州,Klaipėda,Klaipėda,Klaipėda,Klaipėda,Condado de Klaipėda,克莱佩达县,클라이페다 주, ///006,マリヤンポレ州,Marijampolė,Marijampolė,Marijampolė,Marijampolė,Condado de Marijampolė,马里扬泊列县,마리얌폴레 주, - ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [resto de la cadena truncado]";. + ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [rest of string was truncated]";. /// public static string sr_087 { get { @@ -20756,7 +20776,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ルクセンブルク,Luxembourg,Luxembourg,Luxemburg,Lussemburgo,Luxemburgo,卢森堡,룩셈부르크,. /// @@ -20767,7 +20787,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マケドニア,Macedonia (Republic of),Macédoine (République),Mazedonien (Republik),Macedonia (Repubblica di),Macedonia (República),马其顿,마케도니아 공화국,. /// @@ -20778,7 +20798,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルタ,Malta,Malte,Malta,Malta,Malta,马耳他,몰타,. /// @@ -20789,7 +20809,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モンテネグロ,Montenegro,Monténégro,Montenegro,Montenegro,Montenegro,黑山,몬테네그로,. /// @@ -20800,7 +20820,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モザンビーク,Mozambique,Mozambique,Mosambik,Mozambico,Mozambique,莫桑比克,모잠비크,. /// @@ -20811,7 +20831,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ナミビア,Namibia,Namibie,Namibia,Namibia,Namibia,纳米比亚,나미비아,. /// @@ -20822,14 +20842,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ノールト・ホラント州,North Holland,Hollande-Septentrionale,Nordholland,Olanda Settentrionale,Holanda Septentrional,北荷兰省,노르트홀란트 주, ///003,ドレンテ州,Drenthe,Drenthe,Drenthe,Drenthe,Drente,德伦特省,드렌터 주, ///004,フレボラント州,Flevoland,Flevoland,Flevoland,Flevoland,Flevoland,弗莱福兰省,플레볼란트 주, ///005,フリースラント州,Friesland,Frise,Friesland,Frisia,Frisia,弗里斯兰省,프리슬란트 주, ///006,ヘルデンラント州,Gelderland,Gueldre,Gelderland,Gheldria,Güeldres,海尔德兰省,헬데를란트 주, - ///007,フローニンゲン州,Groningen,Groningue,Groningen [resto de la cadena truncado]";. + ///007,フローニンゲン州,Groningen,Groningue,Groningen [rest of string was truncated]";. /// public static string sr_094 { get { @@ -20838,14 +20858,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ウェリントン,Wellington,Wellington,Wellington,Wellington,Región de Wellington,惠灵顿大区,웰링턴, ///003,オークランド,Auckland,Auckland,Auckland,Auckland,Región de Auckland,奥克兰大区,오클랜드, ///004,ベイ・オブ・プレンティ,Bay of Plenty,Bay of Plenty,Bay of Plenty,Bay of Plenty,Bahía de Plenty,普伦蒂湾大区,베이오브플렌티, ///005,カンタベリー,Canterbury,Canterbury,Canterbury,Canterbury,Canterbury,坎特伯雷大区,캔터베리, ///006,ダニーデン,Otago,Otago,Otago,Otago,Otago,奥塔戈大区,오타고, - ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [resto de la cadena truncado]";. + ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [rest of string was truncated]";. /// public static string sr_095 { get { @@ -20854,7 +20874,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///007,オスロ,Oslo,Oslo,Oslo,Oslo,Oslo,奥斯陆,오슬로, ///008,アーケシュフース県,Akershus,Akershus,Akershus,Akershus,Akershus,阿克什胡斯郡,아케르스후스 주, @@ -20862,7 +20882,7 @@ namespace PKHeX.Core.Properties { ///010,ブスケルー県,Buskerud,Buskerud,Buskerud,Buskerud,Buskerud,布斯克吕郡,부스케루 주, ///011,フィンマルク県,Finnmark,Finnmark,Finnmark,Finnmark,Finnmark,芬马克郡,핀마르크 주, ///012,ヘードマルク県,Hedmark,Hedmark,Hedmark,Hedmark,Hedmark,海德马克郡,헤드마르크 주, - ///013,ホルダラン県,Hordaland,Hordaland,Ho [resto de la cadena truncado]";. + ///013,ホルダラン県,Hordaland,Hordaland,Ho [rest of string was truncated]";. /// public static string sr_096 { get { @@ -20871,14 +20891,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マゾフシェ,Masovia,Mazovie,Masowien,Masovia,Mazovia,马佐夫舍省,마조프셰, ///003,ドルヌィ・シロンスク,Lower Silesia,Basse-Silésie,Niederschlesien,Bassa Slesia,Baja Silesia,下西里西亚省,하슐레지엔, ///004,クヤヴィ・ポモージェ,Kuyavian-Pomeranian Voivodeship,Cujavie-Poméranie,Kujawien-Pommern,Cuiavia-Pomerania,Cuyavia y Pomerania,库亚瓦滨海省,쿠야비아포메라니아, ///005,ウッジ,Lodz,Łódź,Lodsch,Łódź,Lodz,罗兹省,우치, ///006,ルブリン,Lublin,Lublin,Lublin,Lublino,Lublin,卢布林省,루블린, - ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [resto de la cadena truncado]";. + ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [rest of string was truncated]";. /// public static string sr_097 { get { @@ -20887,7 +20907,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リスボン県,Lisbon,Lisbonne,Lissabon,Lisbona,Distrito de Lisboa,里斯本区,리스보아 주, ///007,マディラ自治州,Madeira,Madère,Madeira,Madera,Madeira,马德拉自治区,마데이라 주, @@ -20895,7 +20915,7 @@ namespace PKHeX.Core.Properties { ///009,アヴェイロ県,Aveiro,Aveiro,Aveiro,Aveiro,Distrito de Aveiro,阿威罗区,아베이루 주, ///010,ベージャ県,Beja,Beja,Beja,Beja,Distrito de Beja,贝雅区,베자 주, ///011,ブラガ県,Braga,Braga,Braga,Braga,Distrito de Braga,布拉加区,브라가 주, - ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [resto de la cadena truncado]";. + ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [rest of string was truncated]";. /// public static string sr_098 { get { @@ -20904,7 +20924,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブカレスト州,Bucharest,Bucarest,Bukarest,Bucarest,Bucarest,布加勒斯特市,부쿠레슈티 주, ///003,アルバ州,Alba,Alba,Alba,Alba,Alba,阿尔巴县,알바 주, @@ -20913,7 +20933,7 @@ namespace PKHeX.Core.Properties { ///006,バカウ州,Bacau,Bacău,Bacău,Bacău,Bacău,巴克乌县,바커우 주, ///007,ビホル州,Bihor,Bihor,Bihor,Bihor,Bihor,比霍尔县,비호르 주, ///008,ビストリツァ・ナサウド州,Bistrita-Nasaud,Bistrita-Năsăud,Bistrita-Năsăud,Bistrita-Năsăud,Bistrita-Năsăud,比斯特里察-讷瑟乌德县,비스트리차너서우드 주, - ///00 [resto de la cadena truncado]";. + ///00 [rest of string was truncated]";. /// public static string sr_099 { get { @@ -20922,13 +20942,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///009,モスクワ市,Moscow City,Moscou (ville),Moskau (Stadt),Mosca,Ciudad de Moscú,莫斯科市,모스크바, ///010,アディゲ共和国,Adygey,Adyguée,Republik Adygeja,Repubblica di Adigezia,República de Adigueya,阿迪格共和国,아디게야 공화국, ///011,アルタイ共和国,Gorno-Altay,Altaï (république),Republik Altai,Repubblica dell'Altaj,República de Altái,阿尔泰共和国,고르노알타이 공화국, ///012,アルタイ地方,Altay,Altaï (kraï),Region Altai,Territorio dell'Altaj,Territorio de Altái,阿尔泰边疆区,알타이 지방, - ///013,アムール州,Amur,Amour,Oblast Amur,Regione [resto de la cadena truncado]";. + ///013,アムール州,Amur,Amour,Oblast Amur,Regione [rest of string was truncated]";. /// public static string sr_100 { get { @@ -20937,7 +20957,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セルビア・コソヴォ,Serbia and Kosovo,Serbie et Kosovo,Serbien und Kosovo,Serbia e Kosovo,Serbia y Kosovo,塞尔维亚及科索沃,세르비아 코소보,. /// @@ -20948,7 +20968,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブラティスラバ,Bratislava,Bratislava,Bratislava,Bratislava,Bratislava,布拉迪斯拉发州,브라티슬라바, ///003,バンスカ・ビストリツァ,Banská Bystrica,Banská Bystrica,Banská Bystrica,Banská Bystrica,Banská Bystrica,班斯卡-比斯特里察州,반스카비스트리차, @@ -20956,7 +20976,7 @@ namespace PKHeX.Core.Properties { ///005,二トラ,Nitra,Nitra,Nitra,Nitra,Nitra,尼特拉州,니트라, ///006,プレショフ,Prešov,Prešov,Prešov,Prešov,Prešov,普雷绍夫州,프레쇼프, ///007,トレンチーン,Trencín,Trenčín,Trenčín,Trenčín,Trenčín,特伦钦州,트렌친, - ///008,トルナバ,Trnava,Trnava,Trna [resto de la cadena truncado]";. + ///008,トルナバ,Trnava,Trnava,Trna [rest of string was truncated]";. /// public static string sr_102 { get { @@ -20965,7 +20985,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スロベニア,Slovenia,Slovénie,Slowenien,Slovenia,Eslovenia,斯洛文尼亚,슬로베니아,. /// @@ -20976,13 +20996,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ハウテン州,Gauteng,Gauteng,Gauteng,Gauteng,Gauteng,豪登省,하우텡 주, ///003,ウェスタン・ケープ州,Western Cape,Cap-Occidental,Westkap,Capo Occidentale,Cabo Occidental,西开普省,웨스턴케이프 주, ///004,ノーザン・ケープ州,Northern Cape,Cap-du-Nord,Nordkap,Capo Settentrionale,Cabo Septentrional,北开普省,노던케이프 주, ///005,イースタン・ケープ州,Eastern Cape,Cap-Oriental,Ostkap,Capo Orientale,Cabo Oriental,东开普省,이스턴케이프 주, - ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [resto de la cadena truncado]";. + ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [rest of string was truncated]";. /// public static string sr_104 { get { @@ -20991,14 +21011,14 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マドリード州,Madrid,Madrid,Madrid,Madrid,Madrid,马德里自治区,마드리드 주, ///003,アンダルシーア州,Andalusia,Andalousie,Andalusien,Andalusia,Andalucía,安达卢西亚自治区,안달루시아 주, ///004,アラゴン州,Aragon,Aragon,Aragonien,Aragona,Aragón,阿拉贡自治区,아라곤 주, ///005,アストゥーリアス州,Principality of Asturias,Asturies,Asturien,Principato delle Asturie,Asturias,阿斯图利亚斯自治区,아스투리아스 주, ///006,バレアーレス諸島,Balearic Islands,Îles Baléares,Balearische Inseln,Baleari,Illes Balears,巴利阿里自治区,발레아레스 제도, - ///007,カナリア諸島,Canary Islands,Î [resto de la cadena truncado]";. + ///007,カナリア諸島,Canary Islands,Î [rest of string was truncated]";. /// public static string sr_105 { get { @@ -21007,7 +21027,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ホホ,Hhohho,Hhohho,Hhohho,Hhohho,Hhohho,霍霍区,호호, ///003,ルボンボ,Lubombo,Lubombo,Lubombo,Lubombo,Lubombo,卢邦博区,로밤바, @@ -21021,13 +21041,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ストックホルム州,Stockholm County,Stockholm,Stockholms län,Stoccolma,Estocolmo,斯德哥尔摩省,스톡홀름 주, ///003,スコーネ州,Skåne County,Skåne,Skåne län,Scania,Escania,斯科耐省,스코네 주, ///004,ヴェストラ・イェータランド州,Västra Götaland County,Västra Götaland,Västra Götalands län,Västra Götaland,Västra Götaland,西约特兰省,베스트라예탈란드 주, ///005,エステルイェトランド州,Östergötland County,Östergötland,Östergötlands län,Östergötland,Östergötland,东约特兰省,외스테르예틀란드 주, - ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [resto de la cadena truncado]";. + ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [rest of string was truncated]";. /// public static string sr_107 { get { @@ -21036,7 +21056,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルン州,Bern,Berne,Bern,Berna,Berna,伯尔尼州,베른 주, ///004,アールガウ州,Aargau,Argovie,Aargau,Argovia,Argovia,阿尔高州,아르가우 주, @@ -21044,7 +21064,7 @@ namespace PKHeX.Core.Properties { ///006,フリブール州,Fribourg,Fribourg,Freiburg,Friburgo,Friburgo,弗里堡州,프리부르 주, ///007,ジュネーヴ州,Geneva,Genève,Genf,Ginevra,Ginebra,日内瓦州,제네바 주, ///008,グラールス州,Glarus,Glaris,Glarus,Glarona,Glaris,格拉鲁斯州,글라루스 주, - ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [resto de la cadena truncado]";. + ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [rest of string was truncated]";. /// public static string sr_108 { get { @@ -21053,7 +21073,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アンカラ県,Ankara,Ankara,Ankara,Ankara,Ankara,安卡拉省,앙카라 주, ///003,イスタンブル県,İstanbul,İstanbul,İstanbul,Istanbul,Estambul,伊斯坦布尔省,이스탄불 주, @@ -21062,7 +21082,7 @@ namespace PKHeX.Core.Properties { ///006,アダナ県,Adana,Adana,Adana,Adana,Adana,阿达纳省,아다나 주, ///007,ガジアンテプ県,Gaziantep,Gaziantep,Gaziantep,Gaziantep,Gaziantep,加济安泰普省,가지안테프 주, ///008,コニヤ県,Konya,Konya,Konya,Konya,Konya,科尼亚省,코니아 주, - ///009,アンタリヤ県,Antalya,Antalya,Anta [resto de la cadena truncado]";. + ///009,アンタリヤ県,Antalya,Antalya,Anta [rest of string was truncated]";. /// public static string sr_109 { get { @@ -21071,7 +21091,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イングランド,England,Angleterre,England,Inghilterra,Inglaterra,英格兰,잉글랜드, ///004,スコットランド,Scotland,Écosse,Schottland,Scozia,Escocia,苏格兰,스코틀랜드, @@ -21085,7 +21105,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ザンビア,Zambia,Zambie,Sambia,Zambia,Zambia,赞比亚,잠비아,. /// @@ -21096,7 +21116,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジンバブエ,Zimbabwe,Zimbabwe,Simbabwe,Zimbabwe,Zimbabue,津巴布韦,짐바브웨,. /// @@ -21107,7 +21127,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アゼルバイジャン,Azerbaijan,Azerbaïdjan,Aserbaidschan,Azerbaigian,Azerbaiyán,阿塞拜疆,아제르바이잔,. /// @@ -21118,7 +21138,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モーリタニア,Mauritania,Mauritanie,Mauretanien,Mauritania,Mauritania,毛里塔尼亚,모리타니,. /// @@ -21129,7 +21149,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マリ,Mali,Mali,Mali,Mali,Malí,马里,말리,. /// @@ -21140,7 +21160,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ニジェール,Niger,Niger,Niger,Niger,Níger,尼日尔,니제르,. /// @@ -21151,7 +21171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,チャド,Chad,Tchad,Tschad,Ciad,Chad,乍得,차드,. /// @@ -21162,7 +21182,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スーダン,Sudan,Soudan,Sudan,Sudan,Sudán,苏丹,수단,. /// @@ -21173,7 +21193,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エリトリア,Eritrea,Érythrée,Eritrea,Eritrea,Eritrea,厄立特里亚,에리트레아,. /// @@ -21184,7 +21204,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブチ,Djibouti,Djibouti,Dschibuti,Gibuti,Yibuti,吉布提,지부티,. /// @@ -21195,7 +21215,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ソマリア,Somalia,Somalie,Somalia,Somalia,Somalia,索马里,소말리아,. /// @@ -21206,7 +21226,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンドラ,Andorra,Andorre,Andorra,Andorra,Andorra,安道尔,안도라,. /// @@ -21217,7 +21237,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブラルタル,Gibraltar,Gibraltar,Gibraltar,Gibilterra,Gibraltar,直布罗陀,지브롤터,. /// @@ -21228,7 +21248,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ガーンジー島,Guernsey,Guernesey,Guernsey,Guernsey,Guernsey,根西,건지 섬,. /// @@ -21239,7 +21259,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マン島,Isle of Man,Île de Man,Isle of Man,Isola di Man,Isla de Man,马恩岛,맨 섬,. /// @@ -21250,7 +21270,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジャージー島,Jersey,Jersey,Jersey,Jersey,Jersey,泽西,저지 섬,. /// @@ -21261,7 +21281,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モナコ,Monaco,Monaco,Monaco,Monaco (Principato di),Mónaco,摩纳哥,모나코,. /// @@ -21272,7 +21292,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,台北市,Taipei City,Taipei,Taipeh,Taipei,Taipéi,-,타이베이, ///003,高雄市,Kaohsiung City,Kaohsiung,Kaohsiung,Kaohsiung,Condado de Kaohsiung,-,가오슝, @@ -21281,7 +21301,7 @@ namespace PKHeX.Core.Properties { ///006,台中市,Taichung City,Taichung,Taichung,Taichung,Taichung,-,타이중, ///007,嘉義市,Chiayi City,Chiayi,Chiayi,Chiayi,Chiayi,-,자이, ///008,台南市,Tainan City,Tainan,Tainan,Tainan,Tainan,-,타이난, - ///009,新北市,New Taipe [resto de la cadena truncado]";. + ///009,新北市,New Taipe [rest of string was truncated]";. /// public static string sr_128 { get { @@ -21290,7 +21310,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ソウル特別市,Seoul-teukbyeolsi,Séoul,Seoul,Seoul,Seúl,首尔特别市,서울특별시, ///003,プサン広域市,Busan-gwangyeoksi,Pusan,Busan,Busan,Busán,釜山广域市,부산광역시, @@ -21298,7 +21318,7 @@ namespace PKHeX.Core.Properties { ///005,インチョン広域市,Incheon-gwangyeoksi,Incheon,Incheon,Incheon,Incheon,仁川广域市,인천광역시, ///006,クァンジュ広域市,Gwangju-gwangyeoksi,Gwangju,Gwangju,Gwangju,Gwangju,光州广域市,광주광역시, ///007,テジョン広域市,Daejeon-gwangyeoksi,Daejeon,Daejeon,Daejeon,Daejeon,大田广域市,대전광역시, - ///008,ウルサン広域市,Ulsan- [resto de la cadena truncado]";. + ///008,ウルサン広域市,Ulsan- [rest of string was truncated]";. /// public static string sr_136 { get { @@ -21307,7 +21327,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ホンコン,Hong Kong,Hong Kong,Hongkong,Hong Kong,Hong Kong,中国 香港,홍콩,. /// @@ -21318,7 +21338,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,シンガポール,Singapore,Singapour,Singapur,Singapore,Singapur,新加坡,싱가포르,. /// @@ -21329,7 +21349,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,クアラ・ルンプール,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,吉隆坡联邦直辖区,쿠알라룸푸르, ///003,ジョホール州,Johor,Johor,Johor,Johor,Johor,柔佛州,조호르 주, @@ -21337,7 +21357,7 @@ namespace PKHeX.Core.Properties { ///005,ケランタン州,Kelantan,Kelantan,Kelantan,Kelantan,Kelantan,吉兰丹州,켈란탄 주, ///006,マラッカ州,Melaka,Malacca,Malakka,Malacca,Melaka,马六甲州,믈라카 주, ///007,ヌグリ・センビラン州,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,森美兰州,느그리슴빌란 주, - ///008,パハン州,Paha [resto de la cadena truncado]";. + ///008,パハン州,Paha [rest of string was truncated]";. /// public static string sr_156 { get { @@ -21346,7 +21366,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,北京市,Beijing,Pékin,Peking,Pechino,Pekín,北京市,베이징, ///003,重慶市,Chongqing,Chongqing,Chongqing,Chongqing,Chongqing,重庆市,충칭, @@ -21355,7 +21375,7 @@ namespace PKHeX.Core.Properties { ///006,安徽省,Anhui,Anhui,Anhui,Anhui,Anhui,安徽省,안후이 성, ///007,福建省,Fujian,Fujian,Fujian,Fujian,Fujian,福建省,푸젠 성, ///008,甘粛省,Gansu,Gansu,Gansu,Gansu,Gansu,甘肃省,간쑤 성, - ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [resto de la cadena truncado]";. + ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [rest of string was truncated]";. /// public static string sr_160 { get { @@ -21364,7 +21384,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アブダビ,Abu Dhabi,Abu Dhabi,Abu Dhabi,Abu Dhabi,Abu Dabi,阿布扎比,아부다비, ///003,アジュマン,Ajman,Ajman,Adschman,Ajman,Ajmán,阿治曼,아지만, @@ -21372,7 +21392,7 @@ namespace PKHeX.Core.Properties { ///005,ラアス・アル・カイマー,Ras al-Khaimah,Ras al-Khaïmah,Ras al-Chaima,Ras al-Khaimah,Ras el Jaima,哈伊马角,라스알카이마, ///006,ドゥバイ,Dubai,Dubaï,Dubai,Dubai,Dubái,迪拜,두바이, ///007,フジャイラー,Al Fujayrah,Fujaïrah,Fudschaira,Fujayrah,Fujaira,富查伊拉,알푸자이라, - ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [resto de la cadena truncado]";. + ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [rest of string was truncated]";. /// public static string sr_168 { get { @@ -21381,13 +21401,13 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,デリー,Delhi,Delhi,Delhi,Delhi,Delhi,德里中央直辖区,델리, ///003,アンダマン・ニコバル諸島,Andaman and Nicobar Islands,Îles Andaman-et-Nicobar,Andamanen und Nikobaren,Andamane e Nicobare,Islas Andamán y Nicobar,安达曼和尼科巴群岛中央直辖区,안다만 니코바르 제도, ///004,アーンドラ・プラデーシュ州,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,安得拉邦,안드라프라데시 주, ///005,アッサム州,Assam,Assam,Assam,Assam,Assam,阿萨姆邦,아삼 주, - ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [resto de la cadena truncado]";. + ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [rest of string was truncated]";. /// public static string sr_169 { get { @@ -21396,7 +21416,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リヤド州,Ar Riyad,Riyad,Riad,Al-Riyad,Riad,利雅得地区,리야드 주, ///003,バーハ州,Al Bahah,Al Bâhah,Baha,Al-Bahah,Al Bahah,巴哈地区,알바하 주, @@ -21405,7 +21425,7 @@ namespace PKHeX.Core.Properties { ///006,カスィーム州,Al Qasim,Al Qasim,Qasim,Al-Qasim,Al Qasim,卡西姆地区,카심 주, ///007,アシール州,'Asir,Assir,Asir,'Asir,Asir,阿西尔地区,아시르 주, ///008,ハーイル州,Ha'il,Haïl,Hail,Ha'il,Hail,哈伊勒地区,하일 주, - ///009,メッカ [resto de la cadena truncado]";. + ///009,メッカ [rest of string was truncated]";. /// public static string sr_174 { get { @@ -21414,7 +21434,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,サンマリノ,San Marino,Saint-Marin,San Marino,San Marino,San Marino,圣马力诺,산마리노,. /// @@ -21425,7 +21445,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バチカン,Vatican City,Vatican,Vatikanstadt,Vaticano (Città del),Vaticano,梵蒂冈,바티칸,. /// @@ -21436,7 +21456,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バーミューダ,Bermuda,Bermudes,Bermuda,Bermude,Bermudas,百慕大,버뮤다,. /// @@ -21447,7 +21467,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap swapBox { get { @@ -21457,7 +21477,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap team { get { @@ -21467,7 +21487,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Duftnote ///Niesel ///Temposchub @@ -21510,7 +21530,7 @@ namespace PKHeX.Core.Properties { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [resto de la cadena truncado]";. + ///Lärmschutz [rest of string was truncated]";. /// public static string text_abilities_de { get { @@ -21519,7 +21539,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Duftnote ///Niesel ///Temposchub @@ -21562,7 +21582,7 @@ namespace PKHeX.Core.Properties { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [resto de la cadena truncado]";. + ///Lärmschutz [rest of string was truncated]";. /// public static string text_Abilities_de1 { get { @@ -21571,7 +21591,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a — + /// Looks up a localized string similar to — ///Stench ///Drizzle ///Speed Boost @@ -21615,7 +21635,7 @@ namespace PKHeX.Core.Properties { ///Water Veil ///Magnet Pull ///Soundproof - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_abilities_en { get { @@ -21624,7 +21644,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a — + /// Looks up a localized string similar to — ///Stench ///Drizzle ///Speed Boost @@ -21668,7 +21688,7 @@ namespace PKHeX.Core.Properties { ///Water Veil ///Magnet Pull ///Soundproof - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_Abilities_en1 { get { @@ -21677,7 +21697,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Hedor ///Llovizna ///Impulso @@ -21719,7 +21739,7 @@ namespace PKHeX.Core.Properties { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [resto de la cadena truncado]";. + ///Imá [rest of string was truncated]";. /// public static string text_abilities_es { get { @@ -21728,7 +21748,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Hedor ///Llovizna ///Impulso @@ -21770,7 +21790,7 @@ namespace PKHeX.Core.Properties { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [resto de la cadena truncado]";. + ///Imá [rest of string was truncated]";. /// public static string text_Abilities_es1 { get { @@ -21779,7 +21799,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Puanteur ///Crachin ///Turbo @@ -21824,7 +21844,7 @@ namespace PKHeX.Core.Properties { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [resto de la cadena truncado]";. + ///Sable Vol [rest of string was truncated]";. /// public static string text_abilities_fr { get { @@ -21833,7 +21853,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Puanteur ///Crachin ///Turbo @@ -21878,7 +21898,7 @@ namespace PKHeX.Core.Properties { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [resto de la cadena truncado]";. + ///Sable Vol [rest of string was truncated]";. /// public static string text_Abilities_fr1 { get { @@ -21887,7 +21907,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Tanfo ///Piovischio ///Acceleratore @@ -21931,7 +21951,7 @@ namespace PKHeX.Core.Properties { ///Idrovelo ///Magnetismo ///Antisuono - ///C [resto de la cadena truncado]";. + ///C [rest of string was truncated]";. /// public static string text_abilities_it { get { @@ -21940,7 +21960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Tanfo ///Piovischio ///Acceleratore @@ -21984,7 +22004,7 @@ namespace PKHeX.Core.Properties { ///Idrovelo ///Magnetismo ///Antisuono - ///C [resto de la cadena truncado]";. + ///C [rest of string was truncated]";. /// public static string text_Abilities_it1 { get { @@ -21993,7 +22013,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///あくしゅう ///あめふらし ///かそく @@ -22068,7 +22088,7 @@ namespace PKHeX.Core.Properties { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [resto de la cadena truncado]";. + ///シェルアーマー [rest of string was truncated]";. /// public static string text_abilities_ja { get { @@ -22077,7 +22097,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///あくしゅう ///あめふらし ///かそく @@ -22152,7 +22172,7 @@ namespace PKHeX.Core.Properties { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [resto de la cadena truncado]";. + ///シェルアーマー [rest of string was truncated]";. /// public static string text_Abilities_ja1 { get { @@ -22161,7 +22181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///악취 ///잔비 ///가속 @@ -22258,7 +22278,7 @@ namespace PKHeX.Core.Properties { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [resto de la cadena truncado]";. + ///스나이퍼 [rest of string was truncated]";. /// public static string text_abilities_ko { get { @@ -22267,7 +22287,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///악취 ///잔비 ///가속 @@ -22364,7 +22384,7 @@ namespace PKHeX.Core.Properties { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [resto de la cadena truncado]";. + ///스나이퍼 [rest of string was truncated]";. /// public static string text_Abilities_ko1 { get { @@ -22373,7 +22393,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///恶臭 ///降雨 ///加速 @@ -22481,7 +22501,7 @@ namespace PKHeX.Core.Properties { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [resto de la cadena truncado]";. + ///预知梦 /// [rest of string was truncated]";. /// public static string text_abilities_zh { get { @@ -22490,7 +22510,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///恶臭 ///降雨 ///加速 @@ -22598,7 +22618,7 @@ namespace PKHeX.Core.Properties { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [resto de la cadena truncado]";. + ///预知梦 /// [rest of string was truncated]";. /// public static string text_Abilities_zh1 { get { @@ -22607,7 +22627,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Mysteriöser Ort ///Entfernter Ort ///\xf000ą\x0001\x0001 von \xf000Ā\x0001\x0000 @@ -22648,7 +22668,7 @@ namespace PKHeX.Core.Properties { ///Wendelberg ///Drachenstiege ///Siegesstraße - ///Tessera [resto de la cadena truncado]";. + ///Tessera [rest of string was truncated]";. /// public static string text_bw2_00000_de { get { @@ -22657,7 +22677,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Mystery Zone ///Faraway place ///\xf000Ā\x0001\x0000’s \xf000ą\x0001\x0001 @@ -22696,7 +22716,7 @@ namespace PKHeX.Core.Properties { ///PWT ///Chargestone Cave ///Twist Mountain - ///Dragonspiral [resto de la cadena truncado]";. + ///Dragonspiral [rest of string was truncated]";. /// public static string text_bw2_00000_en { get { @@ -22705,7 +22725,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Lugar misterioso ///Lugar lejano ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22744,7 +22764,7 @@ namespace PKHeX.Core.Properties { ///PWT ///Cueva Electrorroca ///Monte Tuerca - ///Torre [resto de la cadena truncado]";. + ///Torre [rest of string was truncated]";. /// public static string text_bw2_00000_es { get { @@ -22753,7 +22773,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Endroit Mystérieux ///Endroit Lointain ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22794,7 +22814,7 @@ namespace PKHeX.Core.Properties { ///Mont Foré ///Tour Dragospire ///Route Victoire - ///En [resto de la cadena truncado]";. + ///En [rest of string was truncated]";. /// public static string text_bw2_00000_fr { get { @@ -22803,7 +22823,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Zona Misteriosa ///Luogo Remoto ///\xf000ą\x0001\x0001 di \xf000Ā\x0001\x0000 @@ -22838,7 +22858,7 @@ namespace PKHeX.Core.Properties { ///Cantiere dei Sogni ///Bosco Girandola ///Deserto della Quiete - ///Castello [resto de la cadena truncado]";. + ///Castello [rest of string was truncated]";. /// public static string text_bw2_00000_it { get { @@ -22847,7 +22867,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///なぞのばしょ ///とおいばしょ ///\xf000Ā\x0001\x0000の\xf000ą\x0001\x0001 @@ -22900,7 +22920,7 @@ namespace PKHeX.Core.Properties { ///ブラックシティ ///ホワイトフォレスト ///ユナイテッドタワー - ///ちかすいみゃく [resto de la cadena truncado]";. + ///ちかすいみゃく [rest of string was truncated]";. /// public static string text_bw2_00000_ja { get { @@ -22909,7 +22929,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///수수께끼의 장소 ///먼 곳 ///\xf000Ā\x0001\x0000의 \xf000ą\x0001\x0001 @@ -22977,7 +22997,7 @@ namespace PKHeX.Core.Properties { ///물풍경도개교 ///실린더 브리지 ///빌리지 브리지 - ///원더 [resto de la cadena truncado]";. + ///원더 [rest of string was truncated]";. /// public static string text_bw2_00000_ko { get { @@ -22986,7 +23006,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///神秘的地方 ///遥远的地方 ///\xf000Ā\x0001\x0000的\xf000ą\x0001\x0001 @@ -23064,7 +23084,7 @@ namespace PKHeX.Core.Properties { ///潜入连接 ///雷文市 ///帆巴市 - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_bw2_00000_zh { get { @@ -23073,7 +23093,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Linktausch ///Linktausch ///Kanto @@ -23096,7 +23116,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Link Trade ///Link Trade ///Kanto @@ -23119,7 +23139,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Intercambio ///Intercambio ///Kanto @@ -23142,7 +23162,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Échange Link ///Échange Link ///Kanto @@ -23165,7 +23185,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Scambio in link ///Scambio in link ///Kanto @@ -23188,7 +23208,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///つうしんこうかん ///つうしんこうかん ///カントーちほう @@ -23211,7 +23231,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///통신교환 ///통신교환 ///관동지방 @@ -23234,7 +23254,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///连接交换 ///连接交换 ///关都地区 @@ -23257,7 +23277,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Idyll + /// Looks up a localized string similar to Idyll ///Entfernter Ort ///Pokémon Movie ///Pokémon Film 10 @@ -23296,7 +23316,7 @@ namespace PKHeX.Core.Properties { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///Worlds 2014 [resto de la cadena truncado]";. + ///Worlds 2014 [rest of string was truncated]";. /// public static string text_bw2_40000_de { get { @@ -23305,7 +23325,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lovely place + /// Looks up a localized string similar to Lovely place ///Faraway place ///Pokémon Movie ///Pokémon Movie 10 @@ -23343,7 +23363,7 @@ namespace PKHeX.Core.Properties { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds [resto de la cadena truncado]";. + ///Worlds [rest of string was truncated]";. /// public static string text_bw2_40000_en { get { @@ -23352,7 +23372,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Lugar lejano ///Película Pokémon ///Película PKMN 10 @@ -23382,7 +23402,7 @@ namespace PKHeX.Core.Properties { ///Camp. Mundial 2014 ///Camp. Mundial 2015 ///Camp. Mundial 2016 - ///Camp [resto de la cadena truncado]";. + ///Camp [rest of string was truncated]";. /// public static string text_bw2_40000_es { get { @@ -23391,7 +23411,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 10 @@ -23429,7 +23449,7 @@ namespace PKHeX.Core.Properties { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds 2 [resto de la cadena truncado]";. + ///Worlds 2 [rest of string was truncated]";. /// public static string text_bw2_40000_fr { get { @@ -23438,7 +23458,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Luogo grazioso + /// Looks up a localized string similar to Luogo grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 10 @@ -23477,7 +23497,7 @@ namespace PKHeX.Core.Properties { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///World [resto de la cadena truncado]";. + ///World [rest of string was truncated]";. /// public static string text_bw2_40000_it { get { @@ -23486,7 +23506,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが10 @@ -23538,7 +23558,7 @@ namespace PKHeX.Core.Properties { ///VGE2012 ///VGE2013 ///VGE2014 - ///VGE2 [resto de la cadena truncado]";. + ///VGE2 [rest of string was truncated]";. /// public static string text_bw2_40000_ja { get { @@ -23547,7 +23567,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화10 @@ -23603,7 +23623,7 @@ namespace PKHeX.Core.Properties { ///VGE2016 ///VGE2017 ///VGE2018 - ///VGE2 [resto de la cadena truncado]";. + ///VGE2 [rest of string was truncated]";. /// public static string text_bw2_40000_ko { get { @@ -23612,7 +23632,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 美妙的地方 + /// Looks up a localized string similar to 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影10 @@ -23669,7 +23689,7 @@ namespace PKHeX.Core.Properties { ///VGE2017 ///VGE2018 ///VGE2019 - ///VG [resto de la cadena truncado]";. + ///VG [rest of string was truncated]";. /// public static string text_bw2_40000_zh { get { @@ -23678,7 +23698,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Entfernte Person + /// Looks up a localized string similar to Entfernte Person ///Betreuerpärchen ///Züchter. /// @@ -23689,7 +23709,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Stranger + /// Looks up a localized string similar to Stranger ///Day-Care Couple ///PKMN Breeder. /// @@ -23700,7 +23720,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Persona lejana + /// Looks up a localized string similar to Persona lejana ///Pareja guardería ///Criapokémon. /// @@ -23711,7 +23731,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Personne lointaine + /// Looks up a localized string similar to Personne lointaine ///Couple de la Pension ///Éleveuse. /// @@ -23722,7 +23742,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Persona lontana + /// Looks up a localized string similar to Persona lontana ///Coppia Pensione ///AllevaPKMN. /// @@ -23733,7 +23753,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a とおくにいるひと + /// Looks up a localized string similar to とおくにいるひと ///そだてやふうふ ///トレジャーハンター. /// @@ -23744,7 +23764,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 멀리 있는 사람 + /// Looks up a localized string similar to 멀리 있는 사람 ///키우미집부부 ///브리더. /// @@ -23755,7 +23775,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 远处的人 + /// Looks up a localized string similar to 远处的人 ///饲育屋夫妇 ///寻宝猎人. /// @@ -23766,7 +23786,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Liebt es zu essen. + /// Looks up a localized string similar to Liebt es zu essen. ///Nickt oft ein. ///Schläft gern. ///Macht oft Unordnung. @@ -23790,7 +23810,7 @@ namespace PKHeX.Core.Properties { ///Hinterhältig. ///Äußerst gerissen. ///Ist oft in Gedanken. - ///Sehr pedantis [resto de la cadena truncado]";. + ///Sehr pedantis [rest of string was truncated]";. /// public static string text_character_de { get { @@ -23799,7 +23819,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Loves to eat. + /// Looks up a localized string similar to Loves to eat. ///Takes plenty of siestas. ///Nods off a lot. ///Scatters things often. @@ -23825,7 +23845,7 @@ namespace PKHeX.Core.Properties { ///Often lost in thought. ///Very finicky. ///Strong willed. - ///Somewhat vai [resto de la cadena truncado]";. + ///Somewhat vai [rest of string was truncated]";. /// public static string text_character_en { get { @@ -23834,7 +23854,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Le encanta comer. + /// Looks up a localized string similar to Le encanta comer. ///A menudo se duerme. ///Duerme mucho. ///Suele desordenar cosas. @@ -23855,7 +23875,7 @@ namespace PKHeX.Core.Properties { ///Es un poco payaso. ///Huye rápido. ///Es extremadamente curioso. - ///Le gusta hacer [resto de la cadena truncado]";. + ///Le gusta hacer [rest of string was truncated]";. /// public static string text_character_es { get { @@ -23864,7 +23884,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Adore manger. + /// Looks up a localized string similar to Adore manger. ///S’assoupit souvent. ///Dort beaucoup. ///Éparpille des choses. @@ -23891,7 +23911,7 @@ namespace PKHeX.Core.Properties { ///Très particulier. ///Très volontaire. ///Un peu vaniteux. - ///Esprit [resto de la cadena truncado]";. + ///Esprit [rest of string was truncated]";. /// public static string text_character_fr { get { @@ -23900,7 +23920,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Adora mangiare. + /// Looks up a localized string similar to Adora mangiare. ///Si addormenta spesso. ///Dorme a lungo. ///Lascia cose in giro. @@ -23923,7 +23943,7 @@ namespace PKHeX.Core.Properties { ///È un grande ficcanaso. ///È alquanto vivace. ///È estremamente sagace. - ///Si perde nel suo mo [resto de la cadena truncado]";. + ///Si perde nel suo mo [rest of string was truncated]";. /// public static string text_character_it { get { @@ -23932,7 +23952,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a たべるのが だいすき. + /// Looks up a localized string similar to たべるのが だいすき. ///ひるねを よくする. ///いねむりが おおい. ///ものを よく ちらかす. @@ -23970,7 +23990,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 먹는 것을 제일 좋아함. + /// Looks up a localized string similar to 먹는 것을 제일 좋아함. ///낮잠을 잘 잠. ///말뚝잠이 많음. ///물건을 잘 어지름. @@ -24008,7 +24028,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 非常喜欢吃东西。 + /// Looks up a localized string similar to 非常喜欢吃东西。 ///经常睡午觉。 ///常常打瞌睡。 ///经常乱扔东西。 @@ -24046,7 +24066,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Outskirt Stand (C) Cipher Lab (XD) ///Outskirt Stand (C) ///Phenac City (C) @@ -24065,7 +24085,7 @@ namespace PKHeX.Core.Properties { ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) - ///P [resto de la cadena truncado]";. + ///P [rest of string was truncated]";. /// public static string text_cxd_00000_en { get { @@ -24074,7 +24094,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Kein + /// Looks up a localized string similar to Kein ///Zertrümmerer (HGSS) ///Hohes Graß /// @@ -24108,7 +24128,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24141,7 +24161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Golpe roca (HGSS) ///Hierba Alta /// @@ -24174,7 +24194,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24207,7 +24227,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24240,7 +24260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24273,7 +24293,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24306,7 +24326,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 无 + /// Looks up a localized string similar to 无 ///碎岩 (HGSS) ///高草丛 /// @@ -24339,7 +24359,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -24590,7 +24610,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_de { get { @@ -24599,7 +24619,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -24852,7 +24872,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_en { get { @@ -24861,7 +24881,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Picoreja + /// Looks up a localized string similar to Picoreja /// /// /// @@ -25113,7 +25133,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_forms_es { get { @@ -25122,7 +25142,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Picoreja + /// Looks up a localized string similar to Picoreja /// /// /// @@ -25374,7 +25394,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_Forms_es1 { get { @@ -25383,7 +25403,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -25633,7 +25653,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_fr { get { @@ -25642,7 +25662,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -25892,7 +25912,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_Forms_fr1 { get { @@ -25901,7 +25921,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26152,7 +26172,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_it { get { @@ -26161,7 +26181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26412,7 +26432,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_Forms_it1 { get { @@ -26421,7 +26441,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26672,7 +26692,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_forms_ja { get { @@ -26681,7 +26701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26931,7 +26951,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_ko { get { @@ -26940,7 +26960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 刺刺耳皮丘 + /// Looks up a localized string similar to 刺刺耳皮丘 /// /// /// @@ -27191,7 +27211,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_zh { get { @@ -27200,7 +27220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Saphir ///Rubin ///Smaragd @@ -27247,7 +27267,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Sapphire ///Ruby ///Emerald @@ -27294,7 +27314,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Zafiro ///Rubí ///Esmeralda @@ -27341,7 +27361,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Saphir ///Rubis ///Émeraude @@ -27388,7 +27408,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Zaffiro ///Rubino ///Smeraldo @@ -27435,7 +27455,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///サファイア ///ルビー ///エメラルド @@ -27482,7 +27502,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///사파이어 ///루비 ///에메랄드 @@ -27529,7 +27549,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///蓝宝石 ///红宝石 ///绿宝石 @@ -27576,7 +27596,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a irgendwo + /// Looks up a localized string similar to irgendwo ///in der ersten Stadt ///in [VAR GENDBR(00FF,0506,0000)]dessenderen Zuhause ///im Zuhause eines Freundes @@ -27597,7 +27617,7 @@ namespace PKHeX.Core.Properties { ///in einer Stadt an einem Abhang ///in einer prachtvollen Stadt ///in einer Pokémon-Arena - ///in [resto de la cadena truncado]";. + ///in [rest of string was truncated]";. /// public static string text_genloc_de { get { @@ -27606,7 +27626,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a somewhere + /// Looks up a localized string similar to somewhere ///the first town ///home ///a friend’s house @@ -27640,7 +27660,7 @@ namespace PKHeX.Core.Properties { ///a restaurant ///a high-class restaurant ///a seaside city - ///the inside of a tall bu [resto de la cadena truncado]";. + ///the inside of a tall bu [rest of string was truncated]";. /// public static string text_genloc_en { get { @@ -27649,7 +27669,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a algún lugar + /// Looks up a localized string similar to algún lugar ///el pueblo de partida ///casa ///casa de un amigo @@ -27678,7 +27698,7 @@ namespace PKHeX.Core.Properties { ///un museo ///un estudio de grabación ///una estación - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_genloc_es { get { @@ -27687,7 +27707,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a quelque part + /// Looks up a localized string similar to quelque part ///dans la ville de départ ///dans sa maison ///chez un ami @@ -27710,7 +27730,7 @@ namespace PKHeX.Core.Properties { ///dans une Arène Pokémon ///dans une école ///dans une ville immense - ///dans un imm [resto de la cadena truncado]";. + ///dans un imm [rest of string was truncated]";. /// public static string text_genloc_fr { get { @@ -27719,7 +27739,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a da qualche parte + /// Looks up a localized string similar to da qualche parte ///nella città iniziale ///a casa ///a casa di amici @@ -27744,7 +27764,7 @@ namespace PKHeX.Core.Properties { ///in una grande città ///in un edificio ///in un caffè elegante - ///in un c [resto de la cadena truncado]";. + ///in un c [rest of string was truncated]";. /// public static string text_genloc_it { get { @@ -27753,7 +27773,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a どこか + /// Looks up a localized string similar to どこか ///さいしょのまち ///うち ///ともだちのいえ @@ -27816,7 +27836,7 @@ namespace PKHeX.Core.Properties { ///すいどう ///サファリ ///ひみつきち - ///コンテストライブかい [resto de la cadena truncado]";. + ///コンテストライブかい [rest of string was truncated]";. /// public static string text_genloc_ja { get { @@ -27825,7 +27845,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 어딘가 + /// Looks up a localized string similar to 어딘가 ///최초의 마을 ///집 ///친구의 집 @@ -27904,7 +27924,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 某处 + /// Looks up a localized string similar to 某处 ///第一个城镇 ///家 ///朋友的家 @@ -27983,7 +28003,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///New Bark Town ///Route 29 ///Cherrygrove City @@ -28028,7 +28048,7 @@ namespace PKHeX.Core.Properties { ///Dragon's Den ///Route 45 ///Dark Cave - ///Rout [resto de la cadena truncado]";. + ///Rout [rest of string was truncated]";. /// public static string text_gsc_00000_en { get { @@ -28037,7 +28057,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (Ninguno) + /// Looks up a localized string similar to (Ninguno) ///Pueblo Primavera ///Ruta 29 ///Ciudad Cerezo @@ -28082,7 +28102,7 @@ namespace PKHeX.Core.Properties { ///Guarida Dragón ///Ruta 45 ///Cueva Oscura - ///Rut [resto de la cadena truncado]";. + ///Rut [rest of string was truncated]";. /// public static string text_gsc_00000_es { get { @@ -28091,7 +28111,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///若叶镇 ///29号道路 ///吉花市 @@ -28212,7 +28232,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_gsc_00000_zh { get { @@ -28221,7 +28241,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Mysteriöser Ort + /// Looks up a localized string similar to Mysteriöser Ort ///Zweiblattdorf ///Sandgemme ///Flori @@ -28267,7 +28287,7 @@ namespace PKHeX.Core.Properties { ///Route 228 ///Route 229 ///Route 230 - ///Erze [resto de la cadena truncado]";. + ///Erze [rest of string was truncated]";. /// public static string text_hgss_00000_de { get { @@ -28276,7 +28296,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Mystery Zone + /// Looks up a localized string similar to Mystery Zone ///Twinleaf Town ///Sandgem Town ///Floaroma Town @@ -28316,7 +28336,7 @@ namespace PKHeX.Core.Properties { ///Route 222 ///Route 223 ///Route 224 - ///Route 2 [resto de la cadena truncado]";. + ///Route 2 [rest of string was truncated]";. /// public static string text_hgss_00000_en { get { @@ -28325,7 +28345,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lugar misterioso + /// Looks up a localized string similar to Lugar misterioso ///Pueblo Hojaverde ///Pueblo Arena ///Pueblo Aromaflor @@ -28366,7 +28386,7 @@ namespace PKHeX.Core.Properties { ///Ruta 223 ///Ruta 224 ///Ruta 225 - ///Rut [resto de la cadena truncado]";. + ///Rut [rest of string was truncated]";. /// public static string text_hgss_00000_es { get { @@ -28375,7 +28395,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Endroit mystér. + /// Looks up a localized string similar to Endroit mystér. ///Bonaugure ///Littorella ///Floraville @@ -28420,7 +28440,7 @@ namespace PKHeX.Core.Properties { ///Route 227 ///Route 228 ///Route 229 - ///Chenal [resto de la cadena truncado]";. + ///Chenal [rest of string was truncated]";. /// public static string text_hgss_00000_fr { get { @@ -28429,7 +28449,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Zona Misteriosa + /// Looks up a localized string similar to Zona Misteriosa ///Duefoglie ///Sabbiafine ///Giardinfiorito @@ -28468,7 +28488,7 @@ namespace PKHeX.Core.Properties { ///Percorso 221 ///Percorso 222 ///Percorso 223 - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_hgss_00000_it { get { @@ -28477,7 +28497,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---- + /// Looks up a localized string similar to ---- ///フタバタウン ///マサゴタウン ///ソノオタウン @@ -28531,7 +28551,7 @@ namespace PKHeX.Core.Properties { ///やりのはしら ///だいしつげん ///ズイのいせき - ///チャンピ [resto de la cadena truncado]";. + ///チャンピ [rest of string was truncated]";. /// public static string text_hgss_00000_ja { get { @@ -28540,7 +28560,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 수수께끼의 장소 + /// Looks up a localized string similar to 수수께끼의 장소 ///떡잎마을 ///잔모래마을 ///꽃향기마을 @@ -28610,7 +28630,7 @@ namespace PKHeX.Core.Properties { ///마니아터널 ///자랑의 뒷마당 ///갖철섬 - ///숲의 양옥집 /// [resto de la cadena truncado]";. + ///숲의 양옥집 /// [rest of string was truncated]";. /// public static string text_hgss_00000_ko { get { @@ -28619,7 +28639,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---- + /// Looks up a localized string similar to ---- ///双叶镇 ///真砂镇 ///苑之镇 @@ -28696,7 +28716,7 @@ namespace PKHeX.Core.Properties { ///睿智湖畔 ///隐泉之路 ///心齐湖 - ///立志湖 /// [resto de la cadena truncado]";. + ///立志湖 /// [rest of string was truncated]";. /// public static string text_hgss_00000_zh { get { @@ -28705,7 +28725,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Betreuerpärchen + /// Looks up a localized string similar to Betreuerpärchen ///Linktausch ///Linktausch ///Kanto @@ -28728,7 +28748,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Day-Care Couple + /// Looks up a localized string similar to Day-Care Couple ///Link trade ///Link trade ///Kanto @@ -28751,7 +28771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Pareja guardería + /// Looks up a localized string similar to Pareja guardería ///Intercambio ///Intercambio ///Kanto @@ -28774,7 +28794,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Couple Pension + /// Looks up a localized string similar to Couple Pension ///Echange Link ///Echange Link ///Kanto @@ -28797,7 +28817,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Coppia Pensione + /// Looks up a localized string similar to Coppia Pensione ///Scambio in link ///Scambio in link ///Kanto @@ -28820,7 +28840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a そだてやふうふ + /// Looks up a localized string similar to そだてやふうふ ///つうしんこうかん ///つうしんこうかん ///カント-ちほう @@ -28843,7 +28863,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 키우미집부부 + /// Looks up a localized string similar to 키우미집부부 ///통신교환 ///통신교환 ///관동지방 @@ -28866,7 +28886,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 饲育屋夫妇 + /// Looks up a localized string similar to 饲育屋夫妇 ///连接交换 ///连接交换 ///关都地区 @@ -28889,7 +28909,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Idyll + /// Looks up a localized string similar to Idyll ///Pokémon Ranger ///Entfernter Ort ///Pokémon Movie @@ -28920,7 +28940,7 @@ namespace PKHeX.Core.Properties { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon Festa [resto de la cadena truncado]";. + ///Pokémon Festa [rest of string was truncated]";. /// public static string text_hgss_03000_de { get { @@ -28929,7 +28949,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lovely place + /// Looks up a localized string similar to Lovely place ///Pokémon Ranger ///Faraway place ///Pokémon Movie @@ -28959,7 +28979,7 @@ namespace PKHeX.Core.Properties { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Festa 0 [resto de la cadena truncado]";. + ///Pokémon Festa 0 [rest of string was truncated]";. /// public static string text_hgss_03000_en { get { @@ -28968,7 +28988,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Pokémon Ranger ///Lugar lejano ///Película Pokémon @@ -28998,7 +29018,7 @@ namespace PKHeX.Core.Properties { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Fe [resto de la cadena truncado]";. + ///Pokémon Fe [rest of string was truncated]";. /// public static string text_hgss_03000_es { get { @@ -29007,7 +29027,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Pokémon Ranger ///Endroit lointain ///Film Pokémon @@ -29038,7 +29058,7 @@ namespace PKHeX.Core.Properties { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Po [resto de la cadena truncado]";. + ///Po [rest of string was truncated]";. /// public static string text_hgss_03000_fr { get { @@ -29047,7 +29067,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Luogo grazioso + /// Looks up a localized string similar to Luogo grazioso ///Pokémon Ranger ///Luogo Remoto ///Film Pokémon @@ -29078,7 +29098,7 @@ namespace PKHeX.Core.Properties { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon [resto de la cadena truncado]";. + ///Pokémon [rest of string was truncated]";. /// public static string text_hgss_03000_it { get { @@ -29087,7 +29107,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///ポケモンレンジャ- ///とおいばしょ ///ポケモンえいが @@ -29134,7 +29154,7 @@ namespace PKHeX.Core.Properties { ///ポケパ-ク09 ///ポケパ-ク10 ///ポケパ-ク11 - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_hgss_03000_ja { get { @@ -29143,7 +29163,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///다른 지방 ///먼 곳 ///포켓몬영화 @@ -29201,7 +29221,7 @@ namespace PKHeX.Core.Properties { ///PC후쿠오카 ///PC나고야 ///PC삿포로 - ///PC요코하 [resto de la cadena truncado]";. + ///PC요코하 [rest of string was truncated]";. /// public static string text_hgss_03000_ko { get { @@ -29210,7 +29230,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 美丽的地方 + /// Looks up a localized string similar to 美丽的地方 ///宝可梦保育家 ///遥远的地方 ///宝可梦电影 @@ -29273,7 +29293,7 @@ namespace PKHeX.Core.Properties { ///宝可梦活动 ///宝可梦活动06 ///宝可梦活动07 - ///宝可梦活动08 [resto de la cadena truncado]";. + ///宝可梦活动08 [rest of string was truncated]";. /// public static string text_hgss_03000_zh { get { @@ -29282,7 +29302,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Kein Item + /// Looks up a localized string similar to Kein Item ///Meisterball ///Hyperball ///Superball @@ -29327,7 +29347,7 @@ namespace PKHeX.Core.Properties { ///Lavakeks ///Beerensaft ///Zauberasche - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_items_de { get { @@ -29336,7 +29356,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Kein Item + /// Looks up a localized string similar to Kein Item ///Meisterball ///Hyperball ///Superball @@ -29381,7 +29401,7 @@ namespace PKHeX.Core.Properties { ///Lavakeks ///Beerensaft ///Zauberasche - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_Items_de1 { get { @@ -29390,7 +29410,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Master Ball ///Ultra Ball ///Great Ball @@ -29433,7 +29453,7 @@ namespace PKHeX.Core.Properties { ///Elixir ///Max Elixir ///Lava Cookie - ///Berry Juice [resto de la cadena truncado]";. + ///Berry Juice [rest of string was truncated]";. /// public static string text_items_en { get { @@ -29442,7 +29462,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ninguno + /// Looks up a localized string similar to Ninguno ///Master Ball ///Ultra Ball ///Super Ball @@ -29483,7 +29503,7 @@ namespace PKHeX.Core.Properties { ///Éter ///Éter Máximo ///Elixir - ///Elixir Máximo /// [resto de la cadena truncado]";. + ///Elixir Máximo /// [rest of string was truncated]";. /// public static string text_items_es { get { @@ -29492,7 +29512,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Aucun objet + /// Looks up a localized string similar to Aucun objet ///Master Ball ///Hyper Ball ///Super Ball @@ -29535,7 +29555,7 @@ namespace PKHeX.Core.Properties { ///Élixir ///Max Élixir ///Lava Cookie - ///Jus de Baie [resto de la cadena truncado]";. + ///Jus de Baie [rest of string was truncated]";. /// public static string text_items_fr { get { @@ -29544,7 +29564,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Niente + /// Looks up a localized string similar to Niente ///Master Ball ///Ultra Ball ///Mega Ball @@ -29587,7 +29607,7 @@ namespace PKHeX.Core.Properties { ///Elisir ///Elisir Max ///Lavottino - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_items_it { get { @@ -29596,7 +29616,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a なし + /// Looks up a localized string similar to なし ///マスターボール ///ハイパーボール ///スーパーボール @@ -29655,7 +29675,7 @@ namespace PKHeX.Core.Properties { ///クリティカット ///プラスパワー ///ディフェンダー - ///スピーダー /// [resto de la cadena truncado]";. + ///スピーダー /// [rest of string was truncated]";. /// public static string text_items_ja { get { @@ -29664,7 +29684,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 없음 + /// Looks up a localized string similar to 없음 ///마스터볼 ///하이퍼볼 ///수퍼볼 @@ -29743,7 +29763,7 @@ namespace PKHeX.Core.Properties { ///실버스프레이 ///골드스프레이 ///동굴탈출로프 - ///벌레회피스프레이 /// [resto de la cadena truncado]";. + ///벌레회피스프레이 /// [rest of string was truncated]";. /// public static string text_items_ko { get { @@ -29752,7 +29772,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 无 + /// Looks up a localized string similar to 无 ///大师球 ///高级球 ///超级球 @@ -29840,7 +29860,7 @@ namespace PKHeX.Core.Properties { ///叶之石 ///小蘑菇 ///大蘑菇 - ///珍珠 [resto de la cadena truncado]";. + ///珍珠 [rest of string was truncated]";. /// public static string text_items_zh { get { @@ -29849,7 +29869,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -29897,7 +29917,7 @@ namespace PKHeX.Core.Properties { ///Bike Voucher ///X Accuracy ///Leaf Stone - ///Card Ke [resto de la cadena truncado]";. + ///Card Ke [rest of string was truncated]";. /// public static string text_ItemsG1_en { get { @@ -29906,7 +29926,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ningún + /// Looks up a localized string similar to Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -29950,7 +29970,7 @@ namespace PKHeX.Core.Properties { ///Fósil domo ///Fósil hélix ///Llave secreta - ///? [resto de la cadena truncado]";. + ///? [rest of string was truncated]";. /// public static string text_ItemsG1_es { get { @@ -29959,7 +29979,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (无) + /// Looks up a localized string similar to (无) ///大师球 ///高级球 ///超级球 @@ -30132,7 +30152,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_ItemsG1_zh { get { @@ -30141,7 +30161,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Master Ball ///Ultra Ball ///BrightPowder @@ -30186,7 +30206,7 @@ namespace PKHeX.Core.Properties { ///Super Repel ///Max Repel ///Dire Hit - ///Ter [resto de la cadena truncado]";. + ///Ter [rest of string was truncated]";. /// public static string text_ItemsG2_en { get { @@ -30195,7 +30215,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ningún + /// Looks up a localized string similar to Ningún ///Master Ball ///Ultra Ball ///Polvo brillo @@ -30236,7 +30256,7 @@ namespace PKHeX.Core.Properties { ///Cura Total ///Revivir ///Revivir Máximo - ///Prote [resto de la cadena truncado]";. + ///Prote [rest of string was truncated]";. /// public static string text_ItemsG2_es { get { @@ -30245,7 +30265,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (无) + /// Looks up a localized string similar to (无) ///大师球 ///高级球 ///光粉 @@ -30329,7 +30349,7 @@ namespace PKHeX.Core.Properties { ///毒针 ///王者之证 ///苦涩的果实 - ///薄荷的果 [resto de la cadena truncado]";. + ///薄荷的果 [rest of string was truncated]";. /// public static string text_ItemsG2_zh { get { @@ -30338,7 +30358,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -30385,7 +30405,7 @@ namespace PKHeX.Core.Properties { ///Berry Juice ///Sacred Ash ///Shoal Salt - ///Shoal S [resto de la cadena truncado]";. + ///Shoal S [rest of string was truncated]";. /// public static string text_ItemsG3_en { get { @@ -30394,7 +30414,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ningún + /// Looks up a localized string similar to Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -30438,7 +30458,7 @@ namespace PKHeX.Core.Properties { ///Flauta Roja ///Flauta Negra ///Flauta Blanca - ///Zumo d [resto de la cadena truncado]";. + ///Zumo d [rest of string was truncated]";. /// public static string text_ItemsG3_es { get { @@ -30447,7 +30467,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a (无) + /// Looks up a localized string similar to (无) ///大师球 ///高级球 ///超级球 @@ -30557,7 +30577,7 @@ namespace PKHeX.Core.Properties { ///大珍珠 ///星星沙子 ///星星碎片 - ///金 [resto de la cadena truncado]";. + ///金 [rest of string was truncated]";. /// public static string text_ItemsG3_zh { get { @@ -30566,7 +30586,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Jail Key + /// Looks up a localized string similar to Jail Key ///Elevator Key ///Small Tablet ///F-Disk @@ -30613,7 +30633,7 @@ namespace PKHeX.Core.Properties { ///Excite Scent ///Vivid Scent ///Powerup Part - ///Ein [resto de la cadena truncado]";. + ///Ein [rest of string was truncated]";. /// public static string text_ItemsG3Colosseum_en { get { @@ -30622,7 +30642,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Safe Key + /// Looks up a localized string similar to Safe Key ///Elevator Key ///Bonsly Card ///Machine Part @@ -30665,7 +30685,7 @@ namespace PKHeX.Core.Properties { ///Battle CD 07 ///Battle CD 08 ///Battle CD 09 - ///Battle CD 1 [resto de la cadena truncado]";. + ///Battle CD 1 [rest of string was truncated]";. /// public static string text_ItemsG3XD_en { get { @@ -30674,7 +30694,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///Es erinnert sich daran, ///Es erinnert sich daran, @@ -30694,7 +30714,7 @@ namespace PKHeX.Core.Properties { ///dass es feuchte Augen bekommen hat ///wie sehr es sich amüsiert hat ///wie nervös es war - ///wie wohl es si [resto de la cadena truncado]";. + ///wie wohl es si [rest of string was truncated]";. /// public static string text_memories_de { get { @@ -30703,7 +30723,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///The Pokémon remembers ///The Pokémon remembers @@ -30729,7 +30749,7 @@ namespace PKHeX.Core.Properties { ///it felt sorry ///it got emotional ///it felt nostalgic - ///it had some diffi [resto de la cadena truncado]";. + ///it had some diffi [rest of string was truncated]";. /// public static string text_memories_en { get { @@ -30738,7 +30758,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///El Pokémon recuerda muy vagamente ///El Pokémon recuerda vagamente @@ -30757,7 +30777,7 @@ namespace PKHeX.Core.Properties { ///lo mucho que le agradó ///las lágrimas que le vinieron a los ojos ///la ilusión que le hizo - ///lo nervioso que se pu [resto de la cadena truncado]";. + ///lo nervioso que se pu [rest of string was truncated]";. /// public static string text_memories_es { get { @@ -30766,7 +30786,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///se souvient vaguement que ///se souvient vaguement que @@ -30789,7 +30809,7 @@ namespace PKHeX.Core.Properties { ///c’était apaisant ///ça chatouillait ///ça ne lui a laissé aucun regret - ///ça lui a laissé un [resto de la cadena truncado]";. + ///ça lui a laissé un [rest of string was truncated]";. /// public static string text_memories_fr { get { @@ -30798,7 +30818,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///Il Pokémon ricorda ancora ///Il Pokémon ricorda ancora @@ -30821,7 +30841,7 @@ namespace PKHeX.Core.Properties { ///quella bella sensazione ///che non riusciva a star fermo ///il suo entusiasmo - ///il suo dispiacere [resto de la cadena truncado]";. + ///il suo dispiacere [rest of string was truncated]";. /// public static string text_memories_it { get { @@ -30830,7 +30850,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///おもいで らしいわ ///おもいで らしいわ @@ -30870,7 +30890,7 @@ namespace PKHeX.Core.Properties { ///だれか ///いい おもいでが あるようだけど ちょっと おもいおこせないみたい…… ///{0}は {1}に {2}で であい  モンスターボールを なげられて いっしょに たびする ことになり  {3}ことが {4} - ///{0}は {2}で  タマゴの からをやぶって [resto de la cadena truncado]";. + ///{0}は {2}で  タマゴの からをやぶって [rest of string was truncated]";. /// public static string text_memories_ja { get { @@ -30879,7 +30899,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///추억인 것 같아 ///추억인 것 같아 @@ -30920,7 +30940,7 @@ namespace PKHeX.Core.Properties { ///좋은 추억이 있는 것 같은데 기억이 잘 떠오르지 않는 것 같아... ///{0} {1} {2}에서 만나 몬스터볼에 들어가게 되고 함께 여행하게 되어 {3} 게 {4} ///{0} {2}에서 알의 껍데기를 깨고 나왔을 때 처음 {1} 만나서 {3} 게 {4} - ///{0} {1} {2}에 [resto de la cadena truncado]";. + ///{0} {1} {2}에 [rest of string was truncated]";. /// public static string text_memories_ko { get { @@ -30929,7 +30949,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///宝可梦记得 ///宝可梦记得 @@ -30974,7 +30994,7 @@ namespace PKHeX.Core.Properties { ///{0}在{2}通过通讯交换遇见了{1},他们随后成了朋友。 ///{0}和{1}一起去了宝可梦中心/友好商店,购买了{2}。 ///{0}和{1}一起去了{2}的宝可梦中心并且恢复了它疲惫的身体。 - ///{0}和{1}一起垂钓,之 [resto de la cadena truncado]";. + ///{0}和{1}一起垂钓,之 [rest of string was truncated]";. /// public static string text_memories_zh { get { @@ -30983,7 +31003,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ----- + /// Looks up a localized string similar to ----- ///Pfund ///Karateschlag ///Duplexhieb @@ -31029,7 +31049,7 @@ namespace PKHeX.Core.Properties { ///Silberblick ///Biss ///Heuler - ///Brül [resto de la cadena truncado]";. + ///Brül [rest of string was truncated]";. /// public static string text_moves_de { get { @@ -31038,7 +31058,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ——— + /// Looks up a localized string similar to ——— ///Pound ///Karate Chop ///Double Slap @@ -31088,7 +31108,7 @@ namespace PKHeX.Core.Properties { ///Sing ///Supersonic ///Sonic Boom - ///Dis [resto de la cadena truncado]";. + ///Dis [rest of string was truncated]";. /// public static string text_moves_en { get { @@ -31097,7 +31117,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Destructor ///Golpe Kárate ///Doble Bofetón @@ -31142,7 +31162,7 @@ namespace PKHeX.Core.Properties { ///Pin Misil ///Malicioso ///Mordisco - ///Gr [resto de la cadena truncado]";. + ///Gr [rest of string was truncated]";. /// public static string text_moves_es { get { @@ -31151,7 +31171,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///Écras’Face ///Poing-Karaté ///Torgnoles @@ -31196,7 +31216,7 @@ namespace PKHeX.Core.Properties { ///Dard-Nuée ///Groz’Yeux ///Morsure - ///Rugissement /// [resto de la cadena truncado]";. + ///Rugissement /// [rest of string was truncated]";. /// public static string text_moves_fr { get { @@ -31205,7 +31225,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ----- + /// Looks up a localized string similar to ----- ///Botta ///Colpokarate ///Doppiasberla @@ -31251,7 +31271,7 @@ namespace PKHeX.Core.Properties { ///Fulmisguardo ///Morso ///Ruggito - ///B [resto de la cadena truncado]";. + ///B [rest of string was truncated]";. /// public static string text_moves_it { get { @@ -31260,7 +31280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///はたく ///からてチョップ ///おうふくビンタ @@ -31329,7 +31349,7 @@ namespace PKHeX.Core.Properties { ///じごくぐるま ///けたぐり ///カウンター - ///ちきゅうなげ /// [resto de la cadena truncado]";. + ///ちきゅうなげ /// [rest of string was truncated]";. /// public static string text_moves_ja { get { @@ -31338,7 +31358,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///막치기 ///태권당수 ///연속뺨치기 @@ -31425,7 +31445,7 @@ namespace PKHeX.Core.Properties { ///전기쇼크 ///10만볼트 ///전기자석파 - ///번개 /// [resto de la cadena truncado]";. + ///번개 /// [rest of string was truncated]";. /// public static string text_moves_ko { get { @@ -31434,7 +31454,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///拍击 ///空手劈 ///连环巴掌 @@ -31540,7 +31560,7 @@ namespace PKHeX.Core.Properties { ///刺耳声 ///影子分身 ///自我再生 - ///变硬 /// [resto de la cadena truncado]";. + ///变硬 /// [rest of string was truncated]";. /// public static string text_moves_zh { get { @@ -31549,7 +31569,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Robust + /// Looks up a localized string similar to Robust ///Solo ///Mutig ///Hart @@ -31582,7 +31602,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Hardy + /// Looks up a localized string similar to Hardy ///Lonely ///Brave ///Adamant @@ -31615,7 +31635,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Fuerte + /// Looks up a localized string similar to Fuerte ///Huraña ///Audaz ///Firme @@ -31648,7 +31668,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Hardi + /// Looks up a localized string similar to Hardi ///Solo ///Brave ///Rigide @@ -31681,7 +31701,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ardita + /// Looks up a localized string similar to Ardita ///Schiva ///Audace ///Decisa @@ -31714,7 +31734,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a がんばりや + /// Looks up a localized string similar to がんばりや ///さみしがり ///ゆうかん ///いじっぱり @@ -31747,7 +31767,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 노력 + /// Looks up a localized string similar to 노력 ///외로움 ///용감 ///고집 @@ -31780,7 +31800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 勤奋 + /// Looks up a localized string similar to 勤奋 ///怕寂寞 ///勇敢 ///固执 @@ -31813,7 +31833,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Pokériegelbox + /// Looks up a localized string similar to Pokériegelbox ///Beerenmixer ///Pokériegel geben ///Geben @@ -31832,7 +31852,7 @@ namespace PKHeX.Core.Properties { ///Gib mindestens zwei Beeren in den Mixer. ///[~ 17] ///Du hast [VAR NUM1(0001)] [VAR 01A3(0000)] hergestellt![VAR BE05(0000)][VAR BE05(0001)] - ///Willst du [VAR PK [resto de la cadena truncado]";. + ///Willst du [VAR PK [rest of string was truncated]";. /// public static string text_pokeblock_de { get { @@ -31841,7 +31861,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Pokéblock Case + /// Looks up a localized string similar to Pokéblock Case ///Berry Blender ///Give a Pokéblock ///Give @@ -31861,7 +31881,7 @@ namespace PKHeX.Core.Properties { ///[~ 17] ///You created [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///Give the Pokéblock to [VAR PKNICK(0000)]? - ///An Egg can’t ea [resto de la cadena truncado]";. + ///An Egg can’t ea [rest of string was truncated]";. /// public static string text_pokeblock_en { get { @@ -31870,7 +31890,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Tubo Pokécubos + /// Looks up a localized string similar to Tubo Pokécubos ///Licuabayas ///Dar un Pokécubo ///Dar @@ -31890,7 +31910,7 @@ namespace PKHeX.Core.Properties { ///[~ 17] ///¡Has conseguido [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///¿Quieres darle el Pokécubo a [VAR PKNICK(0000)]? - ///¡Los Huev [resto de la cadena truncado]";. + ///¡Los Huev [rest of string was truncated]";. /// public static string text_pokeblock_es { get { @@ -31899,7 +31919,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Boîte Pokéblocs + /// Looks up a localized string similar to Boîte Pokéblocs ///Mixeur à Baies ///Donner un Pokébloc ///Donner @@ -31919,7 +31939,7 @@ namespace PKHeX.Core.Properties { ///[~ 17] ///Vous avez concocté [VAR NUM1(0001)] [VAR 01A3(0000)] ![VAR BE05(0000)][VAR BE05(0001)] ///Donner un Pokébloc à [VAR PKNICK(0000)] ? - ///Un Œuf [resto de la cadena truncado]";. + ///Un Œuf [rest of string was truncated]";. /// public static string text_pokeblock_fr { get { @@ -31928,7 +31948,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Portapokémelle + /// Looks up a localized string similar to Portapokémelle ///Mixer bacche ///Dai una Pokémella ///Dai @@ -31948,7 +31968,7 @@ namespace PKHeX.Core.Properties { ///[~ 17] ///Hai preparato [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///Vuoi dare la Pokémella a [VAR PKNICK(0000)]? - ///Un Uovo non può mangiare Pokémelle [resto de la cadena truncado]";. + ///Un Uovo non può mangiare Pokémelle [rest of string was truncated]";. /// public static string text_pokeblock_it { get { @@ -31957,7 +31977,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ポロックケース + /// Looks up a localized string similar to ポロックケース ///きのみブレンダー ///ポロックを あげる ///あげる @@ -31988,7 +32008,7 @@ namespace PKHeX.Core.Properties { ///ブレンドスタート ///きのみを もどす ///ポケモンにあげる - ///やめる [resto de la cadena truncado]";. + ///やめる [rest of string was truncated]";. /// public static string text_pokeblock_ja { get { @@ -31997,7 +32017,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 포켓몬스넥케이스 + /// Looks up a localized string similar to 포켓몬스넥케이스 ///나무열매블렌더 ///포켓몬스넥을 준다 ///준다 @@ -32027,7 +32047,7 @@ namespace PKHeX.Core.Properties { ///노랑으로 추려냈습니다 ///블렌드 스타트 ///되돌려 둔다 - ///포켓몬에게 준 [resto de la cadena truncado]";. + ///포켓몬에게 준 [rest of string was truncated]";. /// public static string text_pokeblock_ko { get { @@ -32036,7 +32056,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 宝可方块盒 + /// Looks up a localized string similar to 宝可方块盒 ///树果混合器 ///给与一个宝可方块 ///给与 @@ -32087,7 +32107,7 @@ namespace PKHeX.Core.Properties { ///[~ 48] ///[~ 49] ///[~ 50] - ///[VAR 01A3(0000)] /// [resto de la cadena truncado]";. + ///[VAR 01A3(0000)] /// [rest of string was truncated]";. /// public static string text_pokeblock_zh { get { @@ -32096,7 +32116,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Zucker-Pofflé + /// Looks up a localized string similar to Zucker-Pofflé ///Minz-Pofflé ///Zitrus-Pofflé ///Bitter-Pofflé @@ -32121,7 +32141,7 @@ namespace PKHeX.Core.Properties { ///Frühlingsdeko-Pofflé ///Sommerdeko-Pofflé ///Herbstdeko-Pofflé - ///Winterdeko [resto de la cadena truncado]";. + ///Winterdeko [rest of string was truncated]";. /// public static string text_puff_de { get { @@ -32130,7 +32150,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Sweet Poké Puff + /// Looks up a localized string similar to Sweet Poké Puff ///Mint Poké Puff ///Citrus Poké Puff ///Mocha Poké Puff @@ -32152,7 +32172,7 @@ namespace PKHeX.Core.Properties { ///Deluxe Spice Poké Puff ///Supreme Wish Poké Puff ///Supreme Honor Poké Puff - ///Supreme Spring Pok [resto de la cadena truncado]";. + ///Supreme Spring Pok [rest of string was truncated]";. /// public static string text_puff_en { get { @@ -32161,7 +32181,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Pokélito Dulce + /// Looks up a localized string similar to Pokélito Dulce ///Pokélito Menta ///Pokélito Ácido ///Pokélito Amargo @@ -32184,7 +32204,7 @@ namespace PKHeX.Core.Properties { ///Pokélito de Cumpleaños ///Pokélito de Celebración ///Pokélito Primaveral - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_puff_es { get { @@ -32193,7 +32213,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Pofiterole Sucrée + /// Looks up a localized string similar to Pofiterole Sucrée ///Pofiterole Mentholée ///Pofiterole Aigre ///Pofiterole Amère @@ -32213,7 +32233,7 @@ namespace PKHeX.Core.Properties { ///Pofiterole Deluxe Aigre ///Pofiterole Deluxe Amère ///Pofiterole Deluxe Épicée - ///Pofiterole Anniversaire [resto de la cadena truncado]";. + ///Pofiterole Anniversaire [rest of string was truncated]";. /// public static string text_puff_fr { get { @@ -32222,7 +32242,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Pokébignè dolce + /// Looks up a localized string similar to Pokébignè dolce ///Pokébignè fresco ///Pokébignè agro ///Pokébignè amaro @@ -32244,7 +32264,7 @@ namespace PKHeX.Core.Properties { ///Pokéb. speziato deluxe ///Pokébignè di compleanno ///Pokébignè celebrativo - ///Pokébignè p [resto de la cadena truncado]";. + ///Pokébignè p [rest of string was truncated]";. /// public static string text_puff_it { get { @@ -32253,7 +32273,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a スイートポフレ + /// Looks up a localized string similar to スイートポフレ ///フレッシュポフレ ///サワーポフレ ///ビターポフレ @@ -32287,7 +32307,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 스위트포플레 + /// Looks up a localized string similar to 스위트포플레 ///프레시포플레 ///사워포플레 ///비터포플레 @@ -32321,7 +32341,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 甘甜泡芙 + /// Looks up a localized string similar to 甘甜泡芙 ///清新泡芙 ///酸涩泡芙 ///苦甜泡芙 @@ -32355,7 +32375,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Littleroot Town + /// Looks up a localized string similar to Littleroot Town ///Oldale Town ///Dewford Town ///Lavaridge Town @@ -32398,7 +32418,7 @@ namespace PKHeX.Core.Properties { ///Route 125 ///Route 126 ///Route 127 - ///Route 1 [resto de la cadena truncado]";. + ///Route 1 [rest of string was truncated]";. /// public static string text_rsefrlg_00000_en { get { @@ -32407,7 +32427,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Villa Raíz + /// Looks up a localized string similar to Villa Raíz ///Pueblo Escaso ///Pueblo Azuliza ///Pueblo Lavacalda @@ -32453,7 +32473,7 @@ namespace PKHeX.Core.Properties { ///Ruta 128 ///Ruta 129 ///Ruta 130 - ///Ruta [resto de la cadena truncado]";. + ///Ruta [rest of string was truncated]";. /// public static string text_rsefrlg_00000_es { get { @@ -32462,7 +32482,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 未白镇 + /// Looks up a localized string similar to 未白镇 ///古辰镇 ///武斗镇 ///釜炎镇 @@ -32539,7 +32559,7 @@ namespace PKHeX.Core.Properties { ///热焰小径 ///热焰小径 (2) ///凹凸山道 - ///凹 [resto de la cadena truncado]";. + ///凹 [rest of string was truncated]";. /// public static string text_rsefrlg_00000_zh { get { @@ -32548,7 +32568,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Mysteriöser Ort /// @@ -32596,7 +32616,7 @@ namespace PKHeX.Core.Properties { /// ///Vegetationshöhle ///Prüfungsbereich - ///Vegetati [resto de la cadena truncado]";. + ///Vegetati [rest of string was truncated]";. /// public static string text_sm_00000_de { get { @@ -32605,7 +32625,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a —————— + /// Looks up a localized string similar to —————— /// ///Mystery Zone /// @@ -32657,7 +32677,7 @@ namespace PKHeX.Core.Properties { ///Totem’s Den ///Route 4 /// - ///Rou [resto de la cadena truncado]";. + ///Rou [rest of string was truncated]";. /// public static string text_sm_00000_en { get { @@ -32666,7 +32686,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - /// ///Lugar misterioso /// @@ -32714,7 +32734,7 @@ namespace PKHeX.Core.Properties { /// ///Cueva Sotobosque ///Sala de la Prueba - ///Cueva [resto de la cadena truncado]";. + ///Cueva [rest of string was truncated]";. /// public static string text_sm_00000_es { get { @@ -32723,7 +32743,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Endroit mystérieux /// @@ -32771,7 +32791,7 @@ namespace PKHeX.Core.Properties { /// ///Grotte Verdoyante ///Zone de l’Épreuve - ///Grotte Verdoyant [resto de la cadena truncado]";. + ///Grotte Verdoyant [rest of string was truncated]";. /// public static string text_sm_00000_fr { get { @@ -32780,7 +32800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Zona misteriosa /// @@ -32827,7 +32847,7 @@ namespace PKHeX.Core.Properties { ///Orto delle Bacche /// ///Grotta Sottobosco - ///Luogo dell [resto de la cadena truncado]";. + ///Luogo dell [rest of string was truncated]";. /// public static string text_sm_00000_it { get { @@ -32836,7 +32856,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///なぞのばしょ /// @@ -32918,7 +32938,7 @@ namespace PKHeX.Core.Properties { /// ///[~ 80] /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_sm_00000_ja { get { @@ -32927,7 +32947,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///수수께끼의 장소 /// @@ -33021,7 +33041,7 @@ namespace PKHeX.Core.Properties { /// ///생명의 유적 /// - ///아칼라외 [resto de la cadena truncado]";. + ///아칼라외 [rest of string was truncated]";. /// public static string text_sm_00000_ko { get { @@ -33030,7 +33050,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///神秘的地方 /// @@ -33134,7 +33154,7 @@ namespace PKHeX.Core.Properties { /// ///豪诺豪诺度假地 /// - ///皇家巨蛋 [resto de la cadena truncado]";. + ///皇家巨蛋 [rest of string was truncated]";. /// public static string text_sm_00000_zh { get { @@ -33143,7 +33163,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Link-Tausch + /// Looks up a localized string similar to Link-Tausch ///Link-Tausch ///Kanto-Region ///Johto-Region @@ -33167,7 +33187,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a a Link Trade + /// Looks up a localized string similar to a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -33191,7 +33211,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Intercambio en conexión + /// Looks up a localized string similar to Intercambio en conexión ///Intercambio en conexión ///Kanto ///Johto @@ -33215,7 +33235,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Échanges Link + /// Looks up a localized string similar to Échanges Link ///Échanges Link ///Kanto ///Johto @@ -33239,7 +33259,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Scambio in link + /// Looks up a localized string similar to Scambio in link ///Scambio in link ///Kanto ///Johto @@ -33263,7 +33283,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a つうしんこうかん + /// Looks up a localized string similar to つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -33287,7 +33307,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 통신교환 + /// Looks up a localized string similar to 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -33311,7 +33331,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 连接交换 + /// Looks up a localized string similar to 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -33335,7 +33355,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Netter Ort + /// Looks up a localized string similar to Netter Ort ///Ferner Ort ///Pokémon-Film ///Pokémon-Film 2016 @@ -33361,7 +33381,7 @@ namespace PKHeX.Core.Properties { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS 2018 [resto de la cadena truncado]";. + ///WCS 2018 [rest of string was truncated]";. /// public static string text_sm_40000_de { get { @@ -33370,7 +33390,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a a lovely place + /// Looks up a localized string similar to a lovely place ///a faraway place ///a Pokémon movie ///2016 Pokémon Movie @@ -33394,7 +33414,7 @@ namespace PKHeX.Core.Properties { ///Pokémon Ctr. SKYTREE TOWN ///a Pokémon Store ///a WCS - ///WCS 20 [resto de la cadena truncado]";. + ///WCS 20 [rest of string was truncated]";. /// public static string text_sm_40000_en { get { @@ -33403,7 +33423,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2016 @@ -33425,7 +33445,7 @@ namespace PKHeX.Core.Properties { ///Pokémon Center Hiroshima ///Pokémon Center Kyoto ///Pokémon Ctr. SKYTREE TOWN - ///Pokémon Store [resto de la cadena truncado]";. + ///Pokémon Store [rest of string was truncated]";. /// public static string text_sm_40000_es { get { @@ -33434,7 +33454,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2016 @@ -33460,7 +33480,7 @@ namespace PKHeX.Core.Properties { ///WCS ///WCS 2016 ///WCS 2017 - ///WC [resto de la cadena truncado]";. + ///WC [rest of string was truncated]";. /// public static string text_sm_40000_fr { get { @@ -33469,7 +33489,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Luogo grazioso + /// Looks up a localized string similar to Luogo grazioso ///Luogo remoto ///Film Pokémon ///Film Pokémon 2016 @@ -33495,7 +33515,7 @@ namespace PKHeX.Core.Properties { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS [resto de la cadena truncado]";. + ///WCS [rest of string was truncated]";. /// public static string text_sm_40000_it { get { @@ -33504,7 +33524,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが16 @@ -33558,7 +33578,7 @@ namespace PKHeX.Core.Properties { ///PGL ///ポケモンイベント16 ///ポケモンイベント17 - ///ポケモ [resto de la cadena truncado]";. + ///ポケモ [rest of string was truncated]";. /// public static string text_sm_40000_ja { get { @@ -33567,7 +33587,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화16 @@ -33623,7 +33643,7 @@ namespace PKHeX.Core.Properties { ///포켓몬이벤트17 ///포켓몬이벤트18 ///포켓몬이벤트19 - ///포켓몬이벤 [resto de la cadena truncado]";. + ///포켓몬이벤 [rest of string was truncated]";. /// public static string text_sm_40000_ko { get { @@ -33632,7 +33652,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 美丽的地方 + /// Looks up a localized string similar to 美丽的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影16 @@ -33694,7 +33714,7 @@ namespace PKHeX.Core.Properties { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可梦庆典19 [resto de la cadena truncado]";. + ///宝可梦庆典19 [rest of string was truncated]";. /// public static string text_sm_40000_zh { get { @@ -33703,7 +33723,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ferne Person + /// Looks up a localized string similar to Ferne Person ///Hortleiterinnen ///Schatzsucher ///Dame der Heißen Quellen. @@ -33715,7 +33735,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a a stranger + /// Looks up a localized string similar to a stranger ///Nursery helpers ///a treasure hunter ///an old hot-springs visitor. @@ -33727,7 +33747,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Persona lejana + /// Looks up a localized string similar to Persona lejana ///Cuidados Pokémon ///Buscatesoros ///Anciana del Balneario. @@ -33739,7 +33759,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Personne lointaine + /// Looks up a localized string similar to Personne lointaine ///Responsable de la Garderie ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -33751,7 +33771,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Persona lontana + /// Looks up a localized string similar to Persona lontana ///Ostello Pokémon ///Cercatesori ///Vecchina delle terme. @@ -33763,7 +33783,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a とおくにいるひと + /// Looks up a localized string similar to とおくにいるひと ///あずかりやさん ///トレジャーハンター ///おんせんばあさん. @@ -33775,7 +33795,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 멀리 있는 사람 + /// Looks up a localized string similar to 멀리 있는 사람 ///맡기미집 ///트레져헌터 ///온천할머니. @@ -33787,7 +33807,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 远处的人 + /// Looks up a localized string similar to 远处的人 ///寄放屋 ///寻宝猎人 ///温泉婆婆. @@ -33799,7 +33819,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ei + /// Looks up a localized string similar to Ei ///Bisasam ///Bisaknosp ///Bisaflor @@ -33858,7 +33878,7 @@ namespace PKHeX.Core.Properties { ///Menki ///Rasaff ///Fukano - ///Arka [resto de la cadena truncado]";. + ///Arka [rest of string was truncated]";. /// public static string text_species_de { get { @@ -33867,7 +33887,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Egg + /// Looks up a localized string similar to Egg ///Bulbasaur ///Ivysaur ///Venusaur @@ -33921,7 +33941,7 @@ namespace PKHeX.Core.Properties { ///Dugtrio ///Meowth ///Persian - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_species_en { get { @@ -33930,7 +33950,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Huevo + /// Looks up a localized string similar to Huevo ///Bulbasaur ///Ivysaur ///Venusaur @@ -33983,7 +34003,7 @@ namespace PKHeX.Core.Properties { ///Diglett ///Dugtrio ///Meowth - ///Persian [resto de la cadena truncado]";. + ///Persian [rest of string was truncated]";. /// public static string text_species_es { get { @@ -33992,7 +34012,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Œuf + /// Looks up a localized string similar to Œuf ///Bulbizarre ///Herbizarre ///Florizarre @@ -34042,7 +34062,7 @@ namespace PKHeX.Core.Properties { ///Parasect ///Mimitoss ///Aéromite - ///Taupiqu [resto de la cadena truncado]";. + ///Taupiqu [rest of string was truncated]";. /// public static string text_species_fr { get { @@ -34051,7 +34071,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Uovo + /// Looks up a localized string similar to Uovo ///Bulbasaur ///Ivysaur ///Venusaur @@ -34104,7 +34124,7 @@ namespace PKHeX.Core.Properties { ///Diglett ///Dugtrio ///Meowth - ///Persian /// [resto de la cadena truncado]";. + ///Persian /// [rest of string was truncated]";. /// public static string text_species_it { get { @@ -34113,7 +34133,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a タマゴ + /// Looks up a localized string similar to タマゴ ///フシギダネ ///フシギソウ ///フシギバナ @@ -34192,7 +34212,7 @@ namespace PKHeX.Core.Properties { ///ゴローニャ ///ポニータ ///ギャロップ - ///ヤ [resto de la cadena truncado]";. + ///ヤ [rest of string was truncated]";. /// public static string text_species_ja { get { @@ -34201,7 +34221,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 알 + /// Looks up a localized string similar to 알 ///이상해씨 ///이상해풀 ///이상해꽃 @@ -34303,7 +34323,7 @@ namespace PKHeX.Core.Properties { ///킹크랩 ///찌리리공 ///붐볼 - ///아라리 /// [resto de la cadena truncado]";. + ///아라리 /// [rest of string was truncated]";. /// public static string text_species_ko { get { @@ -34312,7 +34332,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a  + /// Looks up a localized string similar to  /// /// /// @@ -34416,7 +34436,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_species_zh { get { @@ -34425,7 +34445,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 蛋 + /// Looks up a localized string similar to 蛋 ///妙蛙种子 ///妙蛙草 ///妙蛙花 @@ -34529,7 +34549,7 @@ namespace PKHeX.Core.Properties { ///顽皮雷弹 ///蛋蛋 ///椰蛋树 - ///卡拉卡拉 [resto de la cadena truncado]";. + ///卡拉卡拉 [rest of string was truncated]";. /// public static string text_species_zh_alt { get { @@ -34538,7 +34558,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a  + /// Looks up a localized string similar to  /// /// /// @@ -34642,7 +34662,7 @@ namespace PKHeX.Core.Properties { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_species_zh2 { get { @@ -34651,7 +34671,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 蛋 + /// Looks up a localized string similar to 蛋 ///妙蛙種子 ///妙蛙草 ///妙蛙花 @@ -34755,7 +34775,7 @@ namespace PKHeX.Core.Properties { ///頑皮雷彈 ///蛋蛋 ///椰蛋樹 - ///卡拉卡拉 [resto de la cadena truncado]";. + ///卡拉卡拉 [rest of string was truncated]";. /// public static string text_species_zh2_alt { get { @@ -34764,7 +34784,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Probetraining mit Purmel! + /// Looks up a localized string similar to Probetraining mit Purmel! ///Zeig’s Puponcho mit einem Fokusschuss! ///Spezial-Angriffs-Training mit Magnetilo! ///KP-Training mit Wailmer! @@ -34778,7 +34798,7 @@ namespace PKHeX.Core.Properties { ///Tentoxa und die Bit-Ballons! ///Gib Aerodactyl mit Temposchüssen zu denken! ///Zerstöre Georoks Schutzschild! - ///Wehr [resto de la cadena truncado]";. + ///Wehr [rest of string was truncated]";. /// public static string text_supertraining_de { get { @@ -34787,7 +34807,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Practice against Scatterbug! + /// Looks up a localized string similar to Practice against Scatterbug! ///Get Spewpa with an Energy Shot! ///Hone Sp. Atk with Magnemite! ///Raise Your HP with Wailmer! @@ -34803,7 +34823,7 @@ namespace PKHeX.Core.Properties { ///Break Down Graveler’s Barrier! ///Shake Off That Uncanny Magnezone! ///Shoot Back! Get the Giant Wailord! - ///C [resto de la cadena truncado]";. + ///C [rest of string was truncated]";. /// public static string text_supertraining_en { get { @@ -34812,7 +34832,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ¡Practica contra Scatterbug! + /// Looks up a localized string similar to ¡Practica contra Scatterbug! ///¡Tiro con ímpetu contra Spewpa! ///¡Mejora tu Ataque Especial contra Magnemite! ///¡Mejora tus PS contra Wailmer! @@ -34825,7 +34845,7 @@ namespace PKHeX.Core.Properties { ///¡Ráfaga de tiros de Fraxure! ///¡Tentacruel y sus globos de bits! ///¡Dale a Aerodactyl con tiros rápidos! - ///¡Destruye la barrera de Graveler! /// [resto de la cadena truncado]";. + ///¡Destruye la barrera de Graveler! /// [rest of string was truncated]";. /// public static string text_supertraining_es { get { @@ -34834,7 +34854,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Entraînez-vous contre Lépidonille! + /// Looks up a localized string similar to Entraînez-vous contre Lépidonille! ///Tir Volonté sur Pérégrain! ///À l’assaut de Magnéti! ///À l’assaut de Wailmer! @@ -34851,7 +34871,7 @@ namespace PKHeX.Core.Properties { ///Débarrassez-vous de Magnézone! ///Répliquez aux tirs de Wailord! ///Évitez les tirs de Tranchodon! - ///T [resto de la cadena truncado]";. + ///T [rest of string was truncated]";. /// public static string text_supertraining_fr { get { @@ -34860,7 +34880,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Allenamento di prova contro Scatterbug! + /// Looks up a localized string similar to Allenamento di prova contro Scatterbug! ///Sconfiggi Spewpa con un tiro vigoroso! ///Aumenta l’Attacco Speciale con Magnemite! ///Aumenta i PS con Wailmer! @@ -34874,7 +34894,7 @@ namespace PKHeX.Core.Properties { ///Tentacruel e i palloncini Bit! ///Tempesta di tiri Aerodactyl! ///Abbatti la barriera di Graveler! - ///Sbarazzati di [resto de la cadena truncado]";. + ///Sbarazzati di [rest of string was truncated]";. /// public static string text_supertraining_it { get { @@ -34883,7 +34903,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a おためしトレーニング! コフキムシ + /// Looks up a localized string similar to おためしトレーニング! コフキムシ ///コフーライ! きめろ ガッツシュート ///とくこうトレーニング VSコイル ///HPトレーニング VSホエルコ @@ -34911,7 +34931,7 @@ namespace PKHeX.Core.Properties { ///はんげきの こうはんせん! ///そっこうの ぜんはんせん! ///じゅうおう むじん ロングシュート! - ///ぎゃくしゅう [resto de la cadena truncado]";. + ///ぎゃくしゅう [rest of string was truncated]";. /// public static string text_supertraining_ja { get { @@ -34920,7 +34940,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 맛보기트레이닝! 분이벌레 + /// Looks up a localized string similar to 맛보기트레이닝! 분이벌레 ///분떠도리에게 거츠 슛을 날려라! ///특수공격트레이닝 VS 코일 ///HP트레이닝 VS 고래왕자 @@ -34957,7 +34977,7 @@ namespace PKHeX.Core.Properties { ///무쇠팔 강철팔의 협공! ///염동력! 스푼 난무 ///인생역전! 출세 잉어킹 - ///경 [resto de la cadena truncado]";. + ///경 [rest of string was truncated]";. /// public static string text_supertraining_ko { get { @@ -34966,7 +34986,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 试验训练!粉蛹 + /// Looks up a localized string similar to 试验训练!粉蛹 ///粉蝶蛹!精力射门 ///特攻训练 VS小磁怪 ///HP训练 VS吼吼鲸 @@ -35012,7 +35032,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Makuhipsta + /// Looks up a localized string similar to Makuhipsta ///Conec ///Coraso ///Maik @@ -35026,7 +35046,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Makit + /// Looks up a localized string similar to Makit ///Skitit ///Coroso ///Darrell @@ -35040,7 +35060,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Makit + /// Looks up a localized string similar to Makit ///Skitit ///Coroso ///Evelio @@ -35054,7 +35074,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Edmond + /// Looks up a localized string similar to Edmond ///Minetou ///Rosie ///Allan @@ -35068,7 +35088,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Maku + /// Looks up a localized string similar to Maku ///Pucci ///Corsolina ///Marchetto @@ -35082,7 +35102,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ポテマル + /// Looks up a localized string similar to ポテマル ///ベルベル ///モモちゃん ///モーリン @@ -35096,7 +35116,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 감자군 + /// Looks up a localized string similar to 감자군 ///베르베르 ///분홍이 ///모린 @@ -35110,7 +35130,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Karpiranha + /// Looks up a localized string similar to Karpiranha ///Ravioli ///Rentata ///Stadida @@ -35136,7 +35156,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Carpe Diem + /// Looks up a localized string similar to Carpe Diem ///Stevie ///Quacklin’ ///Thumper @@ -35162,7 +35182,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Karpirinha + /// Looks up a localized string similar to Karpirinha ///Fortunyet ///Sr.Puerró ///Titanix @@ -35188,7 +35208,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ouïe-Ouïe + /// Looks up a localized string similar to Ouïe-Ouïe ///Décorum ///Insp. Magret ///Megascolide @@ -35214,7 +35234,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Karkarp + /// Looks up a localized string similar to Karkarp ///Ottolnarg ///Rosto ///Rock @@ -35240,7 +35260,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a こいこい + /// Looks up a localized string similar to こいこい ///アマヤル ///マー ///カッチ @@ -35266,7 +35286,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 맞고 + /// Looks up a localized string similar to 맞고 ///달고나 ///마 ///카치 @@ -35292,7 +35312,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///KP-Sack S ///KP-Sack M ///KP-Sack L @@ -35327,7 +35347,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HP Bag S ///HP Bag M ///HP Bag L @@ -35362,7 +35382,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Saco PS S ///Saco PS M ///Saco PS L @@ -35397,7 +35417,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Sac PV ///Sac PV + ///Sac PV ++ @@ -35432,7 +35452,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Sacco PS S ///Sacco PS M ///Sacco PS L @@ -35467,7 +35487,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HPバッグS ///HPバッグM ///HPバッグL @@ -35502,7 +35522,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HP백S ///HP백M ///HP백L @@ -35537,7 +35557,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HP沙袋S ///HP沙袋M ///HP沙袋L @@ -35572,7 +35592,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Kampf ///Flug ///Gift @@ -35598,7 +35618,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Fighting ///Flying ///Poison @@ -35624,7 +35644,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Lucha ///Volador ///Veneno @@ -35650,7 +35670,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Combat ///Vol ///Poison @@ -35676,7 +35696,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Normale + /// Looks up a localized string similar to Normale ///Lotta ///Volante ///Veleno @@ -35702,7 +35722,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ノーマル + /// Looks up a localized string similar to ノーマル ///かくとう ///ひこう ///どく @@ -35728,7 +35748,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 노말 + /// Looks up a localized string similar to 노말 ///격투 ///비행 ///독 @@ -35754,7 +35774,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 一般 + /// Looks up a localized string similar to 一般 ///格斗 ///飞行 ///毒 @@ -35780,7 +35800,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Wald + /// Looks up a localized string similar to Wald ///Stadt ///Wüste ///Steppe @@ -35812,7 +35832,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a FOREST + /// Looks up a localized string similar to FOREST ///CITY ///DESERT ///SAVANNA @@ -35844,7 +35864,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Bosque + /// Looks up a localized string similar to Bosque ///Ciudad ///Desierto ///Sabana @@ -35876,7 +35896,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Forêt + /// Looks up a localized string similar to Forêt ///Ville ///Désert ///Savane @@ -35908,7 +35928,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Foresta + /// Looks up a localized string similar to Foresta ///Città ///Deserto ///Savana @@ -35940,7 +35960,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a もり + /// Looks up a localized string similar to もり ///シティ ///さばく ///サバンナ @@ -35972,7 +35992,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 숲 + /// Looks up a localized string similar to 숲 ///시티 ///사막 ///사바나 @@ -36004,7 +36024,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 森林 + /// Looks up a localized string similar to 森林 ///城市 ///沙漠 ///热带草原 @@ -36036,7 +36056,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Mysteriöser Ort /// @@ -36088,7 +36108,7 @@ namespace PKHeX.Core.Properties { /// ///Route 10 ///Menhir-Weg - ///Cromlexia /// [resto de la cadena truncado]";. + ///Cromlexia /// [rest of string was truncated]";. /// public static string text_xy_00000_de { get { @@ -36097,7 +36117,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a —————— + /// Looks up a localized string similar to —————— /// ///Mystery Zone /// @@ -36149,7 +36169,7 @@ namespace PKHeX.Core.Properties { /// ///Route 10 ///Menhir Trail - ///Geo [resto de la cadena truncado]";. + ///Geo [rest of string was truncated]";. /// public static string text_xy_00000_en { get { @@ -36158,7 +36178,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - /// ///Lugar misterioso /// @@ -36206,7 +36226,7 @@ namespace PKHeX.Core.Properties { /// ///Ruta 9 ///Paso de Rhyhorn - ///Bastión Batalla [resto de la cadena truncado]";. + ///Bastión Batalla [rest of string was truncated]";. /// public static string text_xy_00000_es { get { @@ -36215,7 +36235,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Endroit Mystérieux /// @@ -36263,7 +36283,7 @@ namespace PKHeX.Core.Properties { /// ///Route 9 ///Piste Piquante - ///Château de [resto de la cadena truncado]";. + ///Château de [rest of string was truncated]";. /// public static string text_xy_00000_fr { get { @@ -36272,7 +36292,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Zona Misteriosa /// @@ -36320,7 +36340,7 @@ namespace PKHeX.Core.Properties { /// ///Percorso 9 ///Sentiero Punzoni - ///Castell [resto de la cadena truncado]";. + ///Castell [rest of string was truncated]";. /// public static string text_xy_00000_it { get { @@ -36329,7 +36349,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///なぞのばしょ /// @@ -36403,7 +36423,7 @@ namespace PKHeX.Core.Properties { /// ///ボールこうじょう /// - ///15ばん [resto de la cadena truncado]";. + ///15ばん [rest of string was truncated]";. /// public static string text_xy_00000_ja { get { @@ -36412,7 +36432,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///수수께끼의 장소 /// @@ -36501,7 +36521,7 @@ namespace PKHeX.Core.Properties { ///향전시티 /// ///18번도로 - ///에뜨르와 발레 [resto de la cadena truncado]";. + ///에뜨르와 발레 [rest of string was truncated]";. /// public static string text_xy_00000_ko { get { @@ -36510,7 +36530,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///神秘的地方 /// @@ -36611,7 +36631,7 @@ namespace PKHeX.Core.Properties { ///神奇宝贝村庄 /// ///21号道路 - ///最后通道 [resto de la cadena truncado]";. + ///最后通道 [rest of string was truncated]";. /// public static string text_xy_00000_zh { get { @@ -36620,7 +36640,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Linktausch + /// Looks up a localized string similar to Linktausch ///Linktausch ///Kanto-Region ///Johto-Region @@ -36639,7 +36659,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a a Link Trade + /// Looks up a localized string similar to a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -36658,7 +36678,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Intercambio + /// Looks up a localized string similar to Intercambio ///Intercambio en conexión ///Kanto ///Johto @@ -36677,7 +36697,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Échanges Link + /// Looks up a localized string similar to Échanges Link ///Échanges Link ///Kanto ///Johto @@ -36696,7 +36716,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Scambio in link + /// Looks up a localized string similar to Scambio in link ///Scambio in link ///Kanto ///Johto @@ -36715,7 +36735,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a つうしんこうかん + /// Looks up a localized string similar to つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -36734,7 +36754,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 통신교환 + /// Looks up a localized string similar to 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -36753,7 +36773,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 连接交换 + /// Looks up a localized string similar to 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -36772,7 +36792,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Netter Ort + /// Looks up a localized string similar to Netter Ort ///Entfernter Ort ///Pokémon-Film ///Pokémon-Film 2013 @@ -36811,7 +36831,7 @@ namespace PKHeX.Core.Properties { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2017 /// [resto de la cadena truncado]";. + ///VGE 2017 /// [rest of string was truncated]";. /// public static string text_xy_40000_de { get { @@ -36820,7 +36840,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a a lovely place + /// Looks up a localized string similar to a lovely place ///a faraway place ///a Pokémon movie ///Pokémon Movie 13 @@ -36859,7 +36879,7 @@ namespace PKHeX.Core.Properties { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2 [resto de la cadena truncado]";. + ///VGE 2 [rest of string was truncated]";. /// public static string text_xy_40000_en { get { @@ -36868,7 +36888,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2013 @@ -36891,7 +36911,7 @@ namespace PKHeX.Core.Properties { ///Campeonato Mundial ///Campeonato Mundial 2013 ///Campeonato Mundial 2014 - ///Campeo [resto de la cadena truncado]";. + ///Campeo [rest of string was truncated]";. /// public static string text_xy_40000_es { get { @@ -36900,7 +36920,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2013 @@ -36930,7 +36950,7 @@ namespace PKHeX.Core.Properties { ///Worlds ///Worlds 2013 ///Worlds 2014 - ///Worlds 2 [resto de la cadena truncado]";. + ///Worlds 2 [rest of string was truncated]";. /// public static string text_xy_40000_fr { get { @@ -36939,7 +36959,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Luogo Grazioso + /// Looks up a localized string similar to Luogo Grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 2013 @@ -36967,7 +36987,7 @@ namespace PKHeX.Core.Properties { ///Mondiali 2017 ///Mondiali 2018 ///Mondiali - ///Mondi [resto de la cadena truncado]";. + ///Mondi [rest of string was truncated]";. /// public static string text_xy_40000_it { get { @@ -36976,7 +36996,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが13 @@ -37029,7 +37049,7 @@ namespace PKHeX.Core.Properties { ///ポケモンイベント14 ///ポケモンイベント15 ///ポケモンイベント16 - ///ポケモンイベント [resto de la cadena truncado]";. + ///ポケモンイベント [rest of string was truncated]";. /// public static string text_xy_40000_ja { get { @@ -37038,7 +37058,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화13 @@ -37096,7 +37116,7 @@ namespace PKHeX.Core.Properties { ///포켓몬페스타 ///포켓몬페스타13 ///포켓몬페스타14 - ///포켓몬페스 [resto de la cadena truncado]";. + ///포켓몬페스 [rest of string was truncated]";. /// public static string text_xy_40000_ko { get { @@ -37105,7 +37125,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 美妙的地方 + /// Looks up a localized string similar to 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影13 @@ -37167,7 +37187,7 @@ namespace PKHeX.Core.Properties { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可 [resto de la cadena truncado]";. + ///宝可 [rest of string was truncated]";. /// public static string text_xy_40000_zh { get { @@ -37176,7 +37196,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Ferne Person + /// Looks up a localized string similar to Ferne Person ///Pensionsleiter ///Schatzsucher ///Dame der Heißen Quellen. @@ -37188,7 +37208,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a a stranger + /// Looks up a localized string similar to a stranger ///Day Care helpers ///a treasure hunter ///an old hot-springs visitor. @@ -37200,7 +37220,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Persona lejana + /// Looks up a localized string similar to Persona lejana ///Pareja de la Guardería ///Buscatesoros ///Anciana del Balneario. @@ -37212,7 +37232,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Personne lointaine + /// Looks up a localized string similar to Personne lointaine ///Responsable de la Pension ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -37224,7 +37244,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a Persona Lontana + /// Looks up a localized string similar to Persona Lontana ///Pensione Pokémon ///Cercatesori ///Vecchina delle terme. @@ -37236,7 +37256,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a とおくにいるひと + /// Looks up a localized string similar to とおくにいるひと ///そだてやさん ///トレジャーハンター ///おんせんばあさん. @@ -37248,7 +37268,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 멀리 있는 사람 + /// Looks up a localized string similar to 멀리 있는 사람 ///키우미집 ///트레져헌터 ///온천할머니. @@ -37260,7 +37280,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca una cadena traducida similar a 远处的人 + /// Looks up a localized string similar to 远处的人 ///饲育屋爷爷 ///寻宝猎人 ///温泉婆婆. @@ -37272,7 +37292,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_00 { get { @@ -37282,7 +37302,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_01 { get { @@ -37292,7 +37312,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_02 { get { @@ -37302,7 +37322,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_03 { get { @@ -37312,7 +37332,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_04 { get { @@ -37322,7 +37342,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_05 { get { @@ -37332,7 +37352,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_06 { get { @@ -37342,7 +37362,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_07 { get { @@ -37352,7 +37372,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_08 { get { @@ -37362,7 +37382,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_09 { get { @@ -37372,7 +37392,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_10 { get { @@ -37382,7 +37402,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_11 { get { @@ -37392,7 +37412,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_12 { get { @@ -37402,7 +37422,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_128 { get { @@ -37412,7 +37432,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_129 { get { @@ -37422,7 +37442,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_13 { get { @@ -37432,7 +37452,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_14 { get { @@ -37442,7 +37462,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_15 { get { @@ -37452,7 +37472,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_16 { get { @@ -37462,7 +37482,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_17 { get { @@ -37472,7 +37492,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_18 { get { @@ -37482,7 +37502,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_19 { get { @@ -37492,7 +37512,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_20 { get { @@ -37502,7 +37522,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_21 { get { @@ -37512,7 +37532,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_22 { get { @@ -37522,7 +37542,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_23 { get { @@ -37532,7 +37552,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_24 { get { @@ -37542,7 +37562,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_25 { get { @@ -37552,7 +37572,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_26 { get { @@ -37562,7 +37582,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_27 { get { @@ -37572,7 +37592,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_28 { get { @@ -37582,7 +37602,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_29 { get { @@ -37592,7 +37612,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_30 { get { @@ -37602,7 +37622,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_31 { get { @@ -37612,7 +37632,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_32 { get { @@ -37622,7 +37642,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_33 { get { @@ -37632,7 +37652,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_34 { get { @@ -37642,7 +37662,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_35 { get { @@ -37652,7 +37672,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_36 { get { @@ -37662,7 +37682,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_37 { get { @@ -37672,7 +37692,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_38 { get { @@ -37682,7 +37702,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_39 { get { @@ -37692,7 +37712,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_40 { get { @@ -37702,7 +37722,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_41 { get { @@ -37712,7 +37732,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_42 { get { @@ -37722,7 +37742,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_43 { get { @@ -37732,7 +37752,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_44 { get { @@ -37742,7 +37762,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_45 { get { @@ -37752,7 +37772,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_46 { get { @@ -37762,7 +37782,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_47 { get { @@ -37772,7 +37792,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_48 { get { @@ -37782,7 +37802,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_49 { get { @@ -37792,7 +37812,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_50 { get { @@ -37802,7 +37822,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_51 { get { @@ -37812,7 +37832,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_52 { get { @@ -37822,7 +37842,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_53 { get { @@ -37832,7 +37852,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_54 { get { @@ -37842,7 +37862,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_55 { get { @@ -37852,7 +37872,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_56 { get { @@ -37862,7 +37882,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_57 { get { @@ -37872,7 +37892,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_58 { get { @@ -37882,7 +37902,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_59 { get { @@ -37892,7 +37912,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_60 { get { @@ -37902,7 +37922,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_61 { get { @@ -37912,7 +37932,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_62 { get { @@ -37922,7 +37942,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_63 { get { @@ -37932,7 +37952,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_64 { get { @@ -37942,7 +37962,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_65 { get { @@ -37952,7 +37972,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_66 { get { @@ -37962,7 +37982,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_67 { get { @@ -37972,7 +37992,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_68 { get { @@ -37982,7 +38002,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_69 { get { @@ -37992,7 +38012,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_70 { get { @@ -38002,7 +38022,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_71 { get { @@ -38012,7 +38032,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_72 { get { @@ -38022,7 +38042,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_73 { get { @@ -38032,7 +38052,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] tutors_g3 { get { @@ -38042,7 +38062,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] tutors_g4 { get { @@ -38052,7 +38072,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_00 { get { @@ -38062,7 +38082,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_01 { get { @@ -38072,7 +38092,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_02 { get { @@ -38082,7 +38102,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_03 { get { @@ -38092,7 +38112,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_04 { get { @@ -38102,7 +38122,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_05 { get { @@ -38112,7 +38132,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_06 { get { @@ -38122,7 +38142,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_07 { get { @@ -38132,7 +38152,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_08 { get { @@ -38142,7 +38162,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_09 { get { @@ -38152,7 +38172,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_10 { get { @@ -38162,7 +38182,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_11 { get { @@ -38172,7 +38192,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_12 { get { @@ -38182,7 +38202,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_13 { get { @@ -38192,7 +38212,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_14 { get { @@ -38202,7 +38222,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_15 { get { @@ -38212,7 +38232,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_16 { get { @@ -38222,7 +38242,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_17 { get { @@ -38232,7 +38252,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap unknown { get { @@ -38242,7 +38262,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap valid { get { @@ -38252,7 +38272,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap vc { get { @@ -38262,7 +38282,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap warn { get { @@ -38272,7 +38292,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc6 { get { @@ -38282,7 +38302,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc6full { get { @@ -38292,7 +38312,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc7 { get { @@ -38302,7 +38322,7 @@ namespace PKHeX.Core.Properties { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc7full { get { diff --git a/PKHeX/Properties/Resources.resx b/PKHeX/Properties/Resources.resx index d478b5762..2b56bb249 100644 --- a/PKHeX/Properties/Resources.resx +++ b/PKHeX/Properties/Resources.resx @@ -7555,4 +7555,10 @@ ..\Resources\byte\encunters_hb_ss.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\byte\pcd.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\pgf.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/PKHeX/Resources/byte/pcd.pkl b/PKHeX/Resources/byte/pcd.pkl new file mode 100644 index 000000000..f16bcaf0a Binary files /dev/null and b/PKHeX/Resources/byte/pcd.pkl differ diff --git a/PKHeX/Resources/byte/pgf.pkl b/PKHeX/Resources/byte/pgf.pkl new file mode 100644 index 000000000..b9b36cb76 Binary files /dev/null and b/PKHeX/Resources/byte/pgf.pkl differ