From 828b3d2ab15e2516a041533fa5cd2dabb887402d Mon Sep 17 00:00:00 2001 From: AdAstra-LD <76622070+AdAstra-LD@users.noreply.github.com> Date: Thu, 15 Jul 2021 02:41:49 +0200 Subject: [PATCH] Minor refactor + added missing Designer.cs --- DS_Map/LibNDSFormats/EndianBinaryReader.cs | 12 +- DS_Map/LibNDSFormats/NSBMD/NSBMD.cs | 2 +- DS_Map/LibNDSFormats/NSBMD/NSBMDGlRenderer.cs | 20 +- DS_Map/LibNDSFormats/NSBTX/Filepallete.cs | 2 +- DS_Map/LibNDSFormats/NSBTX/NSBTXLoader.cs | 2 +- .../NSBTX/bytearrayinputstream.cs | 2 +- DS_Map/LibNDSFormats/NSBTX/image3dformat5.cs | 2 +- DS_Map/LibNDSFormats/NSBTX/nsbmetileset.cs | 2 +- DS_Map/LibNDSFormats/NSBTX/nsbtx.cs | 20 +- DS_Map/LibNDSFormats/Utils.cs | 6 +- DS_Map/Narc.cs | 4 +- DS_Map/Properties/PokePics.Designer.cs | 8153 +++++++++++++++++ DS_Map/Properties/Resources.Designer.cs | 5 +- DS_Map/ROMFiles/ScriptAction.cs | 2 +- DS_Map/ROMFiles/ScriptCommand.cs | 4 +- DS_Map/ROMFiles/TextArchive.cs | 8 +- DS_Map/ROMToolboxDialog.cs | 2 +- 17 files changed, 8200 insertions(+), 48 deletions(-) create mode 100644 DS_Map/Properties/PokePics.Designer.cs diff --git a/DS_Map/LibNDSFormats/EndianBinaryReader.cs b/DS_Map/LibNDSFormats/EndianBinaryReader.cs index 2bb6f1d..75f1424 100644 --- a/DS_Map/LibNDSFormats/EndianBinaryReader.cs +++ b/DS_Map/LibNDSFormats/EndianBinaryReader.cs @@ -229,17 +229,17 @@ namespace System.IO { return temp; } - public UInt16 ReadUInt16() { - const int size = sizeof(UInt16); + public ushort ReadUInt16() { + const int size = sizeof(ushort); FillBuffer(size, size); return BitConverter.ToUInt16(buffer, 0); } - public UInt16[] ReadUInt16s(int count) { - const int size = sizeof(UInt16); - UInt16[] temp; + public ushort[] ReadUInt16s(int count) { + const int size = sizeof(ushort); + ushort[] temp; - temp = new UInt16[count]; + temp = new ushort[count]; FillBuffer(size * count, size); for (int i = 0; i < count; i++) { diff --git a/DS_Map/LibNDSFormats/NSBMD/NSBMD.cs b/DS_Map/LibNDSFormats/NSBMD/NSBMD.cs index c5a41f8..66eb7bf 100644 --- a/DS_Map/LibNDSFormats/NSBMD/NSBMD.cs +++ b/DS_Map/LibNDSFormats/NSBMD/NSBMD.cs @@ -904,7 +904,7 @@ namespace LibNDSFormats.NSBMD /// private static void ParseNsbmdObject(EndianBinaryReader reader, NSBMDObject nsbmdObject, float modelscale) { - UInt16 v = reader.ReadUInt16(); + ushort v = reader.ReadUInt16(); Int16 divide = reader.ReadInt16(); divide = (short)NSBMDGlRenderer.Sign(divide, 16); int unknown = v >> 12 & 0xf; diff --git a/DS_Map/LibNDSFormats/NSBMD/NSBMDGlRenderer.cs b/DS_Map/LibNDSFormats/NSBMD/NSBMDGlRenderer.cs index 3e6a396..8ab7162 100644 --- a/DS_Map/LibNDSFormats/NSBMD/NSBMDGlRenderer.cs +++ b/DS_Map/LibNDSFormats/NSBMD/NSBMDGlRenderer.cs @@ -1046,7 +1046,7 @@ namespace LibNDSFormats.NSBMD { /// /// Convert texel. /// - private bool convert_4x4texel(uint[] tex, int width, int height, UInt16[] data, RGBA[] pal, RGBA[] rgbaOut) { + private bool convert_4x4texel(uint[] tex, int width, int height, ushort[] data, RGBA[] pal, RGBA[] rgbaOut) { int w = width / 4; int h = height / 4; @@ -1055,9 +1055,9 @@ namespace LibNDSFormats.NSBMD { for (int x = 0; x < w; x++) { int index = y * w + x; UInt32 t = tex[index]; - UInt16 d = data[index]; - UInt16 addr = (ushort)(d & 0x3fff); - UInt16 mode = (ushort)((d >> 14) & 3); + ushort d = data[index]; + ushort addr = (ushort)(d & 0x3fff); + ushort mode = (ushort)((d >> 14) & 3); // traverse every texel in the 4x4 texels for (int r = 0; r < 4; r++) @@ -1125,9 +1125,9 @@ namespace LibNDSFormats.NSBMD { for (int i = 0; i < (tex.Length + 1) / 4; ++i) list1.Add(Utils.Read4BytesAsUInt32(tex, i * 4)); - var list2 = new List(); + var list2 = new List(); for (int i = 0; i < (data.Length + 1) / 2; ++i) - list2.Add(Utils.Read2BytesAsUInt16(data, i * 2)); + list2.Add(Utils.Read2BytesAsushort(data, i * 2)); var b = convert_4x4texel(list1.ToArray(), width, height, list2.ToArray(), pal, rgbaOut); } @@ -1229,13 +1229,13 @@ namespace LibNDSFormats.NSBMD { // Direct Color Texture case 7: for (int j = 0; j < pixelnum; j++) { - //UInt16 p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); + //ushort p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); //image[j].R = (byte)(((p >> 0) & 0x1f) << 3); //image[j].G = (byte)(((p >> 5) & 0x1f) << 3); //image[j].B = (byte)(((p >> 10) & 0x1f) << 3); //image[j].A = (byte)(((p & 0x8000) != 0) ? 0xff : 0); image[j] = RGBA.fromColor(Tinke.Convertir.BGR555(mat.texdata[j * 2], mat.texdata[j * 2 + 1])); - UInt16 p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); + ushort p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); image[j].A = (byte)(((p & 0x8000) != 0) ? 0xff : 0); } break; @@ -1425,13 +1425,13 @@ namespace LibNDSFormats.NSBMD { // Direct Color Texture case 7: for (int j = 0; j < pixelnum; j++) { - //UInt16 p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); + //ushort p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); //image[j].R = (byte)(((p >> 0) & 0x1f) << 3); //image[j].G = (byte)(((p >> 5) & 0x1f) << 3); //image[j].B = (byte)(((p >> 10) & 0x1f) << 3); //image[j].A = (byte)(((p & 0x8000) != 0) ? 0xff : 0); image[j] = RGBA.fromColor(Tinke.Convertir.BGR555(mat.texdata[j * 2], mat.texdata[j * 2 + 1])); - UInt16 p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); + ushort p = (ushort)(mat.texdata[j * 2] + (mat.texdata[j * 2 + 1] << 8)); image[j].A = (byte)(((p & 0x8000) != 0) ? 0xff : 0); } break; diff --git a/DS_Map/LibNDSFormats/NSBTX/Filepallete.cs b/DS_Map/LibNDSFormats/NSBTX/Filepallete.cs index f44efb5..4c72c61 100644 --- a/DS_Map/LibNDSFormats/NSBTX/Filepallete.cs +++ b/DS_Map/LibNDSFormats/NSBTX/Filepallete.cs @@ -35,7 +35,7 @@ namespace NSMBe4 Color[] pal = new Color[data.Length / 2]; for (int i = 0; i < pal.Length; i++) { - pal[i] = NSMBTileset.fromRGB15(ii.readUShort()); + pal[i] = NSMBTileset.fromRGB15(ii.ReadUInt16()); } return pal; } diff --git a/DS_Map/LibNDSFormats/NSBTX/NSBTXLoader.cs b/DS_Map/LibNDSFormats/NSBTX/NSBTXLoader.cs index 7b617d7..f424e8a 100644 --- a/DS_Map/LibNDSFormats/NSBTX/NSBTXLoader.cs +++ b/DS_Map/LibNDSFormats/NSBTX/NSBTXLoader.cs @@ -329,7 +329,7 @@ namespace LibNDSFormats.NSBTX stream.Seek(mat.paloffset, SeekOrigin.Begin); for (j = 0; j < palentry; j++) { - UInt16 p = reader.ReadUInt16(); + ushort p = reader.ReadUInt16(); rgbq[j].R = (byte)(((p >> 0) & 0x1f) << 3); // red rgbq[j].G = (byte)(((p >> 5) & 0x1f) << 3); // green rgbq[j].B = (byte)(((p >> 10) & 0x1f) << 3); // blue diff --git a/DS_Map/LibNDSFormats/NSBTX/bytearrayinputstream.cs b/DS_Map/LibNDSFormats/NSBTX/bytearrayinputstream.cs index ce19a32..192f56b 100644 --- a/DS_Map/LibNDSFormats/NSBTX/bytearrayinputstream.cs +++ b/DS_Map/LibNDSFormats/NSBTX/bytearrayinputstream.cs @@ -116,7 +116,7 @@ namespace NSMBe4 return pos; } - public ushort readUShort() + public ushort ReadUInt16() { pos += 2; return (ushort)(array[pos - 2 + origin] | array[pos - 1 + origin] << 8); diff --git a/DS_Map/LibNDSFormats/NSBTX/image3dformat5.cs b/DS_Map/LibNDSFormats/NSBTX/image3dformat5.cs index 001d0f7..cb50292 100644 --- a/DS_Map/LibNDSFormats/NSBTX/image3dformat5.cs +++ b/DS_Map/LibNDSFormats/NSBTX/image3dformat5.cs @@ -54,7 +54,7 @@ namespace NSMBe4 for (uint y = 0; y < h / 4; y++) for (uint x = 0; x < w / 4; x++) { - ushort palDat = f5data.readUShort(); + ushort palDat = f5data.ReadUInt16(); ushort palOffs = (ushort)((palDat & 0x3FFF) * 2); ushort mode = (ushort)((palDat >> 14) & 3); diff --git a/DS_Map/LibNDSFormats/NSBTX/nsbmetileset.cs b/DS_Map/LibNDSFormats/NSBTX/nsbmetileset.cs index e593a3c..0ddb1e3 100644 --- a/DS_Map/LibNDSFormats/NSBTX/nsbmetileset.cs +++ b/DS_Map/LibNDSFormats/NSBTX/nsbmetileset.cs @@ -798,7 +798,7 @@ namespace NSMBe4 while (eObjIndexFile.available(4) && obj < Objects.Length) { Objects[obj] = new ObjectDef(this); - int offset = eObjIndexFile.readUShort(); + int offset = eObjIndexFile.ReadUInt16(); Objects[obj].width = eObjIndexFile.readByte(); Objects[obj].height = eObjIndexFile.readByte(); diff --git a/DS_Map/LibNDSFormats/NSBTX/nsbtx.cs b/DS_Map/LibNDSFormats/NSBTX/nsbtx.cs index c1a9c21..7d81cf0 100644 --- a/DS_Map/LibNDSFormats/NSBTX/nsbtx.cs +++ b/DS_Map/LibNDSFormats/NSBTX/nsbtx.cs @@ -117,8 +117,8 @@ namespace NSMBe4.NSBMD bool hasFormat5 = false; for (int i = 0; i < textures.Length; i++) { - int offset = 8 * str.readUShort(); - ushort param = str.readUShort(); + int offset = 8 * str.ReadUInt16(); + ushort param = str.ReadUInt16(); int format = (param >> 10) & 7; if (format == 5) @@ -171,8 +171,8 @@ namespace NSMBe4.NSBMD for (int i = 0; i < palettes.Length; i++) { - int offset = 8 * str.readUShort() + palDataOffset + blockStart; - str.readUShort(); + int offset = 8 * str.ReadUInt16() + palDataOffset + blockStart; + str.ReadUInt16(); palettes[i] = new PaletteDef(); palettes[i].offs = offset; } @@ -531,7 +531,7 @@ namespace NSMBe4.NSBMD } er.Close(); } - public bool convert_4x4texel(uint[] tex, int width, int height, UInt16[] data, Color[] pal, ImageTexeler.LockBitmap rgbaOut) + public bool convert_4x4texel(uint[] tex, int width, int height, ushort[] data, Color[] pal, ImageTexeler.LockBitmap rgbaOut) { int w = width / 4; int h = height / 4; @@ -542,9 +542,9 @@ namespace NSMBe4.NSBMD { int index = y * w + x; UInt32 t = tex[index]; - UInt16 d = data[index]; - UInt16 addr = (ushort)(d & 0x3fff); - UInt16 mode = (ushort)((d >> 14) & 3); + ushort d = data[index]; + ushort addr = (ushort)(d & 0x3fff); + ushort mode = (ushort)((d >> 14) & 3); // traverse every texel in the 4x4 texels for (int r = 0; r < 4; r++) @@ -621,9 +621,9 @@ namespace NSMBe4.NSBMD for (int i = 0; i < (tex.Length + 1) / 4; ++i) list1.Add(LibNDSFormats.Utils.Read4BytesAsUInt32(tex, i * 4)); - var list2 = new List(); + var list2 = new List(); for (int i = 0; i < (data.Length + 1) / 2; ++i) - list2.Add(LibNDSFormats.Utils.Read2BytesAsUInt16(data, i * 2)); + list2.Add(LibNDSFormats.Utils.Read2BytesAsushort(data, i * 2)); var b = convert_4x4texel(list1.ToArray(), width, height, list2.ToArray(), pal, rgbaOut); } } diff --git a/DS_Map/LibNDSFormats/Utils.cs b/DS_Map/LibNDSFormats/Utils.cs index 99d143c..fc75b1e 100644 --- a/DS_Map/LibNDSFormats/Utils.cs +++ b/DS_Map/LibNDSFormats/Utils.cs @@ -42,12 +42,12 @@ namespace LibNDSFormats { } /// - /// Read 2 Bytes as UInt16 + /// Read 2 Bytes as ushort /// /// Byte array. /// Offset in array. - /// 2 Bytes as UInt16. - public static UInt16 Read2BytesAsUInt16(byte[] bytes, int offset) { + /// 2 Bytes as ushort. + public static ushort Read2BytesAsushort(byte[] bytes, int offset) { int result = 0; for (int i = 0; i < 2; ++i) result |= bytes[offset + i] << (8 * (i)); diff --git a/DS_Map/Narc.cs b/DS_Map/Narc.cs index ef41192..656f123 100644 --- a/DS_Map/Narc.cs +++ b/DS_Map/Narc.cs @@ -59,8 +59,8 @@ namespace NarcAPI { bw.Write(0x0100FFFE); // Constant fileSizeOffset = (uint)bw.BaseStream.Position; bw.Write((UInt32)0x0); - bw.Write((UInt16)16); - bw.Write((UInt16)3); + bw.Write((ushort)16); + bw.Write((ushort)3); // Write FATB Section bw.Write(0x46415442); // "BTAF" bw.Write((UInt32)(0xC + Elements.Length * 8)); // FATB Size diff --git a/DS_Map/Properties/PokePics.Designer.cs b/DS_Map/Properties/PokePics.Designer.cs new file mode 100644 index 0000000..b2a9f74 --- /dev/null +++ b/DS_Map/Properties/PokePics.Designer.cs @@ -0,0 +1,8153 @@ +//------------------------------------------------------------------------------ +// +// Il codice è stato generato da uno strumento. +// Versione runtime:4.0.30319.42000 +// +// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace DSPRE.Properties { + using System; + + + /// + /// Classe di risorse fortemente tipizzata per la ricerca di stringhe localizzate e così via. + /// + // Questa classe è stata generata automaticamente dalla classe StronglyTypedResourceBuilder. + // tramite uno strumento quale ResGen o Visual Studio. + // Per aggiungere o rimuovere un membro, modificare il file con estensione ResX ed eseguire nuovamente ResGen + // con l'opzione /str oppure ricompilare il progetto VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class PokePics { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal PokePics() { + } + + /// + /// Restituisce l'istanza di ResourceManager nella cache utilizzata da questa classe. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DSPRE.Properties.PokePics", typeof(PokePics).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Esegue l'override della proprietà CurrentUICulture del thread corrente per tutte le + /// ricerche di risorse eseguite utilizzando questa classe di risorse fortemente tipizzata. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Abomasnow { + get { + object obj = ResourceManager.GetObject("Abomasnow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Abra { + get { + object obj = ResourceManager.GetObject("Abra", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Absol { + get { + object obj = ResourceManager.GetObject("Absol", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Accelgor { + get { + object obj = ResourceManager.GetObject("Accelgor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aegislash { + get { + object obj = ResourceManager.GetObject("Aegislash", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aerodactyl { + get { + object obj = ResourceManager.GetObject("Aerodactyl", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aggron { + get { + object obj = ResourceManager.GetObject("Aggron", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aipom { + get { + object obj = ResourceManager.GetObject("Aipom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Alakazam { + get { + object obj = ResourceManager.GetObject("Alakazam", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Alomomola { + get { + object obj = ResourceManager.GetObject("Alomomola", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Altaria { + get { + object obj = ResourceManager.GetObject("Altaria", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Amaura { + get { + object obj = ResourceManager.GetObject("Amaura", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ambipom { + get { + object obj = ResourceManager.GetObject("Ambipom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Amoonguss { + get { + object obj = ResourceManager.GetObject("Amoonguss", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ampharos { + get { + object obj = ResourceManager.GetObject("Ampharos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Anorith { + get { + object obj = ResourceManager.GetObject("Anorith", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Araquanid { + get { + object obj = ResourceManager.GetObject("Araquanid", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Arbok { + get { + object obj = ResourceManager.GetObject("Arbok", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Arcanine { + get { + object obj = ResourceManager.GetObject("Arcanine", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Arceus { + get { + object obj = ResourceManager.GetObject("Arceus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Archen { + get { + object obj = ResourceManager.GetObject("Archen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Archeops { + get { + object obj = ResourceManager.GetObject("Archeops", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ariados { + get { + object obj = ResourceManager.GetObject("Ariados", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Armaldo { + get { + object obj = ResourceManager.GetObject("Armaldo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aromatisse { + get { + object obj = ResourceManager.GetObject("Aromatisse", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aron { + get { + object obj = ResourceManager.GetObject("Aron", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Articuno { + get { + object obj = ResourceManager.GetObject("Articuno", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Audino { + get { + object obj = ResourceManager.GetObject("Audino", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Aurorus { + get { + object obj = ResourceManager.GetObject("Aurorus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Avalugg { + get { + object obj = ResourceManager.GetObject("Avalugg", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Axew { + get { + object obj = ResourceManager.GetObject("Axew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Azelf { + get { + object obj = ResourceManager.GetObject("Azelf", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Azumarill { + get { + object obj = ResourceManager.GetObject("Azumarill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Azurill { + get { + object obj = ResourceManager.GetObject("Azurill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bagon { + get { + object obj = ResourceManager.GetObject("Bagon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Baltoy { + get { + object obj = ResourceManager.GetObject("Baltoy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Banette { + get { + object obj = ResourceManager.GetObject("Banette", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Barbaracle { + get { + object obj = ResourceManager.GetObject("Barbaracle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Barboach { + get { + object obj = ResourceManager.GetObject("Barboach", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Basculin { + get { + object obj = ResourceManager.GetObject("Basculin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bastiodon { + get { + object obj = ResourceManager.GetObject("Bastiodon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bayleef { + get { + object obj = ResourceManager.GetObject("Bayleef", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Beartic { + get { + object obj = ResourceManager.GetObject("Beartic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Beautifly { + get { + object obj = ResourceManager.GetObject("Beautifly", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Beedrill { + get { + object obj = ResourceManager.GetObject("Beedrill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Beheeyem { + get { + object obj = ResourceManager.GetObject("Beheeyem", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Beldum { + get { + object obj = ResourceManager.GetObject("Beldum", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bellossom { + get { + object obj = ResourceManager.GetObject("Bellossom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bellsprout { + get { + object obj = ResourceManager.GetObject("Bellsprout", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bergmite { + get { + object obj = ResourceManager.GetObject("Bergmite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bewear { + get { + object obj = ResourceManager.GetObject("Bewear", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bibarel { + get { + object obj = ResourceManager.GetObject("Bibarel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bidoof { + get { + object obj = ResourceManager.GetObject("Bidoof", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Binacle { + get { + object obj = ResourceManager.GetObject("Binacle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bisharp { + get { + object obj = ResourceManager.GetObject("Bisharp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Blacephalon { + get { + object obj = ResourceManager.GetObject("Blacephalon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Blastoise { + get { + object obj = ResourceManager.GetObject("Blastoise", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Blaziken { + get { + object obj = ResourceManager.GetObject("Blaziken", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Blissey { + get { + object obj = ResourceManager.GetObject("Blissey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Blitzle { + get { + object obj = ResourceManager.GetObject("Blitzle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Boldore { + get { + object obj = ResourceManager.GetObject("Boldore", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bonsly { + get { + object obj = ResourceManager.GetObject("Bonsly", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bouffalant { + get { + object obj = ResourceManager.GetObject("Bouffalant", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bounsweet { + get { + object obj = ResourceManager.GetObject("Bounsweet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Braixen { + get { + object obj = ResourceManager.GetObject("Braixen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Braviary { + get { + object obj = ResourceManager.GetObject("Braviary", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Breloom { + get { + object obj = ResourceManager.GetObject("Breloom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Brionne { + get { + object obj = ResourceManager.GetObject("Brionne", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bronzong { + get { + object obj = ResourceManager.GetObject("Bronzong", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bronzor { + get { + object obj = ResourceManager.GetObject("Bronzor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bruxish { + get { + object obj = ResourceManager.GetObject("Bruxish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Budew { + get { + object obj = ResourceManager.GetObject("Budew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Buizel { + get { + object obj = ResourceManager.GetObject("Buizel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bulbasaur { + get { + object obj = ResourceManager.GetObject("Bulbasaur", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Buneary { + get { + object obj = ResourceManager.GetObject("Buneary", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Bunnelby { + get { + object obj = ResourceManager.GetObject("Bunnelby", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Burmy { + get { + object obj = ResourceManager.GetObject("Burmy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Butterfree { + get { + object obj = ResourceManager.GetObject("Butterfree", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Buzzwole { + get { + object obj = ResourceManager.GetObject("Buzzwole", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cacnea { + get { + object obj = ResourceManager.GetObject("Cacnea", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cacturne { + get { + object obj = ResourceManager.GetObject("Cacturne", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Camerupt { + get { + object obj = ResourceManager.GetObject("Camerupt", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Carbink { + get { + object obj = ResourceManager.GetObject("Carbink", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Carnivine { + get { + object obj = ResourceManager.GetObject("Carnivine", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Carracosta { + get { + object obj = ResourceManager.GetObject("Carracosta", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Carvanha { + get { + object obj = ResourceManager.GetObject("Carvanha", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cascoon { + get { + object obj = ResourceManager.GetObject("Cascoon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Castform { + get { + object obj = ResourceManager.GetObject("Castform", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Caterpie { + get { + object obj = ResourceManager.GetObject("Caterpie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Celebi { + get { + object obj = ResourceManager.GetObject("Celebi", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Celesteela { + get { + object obj = ResourceManager.GetObject("Celesteela", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chandelure { + get { + object obj = ResourceManager.GetObject("Chandelure", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chansey { + get { + object obj = ResourceManager.GetObject("Chansey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Charizard { + get { + object obj = ResourceManager.GetObject("Charizard", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Charjabug { + get { + object obj = ResourceManager.GetObject("Charjabug", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Charmander { + get { + object obj = ResourceManager.GetObject("Charmander", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Charmeleon { + get { + object obj = ResourceManager.GetObject("Charmeleon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chatot { + get { + object obj = ResourceManager.GetObject("Chatot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cherrim { + get { + object obj = ResourceManager.GetObject("Cherrim", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cherubi { + get { + object obj = ResourceManager.GetObject("Cherubi", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chesnaught { + get { + object obj = ResourceManager.GetObject("Chesnaught", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chespin { + get { + object obj = ResourceManager.GetObject("Chespin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chikorita { + get { + object obj = ResourceManager.GetObject("Chikorita", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chimchar { + get { + object obj = ResourceManager.GetObject("Chimchar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chimecho { + get { + object obj = ResourceManager.GetObject("Chimecho", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chinchou { + get { + object obj = ResourceManager.GetObject("Chinchou", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Chingling { + get { + object obj = ResourceManager.GetObject("Chingling", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cinccino { + get { + object obj = ResourceManager.GetObject("Cinccino", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Clamperl { + get { + object obj = ResourceManager.GetObject("Clamperl", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Clauncher { + get { + object obj = ResourceManager.GetObject("Clauncher", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Clawitzer { + get { + object obj = ResourceManager.GetObject("Clawitzer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Claydol { + get { + object obj = ResourceManager.GetObject("Claydol", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Clefable { + get { + object obj = ResourceManager.GetObject("Clefable", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Clefairy { + get { + object obj = ResourceManager.GetObject("Clefairy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cleffa { + get { + object obj = ResourceManager.GetObject("Cleffa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cloyster { + get { + object obj = ResourceManager.GetObject("Cloyster", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cobalion { + get { + object obj = ResourceManager.GetObject("Cobalion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Código_Cero { + get { + object obj = ResourceManager.GetObject("Código_Cero", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cofagrigus { + get { + object obj = ResourceManager.GetObject("Cofagrigus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Combee { + get { + object obj = ResourceManager.GetObject("Combee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Combusken { + get { + object obj = ResourceManager.GetObject("Combusken", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Comfey { + get { + object obj = ResourceManager.GetObject("Comfey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Conkeldurr { + get { + object obj = ResourceManager.GetObject("Conkeldurr", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Corphish { + get { + object obj = ResourceManager.GetObject("Corphish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Corsola { + get { + object obj = ResourceManager.GetObject("Corsola", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cosmoem { + get { + object obj = ResourceManager.GetObject("Cosmoem", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cosmog { + get { + object obj = ResourceManager.GetObject("Cosmog", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cottonee { + get { + object obj = ResourceManager.GetObject("Cottonee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Crabominable { + get { + object obj = ResourceManager.GetObject("Crabominable", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Crabrawler { + get { + object obj = ResourceManager.GetObject("Crabrawler", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cradily { + get { + object obj = ResourceManager.GetObject("Cradily", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cranidos { + get { + object obj = ResourceManager.GetObject("Cranidos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Crawdaunt { + get { + object obj = ResourceManager.GetObject("Crawdaunt", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cresselia { + get { + object obj = ResourceManager.GetObject("Cresselia", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Croagunk { + get { + object obj = ResourceManager.GetObject("Croagunk", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Crobat { + get { + object obj = ResourceManager.GetObject("Crobat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Croconaw { + get { + object obj = ResourceManager.GetObject("Croconaw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Crustle { + get { + object obj = ResourceManager.GetObject("Crustle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cryogonal { + get { + object obj = ResourceManager.GetObject("Cryogonal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cubchoo { + get { + object obj = ResourceManager.GetObject("Cubchoo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cubone { + get { + object obj = ResourceManager.GetObject("Cubone", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cutiefly { + get { + object obj = ResourceManager.GetObject("Cutiefly", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Cyndaquil { + get { + object obj = ResourceManager.GetObject("Cyndaquil", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Darkrai { + get { + object obj = ResourceManager.GetObject("Darkrai", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Darmanitan { + get { + object obj = ResourceManager.GetObject("Darmanitan", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dartrix { + get { + object obj = ResourceManager.GetObject("Dartrix", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Darumaka { + get { + object obj = ResourceManager.GetObject("Darumaka", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Decidueye { + get { + object obj = ResourceManager.GetObject("Decidueye", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dedenne { + get { + object obj = ResourceManager.GetObject("Dedenne", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Deerling { + get { + object obj = ResourceManager.GetObject("Deerling", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Deino { + get { + object obj = ResourceManager.GetObject("Deino", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Delcatty { + get { + object obj = ResourceManager.GetObject("Delcatty", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Delibird { + get { + object obj = ResourceManager.GetObject("Delibird", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Delphox { + get { + object obj = ResourceManager.GetObject("Delphox", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Deoxys { + get { + object obj = ResourceManager.GetObject("Deoxys", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dewgong { + get { + object obj = ResourceManager.GetObject("Dewgong", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dewott { + get { + object obj = ResourceManager.GetObject("Dewott", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dewpider { + get { + object obj = ResourceManager.GetObject("Dewpider", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dhelmise { + get { + object obj = ResourceManager.GetObject("Dhelmise", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dialga { + get { + object obj = ResourceManager.GetObject("Dialga", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Diancie { + get { + object obj = ResourceManager.GetObject("Diancie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Diggersby { + get { + object obj = ResourceManager.GetObject("Diggersby", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Diglett { + get { + object obj = ResourceManager.GetObject("Diglett", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ditto { + get { + object obj = ResourceManager.GetObject("Ditto", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dodrio { + get { + object obj = ResourceManager.GetObject("Dodrio", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Doduo { + get { + object obj = ResourceManager.GetObject("Doduo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Donphan { + get { + object obj = ResourceManager.GetObject("Donphan", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Doublade { + get { + object obj = ResourceManager.GetObject("Doublade", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dragalge { + get { + object obj = ResourceManager.GetObject("Dragalge", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dragonair { + get { + object obj = ResourceManager.GetObject("Dragonair", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dragonite { + get { + object obj = ResourceManager.GetObject("Dragonite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Drampa { + get { + object obj = ResourceManager.GetObject("Drampa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Drapion { + get { + object obj = ResourceManager.GetObject("Drapion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dratini { + get { + object obj = ResourceManager.GetObject("Dratini", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Drifblim { + get { + object obj = ResourceManager.GetObject("Drifblim", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Drifloon { + get { + object obj = ResourceManager.GetObject("Drifloon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Drilbur { + get { + object obj = ResourceManager.GetObject("Drilbur", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Drowzee { + get { + object obj = ResourceManager.GetObject("Drowzee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Druddigon { + get { + object obj = ResourceManager.GetObject("Druddigon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ducklett { + get { + object obj = ResourceManager.GetObject("Ducklett", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dugtrio { + get { + object obj = ResourceManager.GetObject("Dugtrio", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dunsparce { + get { + object obj = ResourceManager.GetObject("Dunsparce", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Duosion { + get { + object obj = ResourceManager.GetObject("Duosion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Durant { + get { + object obj = ResourceManager.GetObject("Durant", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dusclops { + get { + object obj = ResourceManager.GetObject("Dusclops", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dusknoir { + get { + object obj = ResourceManager.GetObject("Dusknoir", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Duskull { + get { + object obj = ResourceManager.GetObject("Duskull", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dustox { + get { + object obj = ResourceManager.GetObject("Dustox", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Dwebble { + get { + object obj = ResourceManager.GetObject("Dwebble", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Eelektrik { + get { + object obj = ResourceManager.GetObject("Eelektrik", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Eelektross { + get { + object obj = ResourceManager.GetObject("Eelektross", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Eevee { + get { + object obj = ResourceManager.GetObject("Eevee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ekans { + get { + object obj = ResourceManager.GetObject("Ekans", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Electabuzz { + get { + object obj = ResourceManager.GetObject("Electabuzz", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Electivire { + get { + object obj = ResourceManager.GetObject("Electivire", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Electrike { + get { + object obj = ResourceManager.GetObject("Electrike", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Electrode { + get { + object obj = ResourceManager.GetObject("Electrode", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Elekid { + get { + object obj = ResourceManager.GetObject("Elekid", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Elgyem { + get { + object obj = ResourceManager.GetObject("Elgyem", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Emboar { + get { + object obj = ResourceManager.GetObject("Emboar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Emolga { + get { + object obj = ResourceManager.GetObject("Emolga", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Empoleon { + get { + object obj = ResourceManager.GetObject("Empoleon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Entei { + get { + object obj = ResourceManager.GetObject("Entei", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Escavalier { + get { + object obj = ResourceManager.GetObject("Escavalier", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Espeon { + get { + object obj = ResourceManager.GetObject("Espeon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Espurr { + get { + object obj = ResourceManager.GetObject("Espurr", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Excadrill { + get { + object obj = ResourceManager.GetObject("Excadrill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Exeggcute { + get { + object obj = ResourceManager.GetObject("Exeggcute", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Exeggutor { + get { + object obj = ResourceManager.GetObject("Exeggutor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Exploud { + get { + object obj = ResourceManager.GetObject("Exploud", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Farfetch_d { + get { + object obj = ResourceManager.GetObject("Farfetch_d", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Fearow { + get { + object obj = ResourceManager.GetObject("Fearow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Feebas { + get { + object obj = ResourceManager.GetObject("Feebas", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Fennekin { + get { + object obj = ResourceManager.GetObject("Fennekin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Feraligatr { + get { + object obj = ResourceManager.GetObject("Feraligatr", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ferroseed { + get { + object obj = ResourceManager.GetObject("Ferroseed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ferrothorn { + get { + object obj = ResourceManager.GetObject("Ferrothorn", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Finneon { + get { + object obj = ResourceManager.GetObject("Finneon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Flaaffy { + get { + object obj = ResourceManager.GetObject("Flaaffy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Flabébé { + get { + object obj = ResourceManager.GetObject("Flabébé", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Flareon { + get { + object obj = ResourceManager.GetObject("Flareon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Fletchinder { + get { + object obj = ResourceManager.GetObject("Fletchinder", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Fletchling { + get { + object obj = ResourceManager.GetObject("Fletchling", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Floatzel { + get { + object obj = ResourceManager.GetObject("Floatzel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Floette { + get { + object obj = ResourceManager.GetObject("Floette", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Florges { + get { + object obj = ResourceManager.GetObject("Florges", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Flygon { + get { + object obj = ResourceManager.GetObject("Flygon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Fomantis { + get { + object obj = ResourceManager.GetObject("Fomantis", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Foongus { + get { + object obj = ResourceManager.GetObject("Foongus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Forretress { + get { + object obj = ResourceManager.GetObject("Forretress", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Fraxure { + get { + object obj = ResourceManager.GetObject("Fraxure", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Frillish { + get { + object obj = ResourceManager.GetObject("Frillish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Froakie { + get { + object obj = ResourceManager.GetObject("Froakie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Frogadier { + get { + object obj = ResourceManager.GetObject("Frogadier", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Froslass { + get { + object obj = ResourceManager.GetObject("Froslass", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Furfrou { + get { + object obj = ResourceManager.GetObject("Furfrou", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Furret { + get { + object obj = ResourceManager.GetObject("Furret", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gabite { + get { + object obj = ResourceManager.GetObject("Gabite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gallade { + get { + object obj = ResourceManager.GetObject("Gallade", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Galvantula { + get { + object obj = ResourceManager.GetObject("Galvantula", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Garbodor { + get { + object obj = ResourceManager.GetObject("Garbodor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Garchomp { + get { + object obj = ResourceManager.GetObject("Garchomp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gardevoir { + get { + object obj = ResourceManager.GetObject("Gardevoir", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gastly { + get { + object obj = ResourceManager.GetObject("Gastly", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gastrodon { + get { + object obj = ResourceManager.GetObject("Gastrodon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Genesect { + get { + object obj = ResourceManager.GetObject("Genesect", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gengar { + get { + object obj = ResourceManager.GetObject("Gengar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Geodude { + get { + object obj = ResourceManager.GetObject("Geodude", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gible { + get { + object obj = ResourceManager.GetObject("Gible", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gigalith { + get { + object obj = ResourceManager.GetObject("Gigalith", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Girafarig { + get { + object obj = ResourceManager.GetObject("Girafarig", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Giratina { + get { + object obj = ResourceManager.GetObject("Giratina", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Glaceon { + get { + object obj = ResourceManager.GetObject("Glaceon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Glalie { + get { + object obj = ResourceManager.GetObject("Glalie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Glameow { + get { + object obj = ResourceManager.GetObject("Glameow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gligar { + get { + object obj = ResourceManager.GetObject("Gligar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gliscor { + get { + object obj = ResourceManager.GetObject("Gliscor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gloom { + get { + object obj = ResourceManager.GetObject("Gloom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gogoat { + get { + object obj = ResourceManager.GetObject("Gogoat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Golbat { + get { + object obj = ResourceManager.GetObject("Golbat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Goldeen { + get { + object obj = ResourceManager.GetObject("Goldeen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Golduck { + get { + object obj = ResourceManager.GetObject("Golduck", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Golem { + get { + object obj = ResourceManager.GetObject("Golem", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Golett { + get { + object obj = ResourceManager.GetObject("Golett", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Golisopod { + get { + object obj = ResourceManager.GetObject("Golisopod", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Golurk { + get { + object obj = ResourceManager.GetObject("Golurk", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Goodra { + get { + object obj = ResourceManager.GetObject("Goodra", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Goomy { + get { + object obj = ResourceManager.GetObject("Goomy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gorebyss { + get { + object obj = ResourceManager.GetObject("Gorebyss", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gothita { + get { + object obj = ResourceManager.GetObject("Gothita", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gothitelle { + get { + object obj = ResourceManager.GetObject("Gothitelle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gothorita { + get { + object obj = ResourceManager.GetObject("Gothorita", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gourgeist { + get { + object obj = ResourceManager.GetObject("Gourgeist", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Granbull { + get { + object obj = ResourceManager.GetObject("Granbull", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Graveler { + get { + object obj = ResourceManager.GetObject("Graveler", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Greninja { + get { + object obj = ResourceManager.GetObject("Greninja", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Grimer { + get { + object obj = ResourceManager.GetObject("Grimer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Grotle { + get { + object obj = ResourceManager.GetObject("Grotle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Groudon { + get { + object obj = ResourceManager.GetObject("Groudon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Grovyle { + get { + object obj = ResourceManager.GetObject("Grovyle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Growlithe { + get { + object obj = ResourceManager.GetObject("Growlithe", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Grubbin { + get { + object obj = ResourceManager.GetObject("Grubbin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Grumpig { + get { + object obj = ResourceManager.GetObject("Grumpig", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gulpin { + get { + object obj = ResourceManager.GetObject("Gulpin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gumshoos { + get { + object obj = ResourceManager.GetObject("Gumshoos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gurdurr { + get { + object obj = ResourceManager.GetObject("Gurdurr", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Guzzlord { + get { + object obj = ResourceManager.GetObject("Guzzlord", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Gyarados { + get { + object obj = ResourceManager.GetObject("Gyarados", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hakamo_o { + get { + object obj = ResourceManager.GetObject("Hakamo_o", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Happiny { + get { + object obj = ResourceManager.GetObject("Happiny", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hariyama { + get { + object obj = ResourceManager.GetObject("Hariyama", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Haunter { + get { + object obj = ResourceManager.GetObject("Haunter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hawlucha { + get { + object obj = ResourceManager.GetObject("Hawlucha", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Haxorus { + get { + object obj = ResourceManager.GetObject("Haxorus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Heatmor { + get { + object obj = ResourceManager.GetObject("Heatmor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Heatran { + get { + object obj = ResourceManager.GetObject("Heatran", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Heliolisk { + get { + object obj = ResourceManager.GetObject("Heliolisk", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Helioptile { + get { + object obj = ResourceManager.GetObject("Helioptile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Heracross { + get { + object obj = ResourceManager.GetObject("Heracross", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Herdier { + get { + object obj = ResourceManager.GetObject("Herdier", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hippopotas { + get { + object obj = ResourceManager.GetObject("Hippopotas", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hippowdon { + get { + object obj = ResourceManager.GetObject("Hippowdon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hitmonchan { + get { + object obj = ResourceManager.GetObject("Hitmonchan", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hitmonlee { + get { + object obj = ResourceManager.GetObject("Hitmonlee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hitmontop { + get { + object obj = ResourceManager.GetObject("Hitmontop", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ho_Oh { + get { + object obj = ResourceManager.GetObject("Ho_Oh", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Honchkrow { + get { + object obj = ResourceManager.GetObject("Honchkrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Honedge { + get { + object obj = ResourceManager.GetObject("Honedge", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hoopa { + get { + object obj = ResourceManager.GetObject("Hoopa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hoothoot { + get { + object obj = ResourceManager.GetObject("Hoothoot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hoppip { + get { + object obj = ResourceManager.GetObject("Hoppip", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Horsea { + get { + object obj = ResourceManager.GetObject("Horsea", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Houndoom { + get { + object obj = ResourceManager.GetObject("Houndoom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Houndour { + get { + object obj = ResourceManager.GetObject("Houndour", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Huntail { + get { + object obj = ResourceManager.GetObject("Huntail", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hydreigon { + get { + object obj = ResourceManager.GetObject("Hydreigon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Hypno { + get { + object obj = ResourceManager.GetObject("Hypno", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Igglybuff { + get { + object obj = ResourceManager.GetObject("Igglybuff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Illumise { + get { + object obj = ResourceManager.GetObject("Illumise", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Incineroar { + get { + object obj = ResourceManager.GetObject("Incineroar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Infernape { + get { + object obj = ResourceManager.GetObject("Infernape", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Inkay { + get { + object obj = ResourceManager.GetObject("Inkay", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ivysaur { + get { + object obj = ResourceManager.GetObject("Ivysaur", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jangmo_o { + get { + object obj = ResourceManager.GetObject("Jangmo_o", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jellicent { + get { + object obj = ResourceManager.GetObject("Jellicent", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jigglypuff { + get { + object obj = ResourceManager.GetObject("Jigglypuff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jirachi { + get { + object obj = ResourceManager.GetObject("Jirachi", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jolteon { + get { + object obj = ResourceManager.GetObject("Jolteon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Joltik { + get { + object obj = ResourceManager.GetObject("Joltik", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jumpluff { + get { + object obj = ResourceManager.GetObject("Jumpluff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Jynx { + get { + object obj = ResourceManager.GetObject("Jynx", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kabuto { + get { + object obj = ResourceManager.GetObject("Kabuto", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kabutops { + get { + object obj = ResourceManager.GetObject("Kabutops", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kadabra { + get { + object obj = ResourceManager.GetObject("Kadabra", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kakuna { + get { + object obj = ResourceManager.GetObject("Kakuna", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kangaskhan { + get { + object obj = ResourceManager.GetObject("Kangaskhan", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Karrablast { + get { + object obj = ResourceManager.GetObject("Karrablast", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kartana { + get { + object obj = ResourceManager.GetObject("Kartana", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kecleon { + get { + object obj = ResourceManager.GetObject("Kecleon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Keldeo { + get { + object obj = ResourceManager.GetObject("Keldeo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kingdra { + get { + object obj = ResourceManager.GetObject("Kingdra", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kingler { + get { + object obj = ResourceManager.GetObject("Kingler", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kirlia { + get { + object obj = ResourceManager.GetObject("Kirlia", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Klang { + get { + object obj = ResourceManager.GetObject("Klang", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Klefki { + get { + object obj = ResourceManager.GetObject("Klefki", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Klink { + get { + object obj = ResourceManager.GetObject("Klink", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Klinklang { + get { + object obj = ResourceManager.GetObject("Klinklang", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Koffing { + get { + object obj = ResourceManager.GetObject("Koffing", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Komala { + get { + object obj = ResourceManager.GetObject("Komala", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kommo_o { + get { + object obj = ResourceManager.GetObject("Kommo_o", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Krabby { + get { + object obj = ResourceManager.GetObject("Krabby", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kricketot { + get { + object obj = ResourceManager.GetObject("Kricketot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kricketune { + get { + object obj = ResourceManager.GetObject("Kricketune", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Krokorok { + get { + object obj = ResourceManager.GetObject("Krokorok", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Krookodile { + get { + object obj = ResourceManager.GetObject("Krookodile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kyogre { + get { + object obj = ResourceManager.GetObject("Kyogre", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Kyurem { + get { + object obj = ResourceManager.GetObject("Kyurem", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lairon { + get { + object obj = ResourceManager.GetObject("Lairon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lampent { + get { + object obj = ResourceManager.GetObject("Lampent", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Landorus { + get { + object obj = ResourceManager.GetObject("Landorus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lanturn { + get { + object obj = ResourceManager.GetObject("Lanturn", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lapras { + get { + object obj = ResourceManager.GetObject("Lapras", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Larvesta { + get { + object obj = ResourceManager.GetObject("Larvesta", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Larvitar { + get { + object obj = ResourceManager.GetObject("Larvitar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Latias { + get { + object obj = ResourceManager.GetObject("Latias", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Latios { + get { + object obj = ResourceManager.GetObject("Latios", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Leafeon { + get { + object obj = ResourceManager.GetObject("Leafeon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Leavanny { + get { + object obj = ResourceManager.GetObject("Leavanny", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ledian { + get { + object obj = ResourceManager.GetObject("Ledian", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ledyba { + get { + object obj = ResourceManager.GetObject("Ledyba", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lickilicky { + get { + object obj = ResourceManager.GetObject("Lickilicky", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lickitung { + get { + object obj = ResourceManager.GetObject("Lickitung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Liepard { + get { + object obj = ResourceManager.GetObject("Liepard", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lileep { + get { + object obj = ResourceManager.GetObject("Lileep", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lilligant { + get { + object obj = ResourceManager.GetObject("Lilligant", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lillipup { + get { + object obj = ResourceManager.GetObject("Lillipup", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Linoone { + get { + object obj = ResourceManager.GetObject("Linoone", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Litleo { + get { + object obj = ResourceManager.GetObject("Litleo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Litten { + get { + object obj = ResourceManager.GetObject("Litten", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Litwick { + get { + object obj = ResourceManager.GetObject("Litwick", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lombre { + get { + object obj = ResourceManager.GetObject("Lombre", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lopunny { + get { + object obj = ResourceManager.GetObject("Lopunny", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lotad { + get { + object obj = ResourceManager.GetObject("Lotad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Loudred { + get { + object obj = ResourceManager.GetObject("Loudred", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lucario { + get { + object obj = ResourceManager.GetObject("Lucario", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ludicolo { + get { + object obj = ResourceManager.GetObject("Ludicolo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lugia { + get { + object obj = ResourceManager.GetObject("Lugia", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lumineon { + get { + object obj = ResourceManager.GetObject("Lumineon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lunala { + get { + object obj = ResourceManager.GetObject("Lunala", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lunatone { + get { + object obj = ResourceManager.GetObject("Lunatone", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lurantis { + get { + object obj = ResourceManager.GetObject("Lurantis", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Luvdisc { + get { + object obj = ResourceManager.GetObject("Luvdisc", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Luxio { + get { + object obj = ResourceManager.GetObject("Luxio", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Luxray { + get { + object obj = ResourceManager.GetObject("Luxray", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lycanroc_Luna { + get { + object obj = ResourceManager.GetObject("Lycanroc_Luna", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Lycanroc_Sol { + get { + object obj = ResourceManager.GetObject("Lycanroc_Sol", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Machamp { + get { + object obj = ResourceManager.GetObject("Machamp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Machoke { + get { + object obj = ResourceManager.GetObject("Machoke", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Machop { + get { + object obj = ResourceManager.GetObject("Machop", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magby { + get { + object obj = ResourceManager.GetObject("Magby", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magcargo { + get { + object obj = ResourceManager.GetObject("Magcargo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magearna { + get { + object obj = ResourceManager.GetObject("Magearna", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magikarp { + get { + object obj = ResourceManager.GetObject("Magikarp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magmar { + get { + object obj = ResourceManager.GetObject("Magmar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magmortar { + get { + object obj = ResourceManager.GetObject("Magmortar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magnemite { + get { + object obj = ResourceManager.GetObject("Magnemite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magneton { + get { + object obj = ResourceManager.GetObject("Magneton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Magnezone { + get { + object obj = ResourceManager.GetObject("Magnezone", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Makuhita { + get { + object obj = ResourceManager.GetObject("Makuhita", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Malamar { + get { + object obj = ResourceManager.GetObject("Malamar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mamoswine { + get { + object obj = ResourceManager.GetObject("Mamoswine", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Manaphy { + get { + object obj = ResourceManager.GetObject("Manaphy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mandibuzz { + get { + object obj = ResourceManager.GetObject("Mandibuzz", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Manectric { + get { + object obj = ResourceManager.GetObject("Manectric", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mankey { + get { + object obj = ResourceManager.GetObject("Mankey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mantine { + get { + object obj = ResourceManager.GetObject("Mantine", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mantyke { + get { + object obj = ResourceManager.GetObject("Mantyke", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Maractus { + get { + object obj = ResourceManager.GetObject("Maractus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mareanie { + get { + object obj = ResourceManager.GetObject("Mareanie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mareep { + get { + object obj = ResourceManager.GetObject("Mareep", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Marill { + get { + object obj = ResourceManager.GetObject("Marill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Marowak { + get { + object obj = ResourceManager.GetObject("Marowak", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Marshadow { + get { + object obj = ResourceManager.GetObject("Marshadow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Marshtomp { + get { + object obj = ResourceManager.GetObject("Marshtomp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Masquerain { + get { + object obj = ResourceManager.GetObject("Masquerain", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mawile { + get { + object obj = ResourceManager.GetObject("Mawile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Medicham { + get { + object obj = ResourceManager.GetObject("Medicham", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Meditite { + get { + object obj = ResourceManager.GetObject("Meditite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Meganium { + get { + object obj = ResourceManager.GetObject("Meganium", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Meloetta { + get { + object obj = ResourceManager.GetObject("Meloetta", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Meowstic { + get { + object obj = ResourceManager.GetObject("Meowstic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Meowth { + get { + object obj = ResourceManager.GetObject("Meowth", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mesprit { + get { + object obj = ResourceManager.GetObject("Mesprit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Metagross { + get { + object obj = ResourceManager.GetObject("Metagross", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Metang { + get { + object obj = ResourceManager.GetObject("Metang", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Metapod { + get { + object obj = ResourceManager.GetObject("Metapod", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mew { + get { + object obj = ResourceManager.GetObject("Mew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mewtwo { + get { + object obj = ResourceManager.GetObject("Mewtwo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mienfoo { + get { + object obj = ResourceManager.GetObject("Mienfoo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mienshao { + get { + object obj = ResourceManager.GetObject("Mienshao", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mightyena { + get { + object obj = ResourceManager.GetObject("Mightyena", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Milotic { + get { + object obj = ResourceManager.GetObject("Milotic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Miltank { + get { + object obj = ResourceManager.GetObject("Miltank", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mime_Jr_ { + get { + object obj = ResourceManager.GetObject("Mime_Jr_", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mimikyu { + get { + object obj = ResourceManager.GetObject("Mimikyu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Minccino { + get { + object obj = ResourceManager.GetObject("Minccino", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Minior { + get { + object obj = ResourceManager.GetObject("Minior", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Minun { + get { + object obj = ResourceManager.GetObject("Minun", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Misdreavus { + get { + object obj = ResourceManager.GetObject("Misdreavus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mismagius { + get { + object obj = ResourceManager.GetObject("Mismagius", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Moltres { + get { + object obj = ResourceManager.GetObject("Moltres", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Monferno { + get { + object obj = ResourceManager.GetObject("Monferno", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Morelull { + get { + object obj = ResourceManager.GetObject("Morelull", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mothim { + get { + object obj = ResourceManager.GetObject("Mothim", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mr__Mime { + get { + object obj = ResourceManager.GetObject("Mr__Mime", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mudbray { + get { + object obj = ResourceManager.GetObject("Mudbray", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mudkip { + get { + object obj = ResourceManager.GetObject("Mudkip", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Mudsdale { + get { + object obj = ResourceManager.GetObject("Mudsdale", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Muk { + get { + object obj = ResourceManager.GetObject("Muk", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Munchlax { + get { + object obj = ResourceManager.GetObject("Munchlax", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Munna { + get { + object obj = ResourceManager.GetObject("Munna", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Murkrow { + get { + object obj = ResourceManager.GetObject("Murkrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Musharna { + get { + object obj = ResourceManager.GetObject("Musharna", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Naganadel { + get { + object obj = ResourceManager.GetObject("Naganadel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Natu { + get { + object obj = ResourceManager.GetObject("Natu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Necrozma { + get { + object obj = ResourceManager.GetObject("Necrozma", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nidoking { + get { + object obj = ResourceManager.GetObject("Nidoking", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nidoqueen { + get { + object obj = ResourceManager.GetObject("Nidoqueen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap NidoranF { + get { + object obj = ResourceManager.GetObject("NidoranF", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap NidoranM { + get { + object obj = ResourceManager.GetObject("NidoranM", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nidorina { + get { + object obj = ResourceManager.GetObject("Nidorina", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nidorino { + get { + object obj = ResourceManager.GetObject("Nidorino", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nihilego { + get { + object obj = ResourceManager.GetObject("Nihilego", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nincada { + get { + object obj = ResourceManager.GetObject("Nincada", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ninetales { + get { + object obj = ResourceManager.GetObject("Ninetales", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ninjask { + get { + object obj = ResourceManager.GetObject("Ninjask", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Noctowl { + get { + object obj = ResourceManager.GetObject("Noctowl", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Noibat { + get { + object obj = ResourceManager.GetObject("Noibat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Noivern { + get { + object obj = ResourceManager.GetObject("Noivern", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nosepass { + get { + object obj = ResourceManager.GetObject("Nosepass", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Numel { + get { + object obj = ResourceManager.GetObject("Numel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Nuzleaf { + get { + object obj = ResourceManager.GetObject("Nuzleaf", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Octillery { + get { + object obj = ResourceManager.GetObject("Octillery", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Oddish { + get { + object obj = ResourceManager.GetObject("Oddish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Omanyte { + get { + object obj = ResourceManager.GetObject("Omanyte", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Omastar { + get { + object obj = ResourceManager.GetObject("Omastar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Onix { + get { + object obj = ResourceManager.GetObject("Onix", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Oranguru { + get { + object obj = ResourceManager.GetObject("Oranguru", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Oricorio { + get { + object obj = ResourceManager.GetObject("Oricorio", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Oshawott { + get { + object obj = ResourceManager.GetObject("Oshawott", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pachirisu { + get { + object obj = ResourceManager.GetObject("Pachirisu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Palkia { + get { + object obj = ResourceManager.GetObject("Palkia", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Palossand { + get { + object obj = ResourceManager.GetObject("Palossand", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Palpitoad { + get { + object obj = ResourceManager.GetObject("Palpitoad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pancham { + get { + object obj = ResourceManager.GetObject("Pancham", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pangoro { + get { + object obj = ResourceManager.GetObject("Pangoro", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Panpour { + get { + object obj = ResourceManager.GetObject("Panpour", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pansage { + get { + object obj = ResourceManager.GetObject("Pansage", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pansear { + get { + object obj = ResourceManager.GetObject("Pansear", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Paras { + get { + object obj = ResourceManager.GetObject("Paras", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Parasect { + get { + object obj = ResourceManager.GetObject("Parasect", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Passimian { + get { + object obj = ResourceManager.GetObject("Passimian", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Patrat { + get { + object obj = ResourceManager.GetObject("Patrat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pawniard { + get { + object obj = ResourceManager.GetObject("Pawniard", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pelipper { + get { + object obj = ResourceManager.GetObject("Pelipper", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Persian { + get { + object obj = ResourceManager.GetObject("Persian", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Petilil { + get { + object obj = ResourceManager.GetObject("Petilil", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Phanpy { + get { + object obj = ResourceManager.GetObject("Phanpy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Phantump { + get { + object obj = ResourceManager.GetObject("Phantump", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pheromosa { + get { + object obj = ResourceManager.GetObject("Pheromosa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Phione { + get { + object obj = ResourceManager.GetObject("Phione", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pichu { + get { + object obj = ResourceManager.GetObject("Pichu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pidgeot { + get { + object obj = ResourceManager.GetObject("Pidgeot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pidgeotto { + get { + object obj = ResourceManager.GetObject("Pidgeotto", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pidgey { + get { + object obj = ResourceManager.GetObject("Pidgey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pidove { + get { + object obj = ResourceManager.GetObject("Pidove", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pignite { + get { + object obj = ResourceManager.GetObject("Pignite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pikachu { + get { + object obj = ResourceManager.GetObject("Pikachu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pikipek { + get { + object obj = ResourceManager.GetObject("Pikipek", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Piloswine { + get { + object obj = ResourceManager.GetObject("Piloswine", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pineco { + get { + object obj = ResourceManager.GetObject("Pineco", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pinsir { + get { + object obj = ResourceManager.GetObject("Pinsir", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Piplup { + get { + object obj = ResourceManager.GetObject("Piplup", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Plusle { + get { + object obj = ResourceManager.GetObject("Plusle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Poipole { + get { + object obj = ResourceManager.GetObject("Poipole", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Politoed { + get { + object obj = ResourceManager.GetObject("Politoed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Poliwag { + get { + object obj = ResourceManager.GetObject("Poliwag", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Poliwhirl { + get { + object obj = ResourceManager.GetObject("Poliwhirl", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Poliwrath { + get { + object obj = ResourceManager.GetObject("Poliwrath", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ponyta { + get { + object obj = ResourceManager.GetObject("Ponyta", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Poochyena { + get { + object obj = ResourceManager.GetObject("Poochyena", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Popplio { + get { + object obj = ResourceManager.GetObject("Popplio", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Porygon { + get { + object obj = ResourceManager.GetObject("Porygon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Porygon_Z { + get { + object obj = ResourceManager.GetObject("Porygon_Z", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Porygon2 { + get { + object obj = ResourceManager.GetObject("Porygon2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Primarina { + get { + object obj = ResourceManager.GetObject("Primarina", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Primeape { + get { + object obj = ResourceManager.GetObject("Primeape", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Prinplup { + get { + object obj = ResourceManager.GetObject("Prinplup", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Probopass { + get { + object obj = ResourceManager.GetObject("Probopass", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Psyduck { + get { + object obj = ResourceManager.GetObject("Psyduck", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pumpkaboo { + get { + object obj = ResourceManager.GetObject("Pumpkaboo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pupitar { + get { + object obj = ResourceManager.GetObject("Pupitar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Purrloin { + get { + object obj = ResourceManager.GetObject("Purrloin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Purugly { + get { + object obj = ResourceManager.GetObject("Purugly", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pyroar { + get { + object obj = ResourceManager.GetObject("Pyroar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Pyukumuku { + get { + object obj = ResourceManager.GetObject("Pyukumuku", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Quagsire { + get { + object obj = ResourceManager.GetObject("Quagsire", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Quilava { + get { + object obj = ResourceManager.GetObject("Quilava", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Quilladin { + get { + object obj = ResourceManager.GetObject("Quilladin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Qwilfish { + get { + object obj = ResourceManager.GetObject("Qwilfish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Raichu { + get { + object obj = ResourceManager.GetObject("Raichu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Raikou { + get { + object obj = ResourceManager.GetObject("Raikou", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ralts { + get { + object obj = ResourceManager.GetObject("Ralts", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rampardos { + get { + object obj = ResourceManager.GetObject("Rampardos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rapidash { + get { + object obj = ResourceManager.GetObject("Rapidash", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Raticate { + get { + object obj = ResourceManager.GetObject("Raticate", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rattata { + get { + object obj = ResourceManager.GetObject("Rattata", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rayquaza { + get { + object obj = ResourceManager.GetObject("Rayquaza", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Regice { + get { + object obj = ResourceManager.GetObject("Regice", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Regigigas { + get { + object obj = ResourceManager.GetObject("Regigigas", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Regirock { + get { + object obj = ResourceManager.GetObject("Regirock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Registeel { + get { + object obj = ResourceManager.GetObject("Registeel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Relicanth { + get { + object obj = ResourceManager.GetObject("Relicanth", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Remoraid { + get { + object obj = ResourceManager.GetObject("Remoraid", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Reshiram { + get { + object obj = ResourceManager.GetObject("Reshiram", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Reuniclus { + get { + object obj = ResourceManager.GetObject("Reuniclus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rhydon { + get { + object obj = ResourceManager.GetObject("Rhydon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rhyhorn { + get { + object obj = ResourceManager.GetObject("Rhyhorn", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rhyperior { + get { + object obj = ResourceManager.GetObject("Rhyperior", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ribombee { + get { + object obj = ResourceManager.GetObject("Ribombee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Riolu { + get { + object obj = ResourceManager.GetObject("Riolu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rockruff { + get { + object obj = ResourceManager.GetObject("Rockruff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Roggenrola { + get { + object obj = ResourceManager.GetObject("Roggenrola", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Roselia { + get { + object obj = ResourceManager.GetObject("Roselia", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Roserade { + get { + object obj = ResourceManager.GetObject("Roserade", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rotom { + get { + object obj = ResourceManager.GetObject("Rotom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rowlet { + get { + object obj = ResourceManager.GetObject("Rowlet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Rufflet { + get { + object obj = ResourceManager.GetObject("Rufflet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sableye { + get { + object obj = ResourceManager.GetObject("Sableye", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Salamence { + get { + object obj = ResourceManager.GetObject("Salamence", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Salandit { + get { + object obj = ResourceManager.GetObject("Salandit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Salazzle { + get { + object obj = ResourceManager.GetObject("Salazzle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Samurott { + get { + object obj = ResourceManager.GetObject("Samurott", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sandile { + get { + object obj = ResourceManager.GetObject("Sandile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sandshrew { + get { + object obj = ResourceManager.GetObject("Sandshrew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sandslash { + get { + object obj = ResourceManager.GetObject("Sandslash", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sandygast { + get { + object obj = ResourceManager.GetObject("Sandygast", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sawk { + get { + object obj = ResourceManager.GetObject("Sawk", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sawsbuck { + get { + object obj = ResourceManager.GetObject("Sawsbuck", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Scatterbug { + get { + object obj = ResourceManager.GetObject("Scatterbug", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sceptile { + get { + object obj = ResourceManager.GetObject("Sceptile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Scizor { + get { + object obj = ResourceManager.GetObject("Scizor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Scolipede { + get { + object obj = ResourceManager.GetObject("Scolipede", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Scrafty { + get { + object obj = ResourceManager.GetObject("Scrafty", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Scraggy { + get { + object obj = ResourceManager.GetObject("Scraggy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Scyther { + get { + object obj = ResourceManager.GetObject("Scyther", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Seadra { + get { + object obj = ResourceManager.GetObject("Seadra", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Seaking { + get { + object obj = ResourceManager.GetObject("Seaking", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sealeo { + get { + object obj = ResourceManager.GetObject("Sealeo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Seedot { + get { + object obj = ResourceManager.GetObject("Seedot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Seel { + get { + object obj = ResourceManager.GetObject("Seel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Seismitoad { + get { + object obj = ResourceManager.GetObject("Seismitoad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sentret { + get { + object obj = ResourceManager.GetObject("Sentret", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Serperior { + get { + object obj = ResourceManager.GetObject("Serperior", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Servine { + get { + object obj = ResourceManager.GetObject("Servine", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Seviper { + get { + object obj = ResourceManager.GetObject("Seviper", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sewaddle { + get { + object obj = ResourceManager.GetObject("Sewaddle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sharpedo { + get { + object obj = ResourceManager.GetObject("Sharpedo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shaymin { + get { + object obj = ResourceManager.GetObject("Shaymin", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shedinja { + get { + object obj = ResourceManager.GetObject("Shedinja", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shelgon { + get { + object obj = ResourceManager.GetObject("Shelgon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shellder { + get { + object obj = ResourceManager.GetObject("Shellder", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shellos { + get { + object obj = ResourceManager.GetObject("Shellos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shelmet { + get { + object obj = ResourceManager.GetObject("Shelmet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shieldon { + get { + object obj = ResourceManager.GetObject("Shieldon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shiftry { + get { + object obj = ResourceManager.GetObject("Shiftry", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shiinotic { + get { + object obj = ResourceManager.GetObject("Shiinotic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shinx { + get { + object obj = ResourceManager.GetObject("Shinx", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shroomish { + get { + object obj = ResourceManager.GetObject("Shroomish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shuckle { + get { + object obj = ResourceManager.GetObject("Shuckle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Shuppet { + get { + object obj = ResourceManager.GetObject("Shuppet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sigilyph { + get { + object obj = ResourceManager.GetObject("Sigilyph", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Silcoon { + get { + object obj = ResourceManager.GetObject("Silcoon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Silvally { + get { + object obj = ResourceManager.GetObject("Silvally", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Simipour { + get { + object obj = ResourceManager.GetObject("Simipour", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Simisage { + get { + object obj = ResourceManager.GetObject("Simisage", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Simisear { + get { + object obj = ResourceManager.GetObject("Simisear", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skarmory { + get { + object obj = ResourceManager.GetObject("Skarmory", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skiddo { + get { + object obj = ResourceManager.GetObject("Skiddo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skiploom { + get { + object obj = ResourceManager.GetObject("Skiploom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skitty { + get { + object obj = ResourceManager.GetObject("Skitty", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skorupi { + get { + object obj = ResourceManager.GetObject("Skorupi", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skrelp { + get { + object obj = ResourceManager.GetObject("Skrelp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Skuntank { + get { + object obj = ResourceManager.GetObject("Skuntank", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slaking { + get { + object obj = ResourceManager.GetObject("Slaking", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slakoth { + get { + object obj = ResourceManager.GetObject("Slakoth", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sliggoo { + get { + object obj = ResourceManager.GetObject("Sliggoo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slowbro { + get { + object obj = ResourceManager.GetObject("Slowbro", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slowking { + get { + object obj = ResourceManager.GetObject("Slowking", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slowpoke { + get { + object obj = ResourceManager.GetObject("Slowpoke", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slugma { + get { + object obj = ResourceManager.GetObject("Slugma", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Slurpuff { + get { + object obj = ResourceManager.GetObject("Slurpuff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Smeargle { + get { + object obj = ResourceManager.GetObject("Smeargle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Smoochum { + get { + object obj = ResourceManager.GetObject("Smoochum", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sneasel { + get { + object obj = ResourceManager.GetObject("Sneasel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Snivy { + get { + object obj = ResourceManager.GetObject("Snivy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Snorlax { + get { + object obj = ResourceManager.GetObject("Snorlax", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Snorunt { + get { + object obj = ResourceManager.GetObject("Snorunt", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Snover { + get { + object obj = ResourceManager.GetObject("Snover", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Snubbull { + get { + object obj = ResourceManager.GetObject("Snubbull", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Solgaleo { + get { + object obj = ResourceManager.GetObject("Solgaleo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Solosis { + get { + object obj = ResourceManager.GetObject("Solosis", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Solrock { + get { + object obj = ResourceManager.GetObject("Solrock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spearow { + get { + object obj = ResourceManager.GetObject("Spearow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spewpa { + get { + object obj = ResourceManager.GetObject("Spewpa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spheal { + get { + object obj = ResourceManager.GetObject("Spheal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spinarak { + get { + object obj = ResourceManager.GetObject("Spinarak", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spinda { + get { + object obj = ResourceManager.GetObject("Spinda", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spiritomb { + get { + object obj = ResourceManager.GetObject("Spiritomb", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spoink { + get { + object obj = ResourceManager.GetObject("Spoink", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Spritzee { + get { + object obj = ResourceManager.GetObject("Spritzee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Squirtle { + get { + object obj = ResourceManager.GetObject("Squirtle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Stakataka { + get { + object obj = ResourceManager.GetObject("Stakataka", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Stantler { + get { + object obj = ResourceManager.GetObject("Stantler", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Staraptor { + get { + object obj = ResourceManager.GetObject("Staraptor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Staravia { + get { + object obj = ResourceManager.GetObject("Staravia", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Starly { + get { + object obj = ResourceManager.GetObject("Starly", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Starmie { + get { + object obj = ResourceManager.GetObject("Starmie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Staryu { + get { + object obj = ResourceManager.GetObject("Staryu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Steelix { + get { + object obj = ResourceManager.GetObject("Steelix", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Steenee { + get { + object obj = ResourceManager.GetObject("Steenee", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Stoutland { + get { + object obj = ResourceManager.GetObject("Stoutland", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Stufful { + get { + object obj = ResourceManager.GetObject("Stufful", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Stunfisk { + get { + object obj = ResourceManager.GetObject("Stunfisk", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Stunky { + get { + object obj = ResourceManager.GetObject("Stunky", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sudowoodo { + get { + object obj = ResourceManager.GetObject("Sudowoodo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Suicune { + get { + object obj = ResourceManager.GetObject("Suicune", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sunflora { + get { + object obj = ResourceManager.GetObject("Sunflora", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sunkern { + get { + object obj = ResourceManager.GetObject("Sunkern", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Surskit { + get { + object obj = ResourceManager.GetObject("Surskit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swablu { + get { + object obj = ResourceManager.GetObject("Swablu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swadloon { + get { + object obj = ResourceManager.GetObject("Swadloon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swalot { + get { + object obj = ResourceManager.GetObject("Swalot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swampert { + get { + object obj = ResourceManager.GetObject("Swampert", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swanna { + get { + object obj = ResourceManager.GetObject("Swanna", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swellow { + get { + object obj = ResourceManager.GetObject("Swellow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swinub { + get { + object obj = ResourceManager.GetObject("Swinub", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swirlix { + get { + object obj = ResourceManager.GetObject("Swirlix", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Swoobat { + get { + object obj = ResourceManager.GetObject("Swoobat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Sylveon { + get { + object obj = ResourceManager.GetObject("Sylveon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Taillow { + get { + object obj = ResourceManager.GetObject("Taillow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Talonflame { + get { + object obj = ResourceManager.GetObject("Talonflame", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tangela { + get { + object obj = ResourceManager.GetObject("Tangela", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tangrowth { + get { + object obj = ResourceManager.GetObject("Tangrowth", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tapu_Bulu { + get { + object obj = ResourceManager.GetObject("Tapu_Bulu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tapu_Fini { + get { + object obj = ResourceManager.GetObject("Tapu_Fini", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tapu_Koko { + get { + object obj = ResourceManager.GetObject("Tapu_Koko", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tapu_Lele { + get { + object obj = ResourceManager.GetObject("Tapu_Lele", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tauros { + get { + object obj = ResourceManager.GetObject("Tauros", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Teddiursa { + get { + object obj = ResourceManager.GetObject("Teddiursa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tentacool { + get { + object obj = ResourceManager.GetObject("Tentacool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tentacruel { + get { + object obj = ResourceManager.GetObject("Tentacruel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tepig { + get { + object obj = ResourceManager.GetObject("Tepig", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Terrakion { + get { + object obj = ResourceManager.GetObject("Terrakion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Throh { + get { + object obj = ResourceManager.GetObject("Throh", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Thundurus { + get { + object obj = ResourceManager.GetObject("Thundurus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Timburr { + get { + object obj = ResourceManager.GetObject("Timburr", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tirtouga { + get { + object obj = ResourceManager.GetObject("Tirtouga", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Togedemaru { + get { + object obj = ResourceManager.GetObject("Togedemaru", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Togekiss { + get { + object obj = ResourceManager.GetObject("Togekiss", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Togepi { + get { + object obj = ResourceManager.GetObject("Togepi", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Togetic { + get { + object obj = ResourceManager.GetObject("Togetic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Torchic { + get { + object obj = ResourceManager.GetObject("Torchic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Torkoal { + get { + object obj = ResourceManager.GetObject("Torkoal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tornadus { + get { + object obj = ResourceManager.GetObject("Tornadus", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Torracat { + get { + object obj = ResourceManager.GetObject("Torracat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Torterra { + get { + object obj = ResourceManager.GetObject("Torterra", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Totodile { + get { + object obj = ResourceManager.GetObject("Totodile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Toucannon { + get { + object obj = ResourceManager.GetObject("Toucannon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Toxapex { + get { + object obj = ResourceManager.GetObject("Toxapex", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Toxicroak { + get { + object obj = ResourceManager.GetObject("Toxicroak", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tranquill { + get { + object obj = ResourceManager.GetObject("Tranquill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Trapinch { + get { + object obj = ResourceManager.GetObject("Trapinch", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Treecko { + get { + object obj = ResourceManager.GetObject("Treecko", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Trevenant { + get { + object obj = ResourceManager.GetObject("Trevenant", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tropius { + get { + object obj = ResourceManager.GetObject("Tropius", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Trubbish { + get { + object obj = ResourceManager.GetObject("Trubbish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Trumbeak { + get { + object obj = ResourceManager.GetObject("Trumbeak", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tsareena { + get { + object obj = ResourceManager.GetObject("Tsareena", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Turtonator { + get { + object obj = ResourceManager.GetObject("Turtonator", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Turtwig { + get { + object obj = ResourceManager.GetObject("Turtwig", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tympole { + get { + object obj = ResourceManager.GetObject("Tympole", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tynamo { + get { + object obj = ResourceManager.GetObject("Tynamo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Type_Null { + get { + object obj = ResourceManager.GetObject("Type_Null", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Typhlosion { + get { + object obj = ResourceManager.GetObject("Typhlosion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tyranitar { + get { + object obj = ResourceManager.GetObject("Tyranitar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tyrantrum { + get { + object obj = ResourceManager.GetObject("Tyrantrum", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tyrogue { + get { + object obj = ResourceManager.GetObject("Tyrogue", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Tyrunt { + get { + object obj = ResourceManager.GetObject("Tyrunt", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Umbreon { + get { + object obj = ResourceManager.GetObject("Umbreon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Unfezant { + get { + object obj = ResourceManager.GetObject("Unfezant", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Unown { + get { + object obj = ResourceManager.GetObject("Unown", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Ursaring { + get { + object obj = ResourceManager.GetObject("Ursaring", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Uxie { + get { + object obj = ResourceManager.GetObject("Uxie", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vanillish { + get { + object obj = ResourceManager.GetObject("Vanillish", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vanillite { + get { + object obj = ResourceManager.GetObject("Vanillite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vanilluxe { + get { + object obj = ResourceManager.GetObject("Vanilluxe", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vaporeon { + get { + object obj = ResourceManager.GetObject("Vaporeon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Venipede { + get { + object obj = ResourceManager.GetObject("Venipede", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Venomoth { + get { + object obj = ResourceManager.GetObject("Venomoth", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Venonat { + get { + object obj = ResourceManager.GetObject("Venonat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Venusaur { + get { + object obj = ResourceManager.GetObject("Venusaur", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vespiquen { + get { + object obj = ResourceManager.GetObject("Vespiquen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vibrava { + get { + object obj = ResourceManager.GetObject("Vibrava", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Victini { + get { + object obj = ResourceManager.GetObject("Victini", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Victreebel { + get { + object obj = ResourceManager.GetObject("Victreebel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vigoroth { + get { + object obj = ResourceManager.GetObject("Vigoroth", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vikavolt { + get { + object obj = ResourceManager.GetObject("Vikavolt", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vileplume { + get { + object obj = ResourceManager.GetObject("Vileplume", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Virizion { + get { + object obj = ResourceManager.GetObject("Virizion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vivillon { + get { + object obj = ResourceManager.GetObject("Vivillon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Volbeat { + get { + object obj = ResourceManager.GetObject("Volbeat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Volcanion { + get { + object obj = ResourceManager.GetObject("Volcanion", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Volcarona { + get { + object obj = ResourceManager.GetObject("Volcarona", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Voltorb { + get { + object obj = ResourceManager.GetObject("Voltorb", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vullaby { + get { + object obj = ResourceManager.GetObject("Vullaby", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Vulpix { + get { + object obj = ResourceManager.GetObject("Vulpix", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wailmer { + get { + object obj = ResourceManager.GetObject("Wailmer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wailord { + get { + object obj = ResourceManager.GetObject("Wailord", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Walrein { + get { + object obj = ResourceManager.GetObject("Walrein", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wartortle { + get { + object obj = ResourceManager.GetObject("Wartortle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Watchog { + get { + object obj = ResourceManager.GetObject("Watchog", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Weavile { + get { + object obj = ResourceManager.GetObject("Weavile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Weedle { + get { + object obj = ResourceManager.GetObject("Weedle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Weepinbell { + get { + object obj = ResourceManager.GetObject("Weepinbell", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Weezing { + get { + object obj = ResourceManager.GetObject("Weezing", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Whimsicott { + get { + object obj = ResourceManager.GetObject("Whimsicott", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Whirlipede { + get { + object obj = ResourceManager.GetObject("Whirlipede", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Whiscash { + get { + object obj = ResourceManager.GetObject("Whiscash", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Whismur { + get { + object obj = ResourceManager.GetObject("Whismur", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wigglytuff { + get { + object obj = ResourceManager.GetObject("Wigglytuff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wimpod { + get { + object obj = ResourceManager.GetObject("Wimpod", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wingull { + get { + object obj = ResourceManager.GetObject("Wingull", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wishiwashi { + get { + object obj = ResourceManager.GetObject("Wishiwashi", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wobbuffet { + get { + object obj = ResourceManager.GetObject("Wobbuffet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Woobat { + get { + object obj = ResourceManager.GetObject("Woobat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wooper { + get { + object obj = ResourceManager.GetObject("Wooper", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wormadam { + get { + object obj = ResourceManager.GetObject("Wormadam", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wurmple { + get { + object obj = ResourceManager.GetObject("Wurmple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Wynaut { + get { + object obj = ResourceManager.GetObject("Wynaut", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Xatu { + get { + object obj = ResourceManager.GetObject("Xatu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Xerneas { + get { + object obj = ResourceManager.GetObject("Xerneas", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Xurkitree { + get { + object obj = ResourceManager.GetObject("Xurkitree", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Yamask { + get { + object obj = ResourceManager.GetObject("Yamask", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Yanma { + get { + object obj = ResourceManager.GetObject("Yanma", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Yanmega { + get { + object obj = ResourceManager.GetObject("Yanmega", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Yungoos { + get { + object obj = ResourceManager.GetObject("Yungoos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Yveltal { + get { + object obj = ResourceManager.GetObject("Yveltal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zangoose { + get { + object obj = ResourceManager.GetObject("Zangoose", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zapdos { + get { + object obj = ResourceManager.GetObject("Zapdos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zebstrika { + get { + object obj = ResourceManager.GetObject("Zebstrika", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zekrom { + get { + object obj = ResourceManager.GetObject("Zekrom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zeraora { + get { + object obj = ResourceManager.GetObject("Zeraora", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zigzagoon { + get { + object obj = ResourceManager.GetObject("Zigzagoon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zoroark { + get { + object obj = ResourceManager.GetObject("Zoroark", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zorua { + get { + object obj = ResourceManager.GetObject("Zorua", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zubat { + get { + object obj = ResourceManager.GetObject("Zubat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zweilous { + get { + object obj = ResourceManager.GetObject("Zweilous", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Zygarde { + get { + object obj = ResourceManager.GetObject("Zygarde", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/DS_Map/Properties/Resources.Designer.cs b/DS_Map/Properties/Resources.Designer.cs index d53c4ee..746bfd9 100644 --- a/DS_Map/Properties/Resources.Designer.cs +++ b/DS_Map/Properties/Resources.Designer.cs @@ -9,9 +9,8 @@ //------------------------------------------------------------------------------ namespace DSPRE.Properties { - using System; - - + + /// /// Classe di risorse fortemente tipizzata per la ricerca di stringhe localizzate e così via. /// diff --git a/DS_Map/ROMFiles/ScriptAction.cs b/DS_Map/ROMFiles/ScriptAction.cs index 2d1ce05..ddf51fa 100644 --- a/DS_Map/ROMFiles/ScriptAction.cs +++ b/DS_Map/ROMFiles/ScriptAction.cs @@ -45,7 +45,7 @@ namespace DSPRE.ROMFiles { id = PokeDatabase.ScriptEditor.movementsDictIDName.First(x => x.Value.Equals(nameParts[0], StringComparison.InvariantCultureIgnoreCase)).Key; } catch (InvalidOperationException) { try { - id = UInt16.Parse(nameParts[0], NumberStyles.HexNumber, CultureInfo.InvariantCulture); + id = ushort.Parse(nameParts[0], NumberStyles.HexNumber, CultureInfo.InvariantCulture); } catch (FormatException) { string details; if (wholeLine.Contains('@') && wholeLine.Contains('#')) { diff --git a/DS_Map/ROMFiles/ScriptCommand.cs b/DS_Map/ROMFiles/ScriptCommand.cs index d21bf3b..7b59da0 100644 --- a/DS_Map/ROMFiles/ScriptCommand.cs +++ b/DS_Map/ROMFiles/ScriptCommand.cs @@ -102,7 +102,7 @@ namespace DSPRE.ROMFiles { } catch (InvalidOperationException) { try { - id = UInt16.Parse(nameParts[0], NumberStyles.HexNumber, CultureInfo.InvariantCulture); + id = ushort.Parse(nameParts[0], NumberStyles.HexNumber, CultureInfo.InvariantCulture); } catch { string details; if (wholeLine.Contains('@') && wholeLine.Contains('#')) { @@ -161,7 +161,7 @@ namespace DSPRE.ROMFiles { } else if (nameParts[i + 1].Equals("Camera", StringComparison.InvariantCultureIgnoreCase)) { cmdParams.Add(BitConverter.GetBytes((ushort)241)); } else { - cmdParams.Add(BitConverter.GetBytes(UInt16.Parse(nameParts[i + 1].Substring(indexOfSpecialCharacter + 1), style))); + cmdParams.Add(BitConverter.GetBytes(ushort.Parse(nameParts[i + 1].Substring(indexOfSpecialCharacter + 1), style))); } break; case 4: diff --git a/DS_Map/ROMFiles/TextArchive.cs b/DS_Map/ROMFiles/TextArchive.cs index 2e3bb92..3fdebb5 100644 --- a/DS_Map/ROMFiles/TextArchive.cs +++ b/DS_Map/ROMFiles/TextArchive.cs @@ -279,8 +279,8 @@ namespace DSPRE.ROMFiles { private byte[] ToByteArray(List msgSource) { MemoryStream newData = new MemoryStream(); using (BinaryWriter writer = new BinaryWriter(newData)) { - writer.Write((UInt16)msgSource.Count); - writer.Write((UInt16)initialKey); + writer.Write((ushort)msgSource.Count); + writer.Write((ushort)initialKey); int key = (initialKey * 0x2FD) & 0xFFFF; int key2 = 0; @@ -303,11 +303,11 @@ namespace DSPRE.ROMFiles { int[] currentString = EncodeString(msgSource[i], i, stringSize[i]); for (int j = 0; j < stringSize[i] - 1; j++) { - writer.Write((UInt16)(currentString[j] ^ key)); + writer.Write((ushort)(currentString[j] ^ key)); key += 0x493D; key &= 0xFFFF; } - writer.Write((UInt16)(0xFFFF ^ key)); + writer.Write((ushort)(0xFFFF ^ key)); } } return newData.ToArray(); diff --git a/DS_Map/ROMToolboxDialog.cs b/DS_Map/ROMToolboxDialog.cs index 6fd3cc0..737a265 100644 --- a/DS_Map/ROMToolboxDialog.cs +++ b/DS_Map/ROMToolboxDialog.cs @@ -814,7 +814,7 @@ namespace DSPRE { System.Xml.Linq.XDocument xmldoc = System.Xml.Linq.XDocument.Load(new FileStream(of.FileName, FileMode.Open)); foreach (var node in xmldoc.Root.Elements("scriptcommand")) { - ushort commandID = UInt16.Parse(node.Attribute("ID").Value, System.Globalization.NumberStyles.HexNumber); + ushort commandID = ushort.Parse(node.Attribute("ID").Value, System.Globalization.NumberStyles.HexNumber); string targetROM = node.Element("ROM").Value; string targetLang = node.Element("lang").Value; string commandName = node.Element("name").Value;