diff --git a/pk3DS/Main.cs b/pk3DS/Main.cs index adbf053..26a872d 100644 --- a/pk3DS/Main.cs +++ b/pk3DS/Main.cs @@ -111,7 +111,24 @@ private void B_StoryText_Click(object sender, EventArgs e) } private void B_Wild_Click(object sender, EventArgs e) { - Util.Alert("Not implemented yet."); + if (threads > 0) { Util.Alert("Please wait for all operations to finish first."); return; } + if (!oras) { Util.Alert("X/Y not supported yet."); return; } + new Thread(() => + { + string encdata = "encdata"; + string encdataGARC = getGARCFileName(encdata); + threadGet(TB_Path.Text + encdataGARC, encdata, true, false); + while (threads > 0) // Let threads complete + Thread.Sleep(50); + + Invoke((Action)(() => { new RSWE(oras, Directory.GetFiles(encdata)).ShowDialog(); })); + // When closed, create a new thread to set the GARC back. + + threadSet(TB_Path.Text + encdataGARC, encdata); + while (threads > 0) // Let threads complete + Thread.Sleep(100); + if (Directory.Exists(encdata)) Directory.Delete(encdata, true); + }).Start(); } private void B_Personal_Click(object sender, EventArgs e) { @@ -236,6 +253,8 @@ public string getGARCFileName(string request) break; case "trpoke": ans = (oras) ? getFileName(0, 3, 8) : getFileName(0, 4, 0); break; + case "encdata": ans = (oras) ? getFileName(0, 1, 3) : getFileName(0, 1, 2); + break; } return ans; } diff --git a/pk3DS/RSWE.cs b/pk3DS/RSWE.cs new file mode 100644 index 0000000..4b2ba61 --- /dev/null +++ b/pk3DS/RSWE.cs @@ -0,0 +1,612 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using System.Threading; +using System.IO; +using System.Globalization; + +namespace pk3DS +{ + public partial class RSWE : Form + { + private bool oras; + public RSWE(bool rom_oras, string[] encdata) + { + InitializeComponent(); + Console.WriteLine("Started RSWE"); + oras = rom_oras; + spec = new ComboBox[] + { + CB_Grass1, CB_Grass2, CB_Grass3, CB_Grass4, CB_Grass5, CB_Grass6, CB_Grass7, CB_Grass8, CB_Grass9, CB_Grass10, CB_Grass11, CB_Grass12, + CB_TallGrass1, CB_TallGrass2, CB_TallGrass3, CB_TallGrass4, CB_TallGrass5, CB_TallGrass6, CB_TallGrass7, CB_TallGrass8, CB_TallGrass9, CB_TallGrass10, CB_TallGrass11, CB_TallGrass12, + CB_Swarm1, CB_Swarm2, CB_Swarm3, + CB_Surf1, CB_Surf2, CB_Surf3, CB_Surf4, CB_Surf5, + CB_RockSmash1, CB_RockSmash2, CB_RockSmash3, CB_RockSmash4, CB_RockSmash5, + CB_Old1, CB_Old2, CB_Old3, + CB_Good1, CB_Good2, CB_Good3, + CB_Super1, CB_Super2, CB_Super3, + CB_HordeA1, CB_HordeA2, CB_HordeA3, CB_HordeA4, CB_HordeA5, + CB_HordeB1, CB_HordeB2, CB_HordeB3, CB_HordeB4, CB_HordeB5, + CB_HordeC1, CB_HordeC2, CB_HordeC3, CB_HordeC4, CB_HordeC5, + }; + min = new NumericUpDown[] + { + NUP_GrassMin1, NUP_GrassMin2, NUP_GrassMin3, NUP_GrassMin4, NUP_GrassMin5, NUP_GrassMin6, NUP_GrassMin7, NUP_GrassMin8, NUP_GrassMin9, NUP_GrassMin10, NUP_GrassMin11, NUP_GrassMin12, + NUP_TallGrassMin1, NUP_TallGrassMin2, NUP_TallGrassMin3, NUP_TallGrassMin4, NUP_TallGrassMin5, NUP_TallGrassMin6, NUP_TallGrassMin7, NUP_TallGrassMin8, NUP_TallGrassMin9, NUP_TallGrassMin10, NUP_TallGrassMin11, NUP_TallGrassMin12, + NUP_SwarmMin1, NUP_SwarmMin2, NUP_SwarmMin3, + NUP_SurfMin1, NUP_SurfMin2, NUP_SurfMin3, NUP_SurfMin4, NUP_SurfMin5, + NUP_RockSmashMin1, NUP_RockSmashMin2, NUP_RockSmashMin3, NUP_RockSmashMin4, NUP_RockSmashMin5, + NUP_OldMin1, NUP_OldMin2, NUP_OldMin3, + NUP_GoodMin1, NUP_GoodMin2, NUP_GoodMin3, + NUP_SuperMin1, NUP_SuperMin2, NUP_SuperMin3, + NUP_HordeAMin1, NUP_HordeAMin2, NUP_HordeAMin3, NUP_HordeAMin4, NUP_HordeAMin5, + NUP_HordeBMin1, NUP_HordeBMin2, NUP_HordeBMin3, NUP_HordeBMin4, NUP_HordeBMin5, + NUP_HordeCMin1, NUP_HordeCMin2, NUP_HordeCMin3, NUP_HordeCMin4, NUP_HordeCMin5, + }; + max = new NumericUpDown[] + { + NUP_GrassMax1, NUP_GrassMax2, NUP_GrassMax3, NUP_GrassMax4, NUP_GrassMax5, NUP_GrassMax6, NUP_GrassMax7, NUP_GrassMax8, NUP_GrassMax9, NUP_GrassMax10, NUP_GrassMax11, NUP_GrassMax12, + NUP_TallGrassMax1, NUP_TallGrassMax2, NUP_TallGrassMax3, NUP_TallGrassMax4, NUP_TallGrassMax5, NUP_TallGrassMax6, NUP_TallGrassMax7, NUP_TallGrassMax8, NUP_TallGrassMax9, NUP_TallGrassMax10, NUP_TallGrassMax11, NUP_TallGrassMax12, + NUP_SwarmMax1, NUP_SwarmMax2, NUP_SwarmMax3, + NUP_SurfMax1, NUP_SurfMax2, NUP_SurfMax3, NUP_SurfMax4, NUP_SurfMax5, + NUP_RockSmashMax1, NUP_RockSmashMax2, NUP_RockSmashMax3, NUP_RockSmashMax4, NUP_RockSmashMax5, + NUP_OldMax1, NUP_OldMax2, NUP_OldMax3, + NUP_GoodMax1, NUP_GoodMax2, NUP_GoodMax3, + NUP_SuperMax1, NUP_SuperMax2, NUP_SuperMax3, + NUP_HordeAMax1, NUP_HordeAMax2, NUP_HordeAMax3, NUP_HordeAMax4, NUP_HordeAMax5, + NUP_HordeBMax1, NUP_HordeBMax2, NUP_HordeBMax3, NUP_HordeBMax4, NUP_HordeBMax5, + NUP_HordeCMax1, NUP_HordeCMax2, NUP_HordeCMax3, NUP_HordeCMax4, NUP_HordeCMax5, + }; + form = new NumericUpDown[] + { + NUP_GrassForme1, NUP_GrassForme2, NUP_GrassForme3, NUP_GrassForme4, NUP_GrassForme5, NUP_GrassForme6, NUP_GrassForme7, NUP_GrassForme8, NUP_GrassForme9, NUP_GrassForme10, NUP_GrassForme11, NUP_GrassForme12, + NUP_TallGrassForme1, NUP_TallGrassForme2, NUP_TallGrassForme3, NUP_TallGrassForme4, NUP_TallGrassForme5, NUP_TallGrassForme6, NUP_TallGrassForme7, NUP_TallGrassForme8, NUP_TallGrassForme9, NUP_TallGrassForme10, NUP_TallGrassForme11, NUP_TallGrassForme12, + NUP_SwarmForme1, NUP_SwarmForme2, NUP_SwarmForme3, + NUP_SurfForme1, NUP_SurfForme2, NUP_SurfForme3, NUP_SurfForme4, NUP_SurfForme5, + NUP_RockSmashForme1, NUP_RockSmashForme2, NUP_RockSmashForme3, NUP_RockSmashForme4, NUP_RockSmashForme5, + NUP_OldForme1, NUP_OldForme2, NUP_OldForme3, + NUP_GoodForme1, NUP_GoodForme2, NUP_GoodForme3, + NUP_SuperForme1, NUP_SuperForme2, NUP_SuperForme3, + NUP_HordeAForme1, NUP_HordeAForme2, NUP_HordeAForme3, NUP_HordeAForme4, NUP_HordeAForme5, + NUP_HordeBForme1, NUP_HordeBForme2, NUP_HordeBForme3, NUP_HordeBForme4, NUP_HordeBForme5, + NUP_HordeCForme1, NUP_HordeCForme2, NUP_HordeCForme3, NUP_HordeCForme4, NUP_HordeCForme5, + }; + formlist = new string[] { "Unown-A - 0", + "Unown-B - 1", + "Unown-C - 2", + "Unown-D - 3", + "Unown-E - 4", + "Unown-F - 5", + "Unown-G - 6", + "Unown-H - 7", + "Unown-I - 8", + "Unown-J - 9", + "Unown-K - 10", + "Unown-L - 11", + "Unown-M - 12", + "Unown-N - 13", + "Unown-O - 14", + "Unown-P - 15", + "Unown-Q - 16", + "Unown-R - 17", + "Unown-S - 18", + "Unown-T - 19", + "Unown-U - 20", + "Unown-V - 21", + "Unown-W - 22", + "Unown-X - 23", + "Unown-Y - 24", + "Unown-Z - 25", + "Unown-! - 26", + "Unown-? - 27", + "", + "Castform-Normal - 0", + "Castform-Sunny - 1", + "Castform-Rainy - 2", + "Castform-Snowy - 3", + "", + "Deoxys-Normal - 0", + "Deoxys-Attack - 1", + "Deoxys-Defense - 2", + "Deoxys-Speed - 3", + "", + "Burmy-Plant Cloak - 0", + "Burmy-Sandy Cloak - 1", + "Burmy-Trash Cloak - 2", + "", + "Wormadam-Plant Cloak - 0", + "Wormadam-Sandy Cloak - 1", + "Wormadam-Trash Cloak - 2", + "", + "Cherrim-Overcast - 0", + "Cherrim-Sunshine - 1", + "", + "Shellos-West Sea - 0", + "Shellos-East Sea - 1", + "", + "Gastrodon-West Sea - 0", + "Gastrodon-East Sea - 1", + "", + "Rotom-Normal - 0", + "Rotom-Heat - 1", + "Rotom-Wash - 2", + "Rotom-Frost - 3", + "Rotom-Fan - 4", + "Rotom-Mow - 5", + "", + "Giratina-Altered - 0", + "Giratina-Origin - 1", + "", + "Shaymin-Land - 0", + "Shaymin-Sky - 1", + "", + "Arceus-Normal - 0", + "Arceus-Fighting - 1", + "Arceus-Flying - 2", + "Arceus-Poison - 3", + "Arceus-Ground - 4", + "Arceus-Rock - 5", + "Arceus-Bug - 6", + "Arceus-Ghost - 7", + "Arceus-Steel - 8", + "Arceus-Fire - 9", + "Arceus-Water - 10", + "Arceus-Grass - 11", + "Arceus-Electric - 12", + "Arceus-Psychic - 13", + "Arceus-Ice - 14", + "Arceus-Dragon - 15", + "Arceus-Dark - 16", + "", + "Basculin-Red-Striped - 0", + "Basculin-Blue-Striped - 1", + "", + "Darmanitan-Standard Mode - 0", + "Darmanitan-Zen Mode - 1", + "", + "Deerling-Spring - 0", + "Deerling-Summer - 1", + "Deerling-Autumn - 2", + "Deerling-Winter - 3", + "", + "Sawsbuck-Spring - 0", + "Sawsbuck-Summer - 1", + "Sawsbuck-Autumn - 2", + "Sawsbuck-Winter - 3", + "", + "Tornadus-Incarnate - 0", + "Tornadus-Therian - 1", + "", + "Thundurus-Incarnate - 0", + "Thundurus-Therian - 1", + "", + "Landorus-Incarnate - 0", + "Landorus-Therian - 1", + "", + "Kyurem-Normal - 0", + "Kyurem-White - 1", + "Kyurem-Black - 2", + "", + "Keldeo-Usual - 0", + "Keldeo-Resolution - 1", + "", + "Meloetta-Aria - 0", + "Meloetta-Pirouette - 1", + "", + "Genesect-Normal - 0", + "Genesect-Water - 1", + "Genesect-Electric - 2", + "Genesect-Fire - 3", + "Genesect-Ice - 4", + "", + "Flabebe-Red - 0", + "Flabebe-Yellow - 1", + "Flabebe-Orange - 2", + "Flabebe-Blue - 3", + "Flabebe-White - 4", + "", + "Floette-Red - 0", + "Floette-Yellow - 1", + "Floette-Orange - 2", + "Floette-Blue - 3", + "Floette-Wite - 4", + "Floette-Eternal - 5", + "", + "Florges-Red - 0", + "Florges-Yellow - 1", + "Florges-Orange - 2", + "Florges-Blue - 3", + "Florges-White - 4", + "", + "Furfrou- Natural - 0", + "Furfrou- Heart - 1", + "Furfrou- Star - 2", + "Furfrou- Diamond - 3", + "Furfrou- Deputante - 4", + "Furfrou- Matron - 5", + "Furfrou- Dandy - 6", + "Furfrou- La Reine- 7", + "Furfrou- Kabuki - 8", + "Furfrou- Pharaoh - 9", + "", + "Aegislash- Shield - 0", + "Aegislash- Blade - 0", + "", + "Vivillon-Icy Snow - 0", + "Vivillon-Polar - 1", + "Vivillon-Tundra - 2", + "Vivillon-Continental - 3", + "Vivillon-Garden - 4", + "Vivillon-Elegant - 5", + "Vivillon-Meadow - 6", + "Vivillon-Modern - 7", + "Vivillon-Marine - 8", + "Vivillon-Archipelago - 9", + "Vivillon-High-Plains - 10", + "Vivillon-Sandstorm - 11", + "Vivillon-River - 12", + "Vivillon-Monsoon - 13", + "Vivillon-Savannah - 14", + "Vivillon-Sun - 15", + "Vivillon-Ocean - 16", + "Vivillon-Jungle - 17", + "Vivillon-Fancy - 18", + "Vivillon-Poké Ball - 19", + "", + "Pumpkaboo/Gourgeist-Small - 0", + "Pumpkaboo/Gourgeist-Average - 1", + "Pumpkaboo/Gourgeist-Large - 2", + "Pumpkaboo/Gourgeist-Super - 3", + "", + "Hoopa-Normal - 0", + "Hoopa-Unbound - 1", + "", + "Megas-Normal - 0", + "Megas-Mega (X) - 1", + "Megas-Mega (Y) - 2", + }; + RSWE_Load(null, null); + openQuick(encdata); + } + private ComboBox[] spec; + private NumericUpDown[] min; + private NumericUpDown[] max; + private NumericUpDown[] form; + string[] specieslist = { }; + string[] formlist = { }; + string[] metRS_00000 = { }; + byte[] zonedata = { }; + byte[] decStorage = { }; + string[] LocationNames = { }; + private string[] encdatapaths; + private string[] filepaths; + + private void RSWE_Load(object sender, EventArgs e) + { + specieslist = Main.getText((oras) ? 98 : 80); + specieslist[0] = "---"; + + foreach (string s in formlist) + CB_FormeList.Items.Add(s); + + // Clear & Reset Data + for (int i = 0; i < max.Length; i++) + { + spec[i].Items.Clear(); + foreach (string s in specieslist) + spec[i].Items.Add(s); + spec[i].SelectedIndex = 0; + } + + //Preload Tabs + PreloadTabs(); + } + internal static Random rand = new Random(); + internal static uint rnd32() + { + return (uint)(rand.Next(1 << 30)) << 2 | (uint)(rand.Next(1 << 2)); + } + + private void openQuick(string[] encdata) + { + this.encdatapaths = encdata; + Array.Sort(encdatapaths); + this.filepaths = new string[this.encdatapaths.Length - 2]; + Array.Copy(this.encdatapaths, 2, this.filepaths, 0, this.filepaths.Length); + metRS_00000 = Main.getText((oras) ? 90 : 72); + zonedata = File.ReadAllBytes(encdatapaths[0]); + decStorage = File.ReadAllBytes(encdatapaths[1]); + LocationNames = new string[this.filepaths.Length]; + for (int f = 0; f < filepaths.Length; f++) + { + string name = Path.GetFileNameWithoutExtension(filepaths[f]); + + int LocationNum = Convert.ToInt16(name.Substring(4, name.Length - 4)); + int indNum = LocationNum * 56 + 0x1C; + string LocationName = metRS_00000[zonedata[indNum] + (0x100 * (zonedata[indNum + 1] & 1))]; + LocationNames[f] = (LocationNum.ToString("000") + " - " + LocationName); + } + CB_LocationID.DataSource = LocationNames; + B_Save.Enabled = B_Dump.Enabled = B_Randomize.Enabled = true; + CB_LocationID.Enabled = true; + CB_LocationID_SelectedIndexChanged(null, null); + } + + private void parse(byte[] ed) + { + // Encounter Slot Counts per Encounter Type + /* OLD XY// 12,12,12,12,12 + // 5,5 + // 3,3,3 + // 5,5,5,*/ + + // ORAS + //12 grass + //12 tall grass + //3 Swarm + //5 surf + //5 rock smash + //3 old rod + //3 good rod + //3 super rod + //5 horde 60 + //5 horde 35 + //5 horde 5 + byte[] slot = new Byte[4]; + int[] data = new int[4]; + int offset = 0x0; + + // read data into form + for (int i = 0; i < max.Length; i++) + { + // Fetch Data + Array.Copy(ed, offset + i * 4, slot, 0, 4); + data = pslot(slot); + + // Load Data + spec[i].SelectedIndex = data[0]; + form[i].Value = data[1]; + min[i].Value = data[2]; + max[i].Value = data[3]; + } + } + private int[] pslot(byte[] slot) // Parse Slot to Bytes + { + int index = BitConverter.ToUInt16(slot, 0) & 0x7FF; + int form = BitConverter.ToUInt16(slot, 0) >> 11; + int min = slot[2]; + int max = slot[3]; + int[] data = new int[4]; + data[0] = index; + data[1] = form; + data[2] = min; + data[3] = max; + return data; + } + private string parseslot(byte[] slot) + { + int index = BitConverter.ToUInt16(slot, 0) & 0x7FF; + if (index == 0) return ""; + int form = BitConverter.ToUInt16(slot, 0) >> 11; + int min = slot[2]; + int max = slot[3]; + string species = specieslist[index]; + if (form > 0) species += "-" + form.ToString(); + return species + ',' + min + ',' + max + ','; + } + private byte[] MakeSlotData(int species, int form, int min, int max) + { + byte[] data = new byte[4]; + Array.Copy(BitConverter.GetBytes(Convert.ToUInt16((Convert.ToUInt16(form) << 11) + Convert.ToUInt16(species))), 0, data, 0, 2); + data[2] = (byte)min; + data[3] = (byte)max; + return data; + } + private byte[] ConcatArrays(byte[] b1, byte[] b2) + { + byte[] concat = new byte[b1.Length + b2.Length]; + Array.Copy(b1, 0, concat, 0, b1.Length); + Array.Copy(b2, 0, concat, b1.Length, b2.Length); + return concat; + } + + private void CB_LocationID_SelectedIndexChanged(object sender, EventArgs e) + { + int f = CB_LocationID.SelectedIndex; + FileStream InStream = File.OpenRead(filepaths[f]); + BinaryReader br = new BinaryReader(InStream); + br.BaseStream.Seek(0x10, SeekOrigin.Begin); + int offset = br.ReadInt32() + 0xE; + int ofs2 = br.ReadInt32(); + int length = (int)ofs2 - offset; + if (length < 0xF6) //no encounters in this map + { + ClearData(); + br.Close(); + return; + } + br.Close(); + + byte[] filedata = File.ReadAllBytes(filepaths[f]); + + byte[] encounterdata = new Byte[0xF6]; + Array.Copy(filedata, offset, encounterdata, 0, 0xF6); + parse(encounterdata); + } + + private bool needsInsertion(int mapID) + { + if (mapID != 535) // Hardcoded, bad, I know. + return (BitConverter.ToUInt32(decStorage, (mapID + 2) * 4) - BitConverter.ToUInt32(decStorage, (mapID + 1) * 4) == 0); + else + return (BitConverter.ToUInt32(decStorage, (mapID + 1) * 4) == decStorage.Length); + } + private bool hasData() + { + for (int i = 0; i < max.Length; i++) + { + if (spec[i].SelectedIndex > 0) { return true; } + else if (form[i].Value > 0) { return true; } + else if (min[i].Value > 0) { return true; } + else if (max[i].Value > 0) { return true; } + } + return false; + } + private void PreloadTabs() + { + for (int i = 0; i < this.TabControl_EncounterData.TabPages.Count; i++) + { + this.TabControl_EncounterData.TabPages[i].Show(); + } + this.TabControl_EncounterData.TabPages[0].Show(); + } + private void ClearData() + { + for (int i = 0; i < max.Length; i++) + { + // Load Data + spec[i].SelectedIndex = 0; + form[i].Value = 0; + min[i].Value = 0; + max[i].Value = 0; + } + } + private byte[] MakeEncounterData() + { + byte[] ed = new byte[0x102]; + byte[] data; + int offset = 0x0; + for (int i = 0; i < max.Length; i++) + { + data = MakeSlotData(spec[i].SelectedIndex, (int)form[i].Value, (int)min[i].Value, (int)max[i].Value); + Array.Copy(data, 0, ed, offset + i * 4, 4); + } + return ed; + } + private string GetEncDataString() + { + string toret = "======\r\n"; + toret += "Map " + CB_LocationID.Text + "\r\n"; + toret += "======\r\n"; + if (hasData()) + { + toret += "Grass: " + CB_Grass1.Text + "(Level " + NUP_GrassMin1.Text + ")," + CB_Grass2.Text + "(Level " + NUP_GrassMin2.Text + ")," + CB_Grass3.Text + "(Level " + NUP_GrassMin3.Text + ")," + CB_Grass4.Text + "(Level " + NUP_GrassMin4.Text + ")," + CB_Grass5.Text + "(Level " + NUP_GrassMin5.Text + ")," + CB_Grass6.Text + "(Level " + NUP_GrassMin6.Text + ")," + CB_Grass7.Text + "(Level " + NUP_GrassMin7.Text + ")," + CB_Grass8.Text + "(Level " + NUP_GrassMin8.Text + ")," + CB_Grass9.Text + "(Level " + NUP_GrassMin9.Text + ")," + CB_Grass10.Text + "(Level " + NUP_GrassMin10.Text + ")," + CB_Grass11.Text + "(Level " + NUP_GrassMin11.Text + ")," + CB_Grass12.Text + "(Level " + NUP_GrassMin12.Text + ")\r\n"; + toret += "TallGrass: " + CB_TallGrass1.Text + "(Level " + NUP_TallGrassMin1.Text + ")," + CB_TallGrass2.Text + "(Level " + NUP_TallGrassMin2.Text + ")," + CB_TallGrass3.Text + "(Level " + NUP_TallGrassMin3.Text + ")," + CB_TallGrass4.Text + "(Level " + NUP_TallGrassMin4.Text + ")," + CB_TallGrass5.Text + "(Level " + NUP_TallGrassMin5.Text + ")," + CB_TallGrass6.Text + "(Level " + NUP_TallGrassMin6.Text + ")," + CB_TallGrass7.Text + "(Level " + NUP_TallGrassMin7.Text + ")," + CB_TallGrass8.Text + "(Level " + NUP_TallGrassMin8.Text + ")," + CB_TallGrass9.Text + "(Level " + NUP_TallGrassMin9.Text + ")," + CB_TallGrass10.Text + "(Level " + NUP_TallGrassMin10.Text + ")," + CB_TallGrass11.Text + "(Level " + NUP_TallGrassMin11.Text + ")," + CB_TallGrass12.Text + "(Level " + NUP_TallGrassMin12.Text + ")\r\n"; + toret += "RockSmash: " + CB_RockSmash1.Text + "(Level " + NUP_RockSmashMin1.Text + ")," + CB_RockSmash2.Text + "(Level " + NUP_RockSmashMin2.Text + ")," + CB_RockSmash3.Text + "(Level " + NUP_RockSmashMin3.Text + ")," + CB_RockSmash4.Text + "(Level " + NUP_RockSmashMin4.Text + ")," + CB_RockSmash5.Text + "(Level " + NUP_RockSmashMin5.Text + ")\r\n"; + toret += "Swarm: " + CB_Swarm1.Text + "(Level " + NUP_SwarmMin1.Text + ")," + CB_Swarm2.Text + "(Level " + NUP_SwarmMin2.Text + ")," + CB_Swarm3.Text + "(Level " + NUP_SwarmMin3.Text + ")\r\n"; + toret += "Old: " + CB_Old1.Text + "(Level " + NUP_OldMin1.Text + ")," + CB_Old2.Text + "(Level " + NUP_OldMin2.Text + ")," + CB_Old3.Text + "(Level " + NUP_OldMin3.Text + ")\r\n"; + toret += "Good: " + CB_Good1.Text + "(Level " + NUP_GoodMin1.Text + ")," + CB_Good2.Text + "(Level " + NUP_GoodMin2.Text + ")," + CB_Good3.Text + "(Level " + NUP_GoodMin3.Text + ")\r\n"; + toret += "Super: " + CB_Super1.Text + "(Level " + NUP_SuperMin1.Text + ")," + CB_Super2.Text + "(Level " + NUP_SuperMin2.Text + ")," + CB_Super3.Text + "(Level " + NUP_SuperMin3.Text + ")\r\n"; + toret += "Surf: " + CB_Surf1.Text + "(Level " + NUP_SurfMin1.Text + ")," + CB_Surf2.Text + "(Level " + NUP_SurfMin2.Text + ")," + CB_Surf3.Text + "(Level " + NUP_SurfMin3.Text + ")," + CB_Surf4.Text + "(Level " + NUP_SurfMin4.Text + ")," + CB_Surf5.Text + "(Level " + NUP_SurfMin5.Text + ")\r\n"; + toret += "HordeA: " + CB_HordeA1.Text + "(Level " + NUP_HordeAMin1.Text + ")," + CB_HordeA2.Text + "(Level " + NUP_HordeAMin2.Text + ")," + CB_HordeA3.Text + "(Level " + NUP_HordeAMin3.Text + ")," + CB_HordeA4.Text + "(Level " + NUP_HordeAMin4.Text + ")," + CB_HordeA5.Text + "(Level " + NUP_HordeAMin5.Text + ")\r\n"; + toret += "HordeB: " + CB_HordeB1.Text + "(Level " + NUP_HordeBMin1.Text + ")," + CB_HordeB2.Text + "(Level " + NUP_HordeBMin2.Text + ")," + CB_HordeB3.Text + "(Level " + NUP_HordeBMin3.Text + ")," + CB_HordeB4.Text + "(Level " + NUP_HordeBMin4.Text + ")," + CB_HordeB5.Text + "(Level " + NUP_HordeBMin5.Text + ")\r\n"; + toret += "HordeC: " + CB_HordeC1.Text + "(Level " + NUP_HordeCMin1.Text + ")," + CB_HordeC2.Text + "(Level " + NUP_HordeCMin2.Text + ")," + CB_HordeC3.Text + "(Level " + NUP_HordeCMin3.Text + ")," + CB_HordeC4.Text + "(Level " + NUP_HordeCMin4.Text + ")," + CB_HordeC5.Text + "(Level " + NUP_HordeCMin5.Text + ")\r\n"; + } + else + toret += "No encounters found.\r\n\r\n"; + return toret; + } + + private void B_Dump_Click(object sender, EventArgs e) + { + string toret = ""; + for (int i = 0; i < 535; i++) //hardcoded map count. Yes, it's bad. No, I don't really care. + { + CB_LocationID.SelectedIndex = i; + string tdata = GetEncDataString(); + toret += tdata; + } + SaveFileDialog savetxt = new SaveFileDialog(); + savetxt.FileName = "Encounter Slots"; + savetxt.Filter = "Text File|*.txt"; + if (savetxt.ShowDialog() == DialogResult.OK) + { + string path = savetxt.FileName; + File.WriteAllText(path, toret); + } + } + private void B_Save_Click(object sender, EventArgs e) + { + int f = CB_LocationID.SelectedIndex; + string filepath = filepaths[f]; + if (needsInsertion(f)) + { + //To be implemented, eventually. + //Spoiler: I am actually probably not going to bother. + //Basically, just don't add encounters to a map that doesn't have any, and don't take away all encounters from a map that does have them. + } + else + { + FileStream InStream = File.OpenRead(filepaths[f]); + BinaryReader br = new BinaryReader(InStream); + br.BaseStream.Seek(0x10, SeekOrigin.Begin); + int offset = br.ReadInt32() + 0xe; + int length = (int)br.BaseStream.Length - offset; + br.Close(); + byte[] filedata = File.ReadAllBytes(filepaths[f]); + byte[] preoffset = new byte[] { }; + if (offset < filedata.Length) + { + preoffset = new byte[offset]; + Array.Copy(filedata, preoffset, offset); + } + else + { + preoffset = new byte[filedata.Length]; + Array.Copy(filedata, preoffset, filedata.Length); + //overwrite offset so the game actually looks at the data + Array.Copy(BitConverter.GetBytes(Convert.ToUInt32(filedata.Length)), 0, preoffset, 0x10, 4); + } + byte[] encdata = new byte[] { }; + if (hasData()) { encdata = MakeEncounterData(); } + byte[] newdata = ConcatArrays(preoffset, encdata); + File.WriteAllBytes(filepath, newdata); + //Also write to 537.EN (decStorage) + int ENOfs = BitConverter.ToInt32(decStorage, (f + 1) * 4) + 0xE; + encdata = MakeEncounterData(); + Array.Copy(encdata, 0x0, decStorage, ENOfs, 0xF4); //copy encounter tables to EN 2pack storage + File.WriteAllBytes(this.encdatapaths[1], decStorage); + } + } + private int getRandomSlot(int level) + { + return (int)(rnd32() % 721 + 1); + } + private void B_Randomize_Click(object sender, EventArgs e) + { + if (MessageBox.Show("Randomize all? Cannot undo.", "Alert", MessageBoxButtons.YesNo) == DialogResult.Yes) + { + this.Enabled = false; + for (int i = 0; i < CB_LocationID.Items.Count; i++) // for every location + { + CB_LocationID.SelectedIndex = i; + if (!hasData()) continue; // Don't randomize if doesn't have data. + + for (int slot = 0; slot < max.Length; slot++) + { + if (spec[slot].SelectedIndex != 0) + { + int species = getRandomSlot((int)max[slot].Value); + spec[slot].SelectedIndex = species; + + if (species == 666 || species == 665 || species == 664) // Vivillon + form[slot].Value = rnd32() % 20; + else if (species == 386) // Deoxys + form[slot].Value = rnd32() % 4; + else + form[slot].Value = 0; + } + } + B_Save_Click(sender, e); + } + this.Enabled = true; + MessageBox.Show("Randomized!", "Alert"); + } + } + } +} diff --git a/pk3DS/RSWE.designer.cs b/pk3DS/RSWE.designer.cs new file mode 100644 index 0000000..a7bf873 --- /dev/null +++ b/pk3DS/RSWE.designer.cs @@ -0,0 +1,26480 @@ +namespace pk3DS +{ + partial class RSWE + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.CB_LocationID = new System.Windows.Forms.ComboBox(); + this.B_Save = new System.Windows.Forms.Button(); + this.label134 = new System.Windows.Forms.Label(); + this.label136 = new System.Windows.Forms.Label(); + this.CB_FormeList = new System.Windows.Forms.ComboBox(); + this.TabPage_Horde = new System.Windows.Forms.TabPage(); + this.label129 = new System.Windows.Forms.Label(); + this.label130 = new System.Windows.Forms.Label(); + this.label131 = new System.Windows.Forms.Label(); + this.label132 = new System.Windows.Forms.Label(); + this.NUP_HordeCMax5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCMin5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCForme5 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeC5 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeCMax4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCMin4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCForme4 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeC4 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeCMax3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCForme3 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeC3 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeCMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCForme2 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeC2 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeCMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeCForme1 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeC1 = new System.Windows.Forms.ComboBox(); + this.label125 = new System.Windows.Forms.Label(); + this.label121 = new System.Windows.Forms.Label(); + this.label126 = new System.Windows.Forms.Label(); + this.label124 = new System.Windows.Forms.Label(); + this.label127 = new System.Windows.Forms.Label(); + this.label122 = new System.Windows.Forms.Label(); + this.label128 = new System.Windows.Forms.Label(); + this.NUP_HordeBMax5 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeA1 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeBMin5 = new System.Windows.Forms.NumericUpDown(); + this.label123 = new System.Windows.Forms.Label(); + this.NUP_HordeBForme5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAForme1 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeB5 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeAMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBMax4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMax5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBMin4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBForme4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMin5 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeB4 = new System.Windows.Forms.ComboBox(); + this.CB_HordeA2 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeBMax3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAForme5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBForme3 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeA5 = new System.Windows.Forms.ComboBox(); + this.CB_HordeB3 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeAMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMax4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMin4 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeB2 = new System.Windows.Forms.ComboBox(); + this.CB_HordeA3 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeBMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAForme4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAForme3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeBForme1 = new System.Windows.Forms.NumericUpDown(); + this.CB_HordeA4 = new System.Windows.Forms.ComboBox(); + this.CB_HordeB1 = new System.Windows.Forms.ComboBox(); + this.NUP_HordeAMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_HordeAMax3 = new System.Windows.Forms.NumericUpDown(); + this.TabPage_Water = new System.Windows.Forms.TabPage(); + this.label116 = new System.Windows.Forms.Label(); + this.label117 = new System.Windows.Forms.Label(); + this.label118 = new System.Windows.Forms.Label(); + this.label119 = new System.Windows.Forms.Label(); + this.label120 = new System.Windows.Forms.Label(); + this.label103 = new System.Windows.Forms.Label(); + this.label48 = new System.Windows.Forms.Label(); + this.label104 = new System.Windows.Forms.Label(); + this.CB_Super1 = new System.Windows.Forms.ComboBox(); + this.label105 = new System.Windows.Forms.Label(); + this.NUP_SuperForme1 = new System.Windows.Forms.NumericUpDown(); + this.label106 = new System.Windows.Forms.Label(); + this.CB_Surf1 = new System.Windows.Forms.ComboBox(); + this.NUP_SuperMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SuperMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfMin1 = new System.Windows.Forms.NumericUpDown(); + this.CB_Super2 = new System.Windows.Forms.ComboBox(); + this.NUP_SurfMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SuperForme2 = new System.Windows.Forms.NumericUpDown(); + this.CB_Surf2 = new System.Windows.Forms.ComboBox(); + this.NUP_SuperMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SuperMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfMin2 = new System.Windows.Forms.NumericUpDown(); + this.CB_Super3 = new System.Windows.Forms.ComboBox(); + this.NUP_SurfMax5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SuperForme3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SuperMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfMin5 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SuperMax3 = new System.Windows.Forms.NumericUpDown(); + this.CB_Surf3 = new System.Windows.Forms.ComboBox(); + this.label49 = new System.Windows.Forms.Label(); + this.NUP_SurfForme5 = new System.Windows.Forms.NumericUpDown(); + this.label98 = new System.Windows.Forms.Label(); + this.NUP_SurfForme3 = new System.Windows.Forms.NumericUpDown(); + this.label99 = new System.Windows.Forms.Label(); + this.CB_Surf5 = new System.Windows.Forms.ComboBox(); + this.label100 = new System.Windows.Forms.Label(); + this.NUP_SurfMin3 = new System.Windows.Forms.NumericUpDown(); + this.label101 = new System.Windows.Forms.Label(); + this.NUP_SurfMax4 = new System.Windows.Forms.NumericUpDown(); + this.label102 = new System.Windows.Forms.Label(); + this.NUP_SurfMax3 = new System.Windows.Forms.NumericUpDown(); + this.label26 = new System.Windows.Forms.Label(); + this.NUP_SurfMin4 = new System.Windows.Forms.NumericUpDown(); + this.CB_Good1 = new System.Windows.Forms.ComboBox(); + this.CB_Surf4 = new System.Windows.Forms.ComboBox(); + this.NUP_GoodForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SurfForme4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GoodMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GoodMax1 = new System.Windows.Forms.NumericUpDown(); + this.CB_Good2 = new System.Windows.Forms.ComboBox(); + this.NUP_GoodForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GoodMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GoodMax2 = new System.Windows.Forms.NumericUpDown(); + this.CB_Good3 = new System.Windows.Forms.ComboBox(); + this.NUP_GoodForme3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GoodMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GoodMax3 = new System.Windows.Forms.NumericUpDown(); + this.label27 = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.label29 = new System.Windows.Forms.Label(); + this.label30 = new System.Windows.Forms.Label(); + this.label46 = new System.Windows.Forms.Label(); + this.label47 = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); + this.CB_Old1 = new System.Windows.Forms.ComboBox(); + this.NUP_OldForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_OldMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_OldMax1 = new System.Windows.Forms.NumericUpDown(); + this.CB_Old2 = new System.Windows.Forms.ComboBox(); + this.NUP_OldForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_OldMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_OldMax2 = new System.Windows.Forms.NumericUpDown(); + this.CB_Old3 = new System.Windows.Forms.ComboBox(); + this.NUP_OldForme3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_OldMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_OldMax3 = new System.Windows.Forms.NumericUpDown(); + this.label45 = new System.Windows.Forms.Label(); + this.label44 = new System.Windows.Forms.Label(); + this.label43 = new System.Windows.Forms.Label(); + this.label23 = new System.Windows.Forms.Label(); + this.label24 = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); + this.TabPage_Land = new System.Windows.Forms.TabPage(); + this.CB_Swarm3 = new System.Windows.Forms.ComboBox(); + this.CB_Swarm2 = new System.Windows.Forms.ComboBox(); + this.CB_Swarm1 = new System.Windows.Forms.ComboBox(); + this.NUP_SwarmForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SwarmMin1 = new System.Windows.Forms.NumericUpDown(); + this.label66 = new System.Windows.Forms.Label(); + this.NUP_SwarmMax1 = new System.Windows.Forms.NumericUpDown(); + this.label67 = new System.Windows.Forms.Label(); + this.NUP_SwarmForme2 = new System.Windows.Forms.NumericUpDown(); + this.label68 = new System.Windows.Forms.Label(); + this.NUP_SwarmMin2 = new System.Windows.Forms.NumericUpDown(); + this.label69 = new System.Windows.Forms.Label(); + this.NUP_SwarmMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SwarmForme3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SwarmMin3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_SwarmMax3 = new System.Windows.Forms.NumericUpDown(); + this.label70 = new System.Windows.Forms.Label(); + this.label80 = new System.Windows.Forms.Label(); + this.label81 = new System.Windows.Forms.Label(); + this.NUP_TallGrassForme11 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin11 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax11 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme12 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin12 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax12 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax2 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass12 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassForme3 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass11 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMin3 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass10 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMax3 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass9 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassForme4 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass8 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMin4 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass7 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMax4 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass6 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassForme5 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass5 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMin5 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass4 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMax5 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass3 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassForme6 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass2 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMin6 = new System.Windows.Forms.NumericUpDown(); + this.CB_TallGrass1 = new System.Windows.Forms.ComboBox(); + this.NUP_TallGrassMax6 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme7 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin7 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax7 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme8 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin8 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax8 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme9 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin9 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax9 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassForme10 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMin10 = new System.Windows.Forms.NumericUpDown(); + this.NUP_TallGrassMax10 = new System.Windows.Forms.NumericUpDown(); + this.label107 = new System.Windows.Forms.Label(); + this.label115 = new System.Windows.Forms.Label(); + this.label108 = new System.Windows.Forms.Label(); + this.NUP_RockSmashMax5 = new System.Windows.Forms.NumericUpDown(); + this.label109 = new System.Windows.Forms.Label(); + this.NUP_RockSmashMin5 = new System.Windows.Forms.NumericUpDown(); + this.label110 = new System.Windows.Forms.Label(); + this.NUP_RockSmashForme5 = new System.Windows.Forms.NumericUpDown(); + this.label111 = new System.Windows.Forms.Label(); + this.CB_RockSmash5 = new System.Windows.Forms.ComboBox(); + this.CB_RockSmash1 = new System.Windows.Forms.ComboBox(); + this.NUP_RockSmashMax4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashMin4 = new System.Windows.Forms.NumericUpDown(); + this.label112 = new System.Windows.Forms.Label(); + this.NUP_RockSmashForme4 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashMin1 = new System.Windows.Forms.NumericUpDown(); + this.CB_RockSmash4 = new System.Windows.Forms.ComboBox(); + this.label113 = new System.Windows.Forms.Label(); + this.NUP_RockSmashMax3 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashMax1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashMin3 = new System.Windows.Forms.NumericUpDown(); + this.label114 = new System.Windows.Forms.Label(); + this.NUP_RockSmashForme3 = new System.Windows.Forms.NumericUpDown(); + this.CB_RockSmash2 = new System.Windows.Forms.ComboBox(); + this.CB_RockSmash3 = new System.Windows.Forms.ComboBox(); + this.NUP_RockSmashMax2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashForme2 = new System.Windows.Forms.NumericUpDown(); + this.NUP_RockSmashMin2 = new System.Windows.Forms.NumericUpDown(); + this.label6 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.label10 = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.label12 = new System.Windows.Forms.Label(); + this.label13 = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label18 = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.NUP_GrassForme1 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassMin1 = new System.Windows.Forms.NumericUpDown(); + this.label3 = new System.Windows.Forms.Label(); + this.NUP_GrassMax1 = new System.Windows.Forms.NumericUpDown(); + this.label4 = new System.Windows.Forms.Label(); + this.NUP_GrassForme2 = new System.Windows.Forms.NumericUpDown(); + this.label5 = new System.Windows.Forms.Label(); + this.NUP_GrassMin2 = new System.Windows.Forms.NumericUpDown(); + this.label2 = new System.Windows.Forms.Label(); + this.NUP_GrassMax2 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass12 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassForme3 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass11 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMin3 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass10 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMax3 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass9 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassForme4 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass8 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMin4 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass7 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMax4 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass6 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassForme5 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass5 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMin5 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass4 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMax5 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass3 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassForme6 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass2 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMin6 = new System.Windows.Forms.NumericUpDown(); + this.CB_Grass1 = new System.Windows.Forms.ComboBox(); + this.NUP_GrassMax6 = new System.Windows.Forms.NumericUpDown(); + this.label31 = new System.Windows.Forms.Label(); + this.NUP_GrassForme7 = new System.Windows.Forms.NumericUpDown(); + this.label41 = new System.Windows.Forms.Label(); + this.NUP_GrassMin7 = new System.Windows.Forms.NumericUpDown(); + this.label42 = new System.Windows.Forms.Label(); + this.NUP_GrassMax7 = new System.Windows.Forms.NumericUpDown(); + this.label40 = new System.Windows.Forms.Label(); + this.NUP_GrassForme8 = new System.Windows.Forms.NumericUpDown(); + this.label39 = new System.Windows.Forms.Label(); + this.NUP_GrassMin8 = new System.Windows.Forms.NumericUpDown(); + this.label38 = new System.Windows.Forms.Label(); + this.NUP_GrassMax8 = new System.Windows.Forms.NumericUpDown(); + this.label37 = new System.Windows.Forms.Label(); + this.NUP_GrassForme9 = new System.Windows.Forms.NumericUpDown(); + this.label36 = new System.Windows.Forms.Label(); + this.NUP_GrassMin9 = new System.Windows.Forms.NumericUpDown(); + this.label35 = new System.Windows.Forms.Label(); + this.NUP_GrassMax9 = new System.Windows.Forms.NumericUpDown(); + this.label34 = new System.Windows.Forms.Label(); + this.NUP_GrassForme10 = new System.Windows.Forms.NumericUpDown(); + this.label33 = new System.Windows.Forms.Label(); + this.NUP_GrassMin10 = new System.Windows.Forms.NumericUpDown(); + this.label32 = new System.Windows.Forms.Label(); + this.NUP_GrassMax10 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassMax12 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassForme11 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassMin12 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassMin11 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassForme12 = new System.Windows.Forms.NumericUpDown(); + this.NUP_GrassMax11 = new System.Windows.Forms.NumericUpDown(); + this.TabControl_EncounterData = new System.Windows.Forms.TabControl(); + this.B_Dump = new System.Windows.Forms.Button(); + this.B_Randomize = new System.Windows.Forms.Button(); + this.TabPage_Horde.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax3)).BeginInit(); + this.TabPage_Water.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMax3)).BeginInit(); + this.TabPage_Land.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax11)).BeginInit(); + this.TabControl_EncounterData.SuspendLayout(); + this.SuspendLayout(); + // + // CB_LocationID + // + this.CB_LocationID.Enabled = false; + this.CB_LocationID.FormattingEnabled = true; + this.CB_LocationID.Location = new System.Drawing.Point(240, 19); + this.CB_LocationID.Name = "CB_LocationID"; + this.CB_LocationID.Size = new System.Drawing.Size(164, 21); + this.CB_LocationID.TabIndex = 407; + this.CB_LocationID.SelectedIndexChanged += new System.EventHandler(this.CB_LocationID_SelectedIndexChanged); + // + // B_Save + // + this.B_Save.Enabled = false; + this.B_Save.Location = new System.Drawing.Point(410, 18); + this.B_Save.Name = "B_Save"; + this.B_Save.Size = new System.Drawing.Size(135, 23); + this.B_Save.TabIndex = 410; + this.B_Save.Text = "Save Current Encounters"; + this.B_Save.UseVisualStyleBackColor = true; + this.B_Save.Click += new System.EventHandler(this.B_Save_Click); + // + // label134 + // + this.label134.AutoSize = true; + this.label134.Location = new System.Drawing.Point(154, 23); + this.label134.Name = "label134"; + this.label134.Size = new System.Drawing.Size(80, 13); + this.label134.TabIndex = 411; + this.label134.Text = "Location ID #s:"; + // + // label136 + // + this.label136.AutoSize = true; + this.label136.Location = new System.Drawing.Point(759, 23); + this.label136.Name = "label136"; + this.label136.Size = new System.Drawing.Size(58, 13); + this.label136.TabIndex = 414; + this.label136.Text = "Forme List:"; + // + // CB_FormeList + // + this.CB_FormeList.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_FormeList.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_FormeList.DropDownWidth = 150; + this.CB_FormeList.FormattingEnabled = true; + this.CB_FormeList.Items.AddRange(new object[] { + "Unown-A - 0", + "Unown-B - 1", + "Unown-C - 2", + "Unown-D - 3", + "Unown-E - 4", + "Unown-F - 5", + "Unown-G - 6", + "Unown-H - 7", + "Unown-I - 8", + "Unown-J - 9", + "Unown-K - 10", + "Unown-L - 11", + "Unown-M - 12", + "Unown-N - 13", + "Unown-O - 14", + "Unown-P - 15", + "Unown-Q - 16", + "Unown-R - 17", + "Unown-S - 18", + "Unown-T - 19", + "Unown-U - 20", + "Unown-V - 21", + "Unown-W - 22", + "Unown-X - 23", + "Unown-Y - 24", + "Unown-Z - 25", + "Unown-! - 26", + "Unown-? - 27", + "", + "Castform-Normal - 0", + "Castform-Sunny - 1", + "Castform-Rainy - 2", + "Castform-Snowy - 3", + "", + "Deoxys-Normal - 0", + "Deoxys-Attack - 1", + "Deoxys-Defense - 2", + "Deoxys-Speed - 3", + "", + "Burmy-Plant Cloak - 0", + "Burmy-Sandy Cloak - 1", + "Burmy-Trash Cloak - 2", + "", + "Wormadam-Plant Cloak - 0", + "Wormadam-Sandy Cloak - 1", + "Wormadam-Trash Cloak - 2", + "", + "Cherrim-Overcast - 0", + "Cherrim-Sunshine - 1", + "", + "Shellos-West Sea - 0", + "Shellos-East Sea - 1", + "", + "Gastrodon-West Sea - 0", + "Gastrodon-East Sea - 1", + "", + "Rotom-Normal - 0", + "Rotom-Heat - 1", + "Rotom-Wash - 2", + "Rotom-Frost - 3", + "Rotom-Fan - 4", + "Rotom-Mow - 5", + "", + "Giratina-Altered - 0", + "Giratina-Origin - 1", + "", + "Shaymin-Land - 0", + "Shaymin-Sky - 1", + "", + "Arceus-Normal - 0", + "Arceus-Fighting - 1", + "Arceus-Flying - 2", + "Arceus-Poison - 3", + "Arceus-Ground - 4", + "Arceus-Rock - 5", + "Arceus-Bug - 6", + "Arceus-Ghost - 7", + "Arceus-Steel - 8", + "Arceus-Fire - 9", + "Arceus-Water - 10", + "Arceus-Grass - 11", + "Arceus-Electric - 12", + "Arceus-Psychic - 13", + "Arceus-Ice - 14", + "Arceus-Dragon - 15", + "Arceus-Dark - 16", + "", + "Basculin-Red-Striped - 0", + "Basculin-Blue-Striped - 1", + "", + "Darmanitan-Standard Mode - 0", + "Darmanitan-Zen Mode - 1", + "", + "Deerling-Spring - 0", + "Deerling-Summer - 1", + "Deerling-Autumn - 2", + "Deerling-Winter - 3", + "", + "Sawsbuck-Spring - 0", + "Sawsbuck-Summer - 1", + "Sawsbuck-Autumn - 2", + "Sawsbuck-Winter - 3", + "", + "Tornadus-Incarnate - 0", + "Tornadus-Therian - 1", + "", + "Thundurus-Incarnate - 0", + "Thundurus-Therian - 1", + "", + "Landorus-Incarnate - 0", + "Landorus-Therian - 1", + "", + "Kyurem-Normal - 0", + "Kyurem-White - 1", + "Kyurem-Black - 2", + "", + "Keldeo-Usual - 0", + "Keldeo-Resolution - 1", + "", + "Meloetta-Aria - 0", + "Meloetta-Pirouette - 1", + "", + "Genesect-Normal - 0", + "Genesect-Water - 1", + "Genesect-Electric - 2", + "Genesect-Fire - 3", + "Genesect-Ice - 4"}); + this.CB_FormeList.Location = new System.Drawing.Point(823, 19); + this.CB_FormeList.Name = "CB_FormeList"; + this.CB_FormeList.Size = new System.Drawing.Size(108, 21); + this.CB_FormeList.TabIndex = 413; + // + // TabPage_Horde + // + this.TabPage_Horde.Controls.Add(this.label129); + this.TabPage_Horde.Controls.Add(this.label130); + this.TabPage_Horde.Controls.Add(this.label131); + this.TabPage_Horde.Controls.Add(this.label132); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMax5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMin5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCForme5); + this.TabPage_Horde.Controls.Add(this.CB_HordeC5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMax4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMin4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCForme4); + this.TabPage_Horde.Controls.Add(this.CB_HordeC4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMax3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMin3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCForme3); + this.TabPage_Horde.Controls.Add(this.CB_HordeC3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMax2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMin2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCForme2); + this.TabPage_Horde.Controls.Add(this.CB_HordeC2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMax1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCMin1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeCForme1); + this.TabPage_Horde.Controls.Add(this.CB_HordeC1); + this.TabPage_Horde.Controls.Add(this.label125); + this.TabPage_Horde.Controls.Add(this.label121); + this.TabPage_Horde.Controls.Add(this.label126); + this.TabPage_Horde.Controls.Add(this.label124); + this.TabPage_Horde.Controls.Add(this.label127); + this.TabPage_Horde.Controls.Add(this.label122); + this.TabPage_Horde.Controls.Add(this.label128); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMax5); + this.TabPage_Horde.Controls.Add(this.CB_HordeA1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMin5); + this.TabPage_Horde.Controls.Add(this.label123); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBForme5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAForme1); + this.TabPage_Horde.Controls.Add(this.CB_HordeB5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMin1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMax4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMax5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMin4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMax1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBForme4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMin5); + this.TabPage_Horde.Controls.Add(this.CB_HordeB4); + this.TabPage_Horde.Controls.Add(this.CB_HordeA2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMax3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAForme5); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMin3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAForme2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBForme3); + this.TabPage_Horde.Controls.Add(this.CB_HordeA5); + this.TabPage_Horde.Controls.Add(this.CB_HordeB3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMin2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMax2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMax4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMin2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMax2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBForme2); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMin4); + this.TabPage_Horde.Controls.Add(this.CB_HordeB2); + this.TabPage_Horde.Controls.Add(this.CB_HordeA3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMax1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAForme4); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBMin1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAForme3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeBForme1); + this.TabPage_Horde.Controls.Add(this.CB_HordeA4); + this.TabPage_Horde.Controls.Add(this.CB_HordeB1); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMin3); + this.TabPage_Horde.Controls.Add(this.NUP_HordeAMax3); + this.TabPage_Horde.Location = new System.Drawing.Point(4, 22); + this.TabPage_Horde.Name = "TabPage_Horde"; + this.TabPage_Horde.Padding = new System.Windows.Forms.Padding(3); + this.TabPage_Horde.Size = new System.Drawing.Size(918, 369); + this.TabPage_Horde.TabIndex = 2; + this.TabPage_Horde.Text = "Horde"; + this.TabPage_Horde.UseVisualStyleBackColor = true; + // + // label129 + // + this.label129.AutoSize = true; + this.label129.Location = new System.Drawing.Point(825, 13); + this.label129.Name = "label129"; + this.label129.Size = new System.Drawing.Size(27, 13); + this.label129.TabIndex = 320; + this.label129.Text = "Max"; + // + // label130 + // + this.label130.AutoSize = true; + this.label130.Location = new System.Drawing.Point(778, 13); + this.label130.Name = "label130"; + this.label130.Size = new System.Drawing.Size(24, 13); + this.label130.TabIndex = 319; + this.label130.Text = "Min"; + // + // label131 + // + this.label131.AutoSize = true; + this.label131.Location = new System.Drawing.Point(731, 13); + this.label131.Name = "label131"; + this.label131.Size = new System.Drawing.Size(36, 13); + this.label131.TabIndex = 318; + this.label131.Text = "Forme"; + // + // label132 + // + this.label132.AutoSize = true; + this.label132.Location = new System.Drawing.Point(607, 13); + this.label132.Name = "label132"; + this.label132.Size = new System.Drawing.Size(69, 13); + this.label132.TabIndex = 317; + this.label132.Text = "Horde C (5%)"; + // + // NUP_HordeCMax5 + // + this.NUP_HordeCMax5.Location = new System.Drawing.Point(828, 137); + this.NUP_HordeCMax5.Name = "NUP_HordeCMax5"; + this.NUP_HordeCMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMax5.TabIndex = 316; + // + // NUP_HordeCMin5 + // + this.NUP_HordeCMin5.Location = new System.Drawing.Point(781, 138); + this.NUP_HordeCMin5.Name = "NUP_HordeCMin5"; + this.NUP_HordeCMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMin5.TabIndex = 315; + // + // NUP_HordeCForme5 + // + this.NUP_HordeCForme5.Location = new System.Drawing.Point(734, 138); + this.NUP_HordeCForme5.Name = "NUP_HordeCForme5"; + this.NUP_HordeCForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCForme5.TabIndex = 314; + // + // CB_HordeC5 + // + this.CB_HordeC5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeC5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeC5.FormattingEnabled = true; + this.CB_HordeC5.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeC5.Location = new System.Drawing.Point(607, 137); + this.CB_HordeC5.Name = "CB_HordeC5"; + this.CB_HordeC5.Size = new System.Drawing.Size(121, 21); + this.CB_HordeC5.TabIndex = 313; + // + // NUP_HordeCMax4 + // + this.NUP_HordeCMax4.Location = new System.Drawing.Point(828, 111); + this.NUP_HordeCMax4.Name = "NUP_HordeCMax4"; + this.NUP_HordeCMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMax4.TabIndex = 312; + // + // NUP_HordeCMin4 + // + this.NUP_HordeCMin4.Location = new System.Drawing.Point(781, 111); + this.NUP_HordeCMin4.Name = "NUP_HordeCMin4"; + this.NUP_HordeCMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMin4.TabIndex = 311; + // + // NUP_HordeCForme4 + // + this.NUP_HordeCForme4.Location = new System.Drawing.Point(734, 111); + this.NUP_HordeCForme4.Name = "NUP_HordeCForme4"; + this.NUP_HordeCForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCForme4.TabIndex = 310; + // + // CB_HordeC4 + // + this.CB_HordeC4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeC4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeC4.FormattingEnabled = true; + this.CB_HordeC4.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeC4.Location = new System.Drawing.Point(607, 110); + this.CB_HordeC4.Name = "CB_HordeC4"; + this.CB_HordeC4.Size = new System.Drawing.Size(121, 21); + this.CB_HordeC4.TabIndex = 309; + // + // NUP_HordeCMax3 + // + this.NUP_HordeCMax3.Location = new System.Drawing.Point(828, 84); + this.NUP_HordeCMax3.Name = "NUP_HordeCMax3"; + this.NUP_HordeCMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMax3.TabIndex = 308; + // + // NUP_HordeCMin3 + // + this.NUP_HordeCMin3.Location = new System.Drawing.Point(781, 84); + this.NUP_HordeCMin3.Name = "NUP_HordeCMin3"; + this.NUP_HordeCMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMin3.TabIndex = 307; + // + // NUP_HordeCForme3 + // + this.NUP_HordeCForme3.Location = new System.Drawing.Point(734, 84); + this.NUP_HordeCForme3.Name = "NUP_HordeCForme3"; + this.NUP_HordeCForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCForme3.TabIndex = 306; + // + // CB_HordeC3 + // + this.CB_HordeC3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeC3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeC3.FormattingEnabled = true; + this.CB_HordeC3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeC3.Location = new System.Drawing.Point(607, 83); + this.CB_HordeC3.Name = "CB_HordeC3"; + this.CB_HordeC3.Size = new System.Drawing.Size(121, 21); + this.CB_HordeC3.TabIndex = 305; + // + // NUP_HordeCMax2 + // + this.NUP_HordeCMax2.Location = new System.Drawing.Point(828, 57); + this.NUP_HordeCMax2.Name = "NUP_HordeCMax2"; + this.NUP_HordeCMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMax2.TabIndex = 304; + // + // NUP_HordeCMin2 + // + this.NUP_HordeCMin2.Location = new System.Drawing.Point(781, 57); + this.NUP_HordeCMin2.Name = "NUP_HordeCMin2"; + this.NUP_HordeCMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMin2.TabIndex = 303; + // + // NUP_HordeCForme2 + // + this.NUP_HordeCForme2.Location = new System.Drawing.Point(734, 57); + this.NUP_HordeCForme2.Name = "NUP_HordeCForme2"; + this.NUP_HordeCForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCForme2.TabIndex = 302; + // + // CB_HordeC2 + // + this.CB_HordeC2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeC2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeC2.FormattingEnabled = true; + this.CB_HordeC2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeC2.Location = new System.Drawing.Point(607, 56); + this.CB_HordeC2.Name = "CB_HordeC2"; + this.CB_HordeC2.Size = new System.Drawing.Size(121, 21); + this.CB_HordeC2.TabIndex = 301; + // + // NUP_HordeCMax1 + // + this.NUP_HordeCMax1.Location = new System.Drawing.Point(828, 30); + this.NUP_HordeCMax1.Name = "NUP_HordeCMax1"; + this.NUP_HordeCMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMax1.TabIndex = 300; + // + // NUP_HordeCMin1 + // + this.NUP_HordeCMin1.Location = new System.Drawing.Point(781, 30); + this.NUP_HordeCMin1.Name = "NUP_HordeCMin1"; + this.NUP_HordeCMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCMin1.TabIndex = 299; + // + // NUP_HordeCForme1 + // + this.NUP_HordeCForme1.Location = new System.Drawing.Point(734, 30); + this.NUP_HordeCForme1.Name = "NUP_HordeCForme1"; + this.NUP_HordeCForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeCForme1.TabIndex = 298; + // + // CB_HordeC1 + // + this.CB_HordeC1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeC1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeC1.FormattingEnabled = true; + this.CB_HordeC1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeC1.Location = new System.Drawing.Point(607, 29); + this.CB_HordeC1.Name = "CB_HordeC1"; + this.CB_HordeC1.Size = new System.Drawing.Size(121, 21); + this.CB_HordeC1.TabIndex = 297; + // + // label125 + // + this.label125.AutoSize = true; + this.label125.Location = new System.Drawing.Point(530, 13); + this.label125.Name = "label125"; + this.label125.Size = new System.Drawing.Size(27, 13); + this.label125.TabIndex = 296; + this.label125.Text = "Max"; + // + // label121 + // + this.label121.AutoSize = true; + this.label121.Location = new System.Drawing.Point(234, 13); + this.label121.Name = "label121"; + this.label121.Size = new System.Drawing.Size(27, 13); + this.label121.TabIndex = 296; + this.label121.Text = "Max"; + // + // label126 + // + this.label126.AutoSize = true; + this.label126.Location = new System.Drawing.Point(483, 13); + this.label126.Name = "label126"; + this.label126.Size = new System.Drawing.Size(24, 13); + this.label126.TabIndex = 295; + this.label126.Text = "Min"; + // + // label124 + // + this.label124.AutoSize = true; + this.label124.Location = new System.Drawing.Point(16, 13); + this.label124.Name = "label124"; + this.label124.Size = new System.Drawing.Size(75, 13); + this.label124.TabIndex = 293; + this.label124.Text = "Horde A (60%)"; + // + // label127 + // + this.label127.AutoSize = true; + this.label127.Location = new System.Drawing.Point(436, 13); + this.label127.Name = "label127"; + this.label127.Size = new System.Drawing.Size(36, 13); + this.label127.TabIndex = 294; + this.label127.Text = "Forme"; + // + // label122 + // + this.label122.AutoSize = true; + this.label122.Location = new System.Drawing.Point(187, 13); + this.label122.Name = "label122"; + this.label122.Size = new System.Drawing.Size(24, 13); + this.label122.TabIndex = 295; + this.label122.Text = "Min"; + // + // label128 + // + this.label128.AutoSize = true; + this.label128.Location = new System.Drawing.Point(312, 13); + this.label128.Name = "label128"; + this.label128.Size = new System.Drawing.Size(75, 13); + this.label128.TabIndex = 293; + this.label128.Text = "Horde B (35%)"; + // + // NUP_HordeBMax5 + // + this.NUP_HordeBMax5.Location = new System.Drawing.Point(533, 137); + this.NUP_HordeBMax5.Name = "NUP_HordeBMax5"; + this.NUP_HordeBMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMax5.TabIndex = 292; + // + // CB_HordeA1 + // + this.CB_HordeA1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeA1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeA1.FormattingEnabled = true; + this.CB_HordeA1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeA1.Location = new System.Drawing.Point(16, 29); + this.CB_HordeA1.Name = "CB_HordeA1"; + this.CB_HordeA1.Size = new System.Drawing.Size(121, 21); + this.CB_HordeA1.TabIndex = 273; + // + // NUP_HordeBMin5 + // + this.NUP_HordeBMin5.Location = new System.Drawing.Point(486, 138); + this.NUP_HordeBMin5.Name = "NUP_HordeBMin5"; + this.NUP_HordeBMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMin5.TabIndex = 291; + // + // label123 + // + this.label123.AutoSize = true; + this.label123.Location = new System.Drawing.Point(140, 13); + this.label123.Name = "label123"; + this.label123.Size = new System.Drawing.Size(36, 13); + this.label123.TabIndex = 294; + this.label123.Text = "Forme"; + // + // NUP_HordeBForme5 + // + this.NUP_HordeBForme5.Location = new System.Drawing.Point(439, 138); + this.NUP_HordeBForme5.Name = "NUP_HordeBForme5"; + this.NUP_HordeBForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBForme5.TabIndex = 290; + // + // NUP_HordeAForme1 + // + this.NUP_HordeAForme1.Location = new System.Drawing.Point(143, 30); + this.NUP_HordeAForme1.Name = "NUP_HordeAForme1"; + this.NUP_HordeAForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAForme1.TabIndex = 274; + // + // CB_HordeB5 + // + this.CB_HordeB5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeB5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeB5.FormattingEnabled = true; + this.CB_HordeB5.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeB5.Location = new System.Drawing.Point(312, 137); + this.CB_HordeB5.Name = "CB_HordeB5"; + this.CB_HordeB5.Size = new System.Drawing.Size(121, 21); + this.CB_HordeB5.TabIndex = 289; + // + // NUP_HordeAMin1 + // + this.NUP_HordeAMin1.Location = new System.Drawing.Point(190, 30); + this.NUP_HordeAMin1.Name = "NUP_HordeAMin1"; + this.NUP_HordeAMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMin1.TabIndex = 275; + // + // NUP_HordeBMax4 + // + this.NUP_HordeBMax4.Location = new System.Drawing.Point(533, 111); + this.NUP_HordeBMax4.Name = "NUP_HordeBMax4"; + this.NUP_HordeBMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMax4.TabIndex = 288; + // + // NUP_HordeAMax5 + // + this.NUP_HordeAMax5.Location = new System.Drawing.Point(237, 137); + this.NUP_HordeAMax5.Name = "NUP_HordeAMax5"; + this.NUP_HordeAMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMax5.TabIndex = 292; + // + // NUP_HordeBMin4 + // + this.NUP_HordeBMin4.Location = new System.Drawing.Point(486, 111); + this.NUP_HordeBMin4.Name = "NUP_HordeBMin4"; + this.NUP_HordeBMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMin4.TabIndex = 287; + // + // NUP_HordeAMax1 + // + this.NUP_HordeAMax1.Location = new System.Drawing.Point(237, 30); + this.NUP_HordeAMax1.Name = "NUP_HordeAMax1"; + this.NUP_HordeAMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMax1.TabIndex = 276; + // + // NUP_HordeBForme4 + // + this.NUP_HordeBForme4.Location = new System.Drawing.Point(439, 111); + this.NUP_HordeBForme4.Name = "NUP_HordeBForme4"; + this.NUP_HordeBForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBForme4.TabIndex = 286; + // + // NUP_HordeAMin5 + // + this.NUP_HordeAMin5.Location = new System.Drawing.Point(190, 138); + this.NUP_HordeAMin5.Name = "NUP_HordeAMin5"; + this.NUP_HordeAMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMin5.TabIndex = 291; + // + // CB_HordeB4 + // + this.CB_HordeB4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeB4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeB4.FormattingEnabled = true; + this.CB_HordeB4.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeB4.Location = new System.Drawing.Point(312, 110); + this.CB_HordeB4.Name = "CB_HordeB4"; + this.CB_HordeB4.Size = new System.Drawing.Size(121, 21); + this.CB_HordeB4.TabIndex = 285; + // + // CB_HordeA2 + // + this.CB_HordeA2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeA2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeA2.FormattingEnabled = true; + this.CB_HordeA2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeA2.Location = new System.Drawing.Point(16, 56); + this.CB_HordeA2.Name = "CB_HordeA2"; + this.CB_HordeA2.Size = new System.Drawing.Size(121, 21); + this.CB_HordeA2.TabIndex = 277; + // + // NUP_HordeBMax3 + // + this.NUP_HordeBMax3.Location = new System.Drawing.Point(533, 84); + this.NUP_HordeBMax3.Name = "NUP_HordeBMax3"; + this.NUP_HordeBMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMax3.TabIndex = 284; + // + // NUP_HordeAForme5 + // + this.NUP_HordeAForme5.Location = new System.Drawing.Point(143, 138); + this.NUP_HordeAForme5.Name = "NUP_HordeAForme5"; + this.NUP_HordeAForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAForme5.TabIndex = 290; + // + // NUP_HordeBMin3 + // + this.NUP_HordeBMin3.Location = new System.Drawing.Point(486, 84); + this.NUP_HordeBMin3.Name = "NUP_HordeBMin3"; + this.NUP_HordeBMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMin3.TabIndex = 283; + // + // NUP_HordeAForme2 + // + this.NUP_HordeAForme2.Location = new System.Drawing.Point(143, 57); + this.NUP_HordeAForme2.Name = "NUP_HordeAForme2"; + this.NUP_HordeAForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAForme2.TabIndex = 278; + // + // NUP_HordeBForme3 + // + this.NUP_HordeBForme3.Location = new System.Drawing.Point(439, 84); + this.NUP_HordeBForme3.Name = "NUP_HordeBForme3"; + this.NUP_HordeBForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBForme3.TabIndex = 282; + // + // CB_HordeA5 + // + this.CB_HordeA5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeA5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeA5.FormattingEnabled = true; + this.CB_HordeA5.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeA5.Location = new System.Drawing.Point(16, 137); + this.CB_HordeA5.Name = "CB_HordeA5"; + this.CB_HordeA5.Size = new System.Drawing.Size(121, 21); + this.CB_HordeA5.TabIndex = 289; + // + // CB_HordeB3 + // + this.CB_HordeB3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeB3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeB3.FormattingEnabled = true; + this.CB_HordeB3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeB3.Location = new System.Drawing.Point(312, 83); + this.CB_HordeB3.Name = "CB_HordeB3"; + this.CB_HordeB3.Size = new System.Drawing.Size(121, 21); + this.CB_HordeB3.TabIndex = 281; + // + // NUP_HordeAMin2 + // + this.NUP_HordeAMin2.Location = new System.Drawing.Point(190, 57); + this.NUP_HordeAMin2.Name = "NUP_HordeAMin2"; + this.NUP_HordeAMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMin2.TabIndex = 279; + // + // NUP_HordeBMax2 + // + this.NUP_HordeBMax2.Location = new System.Drawing.Point(533, 57); + this.NUP_HordeBMax2.Name = "NUP_HordeBMax2"; + this.NUP_HordeBMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMax2.TabIndex = 280; + // + // NUP_HordeAMax4 + // + this.NUP_HordeAMax4.Location = new System.Drawing.Point(237, 111); + this.NUP_HordeAMax4.Name = "NUP_HordeAMax4"; + this.NUP_HordeAMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMax4.TabIndex = 288; + // + // NUP_HordeBMin2 + // + this.NUP_HordeBMin2.Location = new System.Drawing.Point(486, 57); + this.NUP_HordeBMin2.Name = "NUP_HordeBMin2"; + this.NUP_HordeBMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMin2.TabIndex = 279; + // + // NUP_HordeAMax2 + // + this.NUP_HordeAMax2.Location = new System.Drawing.Point(237, 57); + this.NUP_HordeAMax2.Name = "NUP_HordeAMax2"; + this.NUP_HordeAMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMax2.TabIndex = 280; + // + // NUP_HordeBForme2 + // + this.NUP_HordeBForme2.Location = new System.Drawing.Point(439, 57); + this.NUP_HordeBForme2.Name = "NUP_HordeBForme2"; + this.NUP_HordeBForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBForme2.TabIndex = 278; + // + // NUP_HordeAMin4 + // + this.NUP_HordeAMin4.Location = new System.Drawing.Point(190, 111); + this.NUP_HordeAMin4.Name = "NUP_HordeAMin4"; + this.NUP_HordeAMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMin4.TabIndex = 287; + // + // CB_HordeB2 + // + this.CB_HordeB2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeB2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeB2.FormattingEnabled = true; + this.CB_HordeB2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeB2.Location = new System.Drawing.Point(312, 56); + this.CB_HordeB2.Name = "CB_HordeB2"; + this.CB_HordeB2.Size = new System.Drawing.Size(121, 21); + this.CB_HordeB2.TabIndex = 277; + // + // CB_HordeA3 + // + this.CB_HordeA3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeA3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeA3.FormattingEnabled = true; + this.CB_HordeA3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeA3.Location = new System.Drawing.Point(16, 83); + this.CB_HordeA3.Name = "CB_HordeA3"; + this.CB_HordeA3.Size = new System.Drawing.Size(121, 21); + this.CB_HordeA3.TabIndex = 281; + // + // NUP_HordeBMax1 + // + this.NUP_HordeBMax1.Location = new System.Drawing.Point(533, 30); + this.NUP_HordeBMax1.Name = "NUP_HordeBMax1"; + this.NUP_HordeBMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMax1.TabIndex = 276; + // + // NUP_HordeAForme4 + // + this.NUP_HordeAForme4.Location = new System.Drawing.Point(143, 111); + this.NUP_HordeAForme4.Name = "NUP_HordeAForme4"; + this.NUP_HordeAForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAForme4.TabIndex = 286; + // + // NUP_HordeBMin1 + // + this.NUP_HordeBMin1.Location = new System.Drawing.Point(486, 30); + this.NUP_HordeBMin1.Name = "NUP_HordeBMin1"; + this.NUP_HordeBMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBMin1.TabIndex = 275; + // + // NUP_HordeAForme3 + // + this.NUP_HordeAForme3.Location = new System.Drawing.Point(143, 84); + this.NUP_HordeAForme3.Name = "NUP_HordeAForme3"; + this.NUP_HordeAForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAForme3.TabIndex = 282; + // + // NUP_HordeBForme1 + // + this.NUP_HordeBForme1.Location = new System.Drawing.Point(439, 30); + this.NUP_HordeBForme1.Name = "NUP_HordeBForme1"; + this.NUP_HordeBForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeBForme1.TabIndex = 274; + // + // CB_HordeA4 + // + this.CB_HordeA4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeA4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeA4.FormattingEnabled = true; + this.CB_HordeA4.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeA4.Location = new System.Drawing.Point(16, 110); + this.CB_HordeA4.Name = "CB_HordeA4"; + this.CB_HordeA4.Size = new System.Drawing.Size(121, 21); + this.CB_HordeA4.TabIndex = 285; + // + // CB_HordeB1 + // + this.CB_HordeB1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_HordeB1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_HordeB1.FormattingEnabled = true; + this.CB_HordeB1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_HordeB1.Location = new System.Drawing.Point(312, 29); + this.CB_HordeB1.Name = "CB_HordeB1"; + this.CB_HordeB1.Size = new System.Drawing.Size(121, 21); + this.CB_HordeB1.TabIndex = 273; + // + // NUP_HordeAMin3 + // + this.NUP_HordeAMin3.Location = new System.Drawing.Point(190, 84); + this.NUP_HordeAMin3.Name = "NUP_HordeAMin3"; + this.NUP_HordeAMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMin3.TabIndex = 283; + // + // NUP_HordeAMax3 + // + this.NUP_HordeAMax3.Location = new System.Drawing.Point(237, 84); + this.NUP_HordeAMax3.Name = "NUP_HordeAMax3"; + this.NUP_HordeAMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_HordeAMax3.TabIndex = 284; + // + // TabPage_Water + // + this.TabPage_Water.Controls.Add(this.label116); + this.TabPage_Water.Controls.Add(this.label117); + this.TabPage_Water.Controls.Add(this.label118); + this.TabPage_Water.Controls.Add(this.label119); + this.TabPage_Water.Controls.Add(this.label120); + this.TabPage_Water.Controls.Add(this.label103); + this.TabPage_Water.Controls.Add(this.label48); + this.TabPage_Water.Controls.Add(this.label104); + this.TabPage_Water.Controls.Add(this.CB_Super1); + this.TabPage_Water.Controls.Add(this.label105); + this.TabPage_Water.Controls.Add(this.NUP_SuperForme1); + this.TabPage_Water.Controls.Add(this.label106); + this.TabPage_Water.Controls.Add(this.CB_Surf1); + this.TabPage_Water.Controls.Add(this.NUP_SuperMin1); + this.TabPage_Water.Controls.Add(this.NUP_SurfForme1); + this.TabPage_Water.Controls.Add(this.NUP_SuperMax1); + this.TabPage_Water.Controls.Add(this.NUP_SurfMin1); + this.TabPage_Water.Controls.Add(this.CB_Super2); + this.TabPage_Water.Controls.Add(this.NUP_SurfMax1); + this.TabPage_Water.Controls.Add(this.NUP_SuperForme2); + this.TabPage_Water.Controls.Add(this.CB_Surf2); + this.TabPage_Water.Controls.Add(this.NUP_SuperMin2); + this.TabPage_Water.Controls.Add(this.NUP_SurfForme2); + this.TabPage_Water.Controls.Add(this.NUP_SuperMax2); + this.TabPage_Water.Controls.Add(this.NUP_SurfMin2); + this.TabPage_Water.Controls.Add(this.CB_Super3); + this.TabPage_Water.Controls.Add(this.NUP_SurfMax5); + this.TabPage_Water.Controls.Add(this.NUP_SuperForme3); + this.TabPage_Water.Controls.Add(this.NUP_SurfMax2); + this.TabPage_Water.Controls.Add(this.NUP_SuperMin3); + this.TabPage_Water.Controls.Add(this.NUP_SurfMin5); + this.TabPage_Water.Controls.Add(this.NUP_SuperMax3); + this.TabPage_Water.Controls.Add(this.CB_Surf3); + this.TabPage_Water.Controls.Add(this.label49); + this.TabPage_Water.Controls.Add(this.NUP_SurfForme5); + this.TabPage_Water.Controls.Add(this.label98); + this.TabPage_Water.Controls.Add(this.NUP_SurfForme3); + this.TabPage_Water.Controls.Add(this.label99); + this.TabPage_Water.Controls.Add(this.CB_Surf5); + this.TabPage_Water.Controls.Add(this.label100); + this.TabPage_Water.Controls.Add(this.NUP_SurfMin3); + this.TabPage_Water.Controls.Add(this.label101); + this.TabPage_Water.Controls.Add(this.NUP_SurfMax4); + this.TabPage_Water.Controls.Add(this.label102); + this.TabPage_Water.Controls.Add(this.NUP_SurfMax3); + this.TabPage_Water.Controls.Add(this.label26); + this.TabPage_Water.Controls.Add(this.NUP_SurfMin4); + this.TabPage_Water.Controls.Add(this.CB_Good1); + this.TabPage_Water.Controls.Add(this.CB_Surf4); + this.TabPage_Water.Controls.Add(this.NUP_GoodForme1); + this.TabPage_Water.Controls.Add(this.NUP_SurfForme4); + this.TabPage_Water.Controls.Add(this.NUP_GoodMin1); + this.TabPage_Water.Controls.Add(this.NUP_GoodMax1); + this.TabPage_Water.Controls.Add(this.CB_Good2); + this.TabPage_Water.Controls.Add(this.NUP_GoodForme2); + this.TabPage_Water.Controls.Add(this.NUP_GoodMin2); + this.TabPage_Water.Controls.Add(this.NUP_GoodMax2); + this.TabPage_Water.Controls.Add(this.CB_Good3); + this.TabPage_Water.Controls.Add(this.NUP_GoodForme3); + this.TabPage_Water.Controls.Add(this.NUP_GoodMin3); + this.TabPage_Water.Controls.Add(this.NUP_GoodMax3); + this.TabPage_Water.Controls.Add(this.label27); + this.TabPage_Water.Controls.Add(this.label28); + this.TabPage_Water.Controls.Add(this.label29); + this.TabPage_Water.Controls.Add(this.label30); + this.TabPage_Water.Controls.Add(this.label46); + this.TabPage_Water.Controls.Add(this.label47); + this.TabPage_Water.Controls.Add(this.label22); + this.TabPage_Water.Controls.Add(this.CB_Old1); + this.TabPage_Water.Controls.Add(this.NUP_OldForme1); + this.TabPage_Water.Controls.Add(this.NUP_OldMin1); + this.TabPage_Water.Controls.Add(this.NUP_OldMax1); + this.TabPage_Water.Controls.Add(this.CB_Old2); + this.TabPage_Water.Controls.Add(this.NUP_OldForme2); + this.TabPage_Water.Controls.Add(this.NUP_OldMin2); + this.TabPage_Water.Controls.Add(this.NUP_OldMax2); + this.TabPage_Water.Controls.Add(this.CB_Old3); + this.TabPage_Water.Controls.Add(this.NUP_OldForme3); + this.TabPage_Water.Controls.Add(this.NUP_OldMin3); + this.TabPage_Water.Controls.Add(this.NUP_OldMax3); + this.TabPage_Water.Controls.Add(this.label45); + this.TabPage_Water.Controls.Add(this.label44); + this.TabPage_Water.Controls.Add(this.label43); + this.TabPage_Water.Controls.Add(this.label23); + this.TabPage_Water.Controls.Add(this.label24); + this.TabPage_Water.Controls.Add(this.label25); + this.TabPage_Water.Location = new System.Drawing.Point(4, 22); + this.TabPage_Water.Name = "TabPage_Water"; + this.TabPage_Water.Padding = new System.Windows.Forms.Padding(3); + this.TabPage_Water.Size = new System.Drawing.Size(918, 369); + this.TabPage_Water.TabIndex = 1; + this.TabPage_Water.Text = "Water"; + this.TabPage_Water.UseVisualStyleBackColor = true; + // + // label116 + // + this.label116.AutoSize = true; + this.label116.Location = new System.Drawing.Point(313, 285); + this.label116.Name = "label116"; + this.label116.Size = new System.Drawing.Size(21, 13); + this.label116.TabIndex = 351; + this.label116.Text = "1%"; + // + // label117 + // + this.label117.AutoSize = true; + this.label117.Location = new System.Drawing.Point(313, 258); + this.label117.Name = "label117"; + this.label117.Size = new System.Drawing.Size(21, 13); + this.label117.TabIndex = 350; + this.label117.Text = "4%"; + // + // label118 + // + this.label118.AutoSize = true; + this.label118.Location = new System.Drawing.Point(307, 231); + this.label118.Name = "label118"; + this.label118.Size = new System.Drawing.Size(27, 13); + this.label118.TabIndex = 349; + this.label118.Text = "15%"; + // + // label119 + // + this.label119.AutoSize = true; + this.label119.Location = new System.Drawing.Point(307, 204); + this.label119.Name = "label119"; + this.label119.Size = new System.Drawing.Size(27, 13); + this.label119.TabIndex = 348; + this.label119.Text = "30%"; + // + // label120 + // + this.label120.AutoSize = true; + this.label120.Location = new System.Drawing.Point(307, 177); + this.label120.Name = "label120"; + this.label120.Size = new System.Drawing.Size(27, 13); + this.label120.TabIndex = 347; + this.label120.Text = "50%"; + // + // label103 + // + this.label103.AutoSize = true; + this.label103.Location = new System.Drawing.Point(558, 159); + this.label103.Name = "label103"; + this.label103.Size = new System.Drawing.Size(27, 13); + this.label103.TabIndex = 288; + this.label103.Text = "Max"; + // + // label48 + // + this.label48.AutoSize = true; + this.label48.Location = new System.Drawing.Point(639, 13); + this.label48.Name = "label48"; + this.label48.Size = new System.Drawing.Size(58, 13); + this.label48.TabIndex = 340; + this.label48.Text = "Super Rod"; + // + // label104 + // + this.label104.AutoSize = true; + this.label104.Location = new System.Drawing.Point(511, 159); + this.label104.Name = "label104"; + this.label104.Size = new System.Drawing.Size(24, 13); + this.label104.TabIndex = 287; + this.label104.Text = "Min"; + // + // CB_Super1 + // + this.CB_Super1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Super1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Super1.FormattingEnabled = true; + this.CB_Super1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Super1.Location = new System.Drawing.Point(642, 29); + this.CB_Super1.Name = "CB_Super1"; + this.CB_Super1.Size = new System.Drawing.Size(121, 21); + this.CB_Super1.TabIndex = 328; + // + // label105 + // + this.label105.AutoSize = true; + this.label105.Location = new System.Drawing.Point(464, 159); + this.label105.Name = "label105"; + this.label105.Size = new System.Drawing.Size(36, 13); + this.label105.TabIndex = 286; + this.label105.Text = "Forme"; + // + // NUP_SuperForme1 + // + this.NUP_SuperForme1.Location = new System.Drawing.Point(769, 30); + this.NUP_SuperForme1.Name = "NUP_SuperForme1"; + this.NUP_SuperForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperForme1.TabIndex = 329; + // + // label106 + // + this.label106.AutoSize = true; + this.label106.Location = new System.Drawing.Point(340, 159); + this.label106.Name = "label106"; + this.label106.Size = new System.Drawing.Size(40, 13); + this.label106.TabIndex = 285; + this.label106.Text = "Surfing"; + // + // CB_Surf1 + // + this.CB_Surf1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Surf1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Surf1.FormattingEnabled = true; + this.CB_Surf1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Surf1.Location = new System.Drawing.Point(340, 174); + this.CB_Surf1.Name = "CB_Surf1"; + this.CB_Surf1.Size = new System.Drawing.Size(121, 21); + this.CB_Surf1.TabIndex = 265; + // + // NUP_SuperMin1 + // + this.NUP_SuperMin1.Location = new System.Drawing.Point(816, 30); + this.NUP_SuperMin1.Name = "NUP_SuperMin1"; + this.NUP_SuperMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperMin1.TabIndex = 330; + // + // NUP_SurfForme1 + // + this.NUP_SurfForme1.Location = new System.Drawing.Point(467, 175); + this.NUP_SurfForme1.Name = "NUP_SurfForme1"; + this.NUP_SurfForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfForme1.TabIndex = 266; + // + // NUP_SuperMax1 + // + this.NUP_SuperMax1.Location = new System.Drawing.Point(863, 30); + this.NUP_SuperMax1.Name = "NUP_SuperMax1"; + this.NUP_SuperMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperMax1.TabIndex = 331; + // + // NUP_SurfMin1 + // + this.NUP_SurfMin1.Location = new System.Drawing.Point(514, 175); + this.NUP_SurfMin1.Name = "NUP_SurfMin1"; + this.NUP_SurfMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMin1.TabIndex = 267; + // + // CB_Super2 + // + this.CB_Super2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Super2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Super2.FormattingEnabled = true; + this.CB_Super2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Super2.Location = new System.Drawing.Point(642, 56); + this.CB_Super2.Name = "CB_Super2"; + this.CB_Super2.Size = new System.Drawing.Size(121, 21); + this.CB_Super2.TabIndex = 332; + // + // NUP_SurfMax1 + // + this.NUP_SurfMax1.Location = new System.Drawing.Point(561, 175); + this.NUP_SurfMax1.Name = "NUP_SurfMax1"; + this.NUP_SurfMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMax1.TabIndex = 268; + // + // NUP_SuperForme2 + // + this.NUP_SuperForme2.Location = new System.Drawing.Point(769, 57); + this.NUP_SuperForme2.Name = "NUP_SuperForme2"; + this.NUP_SuperForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperForme2.TabIndex = 333; + // + // CB_Surf2 + // + this.CB_Surf2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Surf2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Surf2.FormattingEnabled = true; + this.CB_Surf2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Surf2.Location = new System.Drawing.Point(340, 201); + this.CB_Surf2.Name = "CB_Surf2"; + this.CB_Surf2.Size = new System.Drawing.Size(121, 21); + this.CB_Surf2.TabIndex = 269; + // + // NUP_SuperMin2 + // + this.NUP_SuperMin2.Location = new System.Drawing.Point(816, 57); + this.NUP_SuperMin2.Name = "NUP_SuperMin2"; + this.NUP_SuperMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperMin2.TabIndex = 334; + // + // NUP_SurfForme2 + // + this.NUP_SurfForme2.Location = new System.Drawing.Point(467, 202); + this.NUP_SurfForme2.Name = "NUP_SurfForme2"; + this.NUP_SurfForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfForme2.TabIndex = 270; + // + // NUP_SuperMax2 + // + this.NUP_SuperMax2.Location = new System.Drawing.Point(863, 57); + this.NUP_SuperMax2.Name = "NUP_SuperMax2"; + this.NUP_SuperMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperMax2.TabIndex = 335; + // + // NUP_SurfMin2 + // + this.NUP_SurfMin2.Location = new System.Drawing.Point(514, 202); + this.NUP_SurfMin2.Name = "NUP_SurfMin2"; + this.NUP_SurfMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMin2.TabIndex = 271; + // + // CB_Super3 + // + this.CB_Super3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Super3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Super3.FormattingEnabled = true; + this.CB_Super3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Super3.Location = new System.Drawing.Point(642, 83); + this.CB_Super3.Name = "CB_Super3"; + this.CB_Super3.Size = new System.Drawing.Size(121, 21); + this.CB_Super3.TabIndex = 336; + // + // NUP_SurfMax5 + // + this.NUP_SurfMax5.Location = new System.Drawing.Point(561, 283); + this.NUP_SurfMax5.Name = "NUP_SurfMax5"; + this.NUP_SurfMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMax5.TabIndex = 284; + // + // NUP_SuperForme3 + // + this.NUP_SuperForme3.Location = new System.Drawing.Point(769, 84); + this.NUP_SuperForme3.Name = "NUP_SuperForme3"; + this.NUP_SuperForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperForme3.TabIndex = 337; + // + // NUP_SurfMax2 + // + this.NUP_SurfMax2.Location = new System.Drawing.Point(561, 202); + this.NUP_SurfMax2.Name = "NUP_SurfMax2"; + this.NUP_SurfMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMax2.TabIndex = 272; + // + // NUP_SuperMin3 + // + this.NUP_SuperMin3.Location = new System.Drawing.Point(816, 84); + this.NUP_SuperMin3.Name = "NUP_SuperMin3"; + this.NUP_SuperMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperMin3.TabIndex = 338; + // + // NUP_SurfMin5 + // + this.NUP_SurfMin5.Location = new System.Drawing.Point(514, 283); + this.NUP_SurfMin5.Name = "NUP_SurfMin5"; + this.NUP_SurfMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMin5.TabIndex = 283; + // + // NUP_SuperMax3 + // + this.NUP_SuperMax3.Location = new System.Drawing.Point(863, 84); + this.NUP_SuperMax3.Name = "NUP_SuperMax3"; + this.NUP_SuperMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_SuperMax3.TabIndex = 339; + // + // CB_Surf3 + // + this.CB_Surf3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Surf3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Surf3.FormattingEnabled = true; + this.CB_Surf3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Surf3.Location = new System.Drawing.Point(340, 228); + this.CB_Surf3.Name = "CB_Surf3"; + this.CB_Surf3.Size = new System.Drawing.Size(121, 21); + this.CB_Surf3.TabIndex = 273; + // + // label49 + // + this.label49.AutoSize = true; + this.label49.Location = new System.Drawing.Point(615, 86); + this.label49.Name = "label49"; + this.label49.Size = new System.Drawing.Size(21, 13); + this.label49.TabIndex = 346; + this.label49.Text = "5%"; + // + // NUP_SurfForme5 + // + this.NUP_SurfForme5.Location = new System.Drawing.Point(467, 283); + this.NUP_SurfForme5.Name = "NUP_SurfForme5"; + this.NUP_SurfForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfForme5.TabIndex = 282; + // + // label98 + // + this.label98.AutoSize = true; + this.label98.Location = new System.Drawing.Point(609, 59); + this.label98.Name = "label98"; + this.label98.Size = new System.Drawing.Size(27, 13); + this.label98.TabIndex = 345; + this.label98.Text = "35%"; + // + // NUP_SurfForme3 + // + this.NUP_SurfForme3.Location = new System.Drawing.Point(467, 229); + this.NUP_SurfForme3.Name = "NUP_SurfForme3"; + this.NUP_SurfForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfForme3.TabIndex = 274; + // + // label99 + // + this.label99.AutoSize = true; + this.label99.Location = new System.Drawing.Point(609, 32); + this.label99.Name = "label99"; + this.label99.Size = new System.Drawing.Size(27, 13); + this.label99.TabIndex = 344; + this.label99.Text = "60%"; + // + // CB_Surf5 + // + this.CB_Surf5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Surf5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Surf5.FormattingEnabled = true; + this.CB_Surf5.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Surf5.Location = new System.Drawing.Point(340, 282); + this.CB_Surf5.Name = "CB_Surf5"; + this.CB_Surf5.Size = new System.Drawing.Size(121, 21); + this.CB_Surf5.TabIndex = 281; + // + // label100 + // + this.label100.AutoSize = true; + this.label100.Location = new System.Drawing.Point(766, 14); + this.label100.Name = "label100"; + this.label100.Size = new System.Drawing.Size(36, 13); + this.label100.TabIndex = 341; + this.label100.Text = "Forme"; + // + // NUP_SurfMin3 + // + this.NUP_SurfMin3.Location = new System.Drawing.Point(514, 229); + this.NUP_SurfMin3.Name = "NUP_SurfMin3"; + this.NUP_SurfMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMin3.TabIndex = 275; + // + // label101 + // + this.label101.AutoSize = true; + this.label101.Location = new System.Drawing.Point(813, 14); + this.label101.Name = "label101"; + this.label101.Size = new System.Drawing.Size(24, 13); + this.label101.TabIndex = 342; + this.label101.Text = "Min"; + // + // NUP_SurfMax4 + // + this.NUP_SurfMax4.Location = new System.Drawing.Point(561, 256); + this.NUP_SurfMax4.Name = "NUP_SurfMax4"; + this.NUP_SurfMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMax4.TabIndex = 280; + // + // label102 + // + this.label102.AutoSize = true; + this.label102.Location = new System.Drawing.Point(860, 14); + this.label102.Name = "label102"; + this.label102.Size = new System.Drawing.Size(27, 13); + this.label102.TabIndex = 343; + this.label102.Text = "Max"; + // + // NUP_SurfMax3 + // + this.NUP_SurfMax3.Location = new System.Drawing.Point(561, 229); + this.NUP_SurfMax3.Name = "NUP_SurfMax3"; + this.NUP_SurfMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMax3.TabIndex = 276; + // + // label26 + // + this.label26.AutoSize = true; + this.label26.Location = new System.Drawing.Point(340, 13); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(56, 13); + this.label26.TabIndex = 321; + this.label26.Text = "Good Rod"; + // + // NUP_SurfMin4 + // + this.NUP_SurfMin4.Location = new System.Drawing.Point(514, 256); + this.NUP_SurfMin4.Name = "NUP_SurfMin4"; + this.NUP_SurfMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfMin4.TabIndex = 279; + // + // CB_Good1 + // + this.CB_Good1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Good1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Good1.FormattingEnabled = true; + this.CB_Good1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Good1.Location = new System.Drawing.Point(340, 29); + this.CB_Good1.Name = "CB_Good1"; + this.CB_Good1.Size = new System.Drawing.Size(121, 21); + this.CB_Good1.TabIndex = 309; + // + // CB_Surf4 + // + this.CB_Surf4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Surf4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Surf4.FormattingEnabled = true; + this.CB_Surf4.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Surf4.Location = new System.Drawing.Point(340, 255); + this.CB_Surf4.Name = "CB_Surf4"; + this.CB_Surf4.Size = new System.Drawing.Size(121, 21); + this.CB_Surf4.TabIndex = 277; + // + // NUP_GoodForme1 + // + this.NUP_GoodForme1.Location = new System.Drawing.Point(467, 30); + this.NUP_GoodForme1.Name = "NUP_GoodForme1"; + this.NUP_GoodForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodForme1.TabIndex = 310; + // + // NUP_SurfForme4 + // + this.NUP_SurfForme4.Location = new System.Drawing.Point(467, 256); + this.NUP_SurfForme4.Name = "NUP_SurfForme4"; + this.NUP_SurfForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_SurfForme4.TabIndex = 278; + // + // NUP_GoodMin1 + // + this.NUP_GoodMin1.Location = new System.Drawing.Point(514, 30); + this.NUP_GoodMin1.Name = "NUP_GoodMin1"; + this.NUP_GoodMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodMin1.TabIndex = 311; + // + // NUP_GoodMax1 + // + this.NUP_GoodMax1.Location = new System.Drawing.Point(561, 30); + this.NUP_GoodMax1.Name = "NUP_GoodMax1"; + this.NUP_GoodMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodMax1.TabIndex = 312; + // + // CB_Good2 + // + this.CB_Good2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Good2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Good2.FormattingEnabled = true; + this.CB_Good2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Good2.Location = new System.Drawing.Point(340, 56); + this.CB_Good2.Name = "CB_Good2"; + this.CB_Good2.Size = new System.Drawing.Size(121, 21); + this.CB_Good2.TabIndex = 313; + // + // NUP_GoodForme2 + // + this.NUP_GoodForme2.Location = new System.Drawing.Point(467, 57); + this.NUP_GoodForme2.Name = "NUP_GoodForme2"; + this.NUP_GoodForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodForme2.TabIndex = 314; + // + // NUP_GoodMin2 + // + this.NUP_GoodMin2.Location = new System.Drawing.Point(514, 57); + this.NUP_GoodMin2.Name = "NUP_GoodMin2"; + this.NUP_GoodMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodMin2.TabIndex = 315; + // + // NUP_GoodMax2 + // + this.NUP_GoodMax2.Location = new System.Drawing.Point(561, 57); + this.NUP_GoodMax2.Name = "NUP_GoodMax2"; + this.NUP_GoodMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodMax2.TabIndex = 316; + // + // CB_Good3 + // + this.CB_Good3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Good3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Good3.FormattingEnabled = true; + this.CB_Good3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Good3.Location = new System.Drawing.Point(340, 83); + this.CB_Good3.Name = "CB_Good3"; + this.CB_Good3.Size = new System.Drawing.Size(121, 21); + this.CB_Good3.TabIndex = 317; + // + // NUP_GoodForme3 + // + this.NUP_GoodForme3.Location = new System.Drawing.Point(467, 84); + this.NUP_GoodForme3.Name = "NUP_GoodForme3"; + this.NUP_GoodForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodForme3.TabIndex = 318; + // + // NUP_GoodMin3 + // + this.NUP_GoodMin3.Location = new System.Drawing.Point(514, 84); + this.NUP_GoodMin3.Name = "NUP_GoodMin3"; + this.NUP_GoodMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodMin3.TabIndex = 319; + // + // NUP_GoodMax3 + // + this.NUP_GoodMax3.Location = new System.Drawing.Point(561, 84); + this.NUP_GoodMax3.Name = "NUP_GoodMax3"; + this.NUP_GoodMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_GoodMax3.TabIndex = 320; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.Location = new System.Drawing.Point(313, 86); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(21, 13); + this.label27.TabIndex = 327; + this.label27.Text = "5%"; + // + // label28 + // + this.label28.AutoSize = true; + this.label28.Location = new System.Drawing.Point(307, 59); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(27, 13); + this.label28.TabIndex = 326; + this.label28.Text = "35%"; + // + // label29 + // + this.label29.AutoSize = true; + this.label29.Location = new System.Drawing.Point(307, 32); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(27, 13); + this.label29.TabIndex = 325; + this.label29.Text = "60%"; + // + // label30 + // + this.label30.AutoSize = true; + this.label30.Location = new System.Drawing.Point(464, 14); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(36, 13); + this.label30.TabIndex = 322; + this.label30.Text = "Forme"; + // + // label46 + // + this.label46.AutoSize = true; + this.label46.Location = new System.Drawing.Point(511, 14); + this.label46.Name = "label46"; + this.label46.Size = new System.Drawing.Size(24, 13); + this.label46.TabIndex = 323; + this.label46.Text = "Min"; + // + // label47 + // + this.label47.AutoSize = true; + this.label47.Location = new System.Drawing.Point(558, 14); + this.label47.Name = "label47"; + this.label47.Size = new System.Drawing.Size(27, 13); + this.label47.TabIndex = 324; + this.label47.Text = "Max"; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Location = new System.Drawing.Point(39, 13); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(46, 13); + this.label22.TabIndex = 302; + this.label22.Text = "Old Rod"; + // + // CB_Old1 + // + this.CB_Old1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Old1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Old1.FormattingEnabled = true; + this.CB_Old1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Old1.Location = new System.Drawing.Point(42, 29); + this.CB_Old1.Name = "CB_Old1"; + this.CB_Old1.Size = new System.Drawing.Size(121, 21); + this.CB_Old1.TabIndex = 290; + // + // NUP_OldForme1 + // + this.NUP_OldForme1.Location = new System.Drawing.Point(169, 30); + this.NUP_OldForme1.Name = "NUP_OldForme1"; + this.NUP_OldForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_OldForme1.TabIndex = 291; + // + // NUP_OldMin1 + // + this.NUP_OldMin1.Location = new System.Drawing.Point(216, 30); + this.NUP_OldMin1.Name = "NUP_OldMin1"; + this.NUP_OldMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_OldMin1.TabIndex = 292; + // + // NUP_OldMax1 + // + this.NUP_OldMax1.Location = new System.Drawing.Point(263, 30); + this.NUP_OldMax1.Name = "NUP_OldMax1"; + this.NUP_OldMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_OldMax1.TabIndex = 293; + // + // CB_Old2 + // + this.CB_Old2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Old2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Old2.FormattingEnabled = true; + this.CB_Old2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Old2.Location = new System.Drawing.Point(42, 56); + this.CB_Old2.Name = "CB_Old2"; + this.CB_Old2.Size = new System.Drawing.Size(121, 21); + this.CB_Old2.TabIndex = 294; + // + // NUP_OldForme2 + // + this.NUP_OldForme2.Location = new System.Drawing.Point(169, 57); + this.NUP_OldForme2.Name = "NUP_OldForme2"; + this.NUP_OldForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_OldForme2.TabIndex = 295; + // + // NUP_OldMin2 + // + this.NUP_OldMin2.Location = new System.Drawing.Point(216, 57); + this.NUP_OldMin2.Name = "NUP_OldMin2"; + this.NUP_OldMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_OldMin2.TabIndex = 296; + // + // NUP_OldMax2 + // + this.NUP_OldMax2.Location = new System.Drawing.Point(263, 57); + this.NUP_OldMax2.Name = "NUP_OldMax2"; + this.NUP_OldMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_OldMax2.TabIndex = 297; + // + // CB_Old3 + // + this.CB_Old3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_Old3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_Old3.FormattingEnabled = true; + this.CB_Old3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_Old3.Location = new System.Drawing.Point(42, 83); + this.CB_Old3.Name = "CB_Old3"; + this.CB_Old3.Size = new System.Drawing.Size(121, 21); + this.CB_Old3.TabIndex = 298; + // + // NUP_OldForme3 + // + this.NUP_OldForme3.Location = new System.Drawing.Point(169, 84); + this.NUP_OldForme3.Name = "NUP_OldForme3"; + this.NUP_OldForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_OldForme3.TabIndex = 299; + // + // NUP_OldMin3 + // + this.NUP_OldMin3.Location = new System.Drawing.Point(216, 84); + this.NUP_OldMin3.Name = "NUP_OldMin3"; + this.NUP_OldMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_OldMin3.TabIndex = 300; + // + // NUP_OldMax3 + // + this.NUP_OldMax3.Location = new System.Drawing.Point(263, 84); + this.NUP_OldMax3.Name = "NUP_OldMax3"; + this.NUP_OldMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_OldMax3.TabIndex = 301; + // + // label45 + // + this.label45.AutoSize = true; + this.label45.Location = new System.Drawing.Point(15, 86); + this.label45.Name = "label45"; + this.label45.Size = new System.Drawing.Size(21, 13); + this.label45.TabIndex = 308; + this.label45.Text = "5%"; + // + // label44 + // + this.label44.AutoSize = true; + this.label44.Location = new System.Drawing.Point(9, 59); + this.label44.Name = "label44"; + this.label44.Size = new System.Drawing.Size(27, 13); + this.label44.TabIndex = 307; + this.label44.Text = "35%"; + // + // label43 + // + this.label43.AutoSize = true; + this.label43.Location = new System.Drawing.Point(9, 32); + this.label43.Name = "label43"; + this.label43.Size = new System.Drawing.Size(27, 13); + this.label43.TabIndex = 306; + this.label43.Text = "60%"; + // + // label23 + // + this.label23.AutoSize = true; + this.label23.Location = new System.Drawing.Point(166, 14); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(36, 13); + this.label23.TabIndex = 303; + this.label23.Text = "Forme"; + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Location = new System.Drawing.Point(213, 14); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(24, 13); + this.label24.TabIndex = 304; + this.label24.Text = "Min"; + // + // label25 + // + this.label25.AutoSize = true; + this.label25.Location = new System.Drawing.Point(260, 14); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(27, 13); + this.label25.TabIndex = 305; + this.label25.Text = "Max"; + // + // TabPage_Land + // + this.TabPage_Land.Controls.Add(this.CB_Swarm3); + this.TabPage_Land.Controls.Add(this.CB_Swarm2); + this.TabPage_Land.Controls.Add(this.CB_Swarm1); + this.TabPage_Land.Controls.Add(this.NUP_SwarmForme1); + this.TabPage_Land.Controls.Add(this.NUP_SwarmMin1); + this.TabPage_Land.Controls.Add(this.label66); + this.TabPage_Land.Controls.Add(this.NUP_SwarmMax1); + this.TabPage_Land.Controls.Add(this.label67); + this.TabPage_Land.Controls.Add(this.NUP_SwarmForme2); + this.TabPage_Land.Controls.Add(this.label68); + this.TabPage_Land.Controls.Add(this.NUP_SwarmMin2); + this.TabPage_Land.Controls.Add(this.label69); + this.TabPage_Land.Controls.Add(this.NUP_SwarmMax2); + this.TabPage_Land.Controls.Add(this.NUP_SwarmForme3); + this.TabPage_Land.Controls.Add(this.NUP_SwarmMin3); + this.TabPage_Land.Controls.Add(this.NUP_SwarmMax3); + this.TabPage_Land.Controls.Add(this.label70); + this.TabPage_Land.Controls.Add(this.label80); + this.TabPage_Land.Controls.Add(this.label81); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme11); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin11); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax11); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme12); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin12); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax12); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme1); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin1); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax1); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme2); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin2); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax2); + this.TabPage_Land.Controls.Add(this.CB_TallGrass12); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme3); + this.TabPage_Land.Controls.Add(this.CB_TallGrass11); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin3); + this.TabPage_Land.Controls.Add(this.CB_TallGrass10); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax3); + this.TabPage_Land.Controls.Add(this.CB_TallGrass9); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme4); + this.TabPage_Land.Controls.Add(this.CB_TallGrass8); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin4); + this.TabPage_Land.Controls.Add(this.CB_TallGrass7); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax4); + this.TabPage_Land.Controls.Add(this.CB_TallGrass6); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme5); + this.TabPage_Land.Controls.Add(this.CB_TallGrass5); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin5); + this.TabPage_Land.Controls.Add(this.CB_TallGrass4); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax5); + this.TabPage_Land.Controls.Add(this.CB_TallGrass3); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme6); + this.TabPage_Land.Controls.Add(this.CB_TallGrass2); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin6); + this.TabPage_Land.Controls.Add(this.CB_TallGrass1); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax6); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme7); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin7); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax7); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme8); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin8); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax8); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme9); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin9); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax9); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassForme10); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMin10); + this.TabPage_Land.Controls.Add(this.NUP_TallGrassMax10); + this.TabPage_Land.Controls.Add(this.label107); + this.TabPage_Land.Controls.Add(this.label115); + this.TabPage_Land.Controls.Add(this.label108); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMax5); + this.TabPage_Land.Controls.Add(this.label109); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMin5); + this.TabPage_Land.Controls.Add(this.label110); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashForme5); + this.TabPage_Land.Controls.Add(this.label111); + this.TabPage_Land.Controls.Add(this.CB_RockSmash5); + this.TabPage_Land.Controls.Add(this.CB_RockSmash1); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMax4); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashForme1); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMin4); + this.TabPage_Land.Controls.Add(this.label112); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashForme4); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMin1); + this.TabPage_Land.Controls.Add(this.CB_RockSmash4); + this.TabPage_Land.Controls.Add(this.label113); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMax3); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMax1); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMin3); + this.TabPage_Land.Controls.Add(this.label114); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashForme3); + this.TabPage_Land.Controls.Add(this.CB_RockSmash2); + this.TabPage_Land.Controls.Add(this.CB_RockSmash3); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMax2); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashForme2); + this.TabPage_Land.Controls.Add(this.NUP_RockSmashMin2); + this.TabPage_Land.Controls.Add(this.label6); + this.TabPage_Land.Controls.Add(this.label7); + this.TabPage_Land.Controls.Add(this.label8); + this.TabPage_Land.Controls.Add(this.label9); + this.TabPage_Land.Controls.Add(this.label10); + this.TabPage_Land.Controls.Add(this.label11); + this.TabPage_Land.Controls.Add(this.label12); + this.TabPage_Land.Controls.Add(this.label13); + this.TabPage_Land.Controls.Add(this.label14); + this.TabPage_Land.Controls.Add(this.label15); + this.TabPage_Land.Controls.Add(this.label16); + this.TabPage_Land.Controls.Add(this.label17); + this.TabPage_Land.Controls.Add(this.label18); + this.TabPage_Land.Controls.Add(this.label19); + this.TabPage_Land.Controls.Add(this.label20); + this.TabPage_Land.Controls.Add(this.label21); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme1); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin1); + this.TabPage_Land.Controls.Add(this.label3); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax1); + this.TabPage_Land.Controls.Add(this.label4); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme2); + this.TabPage_Land.Controls.Add(this.label5); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin2); + this.TabPage_Land.Controls.Add(this.label2); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax2); + this.TabPage_Land.Controls.Add(this.CB_Grass12); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme3); + this.TabPage_Land.Controls.Add(this.CB_Grass11); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin3); + this.TabPage_Land.Controls.Add(this.CB_Grass10); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax3); + this.TabPage_Land.Controls.Add(this.CB_Grass9); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme4); + this.TabPage_Land.Controls.Add(this.CB_Grass8); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin4); + this.TabPage_Land.Controls.Add(this.CB_Grass7); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax4); + this.TabPage_Land.Controls.Add(this.CB_Grass6); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme5); + this.TabPage_Land.Controls.Add(this.CB_Grass5); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin5); + this.TabPage_Land.Controls.Add(this.CB_Grass4); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax5); + this.TabPage_Land.Controls.Add(this.CB_Grass3); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme6); + this.TabPage_Land.Controls.Add(this.CB_Grass2); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin6); + this.TabPage_Land.Controls.Add(this.CB_Grass1); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax6); + this.TabPage_Land.Controls.Add(this.label31); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme7); + this.TabPage_Land.Controls.Add(this.label41); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin7); + this.TabPage_Land.Controls.Add(this.label42); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax7); + this.TabPage_Land.Controls.Add(this.label40); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme8); + this.TabPage_Land.Controls.Add(this.label39); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin8); + this.TabPage_Land.Controls.Add(this.label38); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax8); + this.TabPage_Land.Controls.Add(this.label37); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme9); + this.TabPage_Land.Controls.Add(this.label36); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin9); + this.TabPage_Land.Controls.Add(this.label35); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax9); + this.TabPage_Land.Controls.Add(this.label34); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme10); + this.TabPage_Land.Controls.Add(this.label33); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin10); + this.TabPage_Land.Controls.Add(this.label32); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax10); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax12); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme11); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin12); + this.TabPage_Land.Controls.Add(this.NUP_GrassMin11); + this.TabPage_Land.Controls.Add(this.NUP_GrassForme12); + this.TabPage_Land.Controls.Add(this.NUP_GrassMax11); + this.TabPage_Land.Location = new System.Drawing.Point(4, 22); + this.TabPage_Land.Name = "TabPage_Land"; + this.TabPage_Land.Padding = new System.Windows.Forms.Padding(3); + this.TabPage_Land.Size = new System.Drawing.Size(918, 369); + this.TabPage_Land.TabIndex = 0; + this.TabPage_Land.Text = "Land"; + this.TabPage_Land.UseVisualStyleBackColor = true; + // + // CB_Swarm3 + // + this.CB_Swarm3.FormattingEnabled = true; + this.CB_Swarm3.Location = new System.Drawing.Point(644, 247); + this.CB_Swarm3.Name = "CB_Swarm3"; + this.CB_Swarm3.Size = new System.Drawing.Size(121, 21); + this.CB_Swarm3.TabIndex = 706; + // + // CB_Swarm2 + // + this.CB_Swarm2.FormattingEnabled = true; + this.CB_Swarm2.Location = new System.Drawing.Point(644, 220); + this.CB_Swarm2.Name = "CB_Swarm2"; + this.CB_Swarm2.Size = new System.Drawing.Size(121, 21); + this.CB_Swarm2.TabIndex = 705; + // + // CB_Swarm1 + // + this.CB_Swarm1.FormattingEnabled = true; + this.CB_Swarm1.Location = new System.Drawing.Point(644, 194); + this.CB_Swarm1.Name = "CB_Swarm1"; + this.CB_Swarm1.Size = new System.Drawing.Size(121, 21); + this.CB_Swarm1.TabIndex = 704; + // + // NUP_SwarmForme1 + // + this.NUP_SwarmForme1.Location = new System.Drawing.Point(772, 194); + this.NUP_SwarmForme1.Name = "NUP_SwarmForme1"; + this.NUP_SwarmForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmForme1.TabIndex = 688; + // + // NUP_SwarmMin1 + // + this.NUP_SwarmMin1.Location = new System.Drawing.Point(819, 194); + this.NUP_SwarmMin1.Name = "NUP_SwarmMin1"; + this.NUP_SwarmMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmMin1.TabIndex = 689; + // + // label66 + // + this.label66.AutoSize = true; + this.label66.Location = new System.Drawing.Point(771, 178); + this.label66.Name = "label66"; + this.label66.Size = new System.Drawing.Size(36, 13); + this.label66.TabIndex = 701; + this.label66.Text = "Forme"; + // + // NUP_SwarmMax1 + // + this.NUP_SwarmMax1.Location = new System.Drawing.Point(866, 194); + this.NUP_SwarmMax1.Name = "NUP_SwarmMax1"; + this.NUP_SwarmMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmMax1.TabIndex = 690; + // + // label67 + // + this.label67.AutoSize = true; + this.label67.Location = new System.Drawing.Point(818, 178); + this.label67.Name = "label67"; + this.label67.Size = new System.Drawing.Size(24, 13); + this.label67.TabIndex = 702; + this.label67.Text = "Min"; + // + // NUP_SwarmForme2 + // + this.NUP_SwarmForme2.Location = new System.Drawing.Point(772, 221); + this.NUP_SwarmForme2.Name = "NUP_SwarmForme2"; + this.NUP_SwarmForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmForme2.TabIndex = 691; + // + // label68 + // + this.label68.AutoSize = true; + this.label68.Location = new System.Drawing.Point(865, 178); + this.label68.Name = "label68"; + this.label68.Size = new System.Drawing.Size(27, 13); + this.label68.TabIndex = 703; + this.label68.Text = "Max"; + // + // NUP_SwarmMin2 + // + this.NUP_SwarmMin2.Location = new System.Drawing.Point(819, 221); + this.NUP_SwarmMin2.Name = "NUP_SwarmMin2"; + this.NUP_SwarmMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmMin2.TabIndex = 692; + // + // label69 + // + this.label69.AutoSize = true; + this.label69.Location = new System.Drawing.Point(643, 177); + this.label69.Name = "label69"; + this.label69.Size = new System.Drawing.Size(89, 13); + this.label69.TabIndex = 700; + this.label69.Text = "DexNav Foreigns"; + // + // NUP_SwarmMax2 + // + this.NUP_SwarmMax2.Location = new System.Drawing.Point(866, 221); + this.NUP_SwarmMax2.Name = "NUP_SwarmMax2"; + this.NUP_SwarmMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmMax2.TabIndex = 693; + // + // NUP_SwarmForme3 + // + this.NUP_SwarmForme3.Location = new System.Drawing.Point(772, 248); + this.NUP_SwarmForme3.Name = "NUP_SwarmForme3"; + this.NUP_SwarmForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmForme3.TabIndex = 694; + // + // NUP_SwarmMin3 + // + this.NUP_SwarmMin3.Location = new System.Drawing.Point(819, 248); + this.NUP_SwarmMin3.Name = "NUP_SwarmMin3"; + this.NUP_SwarmMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmMin3.TabIndex = 695; + // + // NUP_SwarmMax3 + // + this.NUP_SwarmMax3.Location = new System.Drawing.Point(866, 248); + this.NUP_SwarmMax3.Name = "NUP_SwarmMax3"; + this.NUP_SwarmMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_SwarmMax3.TabIndex = 696; + // + // label70 + // + this.label70.AutoSize = true; + this.label70.Location = new System.Drawing.Point(619, 197); + this.label70.Name = "label70"; + this.label70.Size = new System.Drawing.Size(21, 13); + this.label70.TabIndex = 697; + this.label70.Text = "?%"; + // + // label80 + // + this.label80.AutoSize = true; + this.label80.Location = new System.Drawing.Point(619, 251); + this.label80.Name = "label80"; + this.label80.Size = new System.Drawing.Size(21, 13); + this.label80.TabIndex = 699; + this.label80.Text = "?%"; + // + // label81 + // + this.label81.AutoSize = true; + this.label81.Location = new System.Drawing.Point(619, 224); + this.label81.Name = "label81"; + this.label81.Size = new System.Drawing.Size(21, 13); + this.label81.TabIndex = 698; + this.label81.Text = "?%"; + // + // NUP_TallGrassForme11 + // + this.NUP_TallGrassForme11.Location = new System.Drawing.Point(470, 301); + this.NUP_TallGrassForme11.Name = "NUP_TallGrassForme11"; + this.NUP_TallGrassForme11.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme11.TabIndex = 682; + // + // NUP_TallGrassMin11 + // + this.NUP_TallGrassMin11.Location = new System.Drawing.Point(517, 301); + this.NUP_TallGrassMin11.Name = "NUP_TallGrassMin11"; + this.NUP_TallGrassMin11.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin11.TabIndex = 683; + // + // NUP_TallGrassMax11 + // + this.NUP_TallGrassMax11.Location = new System.Drawing.Point(564, 301); + this.NUP_TallGrassMax11.Name = "NUP_TallGrassMax11"; + this.NUP_TallGrassMax11.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax11.TabIndex = 684; + // + // NUP_TallGrassForme12 + // + this.NUP_TallGrassForme12.Location = new System.Drawing.Point(470, 327); + this.NUP_TallGrassForme12.Name = "NUP_TallGrassForme12"; + this.NUP_TallGrassForme12.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme12.TabIndex = 685; + // + // NUP_TallGrassMin12 + // + this.NUP_TallGrassMin12.Location = new System.Drawing.Point(517, 327); + this.NUP_TallGrassMin12.Name = "NUP_TallGrassMin12"; + this.NUP_TallGrassMin12.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin12.TabIndex = 686; + // + // NUP_TallGrassMax12 + // + this.NUP_TallGrassMax12.Location = new System.Drawing.Point(564, 327); + this.NUP_TallGrassMax12.Name = "NUP_TallGrassMax12"; + this.NUP_TallGrassMax12.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax12.TabIndex = 687; + // + // NUP_TallGrassForme1 + // + this.NUP_TallGrassForme1.Location = new System.Drawing.Point(470, 36); + this.NUP_TallGrassForme1.Name = "NUP_TallGrassForme1"; + this.NUP_TallGrassForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme1.TabIndex = 641; + // + // NUP_TallGrassMin1 + // + this.NUP_TallGrassMin1.Location = new System.Drawing.Point(517, 36); + this.NUP_TallGrassMin1.Name = "NUP_TallGrassMin1"; + this.NUP_TallGrassMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin1.TabIndex = 642; + // + // NUP_TallGrassMax1 + // + this.NUP_TallGrassMax1.Location = new System.Drawing.Point(564, 36); + this.NUP_TallGrassMax1.Name = "NUP_TallGrassMax1"; + this.NUP_TallGrassMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax1.TabIndex = 643; + // + // NUP_TallGrassForme2 + // + this.NUP_TallGrassForme2.Location = new System.Drawing.Point(470, 63); + this.NUP_TallGrassForme2.Name = "NUP_TallGrassForme2"; + this.NUP_TallGrassForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme2.TabIndex = 644; + // + // NUP_TallGrassMin2 + // + this.NUP_TallGrassMin2.Location = new System.Drawing.Point(517, 63); + this.NUP_TallGrassMin2.Name = "NUP_TallGrassMin2"; + this.NUP_TallGrassMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin2.TabIndex = 645; + // + // NUP_TallGrassMax2 + // + this.NUP_TallGrassMax2.Location = new System.Drawing.Point(564, 63); + this.NUP_TallGrassMax2.Name = "NUP_TallGrassMax2"; + this.NUP_TallGrassMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax2.TabIndex = 646; + // + // CB_TallGrass12 + // + this.CB_TallGrass12.FormattingEnabled = true; + this.CB_TallGrass12.Location = new System.Drawing.Point(343, 327); + this.CB_TallGrass12.Name = "CB_TallGrass12"; + this.CB_TallGrass12.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass12.TabIndex = 681; + // + // NUP_TallGrassForme3 + // + this.NUP_TallGrassForme3.Location = new System.Drawing.Point(470, 90); + this.NUP_TallGrassForme3.Name = "NUP_TallGrassForme3"; + this.NUP_TallGrassForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme3.TabIndex = 647; + // + // CB_TallGrass11 + // + this.CB_TallGrass11.FormattingEnabled = true; + this.CB_TallGrass11.Location = new System.Drawing.Point(343, 301); + this.CB_TallGrass11.Name = "CB_TallGrass11"; + this.CB_TallGrass11.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass11.TabIndex = 680; + // + // NUP_TallGrassMin3 + // + this.NUP_TallGrassMin3.Location = new System.Drawing.Point(517, 90); + this.NUP_TallGrassMin3.Name = "NUP_TallGrassMin3"; + this.NUP_TallGrassMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin3.TabIndex = 648; + // + // CB_TallGrass10 + // + this.CB_TallGrass10.FormattingEnabled = true; + this.CB_TallGrass10.Location = new System.Drawing.Point(343, 274); + this.CB_TallGrass10.Name = "CB_TallGrass10"; + this.CB_TallGrass10.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass10.TabIndex = 679; + // + // NUP_TallGrassMax3 + // + this.NUP_TallGrassMax3.Location = new System.Drawing.Point(564, 90); + this.NUP_TallGrassMax3.Name = "NUP_TallGrassMax3"; + this.NUP_TallGrassMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax3.TabIndex = 649; + // + // CB_TallGrass9 + // + this.CB_TallGrass9.FormattingEnabled = true; + this.CB_TallGrass9.Location = new System.Drawing.Point(343, 248); + this.CB_TallGrass9.Name = "CB_TallGrass9"; + this.CB_TallGrass9.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass9.TabIndex = 678; + // + // NUP_TallGrassForme4 + // + this.NUP_TallGrassForme4.Location = new System.Drawing.Point(470, 116); + this.NUP_TallGrassForme4.Name = "NUP_TallGrassForme4"; + this.NUP_TallGrassForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme4.TabIndex = 650; + // + // CB_TallGrass8 + // + this.CB_TallGrass8.FormattingEnabled = true; + this.CB_TallGrass8.Location = new System.Drawing.Point(343, 221); + this.CB_TallGrass8.Name = "CB_TallGrass8"; + this.CB_TallGrass8.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass8.TabIndex = 677; + // + // NUP_TallGrassMin4 + // + this.NUP_TallGrassMin4.Location = new System.Drawing.Point(517, 116); + this.NUP_TallGrassMin4.Name = "NUP_TallGrassMin4"; + this.NUP_TallGrassMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin4.TabIndex = 651; + // + // CB_TallGrass7 + // + this.CB_TallGrass7.FormattingEnabled = true; + this.CB_TallGrass7.Location = new System.Drawing.Point(343, 195); + this.CB_TallGrass7.Name = "CB_TallGrass7"; + this.CB_TallGrass7.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass7.TabIndex = 676; + // + // NUP_TallGrassMax4 + // + this.NUP_TallGrassMax4.Location = new System.Drawing.Point(564, 116); + this.NUP_TallGrassMax4.Name = "NUP_TallGrassMax4"; + this.NUP_TallGrassMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax4.TabIndex = 652; + // + // CB_TallGrass6 + // + this.CB_TallGrass6.FormattingEnabled = true; + this.CB_TallGrass6.Location = new System.Drawing.Point(343, 168); + this.CB_TallGrass6.Name = "CB_TallGrass6"; + this.CB_TallGrass6.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass6.TabIndex = 675; + // + // NUP_TallGrassForme5 + // + this.NUP_TallGrassForme5.Location = new System.Drawing.Point(470, 143); + this.NUP_TallGrassForme5.Name = "NUP_TallGrassForme5"; + this.NUP_TallGrassForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme5.TabIndex = 653; + // + // CB_TallGrass5 + // + this.CB_TallGrass5.FormattingEnabled = true; + this.CB_TallGrass5.Location = new System.Drawing.Point(343, 142); + this.CB_TallGrass5.Name = "CB_TallGrass5"; + this.CB_TallGrass5.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass5.TabIndex = 674; + // + // NUP_TallGrassMin5 + // + this.NUP_TallGrassMin5.Location = new System.Drawing.Point(517, 143); + this.NUP_TallGrassMin5.Name = "NUP_TallGrassMin5"; + this.NUP_TallGrassMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin5.TabIndex = 654; + // + // CB_TallGrass4 + // + this.CB_TallGrass4.FormattingEnabled = true; + this.CB_TallGrass4.Location = new System.Drawing.Point(343, 115); + this.CB_TallGrass4.Name = "CB_TallGrass4"; + this.CB_TallGrass4.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass4.TabIndex = 673; + // + // NUP_TallGrassMax5 + // + this.NUP_TallGrassMax5.Location = new System.Drawing.Point(564, 143); + this.NUP_TallGrassMax5.Name = "NUP_TallGrassMax5"; + this.NUP_TallGrassMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax5.TabIndex = 655; + // + // CB_TallGrass3 + // + this.CB_TallGrass3.FormattingEnabled = true; + this.CB_TallGrass3.Location = new System.Drawing.Point(343, 89); + this.CB_TallGrass3.Name = "CB_TallGrass3"; + this.CB_TallGrass3.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass3.TabIndex = 672; + // + // NUP_TallGrassForme6 + // + this.NUP_TallGrassForme6.Location = new System.Drawing.Point(470, 170); + this.NUP_TallGrassForme6.Name = "NUP_TallGrassForme6"; + this.NUP_TallGrassForme6.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme6.TabIndex = 656; + // + // CB_TallGrass2 + // + this.CB_TallGrass2.FormattingEnabled = true; + this.CB_TallGrass2.Location = new System.Drawing.Point(343, 62); + this.CB_TallGrass2.Name = "CB_TallGrass2"; + this.CB_TallGrass2.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass2.TabIndex = 671; + // + // NUP_TallGrassMin6 + // + this.NUP_TallGrassMin6.Location = new System.Drawing.Point(517, 170); + this.NUP_TallGrassMin6.Name = "NUP_TallGrassMin6"; + this.NUP_TallGrassMin6.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin6.TabIndex = 657; + // + // CB_TallGrass1 + // + this.CB_TallGrass1.FormattingEnabled = true; + this.CB_TallGrass1.Location = new System.Drawing.Point(343, 36); + this.CB_TallGrass1.Name = "CB_TallGrass1"; + this.CB_TallGrass1.Size = new System.Drawing.Size(121, 21); + this.CB_TallGrass1.TabIndex = 640; + // + // NUP_TallGrassMax6 + // + this.NUP_TallGrassMax6.Location = new System.Drawing.Point(564, 170); + this.NUP_TallGrassMax6.Name = "NUP_TallGrassMax6"; + this.NUP_TallGrassMax6.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax6.TabIndex = 658; + // + // NUP_TallGrassForme7 + // + this.NUP_TallGrassForme7.Location = new System.Drawing.Point(470, 196); + this.NUP_TallGrassForme7.Name = "NUP_TallGrassForme7"; + this.NUP_TallGrassForme7.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme7.TabIndex = 659; + // + // NUP_TallGrassMin7 + // + this.NUP_TallGrassMin7.Location = new System.Drawing.Point(517, 196); + this.NUP_TallGrassMin7.Name = "NUP_TallGrassMin7"; + this.NUP_TallGrassMin7.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin7.TabIndex = 660; + // + // NUP_TallGrassMax7 + // + this.NUP_TallGrassMax7.Location = new System.Drawing.Point(564, 196); + this.NUP_TallGrassMax7.Name = "NUP_TallGrassMax7"; + this.NUP_TallGrassMax7.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax7.TabIndex = 661; + // + // NUP_TallGrassForme8 + // + this.NUP_TallGrassForme8.Location = new System.Drawing.Point(470, 223); + this.NUP_TallGrassForme8.Name = "NUP_TallGrassForme8"; + this.NUP_TallGrassForme8.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme8.TabIndex = 662; + // + // NUP_TallGrassMin8 + // + this.NUP_TallGrassMin8.Location = new System.Drawing.Point(517, 223); + this.NUP_TallGrassMin8.Name = "NUP_TallGrassMin8"; + this.NUP_TallGrassMin8.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin8.TabIndex = 663; + // + // NUP_TallGrassMax8 + // + this.NUP_TallGrassMax8.Location = new System.Drawing.Point(564, 223); + this.NUP_TallGrassMax8.Name = "NUP_TallGrassMax8"; + this.NUP_TallGrassMax8.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax8.TabIndex = 664; + // + // NUP_TallGrassForme9 + // + this.NUP_TallGrassForme9.Location = new System.Drawing.Point(470, 250); + this.NUP_TallGrassForme9.Name = "NUP_TallGrassForme9"; + this.NUP_TallGrassForme9.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme9.TabIndex = 665; + // + // NUP_TallGrassMin9 + // + this.NUP_TallGrassMin9.Location = new System.Drawing.Point(517, 250); + this.NUP_TallGrassMin9.Name = "NUP_TallGrassMin9"; + this.NUP_TallGrassMin9.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin9.TabIndex = 666; + // + // NUP_TallGrassMax9 + // + this.NUP_TallGrassMax9.Location = new System.Drawing.Point(564, 250); + this.NUP_TallGrassMax9.Name = "NUP_TallGrassMax9"; + this.NUP_TallGrassMax9.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax9.TabIndex = 667; + // + // NUP_TallGrassForme10 + // + this.NUP_TallGrassForme10.Location = new System.Drawing.Point(470, 276); + this.NUP_TallGrassForme10.Name = "NUP_TallGrassForme10"; + this.NUP_TallGrassForme10.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassForme10.TabIndex = 668; + // + // NUP_TallGrassMin10 + // + this.NUP_TallGrassMin10.Location = new System.Drawing.Point(517, 276); + this.NUP_TallGrassMin10.Name = "NUP_TallGrassMin10"; + this.NUP_TallGrassMin10.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMin10.TabIndex = 669; + // + // NUP_TallGrassMax10 + // + this.NUP_TallGrassMax10.Location = new System.Drawing.Point(564, 276); + this.NUP_TallGrassMax10.Name = "NUP_TallGrassMax10"; + this.NUP_TallGrassMax10.Size = new System.Drawing.Size(41, 20); + this.NUP_TallGrassMax10.TabIndex = 670; + // + // label107 + // + this.label107.AutoSize = true; + this.label107.Location = new System.Drawing.Point(619, 147); + this.label107.Name = "label107"; + this.label107.Size = new System.Drawing.Size(21, 13); + this.label107.TabIndex = 406; + this.label107.Text = "1%"; + // + // label115 + // + this.label115.AutoSize = true; + this.label115.Location = new System.Drawing.Point(643, 20); + this.label115.Name = "label115"; + this.label115.Size = new System.Drawing.Size(68, 13); + this.label115.TabIndex = 398; + this.label115.Text = "Rock Smash"; + // + // label108 + // + this.label108.AutoSize = true; + this.label108.Location = new System.Drawing.Point(619, 120); + this.label108.Name = "label108"; + this.label108.Size = new System.Drawing.Size(21, 13); + this.label108.TabIndex = 405; + this.label108.Text = "4%"; + // + // NUP_RockSmashMax5 + // + this.NUP_RockSmashMax5.Location = new System.Drawing.Point(867, 145); + this.NUP_RockSmashMax5.Name = "NUP_RockSmashMax5"; + this.NUP_RockSmashMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMax5.TabIndex = 397; + // + // label109 + // + this.label109.AutoSize = true; + this.label109.Location = new System.Drawing.Point(613, 93); + this.label109.Name = "label109"; + this.label109.Size = new System.Drawing.Size(27, 13); + this.label109.TabIndex = 404; + this.label109.Text = "15%"; + // + // NUP_RockSmashMin5 + // + this.NUP_RockSmashMin5.Location = new System.Drawing.Point(820, 145); + this.NUP_RockSmashMin5.Name = "NUP_RockSmashMin5"; + this.NUP_RockSmashMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMin5.TabIndex = 396; + // + // label110 + // + this.label110.AutoSize = true; + this.label110.Location = new System.Drawing.Point(613, 66); + this.label110.Name = "label110"; + this.label110.Size = new System.Drawing.Size(27, 13); + this.label110.TabIndex = 403; + this.label110.Text = "30%"; + // + // NUP_RockSmashForme5 + // + this.NUP_RockSmashForme5.Location = new System.Drawing.Point(773, 145); + this.NUP_RockSmashForme5.Name = "NUP_RockSmashForme5"; + this.NUP_RockSmashForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashForme5.TabIndex = 395; + // + // label111 + // + this.label111.AutoSize = true; + this.label111.Location = new System.Drawing.Point(613, 39); + this.label111.Name = "label111"; + this.label111.Size = new System.Drawing.Size(27, 13); + this.label111.TabIndex = 402; + this.label111.Text = "50%"; + // + // CB_RockSmash5 + // + this.CB_RockSmash5.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_RockSmash5.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_RockSmash5.FormattingEnabled = true; + this.CB_RockSmash5.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_RockSmash5.Location = new System.Drawing.Point(646, 144); + this.CB_RockSmash5.Name = "CB_RockSmash5"; + this.CB_RockSmash5.Size = new System.Drawing.Size(121, 21); + this.CB_RockSmash5.TabIndex = 394; + // + // CB_RockSmash1 + // + this.CB_RockSmash1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_RockSmash1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_RockSmash1.FormattingEnabled = true; + this.CB_RockSmash1.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_RockSmash1.Location = new System.Drawing.Point(646, 36); + this.CB_RockSmash1.Name = "CB_RockSmash1"; + this.CB_RockSmash1.Size = new System.Drawing.Size(121, 21); + this.CB_RockSmash1.TabIndex = 378; + // + // NUP_RockSmashMax4 + // + this.NUP_RockSmashMax4.Location = new System.Drawing.Point(867, 118); + this.NUP_RockSmashMax4.Name = "NUP_RockSmashMax4"; + this.NUP_RockSmashMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMax4.TabIndex = 393; + // + // NUP_RockSmashForme1 + // + this.NUP_RockSmashForme1.Location = new System.Drawing.Point(773, 37); + this.NUP_RockSmashForme1.Name = "NUP_RockSmashForme1"; + this.NUP_RockSmashForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashForme1.TabIndex = 379; + // + // NUP_RockSmashMin4 + // + this.NUP_RockSmashMin4.Location = new System.Drawing.Point(820, 118); + this.NUP_RockSmashMin4.Name = "NUP_RockSmashMin4"; + this.NUP_RockSmashMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMin4.TabIndex = 392; + // + // label112 + // + this.label112.AutoSize = true; + this.label112.Location = new System.Drawing.Point(864, 20); + this.label112.Name = "label112"; + this.label112.Size = new System.Drawing.Size(27, 13); + this.label112.TabIndex = 401; + this.label112.Text = "Max"; + // + // NUP_RockSmashForme4 + // + this.NUP_RockSmashForme4.Location = new System.Drawing.Point(773, 118); + this.NUP_RockSmashForme4.Name = "NUP_RockSmashForme4"; + this.NUP_RockSmashForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashForme4.TabIndex = 391; + // + // NUP_RockSmashMin1 + // + this.NUP_RockSmashMin1.Location = new System.Drawing.Point(820, 37); + this.NUP_RockSmashMin1.Name = "NUP_RockSmashMin1"; + this.NUP_RockSmashMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMin1.TabIndex = 380; + // + // CB_RockSmash4 + // + this.CB_RockSmash4.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_RockSmash4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_RockSmash4.FormattingEnabled = true; + this.CB_RockSmash4.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_RockSmash4.Location = new System.Drawing.Point(646, 117); + this.CB_RockSmash4.Name = "CB_RockSmash4"; + this.CB_RockSmash4.Size = new System.Drawing.Size(121, 21); + this.CB_RockSmash4.TabIndex = 390; + // + // label113 + // + this.label113.AutoSize = true; + this.label113.Location = new System.Drawing.Point(817, 21); + this.label113.Name = "label113"; + this.label113.Size = new System.Drawing.Size(24, 13); + this.label113.TabIndex = 400; + this.label113.Text = "Min"; + // + // NUP_RockSmashMax3 + // + this.NUP_RockSmashMax3.Location = new System.Drawing.Point(867, 91); + this.NUP_RockSmashMax3.Name = "NUP_RockSmashMax3"; + this.NUP_RockSmashMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMax3.TabIndex = 389; + // + // NUP_RockSmashMax1 + // + this.NUP_RockSmashMax1.Location = new System.Drawing.Point(867, 37); + this.NUP_RockSmashMax1.Name = "NUP_RockSmashMax1"; + this.NUP_RockSmashMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMax1.TabIndex = 381; + // + // NUP_RockSmashMin3 + // + this.NUP_RockSmashMin3.Location = new System.Drawing.Point(820, 91); + this.NUP_RockSmashMin3.Name = "NUP_RockSmashMin3"; + this.NUP_RockSmashMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMin3.TabIndex = 388; + // + // label114 + // + this.label114.AutoSize = true; + this.label114.Location = new System.Drawing.Point(770, 21); + this.label114.Name = "label114"; + this.label114.Size = new System.Drawing.Size(36, 13); + this.label114.TabIndex = 399; + this.label114.Text = "Forme"; + // + // NUP_RockSmashForme3 + // + this.NUP_RockSmashForme3.Location = new System.Drawing.Point(773, 91); + this.NUP_RockSmashForme3.Name = "NUP_RockSmashForme3"; + this.NUP_RockSmashForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashForme3.TabIndex = 387; + // + // CB_RockSmash2 + // + this.CB_RockSmash2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_RockSmash2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_RockSmash2.FormattingEnabled = true; + this.CB_RockSmash2.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_RockSmash2.Location = new System.Drawing.Point(646, 63); + this.CB_RockSmash2.Name = "CB_RockSmash2"; + this.CB_RockSmash2.Size = new System.Drawing.Size(121, 21); + this.CB_RockSmash2.TabIndex = 382; + // + // CB_RockSmash3 + // + this.CB_RockSmash3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.CB_RockSmash3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; + this.CB_RockSmash3.FormattingEnabled = true; + this.CB_RockSmash3.Items.AddRange(new object[] { + "-----", + "Bulbasaur", + "Ivysaur", + "Venusaur", + "Charmander", + "Charmeleon", + "Charizard", + "Squirtle", + "Wartortle", + "Blastoise", + "Caterpie", + "Metapod", + "Butterfree", + "Weedle", + "Kakuna", + "Beedrill", + "Pidgey", + "Pidgeotto", + "Pidgeot", + "Rattata", + "Raticate", + "Spearow", + "Fearow", + "Ekans", + "Arbok", + "Pikachu", + "Raichu", + "Sandshrew", + "Sandslash", + "Nidoran♀", + "Nidorina", + "Nidoqueen", + "Nidoran♂", + "Nidorino", + "Nidoking", + "Clefairy", + "Clefable", + "Vulpix", + "Ninetales", + "Jigglypuff", + "Wigglytuff", + "Zubat", + "Golbat", + "Oddish", + "Gloom", + "Vileplume", + "Paras", + "Parasect", + "Venonat", + "Venomoth", + "Diglett", + "Dugtrio", + "Meowth", + "Persian", + "Psyduck", + "Golduck", + "Mankey", + "Primeape", + "Growlithe", + "Arcanine", + "Poliwag", + "Poliwhirl", + "Poliwrath", + "Abra", + "Kadabra", + "Alakazam", + "Machop", + "Machoke", + "Machamp", + "Bellsprout", + "Weepinbell", + "Victreebel", + "Tentacool", + "Tentacruel", + "Geodude", + "Graveler", + "Golem", + "Ponyta", + "Rapidash", + "Slowpoke", + "Slowbro", + "Magnemite", + "Magneton", + "Farfetch\'d", + "Doduo", + "Dodrio", + "Seel", + "Dewgong", + "Grimer", + "Muk", + "Shellder", + "Cloyster", + "Gastly", + "Haunter", + "Gengar", + "Onix", + "Drowzee", + "Hypno", + "Krabby", + "Kingler", + "Voltorb", + "Electrode", + "Exeggcute", + "Exeggutor", + "Cubone", + "Marowak", + "Hitmonlee", + "Hitmonchan", + "Lickitung", + "Koffing", + "Weezing", + "Rhyhorn", + "Rhydon", + "Chansey", + "Tangela", + "Kangaskhan", + "Horsea", + "Seadra", + "Goldeen", + "Seaking", + "Staryu", + "Starmie", + "Mr. Mime", + "Scyther", + "Jynx", + "Electabuzz", + "Magmar", + "Pinsir", + "Tauros", + "Magikarp", + "Gyarados", + "Lapras", + "Ditto", + "Eevee", + "Vaporeon", + "Jolteon", + "Flareon", + "Porygon", + "Omanyte", + "Omastar", + "Kabuto", + "Kabutops", + "Aerodactyl", + "Snorlax", + "Articuno", + "Zapdos", + "Moltres", + "Dratini", + "Dragonair", + "Dragonite", + "Mewtwo", + "Mew", + "Chikorita", + "Bayleef", + "Meganium", + "Cyndaquil", + "Quilava", + "Typhlosion", + "Totodile", + "Croconaw", + "Feraligatr", + "Sentret", + "Furret", + "Hoothoot", + "Noctowl", + "Ledyba", + "Ledian", + "Spinarak", + "Ariados", + "Crobat", + "Chinchou", + "Lanturn", + "Pichu", + "Cleffa", + "Igglybuff", + "Togepi", + "Togetic", + "Natu", + "Xatu", + "Mareep", + "Flaaffy", + "Ampharos", + "Bellossom", + "Marill", + "Azumarill", + "Sudowoodo", + "Politoed", + "Hoppip", + "Skiploom", + "Jumpluff", + "Aipom", + "Sunkern", + "Sunflora", + "Yanma", + "Wooper", + "Quagsire", + "Espeon", + "Umbreon", + "Murkrow", + "Slowking", + "Misdreavus", + "Unown", + "Wobbuffet", + "Girafarig", + "Pineco", + "Forretress", + "Dunsparce", + "Gligar", + "Steelix", + "Snubbull", + "Granbull", + "Qwilfish", + "Scizor", + "Shuckle", + "Heracross", + "Sneasel", + "Teddiursa", + "Ursaring", + "Slugma", + "Magcargo", + "Swinub", + "Piloswine", + "Corsola", + "Remoraid", + "Octillery", + "Delibird", + "Mantine", + "Skarmory", + "Houndour", + "Houndoom", + "Kingdra", + "Phanpy", + "Donphan", + "Porygon2", + "Stantler", + "Smeargle", + "Tyrogue", + "Hitmontop", + "Smoochum", + "Elekid", + "Magby", + "Miltank", + "Blissey", + "Raikou", + "Entei", + "Suicune", + "Larvitar", + "Pupitar", + "Tyranitar", + "Lugia", + "Ho-Oh", + "Celebi", + "Treecko", + "Grovyle", + "Sceptile", + "Torchic", + "Combusken", + "Blaziken", + "Mudkip", + "Marshtomp", + "Swampert", + "Poochyena", + "Mightyena", + "Zigzagoon", + "Linoone", + "Wurmple", + "Silcoon", + "Beautifly", + "Cascoon", + "Dustox", + "Lotad", + "Lombre", + "Ludicolo", + "Seedot", + "Nuzleaf", + "Shiftry", + "Taillow", + "Swellow", + "Wingull", + "Pelipper", + "Ralts", + "Kirlia", + "Gardevoir", + "Surskit", + "Masquerain", + "Shroomish", + "Breloom", + "Slakoth", + "Vigoroth", + "Slaking", + "Nincada", + "Ninjask", + "Shedinja", + "Whismur", + "Loudred", + "Exploud", + "Makuhita", + "Hariyama", + "Azurill", + "Nosepass", + "Skitty", + "Delcatty", + "Sableye", + "Mawile", + "Aron", + "Lairon", + "Aggron", + "Meditite", + "Medicham", + "Electrike", + "Manectric", + "Plusle", + "Minun", + "Volbeat", + "Illumise", + "Roselia", + "Gulpin", + "Swalot", + "Carvanha", + "Sharpedo", + "Wailmer", + "Wailord", + "Numel", + "Camerupt", + "Torkoal", + "Spoink", + "Grumpig", + "Spinda", + "Trapinch", + "Vibrava", + "Flygon", + "Cacnea", + "Cacturne", + "Swablu", + "Altaria", + "Zangoose", + "Seviper", + "Lunatone", + "Solrock", + "Barboach", + "Whiscash", + "Corphish", + "Crawdaunt", + "Baltoy", + "Claydol", + "Lileep", + "Cradily", + "Anorith", + "Armaldo", + "Feebas", + "Milotic", + "Castform", + "Kecleon", + "Shuppet", + "Banette", + "Duskull", + "Dusclops", + "Tropius", + "Chimecho", + "Absol", + "Wynaut", + "Snorunt", + "Glalie", + "Spheal", + "Sealeo", + "Walrein", + "Clamperl", + "Huntail", + "Gorebyss", + "Relicanth", + "Luvdisc", + "Bagon", + "Shelgon", + "Salamence", + "Beldum", + "Metang", + "Metagross", + "Regirock", + "Regice", + "Registeel", + "Latias", + "Latios", + "Kyogre", + "Groudon", + "Rayquaza", + "Jirachi", + "Deoxys", + "Turtwig", + "Grotle", + "Torterra", + "Chimchar", + "Monferno", + "Infernape", + "Piplup", + "Prinplup", + "Empoleon", + "Starly", + "Staravia", + "Staraptor", + "Bidoof", + "Bibarel", + "Kricketot", + "Kricketune", + "Shinx", + "Luxio", + "Luxray", + "Budew", + "Roserade", + "Cranidos", + "Rampardos", + "Shieldon", + "Bastiodon", + "Burmy", + "Wormadam", + "Mothim", + "Combee", + "Vespiquen", + "Pachirisu", + "Buizel", + "Floatzel", + "Cherubi", + "Cherrim", + "Shellos", + "Gastrodon", + "Ambipom", + "Drifloon", + "Drifblim", + "Buneary", + "Lopunny", + "Mismagius", + "Honchkrow", + "Glameow", + "Purugly", + "Chingling", + "Stunky", + "Skuntank", + "Bronzor", + "Bronzong", + "Bonsly", + "Mime Jr.", + "Happiny", + "Chatot", + "Spiritomb", + "Gible", + "Gabite", + "Garchomp", + "Munchlax", + "Riolu", + "Lucario", + "Hippopotas", + "Hippowdon", + "Skorupi", + "Drapion", + "Croagunk", + "Toxicroak", + "Carnivine", + "Finneon", + "Lumineon", + "Mantyke", + "Snover", + "Abomasnow", + "Weavile", + "Magnezone", + "Lickilicky", + "Rhyperior", + "Tangrowth", + "Electivire", + "Magmortar", + "Togekiss", + "Yanmega", + "Leafeon", + "Glaceon", + "Gliscor", + "Mamoswine", + "Porygon-Z", + "Gallade", + "Probopass", + "Dusknoir", + "Froslass", + "Rotom", + "Uxie", + "Mesprit", + "Azelf", + "Dialga", + "Palkia", + "Heatran", + "Regigigas", + "Giratina", + "Cresselia", + "Phione", + "Manaphy", + "Darkrai", + "Shaymin", + "Arceus", + "Victini", + "Snivy", + "Servine", + "Serperior", + "Tepig", + "Pignite", + "Emboar", + "Oshawott", + "Dewott", + "Samurott", + "Patrat", + "Watchog", + "Lillipup", + "Herdier", + "Stoutland", + "Purrloin", + "Liepard", + "Pansage", + "Simisage", + "Pansear", + "Simisear", + "Panpour", + "Simipour", + "Munna", + "Musharna", + "Pidove", + "Tranquill", + "Unfezant", + "Blitzle", + "Zebstrika", + "Roggenrola", + "Boldore", + "Gigalith", + "Woobat", + "Swoobat", + "Drilbur", + "Excadrill", + "Audino", + "Timburr", + "Gurdurr", + "Conkeldurr", + "Tympole", + "Palpitoad", + "Seismitoad", + "Throh", + "Sawk", + "Sewaddle", + "Swadloon", + "Leavanny", + "Venipede", + "Whirlipede", + "Scolipede", + "Cottonee", + "Whimsicott", + "Petilil", + "Lilligant", + "Basculin", + "Sandile", + "Krokorok", + "Krookodile", + "Darumaka", + "Darmanitan", + "Maractus", + "Dwebble", + "Crustle", + "Scraggy", + "Scrafty", + "Sigilyph", + "Yamask", + "Cofagrigus", + "Tirtouga", + "Carracosta", + "Archen", + "Archeops", + "Trubbish", + "Garbodor", + "Zorua", + "Zoroark", + "Minccino", + "Cinccino", + "Gothita", + "Gothorita", + "Gothitelle", + "Solosis", + "Duosion", + "Reuniclus", + "Ducklett", + "Swanna", + "Vanillite", + "Vanillish", + "Vanilluxe", + "Deerling", + "Sawsbuck", + "Emolga", + "Karrablast", + "Escavalier", + "Foongus", + "Amoonguss", + "Frillish", + "Jellicent", + "Alomomola", + "Joltik", + "Galvantula", + "Ferroseed", + "Ferrothorn", + "Klink", + "Klang", + "Klinklang", + "Tynamo", + "Eelektrik", + "Eelektross", + "Elgyem", + "Beheeyem", + "Litwick", + "Lampent", + "Chandelure", + "Axew", + "Fraxure", + "Haxorus", + "Cubchoo", + "Beartic", + "Cryogonal", + "Shelmet", + "Accelgor", + "Stunfisk", + "Mienfoo", + "Mienshao", + "Druddigon", + "Golett", + "Golurk", + "Pawniard", + "Bisharp", + "Bouffalant", + "Rufflet", + "Braviary", + "Vullaby", + "Mandibuzz", + "Heatmor", + "Durant", + "Deino", + "Zweilous", + "Hydreigon", + "Larvesta", + "Volcarona", + "Cobalion", + "Terrakion", + "Virizion", + "Tornadus", + "Thundurus", + "Reshiram", + "Zekrom", + "Landorus", + "Kyurem", + "Keldeo", + "Meloetta", + "Genesect"}); + this.CB_RockSmash3.Location = new System.Drawing.Point(646, 90); + this.CB_RockSmash3.Name = "CB_RockSmash3"; + this.CB_RockSmash3.Size = new System.Drawing.Size(121, 21); + this.CB_RockSmash3.TabIndex = 386; + // + // NUP_RockSmashMax2 + // + this.NUP_RockSmashMax2.Location = new System.Drawing.Point(867, 64); + this.NUP_RockSmashMax2.Name = "NUP_RockSmashMax2"; + this.NUP_RockSmashMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMax2.TabIndex = 385; + // + // NUP_RockSmashForme2 + // + this.NUP_RockSmashForme2.Location = new System.Drawing.Point(773, 64); + this.NUP_RockSmashForme2.Name = "NUP_RockSmashForme2"; + this.NUP_RockSmashForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashForme2.TabIndex = 383; + // + // NUP_RockSmashMin2 + // + this.NUP_RockSmashMin2.Location = new System.Drawing.Point(820, 64); + this.NUP_RockSmashMin2.Name = "NUP_RockSmashMin2"; + this.NUP_RockSmashMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_RockSmashMin2.TabIndex = 384; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Location = new System.Drawing.Point(469, 20); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(36, 13); + this.label6.TabIndex = 375; + this.label6.Text = "Forme"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Location = new System.Drawing.Point(516, 20); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(24, 13); + this.label7.TabIndex = 376; + this.label7.Text = "Min"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Location = new System.Drawing.Point(563, 20); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(27, 13); + this.label8.TabIndex = 377; + this.label8.Text = "Max"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Location = new System.Drawing.Point(384, 20); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(54, 13); + this.label9.TabIndex = 374; + this.label9.Text = "Tall Grass"; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Location = new System.Drawing.Point(310, 39); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(27, 13); + this.label10.TabIndex = 351; + this.label10.Text = "10%"; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Location = new System.Drawing.Point(316, 332); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(21, 13); + this.label11.TabIndex = 362; + this.label11.Text = "1%"; + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Location = new System.Drawing.Point(316, 305); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(21, 13); + this.label12.TabIndex = 361; + this.label12.Text = "4%"; + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Location = new System.Drawing.Point(316, 278); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(21, 13); + this.label13.TabIndex = 360; + this.label13.Text = "5%"; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(310, 252); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(27, 13); + this.label14.TabIndex = 359; + this.label14.Text = "10%"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Location = new System.Drawing.Point(310, 228); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(27, 13); + this.label15.TabIndex = 358; + this.label15.Text = "10%"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Location = new System.Drawing.Point(310, 201); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(27, 13); + this.label16.TabIndex = 357; + this.label16.Text = "10%"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Location = new System.Drawing.Point(310, 174); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(27, 13); + this.label17.TabIndex = 356; + this.label17.Text = "10%"; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Location = new System.Drawing.Point(310, 147); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(27, 13); + this.label18.TabIndex = 355; + this.label18.Text = "10%"; + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Location = new System.Drawing.Point(310, 120); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(27, 13); + this.label19.TabIndex = 354; + this.label19.Text = "10%"; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Location = new System.Drawing.Point(310, 93); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(27, 13); + this.label20.TabIndex = 353; + this.label20.Text = "10%"; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Location = new System.Drawing.Point(310, 66); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(27, 13); + this.label21.TabIndex = 352; + this.label21.Text = "10%"; + // + // NUP_GrassForme1 + // + this.NUP_GrassForme1.Location = new System.Drawing.Point(171, 36); + this.NUP_GrassForme1.Name = "NUP_GrassForme1"; + this.NUP_GrassForme1.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme1.TabIndex = 48; + // + // NUP_GrassMin1 + // + this.NUP_GrassMin1.Location = new System.Drawing.Point(218, 36); + this.NUP_GrassMin1.Name = "NUP_GrassMin1"; + this.NUP_GrassMin1.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin1.TabIndex = 49; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(170, 20); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(36, 13); + this.label3.TabIndex = 311; + this.label3.Text = "Forme"; + // + // NUP_GrassMax1 + // + this.NUP_GrassMax1.Location = new System.Drawing.Point(265, 36); + this.NUP_GrassMax1.Name = "NUP_GrassMax1"; + this.NUP_GrassMax1.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax1.TabIndex = 50; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(217, 20); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(24, 13); + this.label4.TabIndex = 312; + this.label4.Text = "Min"; + // + // NUP_GrassForme2 + // + this.NUP_GrassForme2.Location = new System.Drawing.Point(171, 63); + this.NUP_GrassForme2.Name = "NUP_GrassForme2"; + this.NUP_GrassForme2.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme2.TabIndex = 51; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(264, 20); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(27, 13); + this.label5.TabIndex = 313; + this.label5.Text = "Max"; + // + // NUP_GrassMin2 + // + this.NUP_GrassMin2.Location = new System.Drawing.Point(218, 63); + this.NUP_GrassMin2.Name = "NUP_GrassMin2"; + this.NUP_GrassMin2.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin2.TabIndex = 52; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(89, 20); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(34, 13); + this.label2.TabIndex = 310; + this.label2.Text = "Grass"; + // + // NUP_GrassMax2 + // + this.NUP_GrassMax2.Location = new System.Drawing.Point(265, 63); + this.NUP_GrassMax2.Name = "NUP_GrassMax2"; + this.NUP_GrassMax2.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax2.TabIndex = 53; + // + // CB_Grass12 + // + this.CB_Grass12.FormattingEnabled = true; + this.CB_Grass12.Location = new System.Drawing.Point(44, 327); + this.CB_Grass12.Name = "CB_Grass12"; + this.CB_Grass12.Size = new System.Drawing.Size(121, 21); + this.CB_Grass12.TabIndex = 309; + // + // NUP_GrassForme3 + // + this.NUP_GrassForme3.Location = new System.Drawing.Point(171, 90); + this.NUP_GrassForme3.Name = "NUP_GrassForme3"; + this.NUP_GrassForme3.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme3.TabIndex = 54; + // + // CB_Grass11 + // + this.CB_Grass11.FormattingEnabled = true; + this.CB_Grass11.Location = new System.Drawing.Point(44, 301); + this.CB_Grass11.Name = "CB_Grass11"; + this.CB_Grass11.Size = new System.Drawing.Size(121, 21); + this.CB_Grass11.TabIndex = 308; + // + // NUP_GrassMin3 + // + this.NUP_GrassMin3.Location = new System.Drawing.Point(218, 90); + this.NUP_GrassMin3.Name = "NUP_GrassMin3"; + this.NUP_GrassMin3.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin3.TabIndex = 55; + // + // CB_Grass10 + // + this.CB_Grass10.FormattingEnabled = true; + this.CB_Grass10.Location = new System.Drawing.Point(44, 274); + this.CB_Grass10.Name = "CB_Grass10"; + this.CB_Grass10.Size = new System.Drawing.Size(121, 21); + this.CB_Grass10.TabIndex = 307; + // + // NUP_GrassMax3 + // + this.NUP_GrassMax3.Location = new System.Drawing.Point(265, 90); + this.NUP_GrassMax3.Name = "NUP_GrassMax3"; + this.NUP_GrassMax3.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax3.TabIndex = 56; + // + // CB_Grass9 + // + this.CB_Grass9.FormattingEnabled = true; + this.CB_Grass9.Location = new System.Drawing.Point(44, 248); + this.CB_Grass9.Name = "CB_Grass9"; + this.CB_Grass9.Size = new System.Drawing.Size(121, 21); + this.CB_Grass9.TabIndex = 306; + // + // NUP_GrassForme4 + // + this.NUP_GrassForme4.Location = new System.Drawing.Point(171, 116); + this.NUP_GrassForme4.Name = "NUP_GrassForme4"; + this.NUP_GrassForme4.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme4.TabIndex = 57; + // + // CB_Grass8 + // + this.CB_Grass8.FormattingEnabled = true; + this.CB_Grass8.Location = new System.Drawing.Point(44, 221); + this.CB_Grass8.Name = "CB_Grass8"; + this.CB_Grass8.Size = new System.Drawing.Size(121, 21); + this.CB_Grass8.TabIndex = 305; + // + // NUP_GrassMin4 + // + this.NUP_GrassMin4.Location = new System.Drawing.Point(218, 116); + this.NUP_GrassMin4.Name = "NUP_GrassMin4"; + this.NUP_GrassMin4.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin4.TabIndex = 58; + // + // CB_Grass7 + // + this.CB_Grass7.FormattingEnabled = true; + this.CB_Grass7.Location = new System.Drawing.Point(44, 195); + this.CB_Grass7.Name = "CB_Grass7"; + this.CB_Grass7.Size = new System.Drawing.Size(121, 21); + this.CB_Grass7.TabIndex = 304; + // + // NUP_GrassMax4 + // + this.NUP_GrassMax4.Location = new System.Drawing.Point(265, 116); + this.NUP_GrassMax4.Name = "NUP_GrassMax4"; + this.NUP_GrassMax4.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax4.TabIndex = 59; + // + // CB_Grass6 + // + this.CB_Grass6.FormattingEnabled = true; + this.CB_Grass6.Location = new System.Drawing.Point(44, 168); + this.CB_Grass6.Name = "CB_Grass6"; + this.CB_Grass6.Size = new System.Drawing.Size(121, 21); + this.CB_Grass6.TabIndex = 303; + // + // NUP_GrassForme5 + // + this.NUP_GrassForme5.Location = new System.Drawing.Point(171, 143); + this.NUP_GrassForme5.Name = "NUP_GrassForme5"; + this.NUP_GrassForme5.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme5.TabIndex = 60; + // + // CB_Grass5 + // + this.CB_Grass5.FormattingEnabled = true; + this.CB_Grass5.Location = new System.Drawing.Point(44, 142); + this.CB_Grass5.Name = "CB_Grass5"; + this.CB_Grass5.Size = new System.Drawing.Size(121, 21); + this.CB_Grass5.TabIndex = 302; + // + // NUP_GrassMin5 + // + this.NUP_GrassMin5.Location = new System.Drawing.Point(218, 143); + this.NUP_GrassMin5.Name = "NUP_GrassMin5"; + this.NUP_GrassMin5.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin5.TabIndex = 61; + // + // CB_Grass4 + // + this.CB_Grass4.FormattingEnabled = true; + this.CB_Grass4.Location = new System.Drawing.Point(44, 115); + this.CB_Grass4.Name = "CB_Grass4"; + this.CB_Grass4.Size = new System.Drawing.Size(121, 21); + this.CB_Grass4.TabIndex = 301; + // + // NUP_GrassMax5 + // + this.NUP_GrassMax5.Location = new System.Drawing.Point(265, 143); + this.NUP_GrassMax5.Name = "NUP_GrassMax5"; + this.NUP_GrassMax5.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax5.TabIndex = 62; + // + // CB_Grass3 + // + this.CB_Grass3.FormattingEnabled = true; + this.CB_Grass3.Location = new System.Drawing.Point(44, 89); + this.CB_Grass3.Name = "CB_Grass3"; + this.CB_Grass3.Size = new System.Drawing.Size(121, 21); + this.CB_Grass3.TabIndex = 300; + // + // NUP_GrassForme6 + // + this.NUP_GrassForme6.Location = new System.Drawing.Point(171, 170); + this.NUP_GrassForme6.Name = "NUP_GrassForme6"; + this.NUP_GrassForme6.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme6.TabIndex = 63; + // + // CB_Grass2 + // + this.CB_Grass2.FormattingEnabled = true; + this.CB_Grass2.Location = new System.Drawing.Point(44, 62); + this.CB_Grass2.Name = "CB_Grass2"; + this.CB_Grass2.Size = new System.Drawing.Size(121, 21); + this.CB_Grass2.TabIndex = 299; + // + // NUP_GrassMin6 + // + this.NUP_GrassMin6.Location = new System.Drawing.Point(218, 170); + this.NUP_GrassMin6.Name = "NUP_GrassMin6"; + this.NUP_GrassMin6.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin6.TabIndex = 64; + // + // CB_Grass1 + // + this.CB_Grass1.FormattingEnabled = true; + this.CB_Grass1.Location = new System.Drawing.Point(44, 36); + this.CB_Grass1.Name = "CB_Grass1"; + this.CB_Grass1.Size = new System.Drawing.Size(121, 21); + this.CB_Grass1.TabIndex = 3; + // + // NUP_GrassMax6 + // + this.NUP_GrassMax6.Location = new System.Drawing.Point(265, 170); + this.NUP_GrassMax6.Name = "NUP_GrassMax6"; + this.NUP_GrassMax6.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax6.TabIndex = 65; + // + // label31 + // + this.label31.AutoSize = true; + this.label31.Location = new System.Drawing.Point(11, 39); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(27, 13); + this.label31.TabIndex = 287; + this.label31.Text = "10%"; + // + // NUP_GrassForme7 + // + this.NUP_GrassForme7.Location = new System.Drawing.Point(171, 196); + this.NUP_GrassForme7.Name = "NUP_GrassForme7"; + this.NUP_GrassForme7.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme7.TabIndex = 66; + // + // label41 + // + this.label41.AutoSize = true; + this.label41.Location = new System.Drawing.Point(17, 332); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(21, 13); + this.label41.TabIndex = 298; + this.label41.Text = "1%"; + // + // NUP_GrassMin7 + // + this.NUP_GrassMin7.Location = new System.Drawing.Point(218, 196); + this.NUP_GrassMin7.Name = "NUP_GrassMin7"; + this.NUP_GrassMin7.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin7.TabIndex = 67; + // + // label42 + // + this.label42.AutoSize = true; + this.label42.Location = new System.Drawing.Point(17, 305); + this.label42.Name = "label42"; + this.label42.Size = new System.Drawing.Size(21, 13); + this.label42.TabIndex = 297; + this.label42.Text = "4%"; + // + // NUP_GrassMax7 + // + this.NUP_GrassMax7.Location = new System.Drawing.Point(265, 196); + this.NUP_GrassMax7.Name = "NUP_GrassMax7"; + this.NUP_GrassMax7.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax7.TabIndex = 68; + // + // label40 + // + this.label40.AutoSize = true; + this.label40.Location = new System.Drawing.Point(17, 278); + this.label40.Name = "label40"; + this.label40.Size = new System.Drawing.Size(21, 13); + this.label40.TabIndex = 296; + this.label40.Text = "5%"; + // + // NUP_GrassForme8 + // + this.NUP_GrassForme8.Location = new System.Drawing.Point(171, 223); + this.NUP_GrassForme8.Name = "NUP_GrassForme8"; + this.NUP_GrassForme8.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme8.TabIndex = 69; + // + // label39 + // + this.label39.AutoSize = true; + this.label39.Location = new System.Drawing.Point(11, 252); + this.label39.Name = "label39"; + this.label39.Size = new System.Drawing.Size(27, 13); + this.label39.TabIndex = 295; + this.label39.Text = "10%"; + // + // NUP_GrassMin8 + // + this.NUP_GrassMin8.Location = new System.Drawing.Point(218, 223); + this.NUP_GrassMin8.Name = "NUP_GrassMin8"; + this.NUP_GrassMin8.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin8.TabIndex = 70; + // + // label38 + // + this.label38.AutoSize = true; + this.label38.Location = new System.Drawing.Point(11, 228); + this.label38.Name = "label38"; + this.label38.Size = new System.Drawing.Size(27, 13); + this.label38.TabIndex = 294; + this.label38.Text = "10%"; + // + // NUP_GrassMax8 + // + this.NUP_GrassMax8.Location = new System.Drawing.Point(265, 223); + this.NUP_GrassMax8.Name = "NUP_GrassMax8"; + this.NUP_GrassMax8.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax8.TabIndex = 71; + // + // label37 + // + this.label37.AutoSize = true; + this.label37.Location = new System.Drawing.Point(11, 201); + this.label37.Name = "label37"; + this.label37.Size = new System.Drawing.Size(27, 13); + this.label37.TabIndex = 293; + this.label37.Text = "10%"; + // + // NUP_GrassForme9 + // + this.NUP_GrassForme9.Location = new System.Drawing.Point(171, 250); + this.NUP_GrassForme9.Name = "NUP_GrassForme9"; + this.NUP_GrassForme9.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme9.TabIndex = 72; + // + // label36 + // + this.label36.AutoSize = true; + this.label36.Location = new System.Drawing.Point(11, 174); + this.label36.Name = "label36"; + this.label36.Size = new System.Drawing.Size(27, 13); + this.label36.TabIndex = 292; + this.label36.Text = "10%"; + // + // NUP_GrassMin9 + // + this.NUP_GrassMin9.Location = new System.Drawing.Point(218, 250); + this.NUP_GrassMin9.Name = "NUP_GrassMin9"; + this.NUP_GrassMin9.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin9.TabIndex = 73; + // + // label35 + // + this.label35.AutoSize = true; + this.label35.Location = new System.Drawing.Point(11, 147); + this.label35.Name = "label35"; + this.label35.Size = new System.Drawing.Size(27, 13); + this.label35.TabIndex = 291; + this.label35.Text = "10%"; + // + // NUP_GrassMax9 + // + this.NUP_GrassMax9.Location = new System.Drawing.Point(265, 250); + this.NUP_GrassMax9.Name = "NUP_GrassMax9"; + this.NUP_GrassMax9.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax9.TabIndex = 74; + // + // label34 + // + this.label34.AutoSize = true; + this.label34.Location = new System.Drawing.Point(11, 120); + this.label34.Name = "label34"; + this.label34.Size = new System.Drawing.Size(27, 13); + this.label34.TabIndex = 290; + this.label34.Text = "10%"; + // + // NUP_GrassForme10 + // + this.NUP_GrassForme10.Location = new System.Drawing.Point(171, 276); + this.NUP_GrassForme10.Name = "NUP_GrassForme10"; + this.NUP_GrassForme10.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme10.TabIndex = 75; + // + // label33 + // + this.label33.AutoSize = true; + this.label33.Location = new System.Drawing.Point(11, 93); + this.label33.Name = "label33"; + this.label33.Size = new System.Drawing.Size(27, 13); + this.label33.TabIndex = 289; + this.label33.Text = "10%"; + // + // NUP_GrassMin10 + // + this.NUP_GrassMin10.Location = new System.Drawing.Point(218, 276); + this.NUP_GrassMin10.Name = "NUP_GrassMin10"; + this.NUP_GrassMin10.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin10.TabIndex = 76; + // + // label32 + // + this.label32.AutoSize = true; + this.label32.Location = new System.Drawing.Point(11, 66); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(27, 13); + this.label32.TabIndex = 288; + this.label32.Text = "10%"; + // + // NUP_GrassMax10 + // + this.NUP_GrassMax10.Location = new System.Drawing.Point(265, 276); + this.NUP_GrassMax10.Name = "NUP_GrassMax10"; + this.NUP_GrassMax10.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax10.TabIndex = 77; + // + // NUP_GrassMax12 + // + this.NUP_GrassMax12.Location = new System.Drawing.Point(265, 330); + this.NUP_GrassMax12.Name = "NUP_GrassMax12"; + this.NUP_GrassMax12.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax12.TabIndex = 83; + // + // NUP_GrassForme11 + // + this.NUP_GrassForme11.Location = new System.Drawing.Point(171, 303); + this.NUP_GrassForme11.Name = "NUP_GrassForme11"; + this.NUP_GrassForme11.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme11.TabIndex = 78; + // + // NUP_GrassMin12 + // + this.NUP_GrassMin12.Location = new System.Drawing.Point(218, 330); + this.NUP_GrassMin12.Name = "NUP_GrassMin12"; + this.NUP_GrassMin12.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin12.TabIndex = 82; + // + // NUP_GrassMin11 + // + this.NUP_GrassMin11.Location = new System.Drawing.Point(218, 303); + this.NUP_GrassMin11.Name = "NUP_GrassMin11"; + this.NUP_GrassMin11.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMin11.TabIndex = 79; + // + // NUP_GrassForme12 + // + this.NUP_GrassForme12.Location = new System.Drawing.Point(171, 330); + this.NUP_GrassForme12.Name = "NUP_GrassForme12"; + this.NUP_GrassForme12.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassForme12.TabIndex = 81; + // + // NUP_GrassMax11 + // + this.NUP_GrassMax11.Location = new System.Drawing.Point(265, 303); + this.NUP_GrassMax11.Name = "NUP_GrassMax11"; + this.NUP_GrassMax11.Size = new System.Drawing.Size(41, 20); + this.NUP_GrassMax11.TabIndex = 80; + // + // TabControl_EncounterData + // + this.TabControl_EncounterData.Controls.Add(this.TabPage_Land); + this.TabControl_EncounterData.Controls.Add(this.TabPage_Water); + this.TabControl_EncounterData.Controls.Add(this.TabPage_Horde); + this.TabControl_EncounterData.Location = new System.Drawing.Point(19, 50); + this.TabControl_EncounterData.Name = "TabControl_EncounterData"; + this.TabControl_EncounterData.SelectedIndex = 0; + this.TabControl_EncounterData.Size = new System.Drawing.Size(926, 395); + this.TabControl_EncounterData.TabIndex = 2; + // + // B_Dump + // + this.B_Dump.Enabled = false; + this.B_Dump.Location = new System.Drawing.Point(652, 18); + this.B_Dump.Name = "B_Dump"; + this.B_Dump.Size = new System.Drawing.Size(95, 23); + this.B_Dump.TabIndex = 415; + this.B_Dump.Text = "Dump Tables"; + this.B_Dump.UseVisualStyleBackColor = true; + this.B_Dump.Click += new System.EventHandler(this.B_Dump_Click); + // + // B_Randomize + // + this.B_Randomize.Enabled = false; + this.B_Randomize.Location = new System.Drawing.Point(551, 18); + this.B_Randomize.Name = "B_Randomize"; + this.B_Randomize.Size = new System.Drawing.Size(95, 23); + this.B_Randomize.TabIndex = 416; + this.B_Randomize.Text = "Randomize All"; + this.B_Randomize.UseVisualStyleBackColor = true; + this.B_Randomize.Click += new System.EventHandler(this.B_Randomize_Click); + // + // RSWE + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(954, 458); + this.Controls.Add(this.B_Randomize); + this.Controls.Add(this.B_Dump); + this.Controls.Add(this.label136); + this.Controls.Add(this.CB_FormeList); + this.Controls.Add(this.label134); + this.Controls.Add(this.B_Save); + this.Controls.Add(this.CB_LocationID); + this.Controls.Add(this.TabControl_EncounterData); + this.Name = "RSWE"; + this.Text = "RSWE V0.1"; + this.TabPage_Horde.ResumeLayout(false); + this.TabPage_Horde.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeCForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeBForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_HordeAMax3)).EndInit(); + this.TabPage_Water.ResumeLayout(false); + this.TabPage_Water.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SuperMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SurfForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GoodMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_OldMax3)).EndInit(); + this.TabPage_Land.ResumeLayout(false); + this.TabPage_Land.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_SwarmMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassForme10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMin10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_TallGrassMax10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_RockSmashMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMin11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassForme12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.NUP_GrassMax11)).EndInit(); + this.TabControl_EncounterData.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.ComboBox CB_LocationID; + private System.Windows.Forms.Button B_Save; + private System.Windows.Forms.Label label134; + private System.Windows.Forms.Label label136; + private System.Windows.Forms.ComboBox CB_FormeList; + private System.Windows.Forms.TabPage TabPage_Horde; + private System.Windows.Forms.Label label129; + private System.Windows.Forms.Label label130; + private System.Windows.Forms.Label label131; + private System.Windows.Forms.Label label132; + private System.Windows.Forms.NumericUpDown NUP_HordeCMax5; + private System.Windows.Forms.NumericUpDown NUP_HordeCMin5; + private System.Windows.Forms.NumericUpDown NUP_HordeCForme5; + private System.Windows.Forms.ComboBox CB_HordeC5; + private System.Windows.Forms.NumericUpDown NUP_HordeCMax4; + private System.Windows.Forms.NumericUpDown NUP_HordeCMin4; + private System.Windows.Forms.NumericUpDown NUP_HordeCForme4; + private System.Windows.Forms.ComboBox CB_HordeC4; + private System.Windows.Forms.NumericUpDown NUP_HordeCMax3; + private System.Windows.Forms.NumericUpDown NUP_HordeCMin3; + private System.Windows.Forms.NumericUpDown NUP_HordeCForme3; + private System.Windows.Forms.ComboBox CB_HordeC3; + private System.Windows.Forms.NumericUpDown NUP_HordeCMax2; + private System.Windows.Forms.NumericUpDown NUP_HordeCMin2; + private System.Windows.Forms.NumericUpDown NUP_HordeCForme2; + private System.Windows.Forms.ComboBox CB_HordeC2; + private System.Windows.Forms.NumericUpDown NUP_HordeCMax1; + private System.Windows.Forms.NumericUpDown NUP_HordeCMin1; + private System.Windows.Forms.NumericUpDown NUP_HordeCForme1; + private System.Windows.Forms.ComboBox CB_HordeC1; + private System.Windows.Forms.Label label125; + private System.Windows.Forms.Label label121; + private System.Windows.Forms.Label label126; + private System.Windows.Forms.Label label124; + private System.Windows.Forms.Label label127; + private System.Windows.Forms.Label label122; + private System.Windows.Forms.Label label128; + private System.Windows.Forms.NumericUpDown NUP_HordeBMax5; + private System.Windows.Forms.ComboBox CB_HordeA1; + private System.Windows.Forms.NumericUpDown NUP_HordeBMin5; + private System.Windows.Forms.Label label123; + private System.Windows.Forms.NumericUpDown NUP_HordeBForme5; + private System.Windows.Forms.NumericUpDown NUP_HordeAForme1; + private System.Windows.Forms.ComboBox CB_HordeB5; + private System.Windows.Forms.NumericUpDown NUP_HordeAMin1; + private System.Windows.Forms.NumericUpDown NUP_HordeBMax4; + private System.Windows.Forms.NumericUpDown NUP_HordeAMax5; + private System.Windows.Forms.NumericUpDown NUP_HordeBMin4; + private System.Windows.Forms.NumericUpDown NUP_HordeAMax1; + private System.Windows.Forms.NumericUpDown NUP_HordeBForme4; + private System.Windows.Forms.NumericUpDown NUP_HordeAMin5; + private System.Windows.Forms.ComboBox CB_HordeB4; + private System.Windows.Forms.ComboBox CB_HordeA2; + private System.Windows.Forms.NumericUpDown NUP_HordeBMax3; + private System.Windows.Forms.NumericUpDown NUP_HordeAForme5; + private System.Windows.Forms.NumericUpDown NUP_HordeBMin3; + private System.Windows.Forms.NumericUpDown NUP_HordeAForme2; + private System.Windows.Forms.NumericUpDown NUP_HordeBForme3; + private System.Windows.Forms.ComboBox CB_HordeA5; + private System.Windows.Forms.ComboBox CB_HordeB3; + private System.Windows.Forms.NumericUpDown NUP_HordeAMin2; + private System.Windows.Forms.NumericUpDown NUP_HordeBMax2; + private System.Windows.Forms.NumericUpDown NUP_HordeAMax4; + private System.Windows.Forms.NumericUpDown NUP_HordeBMin2; + private System.Windows.Forms.NumericUpDown NUP_HordeAMax2; + private System.Windows.Forms.NumericUpDown NUP_HordeBForme2; + private System.Windows.Forms.NumericUpDown NUP_HordeAMin4; + private System.Windows.Forms.ComboBox CB_HordeB2; + private System.Windows.Forms.ComboBox CB_HordeA3; + private System.Windows.Forms.NumericUpDown NUP_HordeBMax1; + private System.Windows.Forms.NumericUpDown NUP_HordeAForme4; + private System.Windows.Forms.NumericUpDown NUP_HordeBMin1; + private System.Windows.Forms.NumericUpDown NUP_HordeAForme3; + private System.Windows.Forms.NumericUpDown NUP_HordeBForme1; + private System.Windows.Forms.ComboBox CB_HordeA4; + private System.Windows.Forms.ComboBox CB_HordeB1; + private System.Windows.Forms.NumericUpDown NUP_HordeAMin3; + private System.Windows.Forms.NumericUpDown NUP_HordeAMax3; + private System.Windows.Forms.TabPage TabPage_Water; + private System.Windows.Forms.Label label116; + private System.Windows.Forms.Label label117; + private System.Windows.Forms.Label label118; + private System.Windows.Forms.Label label119; + private System.Windows.Forms.Label label120; + private System.Windows.Forms.Label label103; + private System.Windows.Forms.Label label48; + private System.Windows.Forms.Label label104; + private System.Windows.Forms.ComboBox CB_Super1; + private System.Windows.Forms.Label label105; + private System.Windows.Forms.NumericUpDown NUP_SuperForme1; + private System.Windows.Forms.Label label106; + private System.Windows.Forms.ComboBox CB_Surf1; + private System.Windows.Forms.NumericUpDown NUP_SuperMin1; + private System.Windows.Forms.NumericUpDown NUP_SurfForme1; + private System.Windows.Forms.NumericUpDown NUP_SuperMax1; + private System.Windows.Forms.NumericUpDown NUP_SurfMin1; + private System.Windows.Forms.ComboBox CB_Super2; + private System.Windows.Forms.NumericUpDown NUP_SurfMax1; + private System.Windows.Forms.NumericUpDown NUP_SuperForme2; + private System.Windows.Forms.ComboBox CB_Surf2; + private System.Windows.Forms.NumericUpDown NUP_SuperMin2; + private System.Windows.Forms.NumericUpDown NUP_SurfForme2; + private System.Windows.Forms.NumericUpDown NUP_SuperMax2; + private System.Windows.Forms.NumericUpDown NUP_SurfMin2; + private System.Windows.Forms.ComboBox CB_Super3; + private System.Windows.Forms.NumericUpDown NUP_SurfMax5; + private System.Windows.Forms.NumericUpDown NUP_SuperForme3; + private System.Windows.Forms.NumericUpDown NUP_SurfMax2; + private System.Windows.Forms.NumericUpDown NUP_SuperMin3; + private System.Windows.Forms.NumericUpDown NUP_SurfMin5; + private System.Windows.Forms.NumericUpDown NUP_SuperMax3; + private System.Windows.Forms.ComboBox CB_Surf3; + private System.Windows.Forms.Label label49; + private System.Windows.Forms.NumericUpDown NUP_SurfForme5; + private System.Windows.Forms.Label label98; + private System.Windows.Forms.NumericUpDown NUP_SurfForme3; + private System.Windows.Forms.Label label99; + private System.Windows.Forms.ComboBox CB_Surf5; + private System.Windows.Forms.Label label100; + private System.Windows.Forms.NumericUpDown NUP_SurfMin3; + private System.Windows.Forms.Label label101; + private System.Windows.Forms.NumericUpDown NUP_SurfMax4; + private System.Windows.Forms.Label label102; + private System.Windows.Forms.NumericUpDown NUP_SurfMax3; + private System.Windows.Forms.Label label26; + private System.Windows.Forms.NumericUpDown NUP_SurfMin4; + private System.Windows.Forms.ComboBox CB_Good1; + private System.Windows.Forms.ComboBox CB_Surf4; + private System.Windows.Forms.NumericUpDown NUP_GoodForme1; + private System.Windows.Forms.NumericUpDown NUP_SurfForme4; + private System.Windows.Forms.NumericUpDown NUP_GoodMin1; + private System.Windows.Forms.NumericUpDown NUP_GoodMax1; + private System.Windows.Forms.ComboBox CB_Good2; + private System.Windows.Forms.NumericUpDown NUP_GoodForme2; + private System.Windows.Forms.NumericUpDown NUP_GoodMin2; + private System.Windows.Forms.NumericUpDown NUP_GoodMax2; + private System.Windows.Forms.ComboBox CB_Good3; + private System.Windows.Forms.NumericUpDown NUP_GoodForme3; + private System.Windows.Forms.NumericUpDown NUP_GoodMin3; + private System.Windows.Forms.NumericUpDown NUP_GoodMax3; + private System.Windows.Forms.Label label27; + private System.Windows.Forms.Label label28; + private System.Windows.Forms.Label label29; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label label46; + private System.Windows.Forms.Label label47; + private System.Windows.Forms.Label label22; + private System.Windows.Forms.ComboBox CB_Old1; + private System.Windows.Forms.NumericUpDown NUP_OldForme1; + private System.Windows.Forms.NumericUpDown NUP_OldMin1; + private System.Windows.Forms.NumericUpDown NUP_OldMax1; + private System.Windows.Forms.ComboBox CB_Old2; + private System.Windows.Forms.NumericUpDown NUP_OldForme2; + private System.Windows.Forms.NumericUpDown NUP_OldMin2; + private System.Windows.Forms.NumericUpDown NUP_OldMax2; + private System.Windows.Forms.ComboBox CB_Old3; + private System.Windows.Forms.NumericUpDown NUP_OldForme3; + private System.Windows.Forms.NumericUpDown NUP_OldMin3; + private System.Windows.Forms.NumericUpDown NUP_OldMax3; + private System.Windows.Forms.Label label45; + private System.Windows.Forms.Label label44; + private System.Windows.Forms.Label label43; + private System.Windows.Forms.Label label23; + private System.Windows.Forms.Label label24; + private System.Windows.Forms.Label label25; + private System.Windows.Forms.TabPage TabPage_Land; + private System.Windows.Forms.ComboBox CB_Swarm3; + private System.Windows.Forms.ComboBox CB_Swarm2; + private System.Windows.Forms.ComboBox CB_Swarm1; + private System.Windows.Forms.NumericUpDown NUP_SwarmForme1; + private System.Windows.Forms.NumericUpDown NUP_SwarmMin1; + private System.Windows.Forms.Label label66; + private System.Windows.Forms.NumericUpDown NUP_SwarmMax1; + private System.Windows.Forms.Label label67; + private System.Windows.Forms.NumericUpDown NUP_SwarmForme2; + private System.Windows.Forms.Label label68; + private System.Windows.Forms.NumericUpDown NUP_SwarmMin2; + private System.Windows.Forms.Label label69; + private System.Windows.Forms.NumericUpDown NUP_SwarmMax2; + private System.Windows.Forms.NumericUpDown NUP_SwarmForme3; + private System.Windows.Forms.NumericUpDown NUP_SwarmMin3; + private System.Windows.Forms.NumericUpDown NUP_SwarmMax3; + private System.Windows.Forms.Label label70; + private System.Windows.Forms.Label label80; + private System.Windows.Forms.Label label81; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme11; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin11; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax11; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme12; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin12; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax12; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme1; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin1; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax1; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme2; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin2; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax2; + private System.Windows.Forms.ComboBox CB_TallGrass12; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme3; + private System.Windows.Forms.ComboBox CB_TallGrass11; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin3; + private System.Windows.Forms.ComboBox CB_TallGrass10; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax3; + private System.Windows.Forms.ComboBox CB_TallGrass9; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme4; + private System.Windows.Forms.ComboBox CB_TallGrass8; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin4; + private System.Windows.Forms.ComboBox CB_TallGrass7; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax4; + private System.Windows.Forms.ComboBox CB_TallGrass6; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme5; + private System.Windows.Forms.ComboBox CB_TallGrass5; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin5; + private System.Windows.Forms.ComboBox CB_TallGrass4; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax5; + private System.Windows.Forms.ComboBox CB_TallGrass3; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme6; + private System.Windows.Forms.ComboBox CB_TallGrass2; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin6; + private System.Windows.Forms.ComboBox CB_TallGrass1; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax6; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme7; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin7; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax7; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme8; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin8; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax8; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme9; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin9; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax9; + private System.Windows.Forms.NumericUpDown NUP_TallGrassForme10; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMin10; + private System.Windows.Forms.NumericUpDown NUP_TallGrassMax10; + private System.Windows.Forms.Label label107; + private System.Windows.Forms.Label label115; + private System.Windows.Forms.Label label108; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMax5; + private System.Windows.Forms.Label label109; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMin5; + private System.Windows.Forms.Label label110; + private System.Windows.Forms.NumericUpDown NUP_RockSmashForme5; + private System.Windows.Forms.Label label111; + private System.Windows.Forms.ComboBox CB_RockSmash5; + private System.Windows.Forms.ComboBox CB_RockSmash1; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMax4; + private System.Windows.Forms.NumericUpDown NUP_RockSmashForme1; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMin4; + private System.Windows.Forms.Label label112; + private System.Windows.Forms.NumericUpDown NUP_RockSmashForme4; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMin1; + private System.Windows.Forms.ComboBox CB_RockSmash4; + private System.Windows.Forms.Label label113; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMax3; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMax1; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMin3; + private System.Windows.Forms.Label label114; + private System.Windows.Forms.NumericUpDown NUP_RockSmashForme3; + private System.Windows.Forms.ComboBox CB_RockSmash2; + private System.Windows.Forms.ComboBox CB_RockSmash3; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMax2; + private System.Windows.Forms.NumericUpDown NUP_RockSmashForme2; + private System.Windows.Forms.NumericUpDown NUP_RockSmashMin2; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.Label label12; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.NumericUpDown NUP_GrassForme1; + private System.Windows.Forms.NumericUpDown NUP_GrassMin1; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.NumericUpDown NUP_GrassMax1; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.NumericUpDown NUP_GrassForme2; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.NumericUpDown NUP_GrassMin2; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.NumericUpDown NUP_GrassMax2; + private System.Windows.Forms.ComboBox CB_Grass12; + private System.Windows.Forms.NumericUpDown NUP_GrassForme3; + private System.Windows.Forms.ComboBox CB_Grass11; + private System.Windows.Forms.NumericUpDown NUP_GrassMin3; + private System.Windows.Forms.ComboBox CB_Grass10; + private System.Windows.Forms.NumericUpDown NUP_GrassMax3; + private System.Windows.Forms.ComboBox CB_Grass9; + private System.Windows.Forms.NumericUpDown NUP_GrassForme4; + private System.Windows.Forms.ComboBox CB_Grass8; + private System.Windows.Forms.NumericUpDown NUP_GrassMin4; + private System.Windows.Forms.ComboBox CB_Grass7; + private System.Windows.Forms.NumericUpDown NUP_GrassMax4; + private System.Windows.Forms.ComboBox CB_Grass6; + private System.Windows.Forms.NumericUpDown NUP_GrassForme5; + private System.Windows.Forms.ComboBox CB_Grass5; + private System.Windows.Forms.NumericUpDown NUP_GrassMin5; + private System.Windows.Forms.ComboBox CB_Grass4; + private System.Windows.Forms.NumericUpDown NUP_GrassMax5; + private System.Windows.Forms.ComboBox CB_Grass3; + private System.Windows.Forms.NumericUpDown NUP_GrassForme6; + private System.Windows.Forms.ComboBox CB_Grass2; + private System.Windows.Forms.NumericUpDown NUP_GrassMin6; + private System.Windows.Forms.ComboBox CB_Grass1; + private System.Windows.Forms.NumericUpDown NUP_GrassMax6; + private System.Windows.Forms.Label label31; + private System.Windows.Forms.NumericUpDown NUP_GrassForme7; + private System.Windows.Forms.Label label41; + private System.Windows.Forms.NumericUpDown NUP_GrassMin7; + private System.Windows.Forms.Label label42; + private System.Windows.Forms.NumericUpDown NUP_GrassMax7; + private System.Windows.Forms.Label label40; + private System.Windows.Forms.NumericUpDown NUP_GrassForme8; + private System.Windows.Forms.Label label39; + private System.Windows.Forms.NumericUpDown NUP_GrassMin8; + private System.Windows.Forms.Label label38; + private System.Windows.Forms.NumericUpDown NUP_GrassMax8; + private System.Windows.Forms.Label label37; + private System.Windows.Forms.NumericUpDown NUP_GrassForme9; + private System.Windows.Forms.Label label36; + private System.Windows.Forms.NumericUpDown NUP_GrassMin9; + private System.Windows.Forms.Label label35; + private System.Windows.Forms.NumericUpDown NUP_GrassMax9; + private System.Windows.Forms.Label label34; + private System.Windows.Forms.NumericUpDown NUP_GrassForme10; + private System.Windows.Forms.Label label33; + private System.Windows.Forms.NumericUpDown NUP_GrassMin10; + private System.Windows.Forms.Label label32; + private System.Windows.Forms.NumericUpDown NUP_GrassMax10; + private System.Windows.Forms.NumericUpDown NUP_GrassMax12; + private System.Windows.Forms.NumericUpDown NUP_GrassForme11; + private System.Windows.Forms.NumericUpDown NUP_GrassMin12; + private System.Windows.Forms.NumericUpDown NUP_GrassMin11; + private System.Windows.Forms.NumericUpDown NUP_GrassForme12; + private System.Windows.Forms.NumericUpDown NUP_GrassMax11; + private System.Windows.Forms.TabControl TabControl_EncounterData; + private System.Windows.Forms.Button B_Dump; + private System.Windows.Forms.Button B_Randomize; + } +} + diff --git a/pk3DS/RSWE.resx b/pk3DS/RSWE.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/pk3DS/RSWE.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/pk3DS/pk3DS.csproj b/pk3DS/pk3DS.csproj index 7e79549..4263ac5 100644 --- a/pk3DS/pk3DS.csproj +++ b/pk3DS/pk3DS.csproj @@ -64,6 +64,12 @@ + + Form + + + RSWE.cs + Form @@ -102,6 +108,9 @@ RSTE.cs + + RSWE.cs + xytext.cs