Add current poketch app selection

Closes #1260
This commit is contained in:
Kurt 2017-06-21 21:07:07 -07:00
parent 25b3f2a65a
commit 1815a7f273
3 changed files with 183 additions and 155 deletions

View file

@ -506,6 +506,7 @@ namespace PKHeX.Core
}
public override int SecondsToStart { get => BitConverter.ToInt32(Data, AdventureInfo + 0x34); set => BitConverter.GetBytes(value).CopyTo(Data, AdventureInfo + 0x34); }
public override int SecondsToFame { get => BitConverter.ToInt32(Data, AdventureInfo + 0x3C); set => BitConverter.GetBytes(value).CopyTo(Data, AdventureInfo + 0x3C); }
public int CurrentPokeTchApp { get => Data[0x1162]; set => Data[0x1162] = (byte)Math.Min(25, value); /* Alarm Clock */ }
// Storage
public override int CurrentBox

View file

@ -33,6 +33,8 @@
this.B_Save = new System.Windows.Forms.Button();
this.TC_Misc = new System.Windows.Forms.TabControl();
this.TAB_Main = new System.Windows.Forms.TabPage();
this.L_UGFlags = new System.Windows.Forms.Label();
this.NUD_UGFlags = new System.Windows.Forms.NumericUpDown();
this.NUD_BP = new System.Windows.Forms.NumericUpDown();
this.L_BP = new System.Windows.Forms.Label();
this.CB_UpgradeMap = new System.Windows.Forms.ComboBox();
@ -40,6 +42,8 @@
this.B_AllFlyDest = new System.Windows.Forms.Button();
this.CLB_FlyDest = new System.Windows.Forms.CheckedListBox();
this.GB_Poketch = new System.Windows.Forms.GroupBox();
this.L_CurrentApp = new System.Windows.Forms.Label();
this.CB_CurrentApp = new System.Windows.Forms.ComboBox();
this.B_AllPoketch = new System.Windows.Forms.Button();
this.CLB_Poketch = new System.Windows.Forms.CheckedListBox();
this.PB_DotArtist = new System.Windows.Forms.PictureBox();
@ -91,14 +95,13 @@
this.NUD_CastleRankItem = new System.Windows.Forms.NumericUpDown();
this.NUD_CastleRankInfo = new System.Windows.Forms.NumericUpDown();
this.L_CastleRank01 = new System.Windows.Forms.Label();
this.NUD_UGFlags = new System.Windows.Forms.NumericUpDown();
this.L_UGFlags = new System.Windows.Forms.Label();
this.TC_Misc.SuspendLayout();
this.TAB_Main.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.NUD_UGFlags)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_BP)).BeginInit();
this.GB_FlyDest.SuspendLayout();
this.GB_Poketch.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.PB_DotArtist)).BeginInit();
this.GB_FlyDest.SuspendLayout();
this.TAB_BF.SuspendLayout();
this.GB_Prints.SuspendLayout();
this.GB_Streaks.SuspendLayout();
@ -129,15 +132,14 @@
((System.ComponentModel.ISupportInitialize)(this.NUD_CastleRankRcv)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_CastleRankItem)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_CastleRankInfo)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_UGFlags)).BeginInit();
this.SuspendLayout();
//
// B_Cancel
//
this.B_Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.B_Cancel.Location = new System.Drawing.Point(237, 263);
this.B_Cancel.Location = new System.Drawing.Point(237, 285);
this.B_Cancel.Name = "B_Cancel";
this.B_Cancel.Size = new System.Drawing.Size(75, 23);
this.B_Cancel.Size = new System.Drawing.Size(75, 25);
this.B_Cancel.TabIndex = 0;
this.B_Cancel.Text = "Cancel";
this.B_Cancel.UseVisualStyleBackColor = true;
@ -146,9 +148,9 @@
// B_Save
//
this.B_Save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.B_Save.Location = new System.Drawing.Point(318, 263);
this.B_Save.Location = new System.Drawing.Point(318, 285);
this.B_Save.Name = "B_Save";
this.B_Save.Size = new System.Drawing.Size(75, 23);
this.B_Save.Size = new System.Drawing.Size(75, 25);
this.B_Save.TabIndex = 1;
this.B_Save.Text = "Save";
this.B_Save.UseVisualStyleBackColor = true;
@ -158,10 +160,10 @@
//
this.TC_Misc.Controls.Add(this.TAB_Main);
this.TC_Misc.Controls.Add(this.TAB_BF);
this.TC_Misc.Location = new System.Drawing.Point(12, 12);
this.TC_Misc.Location = new System.Drawing.Point(12, 13);
this.TC_Misc.Name = "TC_Misc";
this.TC_Misc.SelectedIndex = 0;
this.TC_Misc.Size = new System.Drawing.Size(381, 245);
this.TC_Misc.Size = new System.Drawing.Size(381, 265);
this.TC_Misc.TabIndex = 2;
//
// TAB_Main
@ -175,23 +177,49 @@
this.TAB_Main.Controls.Add(this.GB_Poketch);
this.TAB_Main.Location = new System.Drawing.Point(4, 22);
this.TAB_Main.Name = "TAB_Main";
this.TAB_Main.Size = new System.Drawing.Size(373, 219);
this.TAB_Main.Size = new System.Drawing.Size(373, 239);
this.TAB_Main.TabIndex = 0;
this.TAB_Main.Text = "Main";
this.TAB_Main.UseVisualStyleBackColor = true;
this.TAB_Main.DragDrop += new System.Windows.Forms.DragEventHandler(this.TAB_Poketch_DragDrop);
this.TAB_Main.DragEnter += new System.Windows.Forms.DragEventHandler(this.TAB_Poketch_DragEnter);
//
// L_UGFlags
//
this.L_UGFlags.Location = new System.Drawing.Point(3, 33);
this.L_UGFlags.Name = "L_UGFlags";
this.L_UGFlags.Size = new System.Drawing.Size(100, 25);
this.L_UGFlags.TabIndex = 7;
this.L_UGFlags.Text = "Flags Obtained";
this.L_UGFlags.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// NUD_UGFlags
//
this.NUD_UGFlags.Location = new System.Drawing.Point(109, 36);
this.NUD_UGFlags.Maximum = new decimal(new int[] {
999999,
0,
0,
0});
this.NUD_UGFlags.Name = "NUD_UGFlags";
this.NUD_UGFlags.Size = new System.Drawing.Size(61, 20);
this.NUD_UGFlags.TabIndex = 2;
this.NUD_UGFlags.Value = new decimal(new int[] {
999999,
0,
0,
0});
//
// NUD_BP
//
this.NUD_BP.Location = new System.Drawing.Point(90, 8);
this.NUD_BP.Location = new System.Drawing.Point(90, 9);
this.NUD_BP.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.NUD_BP.Name = "NUD_BP";
this.NUD_BP.Size = new System.Drawing.Size(47, 19);
this.NUD_BP.Size = new System.Drawing.Size(47, 20);
this.NUD_BP.TabIndex = 0;
this.NUD_BP.Value = new decimal(new int[] {
9999,
@ -201,9 +229,9 @@
//
// L_BP
//
this.L_BP.Location = new System.Drawing.Point(3, 6);
this.L_BP.Location = new System.Drawing.Point(3, 7);
this.L_BP.Name = "L_BP";
this.L_BP.Size = new System.Drawing.Size(81, 20);
this.L_BP.Size = new System.Drawing.Size(81, 22);
this.L_BP.TabIndex = 1;
this.L_BP.Text = "BP:";
this.L_BP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
@ -212,27 +240,27 @@
//
this.CB_UpgradeMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CB_UpgradeMap.FormattingEnabled = true;
this.CB_UpgradeMap.Location = new System.Drawing.Point(6, 62);
this.CB_UpgradeMap.Location = new System.Drawing.Point(6, 67);
this.CB_UpgradeMap.Name = "CB_UpgradeMap";
this.CB_UpgradeMap.Size = new System.Drawing.Size(131, 20);
this.CB_UpgradeMap.Size = new System.Drawing.Size(131, 21);
this.CB_UpgradeMap.TabIndex = 3;
//
// GB_FlyDest
//
this.GB_FlyDest.Controls.Add(this.B_AllFlyDest);
this.GB_FlyDest.Controls.Add(this.CLB_FlyDest);
this.GB_FlyDest.Location = new System.Drawing.Point(3, 88);
this.GB_FlyDest.Location = new System.Drawing.Point(3, 95);
this.GB_FlyDest.Name = "GB_FlyDest";
this.GB_FlyDest.Size = new System.Drawing.Size(140, 127);
this.GB_FlyDest.Size = new System.Drawing.Size(140, 138);
this.GB_FlyDest.TabIndex = 4;
this.GB_FlyDest.TabStop = false;
this.GB_FlyDest.Text = "Fly Destination";
//
// B_AllFlyDest
//
this.B_AllFlyDest.Location = new System.Drawing.Point(6, 18);
this.B_AllFlyDest.Location = new System.Drawing.Point(6, 20);
this.B_AllFlyDest.Name = "B_AllFlyDest";
this.B_AllFlyDest.Size = new System.Drawing.Size(75, 23);
this.B_AllFlyDest.Size = new System.Drawing.Size(75, 25);
this.B_AllFlyDest.TabIndex = 0;
this.B_AllFlyDest.Text = "Check All";
this.B_AllFlyDest.UseVisualStyleBackColor = true;
@ -242,30 +270,50 @@
//
this.CLB_FlyDest.CheckOnClick = true;
this.CLB_FlyDest.FormattingEnabled = true;
this.CLB_FlyDest.Location = new System.Drawing.Point(6, 47);
this.CLB_FlyDest.Location = new System.Drawing.Point(6, 51);
this.CLB_FlyDest.Name = "CLB_FlyDest";
this.CLB_FlyDest.Size = new System.Drawing.Size(128, 74);
this.CLB_FlyDest.Size = new System.Drawing.Size(128, 79);
this.CLB_FlyDest.TabIndex = 1;
//
// GB_Poketch
//
this.GB_Poketch.Controls.Add(this.L_CurrentApp);
this.GB_Poketch.Controls.Add(this.CB_CurrentApp);
this.GB_Poketch.Controls.Add(this.B_AllPoketch);
this.GB_Poketch.Controls.Add(this.CLB_Poketch);
this.GB_Poketch.Controls.Add(this.PB_DotArtist);
this.GB_Poketch.Location = new System.Drawing.Point(176, 3);
this.GB_Poketch.Name = "GB_Poketch";
this.GB_Poketch.Size = new System.Drawing.Size(140, 213);
this.GB_Poketch.Size = new System.Drawing.Size(194, 231);
this.GB_Poketch.TabIndex = 5;
this.GB_Poketch.TabStop = false;
this.GB_Poketch.Text = "Poketch";
//
// L_CurrentApp
//
this.L_CurrentApp.AutoSize = true;
this.L_CurrentApp.Location = new System.Drawing.Point(87, 8);
this.L_CurrentApp.Name = "L_CurrentApp";
this.L_CurrentApp.Size = new System.Drawing.Size(63, 13);
this.L_CurrentApp.TabIndex = 4;
this.L_CurrentApp.Text = "Current App";
//
// CB_CurrentApp
//
this.CB_CurrentApp.DropDownWidth = 150;
this.CB_CurrentApp.FormattingEnabled = true;
this.CB_CurrentApp.Location = new System.Drawing.Point(87, 24);
this.CB_CurrentApp.Name = "CB_CurrentApp";
this.CB_CurrentApp.Size = new System.Drawing.Size(101, 21);
this.CB_CurrentApp.TabIndex = 3;
//
// B_AllPoketch
//
this.B_AllPoketch.Location = new System.Drawing.Point(6, 18);
this.B_AllPoketch.Location = new System.Drawing.Point(6, 20);
this.B_AllPoketch.Name = "B_AllPoketch";
this.B_AllPoketch.Size = new System.Drawing.Size(75, 23);
this.B_AllPoketch.Size = new System.Drawing.Size(75, 25);
this.B_AllPoketch.TabIndex = 0;
this.B_AllPoketch.Text = "Check All";
this.B_AllPoketch.Text = "Give All";
this.B_AllPoketch.UseVisualStyleBackColor = true;
this.B_AllPoketch.Click += new System.EventHandler(this.B_GiveAll_Click);
//
@ -273,17 +321,17 @@
//
this.CLB_Poketch.CheckOnClick = true;
this.CLB_Poketch.FormattingEnabled = true;
this.CLB_Poketch.Location = new System.Drawing.Point(6, 47);
this.CLB_Poketch.Location = new System.Drawing.Point(6, 51);
this.CLB_Poketch.Name = "CLB_Poketch";
this.CLB_Poketch.Size = new System.Drawing.Size(128, 74);
this.CLB_Poketch.Size = new System.Drawing.Size(182, 79);
this.CLB_Poketch.TabIndex = 1;
//
// PB_DotArtist
//
this.PB_DotArtist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.PB_DotArtist.Location = new System.Drawing.Point(6, 127);
this.PB_DotArtist.Location = new System.Drawing.Point(6, 138);
this.PB_DotArtist.Name = "PB_DotArtist";
this.PB_DotArtist.Size = new System.Drawing.Size(96, 80);
this.PB_DotArtist.Size = new System.Drawing.Size(96, 87);
this.PB_DotArtist.TabIndex = 2;
this.PB_DotArtist.TabStop = false;
this.PB_DotArtist.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PB_DotArtist_MouseClick);
@ -296,7 +344,7 @@
this.TAB_BF.Controls.Add(this.GB_Castle);
this.TAB_BF.Location = new System.Drawing.Point(4, 22);
this.TAB_BF.Name = "TAB_BF";
this.TAB_BF.Size = new System.Drawing.Size(373, 219);
this.TAB_BF.Size = new System.Drawing.Size(373, 239);
this.TAB_BF.TabIndex = 1;
this.TAB_BF.Text = "B.Frontier";
this.TAB_BF.UseVisualStyleBackColor = true;
@ -308,9 +356,9 @@
this.GB_Prints.Controls.Add(this.BTN_PrintHall);
this.GB_Prints.Controls.Add(this.BTN_PrintCastle);
this.GB_Prints.Controls.Add(this.BTN_PrintArcade);
this.GB_Prints.Location = new System.Drawing.Point(3, 6);
this.GB_Prints.Location = new System.Drawing.Point(3, 7);
this.GB_Prints.Name = "GB_Prints";
this.GB_Prints.Size = new System.Drawing.Size(81, 190);
this.GB_Prints.Size = new System.Drawing.Size(81, 206);
this.GB_Prints.TabIndex = 0;
this.GB_Prints.TabStop = false;
this.GB_Prints.Text = "Print";
@ -318,9 +366,9 @@
// BTN_PrintTower
//
this.BTN_PrintTower.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BTN_PrintTower.Location = new System.Drawing.Point(6, 18);
this.BTN_PrintTower.Location = new System.Drawing.Point(6, 20);
this.BTN_PrintTower.Name = "BTN_PrintTower";
this.BTN_PrintTower.Size = new System.Drawing.Size(69, 26);
this.BTN_PrintTower.Size = new System.Drawing.Size(69, 28);
this.BTN_PrintTower.TabIndex = 0;
this.BTN_PrintTower.Text = "Tower";
this.BTN_PrintTower.UseVisualStyleBackColor = true;
@ -329,9 +377,9 @@
// BTN_PrintFactory
//
this.BTN_PrintFactory.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BTN_PrintFactory.Location = new System.Drawing.Point(6, 53);
this.BTN_PrintFactory.Location = new System.Drawing.Point(6, 57);
this.BTN_PrintFactory.Name = "BTN_PrintFactory";
this.BTN_PrintFactory.Size = new System.Drawing.Size(69, 26);
this.BTN_PrintFactory.Size = new System.Drawing.Size(69, 28);
this.BTN_PrintFactory.TabIndex = 1;
this.BTN_PrintFactory.Text = "Factory";
this.BTN_PrintFactory.UseVisualStyleBackColor = true;
@ -340,9 +388,9 @@
// BTN_PrintHall
//
this.BTN_PrintHall.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BTN_PrintHall.Location = new System.Drawing.Point(6, 88);
this.BTN_PrintHall.Location = new System.Drawing.Point(6, 95);
this.BTN_PrintHall.Name = "BTN_PrintHall";
this.BTN_PrintHall.Size = new System.Drawing.Size(69, 26);
this.BTN_PrintHall.Size = new System.Drawing.Size(69, 28);
this.BTN_PrintHall.TabIndex = 2;
this.BTN_PrintHall.Text = "Hall";
this.BTN_PrintHall.UseVisualStyleBackColor = true;
@ -351,9 +399,9 @@
// BTN_PrintCastle
//
this.BTN_PrintCastle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BTN_PrintCastle.Location = new System.Drawing.Point(6, 123);
this.BTN_PrintCastle.Location = new System.Drawing.Point(6, 133);
this.BTN_PrintCastle.Name = "BTN_PrintCastle";
this.BTN_PrintCastle.Size = new System.Drawing.Size(69, 26);
this.BTN_PrintCastle.Size = new System.Drawing.Size(69, 28);
this.BTN_PrintCastle.TabIndex = 3;
this.BTN_PrintCastle.Text = "Castle";
this.BTN_PrintCastle.UseVisualStyleBackColor = true;
@ -362,9 +410,9 @@
// BTN_PrintArcade
//
this.BTN_PrintArcade.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BTN_PrintArcade.Location = new System.Drawing.Point(6, 158);
this.BTN_PrintArcade.Location = new System.Drawing.Point(6, 171);
this.BTN_PrintArcade.Name = "BTN_PrintArcade";
this.BTN_PrintArcade.Size = new System.Drawing.Size(69, 26);
this.BTN_PrintArcade.Size = new System.Drawing.Size(69, 28);
this.BTN_PrintArcade.TabIndex = 4;
this.BTN_PrintArcade.Text = "Arcade";
this.BTN_PrintArcade.UseVisualStyleBackColor = true;
@ -387,7 +435,7 @@
this.GB_Streaks.Controls.Add(this.L_Stat3);
this.GB_Streaks.Location = new System.Drawing.Point(90, 3);
this.GB_Streaks.Name = "GB_Streaks";
this.GB_Streaks.Size = new System.Drawing.Size(114, 210);
this.GB_Streaks.Size = new System.Drawing.Size(114, 228);
this.GB_Streaks.TabIndex = 1;
this.GB_Streaks.TabStop = false;
this.GB_Streaks.Text = "Streaks";
@ -396,9 +444,9 @@
//
this.CB_Stats1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CB_Stats1.FormattingEnabled = true;
this.CB_Stats1.Location = new System.Drawing.Point(6, 18);
this.CB_Stats1.Location = new System.Drawing.Point(6, 20);
this.CB_Stats1.Name = "CB_Stats1";
this.CB_Stats1.Size = new System.Drawing.Size(69, 20);
this.CB_Stats1.Size = new System.Drawing.Size(69, 21);
this.CB_Stats1.TabIndex = 0;
this.CB_Stats1.SelectedIndexChanged += new System.EventHandler(this.ChangeStat1);
//
@ -406,18 +454,18 @@
//
this.CB_Stats2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CB_Stats2.FormattingEnabled = true;
this.CB_Stats2.Location = new System.Drawing.Point(6, 44);
this.CB_Stats2.Location = new System.Drawing.Point(6, 48);
this.CB_Stats2.Name = "CB_Stats2";
this.CB_Stats2.Size = new System.Drawing.Size(69, 20);
this.CB_Stats2.Size = new System.Drawing.Size(69, 21);
this.CB_Stats2.TabIndex = 1;
this.CB_Stats2.SelectedIndexChanged += new System.EventHandler(this.ChangeStat);
//
// RB_Stats3_01
//
this.RB_Stats3_01.AutoSize = true;
this.RB_Stats3_01.Location = new System.Drawing.Point(6, 70);
this.RB_Stats3_01.Location = new System.Drawing.Point(6, 76);
this.RB_Stats3_01.Name = "RB_Stats3_01";
this.RB_Stats3_01.Size = new System.Drawing.Size(47, 16);
this.RB_Stats3_01.Size = new System.Drawing.Size(49, 17);
this.RB_Stats3_01.TabIndex = 2;
this.RB_Stats3_01.TabStop = true;
this.RB_Stats3_01.Text = "Lv50";
@ -427,9 +475,9 @@
// RB_Stats3_02
//
this.RB_Stats3_02.AutoSize = true;
this.RB_Stats3_02.Location = new System.Drawing.Point(59, 70);
this.RB_Stats3_02.Location = new System.Drawing.Point(59, 76);
this.RB_Stats3_02.Name = "RB_Stats3_02";
this.RB_Stats3_02.Size = new System.Drawing.Size(49, 16);
this.RB_Stats3_02.Size = new System.Drawing.Size(51, 17);
this.RB_Stats3_02.TabIndex = 3;
this.RB_Stats3_02.TabStop = true;
this.RB_Stats3_02.Text = "Open";
@ -439,9 +487,9 @@
// CHK_Continue
//
this.CHK_Continue.AutoSize = true;
this.CHK_Continue.Location = new System.Drawing.Point(6, 92);
this.CHK_Continue.Location = new System.Drawing.Point(6, 100);
this.CHK_Continue.Name = "CHK_Continue";
this.CHK_Continue.Size = new System.Drawing.Size(69, 16);
this.CHK_Continue.Size = new System.Drawing.Size(68, 17);
this.CHK_Continue.TabIndex = 4;
this.CHK_Continue.Text = "Continue";
this.CHK_Continue.UseVisualStyleBackColor = true;
@ -449,14 +497,14 @@
//
// NUD_Stat0
//
this.NUD_Stat0.Location = new System.Drawing.Point(62, 114);
this.NUD_Stat0.Location = new System.Drawing.Point(62, 124);
this.NUD_Stat0.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.NUD_Stat0.Name = "NUD_Stat0";
this.NUD_Stat0.Size = new System.Drawing.Size(47, 19);
this.NUD_Stat0.Size = new System.Drawing.Size(47, 20);
this.NUD_Stat0.TabIndex = 5;
this.NUD_Stat0.Value = new decimal(new int[] {
9999,
@ -467,14 +515,14 @@
//
// NUD_Stat1
//
this.NUD_Stat1.Location = new System.Drawing.Point(62, 138);
this.NUD_Stat1.Location = new System.Drawing.Point(62, 150);
this.NUD_Stat1.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.NUD_Stat1.Name = "NUD_Stat1";
this.NUD_Stat1.Size = new System.Drawing.Size(47, 19);
this.NUD_Stat1.Size = new System.Drawing.Size(47, 20);
this.NUD_Stat1.TabIndex = 6;
this.NUD_Stat1.Value = new decimal(new int[] {
9999,
@ -485,14 +533,14 @@
//
// NUD_Stat2
//
this.NUD_Stat2.Location = new System.Drawing.Point(62, 162);
this.NUD_Stat2.Location = new System.Drawing.Point(62, 176);
this.NUD_Stat2.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.NUD_Stat2.Name = "NUD_Stat2";
this.NUD_Stat2.Size = new System.Drawing.Size(47, 19);
this.NUD_Stat2.Size = new System.Drawing.Size(47, 20);
this.NUD_Stat2.TabIndex = 7;
this.NUD_Stat2.Value = new decimal(new int[] {
9999,
@ -503,14 +551,14 @@
//
// NUD_Stat3
//
this.NUD_Stat3.Location = new System.Drawing.Point(62, 186);
this.NUD_Stat3.Location = new System.Drawing.Point(62, 202);
this.NUD_Stat3.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.NUD_Stat3.Name = "NUD_Stat3";
this.NUD_Stat3.Size = new System.Drawing.Size(47, 19);
this.NUD_Stat3.Size = new System.Drawing.Size(47, 20);
this.NUD_Stat3.TabIndex = 8;
this.NUD_Stat3.Value = new decimal(new int[] {
9999,
@ -522,36 +570,36 @@
// L_Stat0
//
this.L_Stat0.AutoSize = true;
this.L_Stat0.Location = new System.Drawing.Point(6, 116);
this.L_Stat0.Location = new System.Drawing.Point(6, 126);
this.L_Stat0.Name = "L_Stat0";
this.L_Stat0.Size = new System.Drawing.Size(43, 12);
this.L_Stat0.Size = new System.Drawing.Size(41, 13);
this.L_Stat0.TabIndex = 9;
this.L_Stat0.Text = "Current";
//
// L_Stat1
//
this.L_Stat1.AutoSize = true;
this.L_Stat1.Location = new System.Drawing.Point(6, 140);
this.L_Stat1.Location = new System.Drawing.Point(6, 152);
this.L_Stat1.Name = "L_Stat1";
this.L_Stat1.Size = new System.Drawing.Size(34, 12);
this.L_Stat1.Size = new System.Drawing.Size(35, 13);
this.L_Stat1.TabIndex = 10;
this.L_Stat1.Text = "Trade";
//
// L_Stat2
//
this.L_Stat2.AutoSize = true;
this.L_Stat2.Location = new System.Drawing.Point(4, 164);
this.L_Stat2.Location = new System.Drawing.Point(4, 178);
this.L_Stat2.Name = "L_Stat2";
this.L_Stat2.Size = new System.Drawing.Size(26, 12);
this.L_Stat2.Size = new System.Drawing.Size(27, 13);
this.L_Stat2.TabIndex = 11;
this.L_Stat2.Text = "Max";
//
// L_Stat3
//
this.L_Stat3.AutoSize = true;
this.L_Stat3.Location = new System.Drawing.Point(6, 188);
this.L_Stat3.Location = new System.Drawing.Point(6, 204);
this.L_Stat3.Name = "L_Stat3";
this.L_Stat3.Size = new System.Drawing.Size(34, 12);
this.L_Stat3.Size = new System.Drawing.Size(35, 13);
this.L_Stat3.TabIndex = 12;
this.L_Stat3.Text = "Trade";
//
@ -578,9 +626,9 @@
this.GB_Hall.Controls.Add(this.NUD_HallType16);
this.GB_Hall.Controls.Add(this.NUD_HallType17);
this.GB_Hall.Controls.Add(this.L_SumHall);
this.GB_Hall.Location = new System.Drawing.Point(210, 6);
this.GB_Hall.Location = new System.Drawing.Point(210, 7);
this.GB_Hall.Name = "GB_Hall";
this.GB_Hall.Size = new System.Drawing.Size(157, 207);
this.GB_Hall.Size = new System.Drawing.Size(157, 224);
this.GB_Hall.TabIndex = 2;
this.GB_Hall.TabStop = false;
this.GB_Hall.Text = "Battle Hall ()";
@ -593,22 +641,22 @@
this.CB_Species.FormattingEnabled = true;
this.CB_Species.Items.AddRange(new object[] {
"0"});
this.CB_Species.Location = new System.Drawing.Point(6, 18);
this.CB_Species.Location = new System.Drawing.Point(6, 20);
this.CB_Species.Name = "CB_Species";
this.CB_Species.Size = new System.Drawing.Size(92, 20);
this.CB_Species.Size = new System.Drawing.Size(92, 21);
this.CB_Species.TabIndex = 0;
this.CB_Species.SelectedIndexChanged += new System.EventHandler(this.ChangeSpecies);
//
// NUD_HallStreaks
//
this.NUD_HallStreaks.Location = new System.Drawing.Point(104, 19);
this.NUD_HallStreaks.Location = new System.Drawing.Point(104, 21);
this.NUD_HallStreaks.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.NUD_HallStreaks.Name = "NUD_HallStreaks";
this.NUD_HallStreaks.Size = new System.Drawing.Size(47, 19);
this.NUD_HallStreaks.Size = new System.Drawing.Size(47, 20);
this.NUD_HallStreaks.TabIndex = 1;
this.NUD_HallStreaks.Value = new decimal(new int[] {
9999,
@ -620,9 +668,9 @@
// CHK_HallCurrent
//
this.CHK_HallCurrent.AutoSize = true;
this.CHK_HallCurrent.Location = new System.Drawing.Point(6, 44);
this.CHK_HallCurrent.Location = new System.Drawing.Point(6, 48);
this.CHK_HallCurrent.Name = "CHK_HallCurrent";
this.CHK_HallCurrent.Size = new System.Drawing.Size(64, 16);
this.CHK_HallCurrent.Size = new System.Drawing.Size(63, 17);
this.CHK_HallCurrent.TabIndex = 2;
this.CHK_HallCurrent.Text = "Current:";
this.CHK_HallCurrent.UseVisualStyleBackColor = true;
@ -630,14 +678,14 @@
//
// NUD_HallType01
//
this.NUD_HallType01.Location = new System.Drawing.Point(22, 66);
this.NUD_HallType01.Location = new System.Drawing.Point(22, 72);
this.NUD_HallType01.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType01.Name = "NUD_HallType01";
this.NUD_HallType01.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType01.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType01.TabIndex = 3;
this.NUD_HallType01.Value = new decimal(new int[] {
10,
@ -648,14 +696,14 @@
//
// NUD_HallType02
//
this.NUD_HallType02.Location = new System.Drawing.Point(22, 88);
this.NUD_HallType02.Location = new System.Drawing.Point(22, 95);
this.NUD_HallType02.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType02.Name = "NUD_HallType02";
this.NUD_HallType02.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType02.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType02.TabIndex = 4;
this.NUD_HallType02.Value = new decimal(new int[] {
10,
@ -666,14 +714,14 @@
//
// NUD_HallType03
//
this.NUD_HallType03.Location = new System.Drawing.Point(22, 110);
this.NUD_HallType03.Location = new System.Drawing.Point(22, 119);
this.NUD_HallType03.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType03.Name = "NUD_HallType03";
this.NUD_HallType03.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType03.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType03.TabIndex = 5;
this.NUD_HallType03.Value = new decimal(new int[] {
10,
@ -684,14 +732,14 @@
//
// NUD_HallType04
//
this.NUD_HallType04.Location = new System.Drawing.Point(22, 132);
this.NUD_HallType04.Location = new System.Drawing.Point(22, 143);
this.NUD_HallType04.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType04.Name = "NUD_HallType04";
this.NUD_HallType04.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType04.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType04.TabIndex = 6;
this.NUD_HallType04.Value = new decimal(new int[] {
10,
@ -702,14 +750,14 @@
//
// NUD_HallType05
//
this.NUD_HallType05.Location = new System.Drawing.Point(22, 154);
this.NUD_HallType05.Location = new System.Drawing.Point(22, 167);
this.NUD_HallType05.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType05.Name = "NUD_HallType05";
this.NUD_HallType05.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType05.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType05.TabIndex = 7;
this.NUD_HallType05.Value = new decimal(new int[] {
10,
@ -720,14 +768,14 @@
//
// NUD_HallType06
//
this.NUD_HallType06.Location = new System.Drawing.Point(22, 176);
this.NUD_HallType06.Location = new System.Drawing.Point(22, 191);
this.NUD_HallType06.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType06.Name = "NUD_HallType06";
this.NUD_HallType06.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType06.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType06.TabIndex = 8;
this.NUD_HallType06.Value = new decimal(new int[] {
10,
@ -738,14 +786,14 @@
//
// NUD_HallType07
//
this.NUD_HallType07.Location = new System.Drawing.Point(67, 66);
this.NUD_HallType07.Location = new System.Drawing.Point(67, 72);
this.NUD_HallType07.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType07.Name = "NUD_HallType07";
this.NUD_HallType07.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType07.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType07.TabIndex = 9;
this.NUD_HallType07.Value = new decimal(new int[] {
10,
@ -756,14 +804,14 @@
//
// NUD_HallType08
//
this.NUD_HallType08.Location = new System.Drawing.Point(67, 88);
this.NUD_HallType08.Location = new System.Drawing.Point(67, 95);
this.NUD_HallType08.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType08.Name = "NUD_HallType08";
this.NUD_HallType08.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType08.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType08.TabIndex = 10;
this.NUD_HallType08.Value = new decimal(new int[] {
10,
@ -774,14 +822,14 @@
//
// NUD_HallType09
//
this.NUD_HallType09.Location = new System.Drawing.Point(67, 110);
this.NUD_HallType09.Location = new System.Drawing.Point(67, 119);
this.NUD_HallType09.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType09.Name = "NUD_HallType09";
this.NUD_HallType09.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType09.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType09.TabIndex = 11;
this.NUD_HallType09.Value = new decimal(new int[] {
10,
@ -792,14 +840,14 @@
//
// NUD_HallType10
//
this.NUD_HallType10.Location = new System.Drawing.Point(67, 132);
this.NUD_HallType10.Location = new System.Drawing.Point(67, 143);
this.NUD_HallType10.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType10.Name = "NUD_HallType10";
this.NUD_HallType10.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType10.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType10.TabIndex = 12;
this.NUD_HallType10.Value = new decimal(new int[] {
10,
@ -810,14 +858,14 @@
//
// NUD_HallType11
//
this.NUD_HallType11.Location = new System.Drawing.Point(67, 154);
this.NUD_HallType11.Location = new System.Drawing.Point(67, 167);
this.NUD_HallType11.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType11.Name = "NUD_HallType11";
this.NUD_HallType11.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType11.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType11.TabIndex = 13;
this.NUD_HallType11.Value = new decimal(new int[] {
10,
@ -828,14 +876,14 @@
//
// NUD_HallType12
//
this.NUD_HallType12.Location = new System.Drawing.Point(67, 176);
this.NUD_HallType12.Location = new System.Drawing.Point(67, 191);
this.NUD_HallType12.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType12.Name = "NUD_HallType12";
this.NUD_HallType12.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType12.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType12.TabIndex = 14;
this.NUD_HallType12.Value = new decimal(new int[] {
10,
@ -846,14 +894,14 @@
//
// NUD_HallType13
//
this.NUD_HallType13.Location = new System.Drawing.Point(112, 66);
this.NUD_HallType13.Location = new System.Drawing.Point(112, 72);
this.NUD_HallType13.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType13.Name = "NUD_HallType13";
this.NUD_HallType13.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType13.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType13.TabIndex = 15;
this.NUD_HallType13.Value = new decimal(new int[] {
10,
@ -864,14 +912,14 @@
//
// NUD_HallType14
//
this.NUD_HallType14.Location = new System.Drawing.Point(112, 88);
this.NUD_HallType14.Location = new System.Drawing.Point(112, 95);
this.NUD_HallType14.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType14.Name = "NUD_HallType14";
this.NUD_HallType14.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType14.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType14.TabIndex = 16;
this.NUD_HallType14.Value = new decimal(new int[] {
10,
@ -882,14 +930,14 @@
//
// NUD_HallType15
//
this.NUD_HallType15.Location = new System.Drawing.Point(112, 110);
this.NUD_HallType15.Location = new System.Drawing.Point(112, 119);
this.NUD_HallType15.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType15.Name = "NUD_HallType15";
this.NUD_HallType15.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType15.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType15.TabIndex = 17;
this.NUD_HallType15.Value = new decimal(new int[] {
10,
@ -900,14 +948,14 @@
//
// NUD_HallType16
//
this.NUD_HallType16.Location = new System.Drawing.Point(112, 132);
this.NUD_HallType16.Location = new System.Drawing.Point(112, 143);
this.NUD_HallType16.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType16.Name = "NUD_HallType16";
this.NUD_HallType16.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType16.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType16.TabIndex = 18;
this.NUD_HallType16.Value = new decimal(new int[] {
10,
@ -918,14 +966,14 @@
//
// NUD_HallType17
//
this.NUD_HallType17.Location = new System.Drawing.Point(112, 154);
this.NUD_HallType17.Location = new System.Drawing.Point(112, 167);
this.NUD_HallType17.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.NUD_HallType17.Name = "NUD_HallType17";
this.NUD_HallType17.Size = new System.Drawing.Size(39, 19);
this.NUD_HallType17.Size = new System.Drawing.Size(39, 20);
this.NUD_HallType17.TabIndex = 19;
this.NUD_HallType17.Value = new decimal(new int[] {
10,
@ -936,9 +984,9 @@
//
// L_SumHall
//
this.L_SumHall.Location = new System.Drawing.Point(115, 176);
this.L_SumHall.Location = new System.Drawing.Point(115, 191);
this.L_SumHall.Name = "L_SumHall";
this.L_SumHall.Size = new System.Drawing.Size(36, 19);
this.L_SumHall.Size = new System.Drawing.Size(36, 21);
this.L_SumHall.TabIndex = 20;
this.L_SumHall.Text = "170";
this.L_SumHall.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
@ -949,16 +997,16 @@
this.GB_Castle.Controls.Add(this.NUD_CastleRankItem);
this.GB_Castle.Controls.Add(this.NUD_CastleRankInfo);
this.GB_Castle.Controls.Add(this.L_CastleRank01);
this.GB_Castle.Location = new System.Drawing.Point(210, 6);
this.GB_Castle.Location = new System.Drawing.Point(210, 7);
this.GB_Castle.Name = "GB_Castle";
this.GB_Castle.Size = new System.Drawing.Size(157, 69);
this.GB_Castle.Size = new System.Drawing.Size(157, 75);
this.GB_Castle.TabIndex = 3;
this.GB_Castle.TabStop = false;
this.GB_Castle.Text = "Battle Castle";
//
// NUD_CastleRankRcv
//
this.NUD_CastleRankRcv.Location = new System.Drawing.Point(22, 44);
this.NUD_CastleRankRcv.Location = new System.Drawing.Point(22, 48);
this.NUD_CastleRankRcv.Maximum = new decimal(new int[] {
3,
0,
@ -970,7 +1018,7 @@
0,
0});
this.NUD_CastleRankRcv.Name = "NUD_CastleRankRcv";
this.NUD_CastleRankRcv.Size = new System.Drawing.Size(39, 19);
this.NUD_CastleRankRcv.Size = new System.Drawing.Size(39, 20);
this.NUD_CastleRankRcv.TabIndex = 0;
this.NUD_CastleRankRcv.Value = new decimal(new int[] {
3,
@ -981,7 +1029,7 @@
//
// NUD_CastleRankItem
//
this.NUD_CastleRankItem.Location = new System.Drawing.Point(67, 44);
this.NUD_CastleRankItem.Location = new System.Drawing.Point(67, 48);
this.NUD_CastleRankItem.Maximum = new decimal(new int[] {
3,
0,
@ -993,7 +1041,7 @@
0,
0});
this.NUD_CastleRankItem.Name = "NUD_CastleRankItem";
this.NUD_CastleRankItem.Size = new System.Drawing.Size(39, 19);
this.NUD_CastleRankItem.Size = new System.Drawing.Size(39, 20);
this.NUD_CastleRankItem.TabIndex = 1;
this.NUD_CastleRankItem.Value = new decimal(new int[] {
3,
@ -1004,7 +1052,7 @@
//
// NUD_CastleRankInfo
//
this.NUD_CastleRankInfo.Location = new System.Drawing.Point(112, 44);
this.NUD_CastleRankInfo.Location = new System.Drawing.Point(112, 48);
this.NUD_CastleRankInfo.Maximum = new decimal(new int[] {
2,
0,
@ -1016,7 +1064,7 @@
0,
0});
this.NUD_CastleRankInfo.Name = "NUD_CastleRankInfo";
this.NUD_CastleRankInfo.Size = new System.Drawing.Size(39, 19);
this.NUD_CastleRankInfo.Size = new System.Drawing.Size(39, 20);
this.NUD_CastleRankInfo.TabIndex = 2;
this.NUD_CastleRankInfo.Value = new decimal(new int[] {
2,
@ -1027,44 +1075,18 @@
//
// L_CastleRank01
//
this.L_CastleRank01.Location = new System.Drawing.Point(6, 15);
this.L_CastleRank01.Location = new System.Drawing.Point(6, 16);
this.L_CastleRank01.Name = "L_CastleRank01";
this.L_CastleRank01.Size = new System.Drawing.Size(145, 23);
this.L_CastleRank01.Size = new System.Drawing.Size(145, 25);
this.L_CastleRank01.TabIndex = 3;
this.L_CastleRank01.Text = "Recovery / Item / Info";
this.L_CastleRank01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// NUD_UGFlags
//
this.NUD_UGFlags.Location = new System.Drawing.Point(109, 33);
this.NUD_UGFlags.Maximum = new decimal(new int[] {
999999,
0,
0,
0});
this.NUD_UGFlags.Name = "NUD_UGFlags";
this.NUD_UGFlags.Size = new System.Drawing.Size(61, 19);
this.NUD_UGFlags.TabIndex = 2;
this.NUD_UGFlags.Value = new decimal(new int[] {
999999,
0,
0,
0});
//
// L_UGFlags
//
this.L_UGFlags.Location = new System.Drawing.Point(3, 30);
this.L_UGFlags.Name = "L_UGFlags";
this.L_UGFlags.Size = new System.Drawing.Size(100, 23);
this.L_UGFlags.TabIndex = 7;
this.L_UGFlags.Text = "Flags Obtained";
this.L_UGFlags.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// SAV_Misc4
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(405, 298);
this.ClientSize = new System.Drawing.Size(405, 323);
this.Controls.Add(this.B_Cancel);
this.Controls.Add(this.B_Save);
this.Controls.Add(this.TC_Misc);
@ -1074,10 +1096,11 @@
this.Text = "Misc Editor";
this.TC_Misc.ResumeLayout(false);
this.TAB_Main.ResumeLayout(false);
this.TAB_Main.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.NUD_UGFlags)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_BP)).EndInit();
this.GB_FlyDest.ResumeLayout(false);
this.GB_Poketch.ResumeLayout(false);
this.GB_Poketch.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.PB_DotArtist)).EndInit();
this.TAB_BF.ResumeLayout(false);
this.GB_Prints.ResumeLayout(false);
@ -1111,7 +1134,6 @@
((System.ComponentModel.ISupportInitialize)(this.NUD_CastleRankRcv)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_CastleRankItem)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_CastleRankInfo)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.NUD_UGFlags)).EndInit();
this.ResumeLayout(false);
}
@ -1182,5 +1204,7 @@
private System.Windows.Forms.Label L_CastleRank01;
private System.Windows.Forms.Label L_UGFlags;
private System.Windows.Forms.NumericUpDown NUD_UGFlags;
private System.Windows.Forms.ComboBox CB_CurrentApp;
private System.Windows.Forms.Label L_CurrentApp;
}
}

View file

@ -186,6 +186,8 @@ namespace PKHeX.WinForms
"16 Move Tester", "17 Calendar", "18 Dot Artist", "19 Roulette", "20 Trainer Counter",
"21 Kitchen Timer", "22 Color Changer", "23 Matchup Checker", "24 Stopwatch", "25 Alarm Clock"
};
CB_CurrentApp.Items.AddRange(new[] {"None"}.Concat(PoketchTitle).ToArray());
CB_CurrentApp.SelectedIndex = SAV.CurrentPokeTchApp;
oldPoketchVal = new bool[PoketchTitle.Length];
CLB_Poketch.Items.Clear();
for (int i = 0; i < PoketchTitle.Length; i++)
@ -225,6 +227,7 @@ namespace PKHeX.WinForms
SAV.Data[ofsPoketch - 1] = 0;
DotArtistByte.CopyTo(SAV.Data, ofsPoketch + 0x27);
SAV.Data[ofsPoketch - 3] |= 0x04; // "Touch!"
SAV.CurrentPokeTchApp = CB_CurrentApp.SelectedIndex;
}
private void SetPictureBoxFromFlags(byte[] inp)