namespace NHSE.WinForms { public partial class Editor { /// /// 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.components = new System.ComponentModel.Container(); this.Menu_Editor = new System.Windows.Forms.MenuStrip(); this.Menu_File = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_Open = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_Save = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_Tools = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_DumpDecrypted = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_VerifyHashes = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_LoadDecrypted = new System.Windows.Forms.ToolStripMenuItem(); this.Menu_RAMEdit = new System.Windows.Forms.ToolStripMenuItem(); this.TC_Editors = new System.Windows.Forms.TabControl(); this.Tab_Players = new System.Windows.Forms.TabPage(); this.B_EditPlayerFlags = new System.Windows.Forms.Button(); this.B_EditActivities = new System.Windows.Forms.Button(); this.B_EditPlayerReceivedItems = new System.Windows.Forms.Button(); this.B_EditPlayerStorage = new System.Windows.Forms.Button(); this.B_EditPlayerRecipes = new System.Windows.Forms.Button(); this.B_EditPlayerItems = new System.Windows.Forms.Button(); this.L_Wallet = new System.Windows.Forms.Label(); this.NUD_Wallet = new System.Windows.Forms.NumericUpDown(); this.L_NookMiles = new System.Windows.Forms.Label(); this.NUD_NookMiles = new System.Windows.Forms.NumericUpDown(); this.L_BankBells = new System.Windows.Forms.Label(); this.NUD_BankBells = new System.Windows.Forms.NumericUpDown(); this.TB_TownName = new System.Windows.Forms.TextBox(); this.L_TownName = new System.Windows.Forms.Label(); this.TB_Name = new System.Windows.Forms.TextBox(); this.L_PlayerName = new System.Windows.Forms.Label(); this.CB_Players = new System.Windows.Forms.ComboBox(); this.PB_Player = new System.Windows.Forms.PictureBox(); this.CM_Picture = new System.Windows.Forms.ContextMenuStrip(this.components); this.Menu_SavePNG = new System.Windows.Forms.ToolStripMenuItem(); this.Tab_Villagers = new System.Windows.Forms.TabPage(); this.B_EditFurniture = new System.Windows.Forms.Button(); this.B_LoadVillager = new System.Windows.Forms.Button(); this.B_DumpVillager = new System.Windows.Forms.Button(); this.L_ExternalName = new System.Windows.Forms.Label(); this.L_InternalName = new System.Windows.Forms.Label(); this.TB_Catchphrase = new System.Windows.Forms.TextBox(); this.L_Catchphrase = new System.Windows.Forms.Label(); this.L_Personality = new System.Windows.Forms.Label(); this.NUD_Variant = new System.Windows.Forms.NumericUpDown(); this.L_Variant = new System.Windows.Forms.Label(); this.NUD_Species = new System.Windows.Forms.NumericUpDown(); this.L_Species = new System.Windows.Forms.Label(); this.CB_Personality = new System.Windows.Forms.ComboBox(); this.PB_Villager = new System.Windows.Forms.PictureBox(); this.L_VillagerID = new System.Windows.Forms.Label(); this.NUD_Villager = new System.Windows.Forms.NumericUpDown(); this.Tab_Designs = new System.Windows.Forms.TabPage(); this.PB_Palette = new System.Windows.Forms.PictureBox(); this.L_PatternName = new System.Windows.Forms.Label(); this.B_LoadDesign = new System.Windows.Forms.Button(); this.B_DumpDesign = new System.Windows.Forms.Button(); this.L_PatternIndex = new System.Windows.Forms.Label(); this.NUD_PatternIndex = new System.Windows.Forms.NumericUpDown(); this.PB_Pattern = new System.Windows.Forms.PictureBox(); this.Tab_Map = new System.Windows.Forms.TabPage(); this.B_EditTerrain = new System.Windows.Forms.Button(); this.B_EditAcres = new System.Windows.Forms.Button(); this.B_EditTurnipExchange = new System.Windows.Forms.Button(); this.B_EditBuildings = new System.Windows.Forms.Button(); this.B_RecycleBin = new System.Windows.Forms.Button(); this.B_EditFieldItems = new System.Windows.Forms.Button(); this.Menu_Editor.SuspendLayout(); this.TC_Editors.SuspendLayout(); this.Tab_Players.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Wallet)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_NookMiles)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_BankBells)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PB_Player)).BeginInit(); this.CM_Picture.SuspendLayout(); this.Tab_Villagers.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Variant)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Species)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PB_Villager)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Villager)).BeginInit(); this.Tab_Designs.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PB_Palette)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_PatternIndex)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PB_Pattern)).BeginInit(); this.Tab_Map.SuspendLayout(); this.SuspendLayout(); // // Menu_Editor // this.Menu_Editor.BackColor = System.Drawing.SystemColors.Control; this.Menu_Editor.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Menu_File, this.Menu_Tools}); this.Menu_Editor.Location = new System.Drawing.Point(0, 0); this.Menu_Editor.Name = "Menu_Editor"; this.Menu_Editor.Size = new System.Drawing.Size(404, 24); this.Menu_Editor.TabIndex = 0; this.Menu_Editor.Text = "menuStrip1"; // // Menu_File // this.Menu_File.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Menu_Open, this.Menu_Save}); this.Menu_File.Name = "Menu_File"; this.Menu_File.Size = new System.Drawing.Size(37, 20); this.Menu_File.Text = "File"; // // Menu_Open // this.Menu_Open.Name = "Menu_Open"; this.Menu_Open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.Menu_Open.Size = new System.Drawing.Size(180, 22); this.Menu_Open.Text = "Open"; this.Menu_Open.Click += new System.EventHandler(this.Menu_Open_Click); // // Menu_Save // this.Menu_Save.Name = "Menu_Save"; this.Menu_Save.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.Menu_Save.Size = new System.Drawing.Size(180, 22); this.Menu_Save.Text = "Save"; this.Menu_Save.Click += new System.EventHandler(this.Menu_Save_Click); // // Menu_Tools // this.Menu_Tools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Menu_DumpDecrypted, this.Menu_VerifyHashes, this.Menu_LoadDecrypted, this.Menu_RAMEdit}); this.Menu_Tools.Name = "Menu_Tools"; this.Menu_Tools.Size = new System.Drawing.Size(46, 20); this.Menu_Tools.Text = "Tools"; // // Menu_DumpDecrypted // this.Menu_DumpDecrypted.Name = "Menu_DumpDecrypted"; this.Menu_DumpDecrypted.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D))); this.Menu_DumpDecrypted.Size = new System.Drawing.Size(206, 22); this.Menu_DumpDecrypted.Text = "Dump Decrypted"; this.Menu_DumpDecrypted.Click += new System.EventHandler(this.Menu_DumpDecrypted_Click); // // Menu_VerifyHashes // this.Menu_VerifyHashes.Name = "Menu_VerifyHashes"; this.Menu_VerifyHashes.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H))); this.Menu_VerifyHashes.Size = new System.Drawing.Size(206, 22); this.Menu_VerifyHashes.Text = "Verify Hashes"; this.Menu_VerifyHashes.Click += new System.EventHandler(this.Menu_VerifyHashes_Click); // // Menu_LoadDecrypted // this.Menu_LoadDecrypted.Name = "Menu_LoadDecrypted"; this.Menu_LoadDecrypted.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L))); this.Menu_LoadDecrypted.Size = new System.Drawing.Size(206, 22); this.Menu_LoadDecrypted.Text = "Load Decrypted"; this.Menu_LoadDecrypted.Click += new System.EventHandler(this.Menu_LoadDecrypted_Click); // // Menu_RAMEdit // this.Menu_RAMEdit.Name = "Menu_RAMEdit"; this.Menu_RAMEdit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H))); this.Menu_RAMEdit.Size = new System.Drawing.Size(206, 22); this.Menu_RAMEdit.Text = "RAM Edit"; this.Menu_RAMEdit.Click += new System.EventHandler(this.Menu_RAMEdit_Click); // // TC_Editors // this.TC_Editors.Controls.Add(this.Tab_Players); this.TC_Editors.Controls.Add(this.Tab_Villagers); this.TC_Editors.Controls.Add(this.Tab_Designs); this.TC_Editors.Controls.Add(this.Tab_Map); this.TC_Editors.Dock = System.Windows.Forms.DockStyle.Fill; this.TC_Editors.Location = new System.Drawing.Point(0, 24); this.TC_Editors.Name = "TC_Editors"; this.TC_Editors.SelectedIndex = 0; this.TC_Editors.Size = new System.Drawing.Size(404, 237); this.TC_Editors.TabIndex = 1; // // Tab_Players // this.Tab_Players.Controls.Add(this.B_EditPlayerFlags); this.Tab_Players.Controls.Add(this.B_EditActivities); this.Tab_Players.Controls.Add(this.B_EditPlayerReceivedItems); this.Tab_Players.Controls.Add(this.B_EditPlayerStorage); this.Tab_Players.Controls.Add(this.B_EditPlayerRecipes); this.Tab_Players.Controls.Add(this.B_EditPlayerItems); this.Tab_Players.Controls.Add(this.L_Wallet); this.Tab_Players.Controls.Add(this.NUD_Wallet); this.Tab_Players.Controls.Add(this.L_NookMiles); this.Tab_Players.Controls.Add(this.NUD_NookMiles); this.Tab_Players.Controls.Add(this.L_BankBells); this.Tab_Players.Controls.Add(this.NUD_BankBells); this.Tab_Players.Controls.Add(this.TB_TownName); this.Tab_Players.Controls.Add(this.L_TownName); this.Tab_Players.Controls.Add(this.TB_Name); this.Tab_Players.Controls.Add(this.L_PlayerName); this.Tab_Players.Controls.Add(this.CB_Players); this.Tab_Players.Controls.Add(this.PB_Player); this.Tab_Players.Location = new System.Drawing.Point(4, 22); this.Tab_Players.Name = "Tab_Players"; this.Tab_Players.Padding = new System.Windows.Forms.Padding(3); this.Tab_Players.Size = new System.Drawing.Size(396, 211); this.Tab_Players.TabIndex = 1; this.Tab_Players.Text = "Players"; this.Tab_Players.UseVisualStyleBackColor = true; // // B_EditPlayerFlags // this.B_EditPlayerFlags.Location = new System.Drawing.Point(202, 122); this.B_EditPlayerFlags.Name = "B_EditPlayerFlags"; this.B_EditPlayerFlags.Size = new System.Drawing.Size(92, 40); this.B_EditPlayerFlags.TabIndex = 17; this.B_EditPlayerFlags.Text = "Edit Flags"; this.B_EditPlayerFlags.UseVisualStyleBackColor = true; this.B_EditPlayerFlags.Click += new System.EventHandler(this.B_EditPlayerFlags_Click); // // B_EditActivities // this.B_EditActivities.Location = new System.Drawing.Point(301, 122); this.B_EditActivities.Name = "B_EditActivities"; this.B_EditActivities.Size = new System.Drawing.Size(92, 40); this.B_EditActivities.TabIndex = 16; this.B_EditActivities.Text = "Edit Activities"; this.B_EditActivities.UseVisualStyleBackColor = true; this.B_EditActivities.Click += new System.EventHandler(this.B_EditActivities_Click); // // B_EditPlayerReceivedItems // this.B_EditPlayerReceivedItems.Location = new System.Drawing.Point(300, 168); this.B_EditPlayerReceivedItems.Name = "B_EditPlayerReceivedItems"; this.B_EditPlayerReceivedItems.Size = new System.Drawing.Size(92, 40); this.B_EditPlayerReceivedItems.TabIndex = 15; this.B_EditPlayerReceivedItems.Text = "Edit Received Items"; this.B_EditPlayerReceivedItems.UseVisualStyleBackColor = true; this.B_EditPlayerReceivedItems.Click += new System.EventHandler(this.B_EditPlayerReceivedItems_Click); // // B_EditPlayerStorage // this.B_EditPlayerStorage.Location = new System.Drawing.Point(104, 168); this.B_EditPlayerStorage.Name = "B_EditPlayerStorage"; this.B_EditPlayerStorage.Size = new System.Drawing.Size(92, 40); this.B_EditPlayerStorage.TabIndex = 14; this.B_EditPlayerStorage.Text = "Edit Storage"; this.B_EditPlayerStorage.UseVisualStyleBackColor = true; this.B_EditPlayerStorage.Click += new System.EventHandler(this.B_Storage_Click); // // B_EditPlayerRecipes // this.B_EditPlayerRecipes.Location = new System.Drawing.Point(202, 168); this.B_EditPlayerRecipes.Name = "B_EditPlayerRecipes"; this.B_EditPlayerRecipes.Size = new System.Drawing.Size(92, 40); this.B_EditPlayerRecipes.TabIndex = 13; this.B_EditPlayerRecipes.Text = "Edit Recipes"; this.B_EditPlayerRecipes.UseVisualStyleBackColor = true; this.B_EditPlayerRecipes.Click += new System.EventHandler(this.B_EditPlayerRecipes_Click); // // B_EditPlayerItems // this.B_EditPlayerItems.Location = new System.Drawing.Point(6, 168); this.B_EditPlayerItems.Name = "B_EditPlayerItems"; this.B_EditPlayerItems.Size = new System.Drawing.Size(92, 40); this.B_EditPlayerItems.TabIndex = 12; this.B_EditPlayerItems.Text = "Edit Items"; this.B_EditPlayerItems.UseVisualStyleBackColor = true; this.B_EditPlayerItems.Click += new System.EventHandler(this.B_EditPlayerItems_Click); // // L_Wallet // this.L_Wallet.Location = new System.Drawing.Point(142, 51); this.L_Wallet.Name = "L_Wallet"; this.L_Wallet.Size = new System.Drawing.Size(84, 20); this.L_Wallet.TabIndex = 11; this.L_Wallet.Text = "Wallet:"; this.L_Wallet.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_Wallet // this.NUD_Wallet.Location = new System.Drawing.Point(232, 51); this.NUD_Wallet.Maximum = new decimal(new int[] { 2147483647, 0, 0, 0}); this.NUD_Wallet.Name = "NUD_Wallet"; this.NUD_Wallet.Size = new System.Drawing.Size(100, 20); this.NUD_Wallet.TabIndex = 10; // // L_NookMiles // this.L_NookMiles.Location = new System.Drawing.Point(142, 95); this.L_NookMiles.Name = "L_NookMiles"; this.L_NookMiles.Size = new System.Drawing.Size(84, 20); this.L_NookMiles.TabIndex = 9; this.L_NookMiles.Text = "Nook Miles:"; this.L_NookMiles.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_NookMiles // this.NUD_NookMiles.Location = new System.Drawing.Point(232, 95); this.NUD_NookMiles.Maximum = new decimal(new int[] { 2147483647, 0, 0, 0}); this.NUD_NookMiles.Name = "NUD_NookMiles"; this.NUD_NookMiles.Size = new System.Drawing.Size(100, 20); this.NUD_NookMiles.TabIndex = 8; // // L_BankBells // this.L_BankBells.Location = new System.Drawing.Point(142, 73); this.L_BankBells.Name = "L_BankBells"; this.L_BankBells.Size = new System.Drawing.Size(84, 20); this.L_BankBells.TabIndex = 7; this.L_BankBells.Text = "Bank Bells:"; this.L_BankBells.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_BankBells // this.NUD_BankBells.Location = new System.Drawing.Point(232, 73); this.NUD_BankBells.Maximum = new decimal(new int[] { 2147483647, 0, 0, 0}); this.NUD_BankBells.Name = "NUD_BankBells"; this.NUD_BankBells.Size = new System.Drawing.Size(100, 20); this.NUD_BankBells.TabIndex = 6; // // TB_TownName // this.TB_TownName.Location = new System.Drawing.Point(232, 29); this.TB_TownName.Name = "TB_TownName"; this.TB_TownName.Size = new System.Drawing.Size(100, 20); this.TB_TownName.TabIndex = 5; // // L_TownName // this.L_TownName.Location = new System.Drawing.Point(142, 29); this.L_TownName.Name = "L_TownName"; this.L_TownName.Size = new System.Drawing.Size(84, 20); this.L_TownName.TabIndex = 4; this.L_TownName.Text = "Town Name:"; this.L_TownName.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // TB_Name // this.TB_Name.Location = new System.Drawing.Point(232, 7); this.TB_Name.Name = "TB_Name"; this.TB_Name.Size = new System.Drawing.Size(100, 20); this.TB_Name.TabIndex = 3; // // L_PlayerName // this.L_PlayerName.Location = new System.Drawing.Point(142, 7); this.L_PlayerName.Name = "L_PlayerName"; this.L_PlayerName.Size = new System.Drawing.Size(84, 20); this.L_PlayerName.TabIndex = 2; this.L_PlayerName.Text = "Player Name:"; this.L_PlayerName.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // CB_Players // this.CB_Players.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CB_Players.FormattingEnabled = true; this.CB_Players.Location = new System.Drawing.Point(6, 6); this.CB_Players.Name = "CB_Players"; this.CB_Players.Size = new System.Drawing.Size(130, 21); this.CB_Players.TabIndex = 1; this.CB_Players.SelectedIndexChanged += new System.EventHandler(this.LoadPlayer); // // PB_Player // this.PB_Player.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.PB_Player.ContextMenuStrip = this.CM_Picture; this.PB_Player.Location = new System.Drawing.Point(6, 33); this.PB_Player.Name = "PB_Player"; this.PB_Player.Size = new System.Drawing.Size(130, 130); this.PB_Player.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.PB_Player.TabIndex = 0; this.PB_Player.TabStop = false; // // CM_Picture // this.CM_Picture.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.Menu_SavePNG}); this.CM_Picture.Name = "CM_Picture"; this.CM_Picture.ShowImageMargin = false; this.CM_Picture.Size = new System.Drawing.Size(101, 26); // // Menu_SavePNG // this.Menu_SavePNG.Name = "Menu_SavePNG"; this.Menu_SavePNG.Size = new System.Drawing.Size(100, 22); this.Menu_SavePNG.Text = "Save .png"; this.Menu_SavePNG.Click += new System.EventHandler(this.Menu_SavePNG_Click); // // Tab_Villagers // this.Tab_Villagers.Controls.Add(this.B_EditFurniture); this.Tab_Villagers.Controls.Add(this.B_LoadVillager); this.Tab_Villagers.Controls.Add(this.B_DumpVillager); this.Tab_Villagers.Controls.Add(this.L_ExternalName); this.Tab_Villagers.Controls.Add(this.L_InternalName); this.Tab_Villagers.Controls.Add(this.TB_Catchphrase); this.Tab_Villagers.Controls.Add(this.L_Catchphrase); this.Tab_Villagers.Controls.Add(this.L_Personality); this.Tab_Villagers.Controls.Add(this.NUD_Variant); this.Tab_Villagers.Controls.Add(this.L_Variant); this.Tab_Villagers.Controls.Add(this.NUD_Species); this.Tab_Villagers.Controls.Add(this.L_Species); this.Tab_Villagers.Controls.Add(this.CB_Personality); this.Tab_Villagers.Controls.Add(this.PB_Villager); this.Tab_Villagers.Controls.Add(this.L_VillagerID); this.Tab_Villagers.Controls.Add(this.NUD_Villager); this.Tab_Villagers.Location = new System.Drawing.Point(4, 22); this.Tab_Villagers.Name = "Tab_Villagers"; this.Tab_Villagers.Padding = new System.Windows.Forms.Padding(3); this.Tab_Villagers.Size = new System.Drawing.Size(396, 211); this.Tab_Villagers.TabIndex = 0; this.Tab_Villagers.Text = "Villagers"; this.Tab_Villagers.UseVisualStyleBackColor = true; // // B_EditFurniture // this.B_EditFurniture.Location = new System.Drawing.Point(202, 168); this.B_EditFurniture.Name = "B_EditFurniture"; this.B_EditFurniture.Size = new System.Drawing.Size(92, 40); this.B_EditFurniture.TabIndex = 26; this.B_EditFurniture.Text = "Edit Furniture"; this.B_EditFurniture.UseVisualStyleBackColor = true; this.B_EditFurniture.Click += new System.EventHandler(this.B_EditFurniture_Click); // // B_LoadVillager // this.B_LoadVillager.Location = new System.Drawing.Point(104, 168); this.B_LoadVillager.Name = "B_LoadVillager"; this.B_LoadVillager.Size = new System.Drawing.Size(92, 40); this.B_LoadVillager.TabIndex = 25; this.B_LoadVillager.Text = "Load Villager"; this.B_LoadVillager.UseVisualStyleBackColor = true; this.B_LoadVillager.Click += new System.EventHandler(this.B_LoadVillager_Click); // // B_DumpVillager // this.B_DumpVillager.Location = new System.Drawing.Point(6, 168); this.B_DumpVillager.Name = "B_DumpVillager"; this.B_DumpVillager.Size = new System.Drawing.Size(92, 40); this.B_DumpVillager.TabIndex = 24; this.B_DumpVillager.Text = "Dump Villager"; this.B_DumpVillager.UseVisualStyleBackColor = true; this.B_DumpVillager.Click += new System.EventHandler(this.B_DumpVillager_Click); // // L_ExternalName // this.L_ExternalName.AutoSize = true; this.L_ExternalName.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.L_ExternalName.Location = new System.Drawing.Point(275, 11); this.L_ExternalName.Name = "L_ExternalName"; this.L_ExternalName.Size = new System.Drawing.Size(91, 14); this.L_ExternalName.TabIndex = 23; this.L_ExternalName.Text = "externalName"; // // L_InternalName // this.L_InternalName.AutoSize = true; this.L_InternalName.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.L_InternalName.Location = new System.Drawing.Point(275, 31); this.L_InternalName.Name = "L_InternalName"; this.L_InternalName.Size = new System.Drawing.Size(91, 14); this.L_InternalName.TabIndex = 22; this.L_InternalName.Text = "internalName"; // // TB_Catchphrase // this.TB_Catchphrase.Location = new System.Drawing.Point(232, 73); this.TB_Catchphrase.Name = "TB_Catchphrase"; this.TB_Catchphrase.Size = new System.Drawing.Size(100, 20); this.TB_Catchphrase.TabIndex = 21; // // L_Catchphrase // this.L_Catchphrase.Location = new System.Drawing.Point(142, 73); this.L_Catchphrase.Name = "L_Catchphrase"; this.L_Catchphrase.Size = new System.Drawing.Size(84, 20); this.L_Catchphrase.TabIndex = 20; this.L_Catchphrase.Text = "Catchphrase:"; this.L_Catchphrase.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // L_Personality // this.L_Personality.Location = new System.Drawing.Point(142, 51); this.L_Personality.Name = "L_Personality"; this.L_Personality.Size = new System.Drawing.Size(84, 20); this.L_Personality.TabIndex = 19; this.L_Personality.Text = "Personality:"; this.L_Personality.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_Variant // this.NUD_Variant.Location = new System.Drawing.Point(232, 29); this.NUD_Variant.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.NUD_Variant.Name = "NUD_Variant"; this.NUD_Variant.Size = new System.Drawing.Size(37, 20); this.NUD_Variant.TabIndex = 18; this.NUD_Variant.ValueChanged += new System.EventHandler(this.ChangeVillager); // // L_Variant // this.L_Variant.Location = new System.Drawing.Point(142, 29); this.L_Variant.Name = "L_Variant"; this.L_Variant.Size = new System.Drawing.Size(84, 20); this.L_Variant.TabIndex = 17; this.L_Variant.Text = "Variant:"; this.L_Variant.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_Species // this.NUD_Species.Location = new System.Drawing.Point(232, 7); this.NUD_Species.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.NUD_Species.Name = "NUD_Species"; this.NUD_Species.Size = new System.Drawing.Size(37, 20); this.NUD_Species.TabIndex = 16; this.NUD_Species.ValueChanged += new System.EventHandler(this.ChangeVillager); // // L_Species // this.L_Species.Location = new System.Drawing.Point(142, 7); this.L_Species.Name = "L_Species"; this.L_Species.Size = new System.Drawing.Size(84, 20); this.L_Species.TabIndex = 15; this.L_Species.Text = "Species:"; this.L_Species.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // CB_Personality // this.CB_Personality.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CB_Personality.FormattingEnabled = true; this.CB_Personality.Location = new System.Drawing.Point(232, 51); this.CB_Personality.Name = "CB_Personality"; this.CB_Personality.Size = new System.Drawing.Size(100, 21); this.CB_Personality.TabIndex = 14; // // PB_Villager // this.PB_Villager.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.PB_Villager.ContextMenuStrip = this.CM_Picture; this.PB_Villager.Location = new System.Drawing.Point(6, 33); this.PB_Villager.Name = "PB_Villager"; this.PB_Villager.Size = new System.Drawing.Size(130, 130); this.PB_Villager.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.PB_Villager.TabIndex = 13; this.PB_Villager.TabStop = false; // // L_VillagerID // this.L_VillagerID.Location = new System.Drawing.Point(6, 6); this.L_VillagerID.Name = "L_VillagerID"; this.L_VillagerID.Size = new System.Drawing.Size(87, 20); this.L_VillagerID.TabIndex = 12; this.L_VillagerID.Text = "Villager Index:"; this.L_VillagerID.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_Villager // this.NUD_Villager.Location = new System.Drawing.Point(99, 6); this.NUD_Villager.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.NUD_Villager.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.NUD_Villager.Name = "NUD_Villager"; this.NUD_Villager.Size = new System.Drawing.Size(37, 20); this.NUD_Villager.TabIndex = 0; this.NUD_Villager.Value = new decimal(new int[] { 1, 0, 0, 0}); this.NUD_Villager.ValueChanged += new System.EventHandler(this.LoadVillager); // // Tab_Designs // this.Tab_Designs.Controls.Add(this.PB_Palette); this.Tab_Designs.Controls.Add(this.L_PatternName); this.Tab_Designs.Controls.Add(this.B_LoadDesign); this.Tab_Designs.Controls.Add(this.B_DumpDesign); this.Tab_Designs.Controls.Add(this.L_PatternIndex); this.Tab_Designs.Controls.Add(this.NUD_PatternIndex); this.Tab_Designs.Controls.Add(this.PB_Pattern); this.Tab_Designs.Location = new System.Drawing.Point(4, 22); this.Tab_Designs.Name = "Tab_Designs"; this.Tab_Designs.Padding = new System.Windows.Forms.Padding(3); this.Tab_Designs.Size = new System.Drawing.Size(396, 211); this.Tab_Designs.TabIndex = 3; this.Tab_Designs.Text = "Designs"; this.Tab_Designs.UseVisualStyleBackColor = true; // // PB_Palette // this.PB_Palette.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.PB_Palette.ContextMenuStrip = this.CM_Picture; this.PB_Palette.Location = new System.Drawing.Point(145, 33); this.PB_Palette.Name = "PB_Palette"; this.PB_Palette.Size = new System.Drawing.Size(152, 12); this.PB_Palette.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.PB_Palette.TabIndex = 29; this.PB_Palette.TabStop = false; // // L_PatternName // this.L_PatternName.AutoSize = true; this.L_PatternName.Location = new System.Drawing.Point(142, 49); this.L_PatternName.Name = "L_PatternName"; this.L_PatternName.Size = new System.Drawing.Size(73, 13); this.L_PatternName.TabIndex = 28; this.L_PatternName.Text = "*PatternName"; // // B_LoadDesign // this.B_LoadDesign.Location = new System.Drawing.Point(104, 168); this.B_LoadDesign.Name = "B_LoadDesign"; this.B_LoadDesign.Size = new System.Drawing.Size(92, 40); this.B_LoadDesign.TabIndex = 27; this.B_LoadDesign.Text = "Load Design"; this.B_LoadDesign.UseVisualStyleBackColor = true; this.B_LoadDesign.Click += new System.EventHandler(this.B_LoadDesign_Click); // // B_DumpDesign // this.B_DumpDesign.Location = new System.Drawing.Point(6, 168); this.B_DumpDesign.Name = "B_DumpDesign"; this.B_DumpDesign.Size = new System.Drawing.Size(92, 40); this.B_DumpDesign.TabIndex = 26; this.B_DumpDesign.Text = "Dump Design"; this.B_DumpDesign.UseVisualStyleBackColor = true; this.B_DumpDesign.Click += new System.EventHandler(this.B_DumpDesign_Click); // // L_PatternIndex // this.L_PatternIndex.Location = new System.Drawing.Point(6, 6); this.L_PatternIndex.Name = "L_PatternIndex"; this.L_PatternIndex.Size = new System.Drawing.Size(87, 20); this.L_PatternIndex.TabIndex = 17; this.L_PatternIndex.Text = "Design Index:"; this.L_PatternIndex.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // NUD_PatternIndex // this.NUD_PatternIndex.Location = new System.Drawing.Point(99, 6); this.NUD_PatternIndex.Maximum = new decimal(new int[] { 50, 0, 0, 0}); this.NUD_PatternIndex.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.NUD_PatternIndex.Name = "NUD_PatternIndex"; this.NUD_PatternIndex.Size = new System.Drawing.Size(37, 20); this.NUD_PatternIndex.TabIndex = 16; this.NUD_PatternIndex.Value = new decimal(new int[] { 1, 0, 0, 0}); this.NUD_PatternIndex.ValueChanged += new System.EventHandler(this.LoadPattern); // // PB_Pattern // this.PB_Pattern.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.PB_Pattern.ContextMenuStrip = this.CM_Picture; this.PB_Pattern.Location = new System.Drawing.Point(6, 33); this.PB_Pattern.Name = "PB_Pattern"; this.PB_Pattern.Size = new System.Drawing.Size(130, 130); this.PB_Pattern.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.PB_Pattern.TabIndex = 15; this.PB_Pattern.TabStop = false; this.PB_Pattern.MouseEnter += new System.EventHandler(this.PB_Pattern_MouseEnter); this.PB_Pattern.MouseLeave += new System.EventHandler(this.PB_Pattern_MouseLeave); // // Tab_Map // this.Tab_Map.Controls.Add(this.B_EditFieldItems); this.Tab_Map.Controls.Add(this.B_EditTerrain); this.Tab_Map.Controls.Add(this.B_EditAcres); this.Tab_Map.Controls.Add(this.B_EditTurnipExchange); this.Tab_Map.Controls.Add(this.B_EditBuildings); this.Tab_Map.Controls.Add(this.B_RecycleBin); this.Tab_Map.Location = new System.Drawing.Point(4, 22); this.Tab_Map.Name = "Tab_Map"; this.Tab_Map.Padding = new System.Windows.Forms.Padding(3); this.Tab_Map.Size = new System.Drawing.Size(396, 211); this.Tab_Map.TabIndex = 2; this.Tab_Map.Text = "Map"; this.Tab_Map.UseVisualStyleBackColor = true; // // B_EditTerrain // this.B_EditTerrain.Location = new System.Drawing.Point(300, 122); this.B_EditTerrain.Name = "B_EditTerrain"; this.B_EditTerrain.Size = new System.Drawing.Size(92, 40); this.B_EditTerrain.TabIndex = 17; this.B_EditTerrain.Text = "Edit Terrain"; this.B_EditTerrain.UseVisualStyleBackColor = true; this.B_EditTerrain.Click += new System.EventHandler(this.B_EditTerrain_Click); // // B_EditAcres // this.B_EditAcres.Location = new System.Drawing.Point(300, 168); this.B_EditAcres.Name = "B_EditAcres"; this.B_EditAcres.Size = new System.Drawing.Size(92, 40); this.B_EditAcres.TabIndex = 16; this.B_EditAcres.Text = "Edit Acres"; this.B_EditAcres.UseVisualStyleBackColor = true; this.B_EditAcres.Click += new System.EventHandler(this.B_EditAcres_Click); // // B_EditTurnipExchange // this.B_EditTurnipExchange.Location = new System.Drawing.Point(6, 122); this.B_EditTurnipExchange.Name = "B_EditTurnipExchange"; this.B_EditTurnipExchange.Size = new System.Drawing.Size(92, 40); this.B_EditTurnipExchange.TabIndex = 15; this.B_EditTurnipExchange.Text = "Edit Turnip Exchange"; this.B_EditTurnipExchange.UseVisualStyleBackColor = true; this.B_EditTurnipExchange.Click += new System.EventHandler(this.B_EditTurnipExchange_Click); // // B_EditBuildings // this.B_EditBuildings.Location = new System.Drawing.Point(300, 76); this.B_EditBuildings.Name = "B_EditBuildings"; this.B_EditBuildings.Size = new System.Drawing.Size(92, 40); this.B_EditBuildings.TabIndex = 14; this.B_EditBuildings.Text = "Edit Buildings"; this.B_EditBuildings.UseVisualStyleBackColor = true; this.B_EditBuildings.Click += new System.EventHandler(this.B_EditBuildings_Click); // // B_RecycleBin // this.B_RecycleBin.Location = new System.Drawing.Point(6, 168); this.B_RecycleBin.Name = "B_RecycleBin"; this.B_RecycleBin.Size = new System.Drawing.Size(92, 40); this.B_RecycleBin.TabIndex = 13; this.B_RecycleBin.Text = "Edit Recycle Bin"; this.B_RecycleBin.UseVisualStyleBackColor = true; this.B_RecycleBin.Click += new System.EventHandler(this.B_RecycleBin_Click); // // B_EditFieldItems // this.B_EditFieldItems.Location = new System.Drawing.Point(202, 122); this.B_EditFieldItems.Name = "B_EditFieldItems"; this.B_EditFieldItems.Size = new System.Drawing.Size(92, 40); this.B_EditFieldItems.TabIndex = 18; this.B_EditFieldItems.Text = "Edit Field Items"; this.B_EditFieldItems.UseVisualStyleBackColor = true; this.B_EditFieldItems.Click += new System.EventHandler(this.B_EditFieldItems_Click); // // Editor // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(404, 261); this.Controls.Add(this.TC_Editors); this.Controls.Add(this.Menu_Editor); this.Icon = global::NHSE.WinForms.Properties.Resources.icon; this.MainMenuStrip = this.Menu_Editor; this.MaximizeBox = false; this.Name = "Editor"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "NHSE"; this.Menu_Editor.ResumeLayout(false); this.Menu_Editor.PerformLayout(); this.TC_Editors.ResumeLayout(false); this.Tab_Players.ResumeLayout(false); this.Tab_Players.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Wallet)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_NookMiles)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_BankBells)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PB_Player)).EndInit(); this.CM_Picture.ResumeLayout(false); this.Tab_Villagers.ResumeLayout(false); this.Tab_Villagers.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Variant)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Species)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PB_Villager)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_Villager)).EndInit(); this.Tab_Designs.ResumeLayout(false); this.Tab_Designs.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.PB_Palette)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NUD_PatternIndex)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PB_Pattern)).EndInit(); this.Tab_Map.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip Menu_Editor; private System.Windows.Forms.ToolStripMenuItem Menu_File; private System.Windows.Forms.ToolStripMenuItem Menu_Open; private System.Windows.Forms.ToolStripMenuItem Menu_Save; private System.Windows.Forms.ToolStripMenuItem Menu_Tools; private System.Windows.Forms.TabControl TC_Editors; private System.Windows.Forms.TabPage Tab_Villagers; private System.Windows.Forms.TabPage Tab_Players; private System.Windows.Forms.PictureBox PB_Player; private System.Windows.Forms.ComboBox CB_Players; private System.Windows.Forms.Label L_PlayerName; private System.Windows.Forms.TextBox TB_Name; private System.Windows.Forms.TextBox TB_TownName; private System.Windows.Forms.Label L_TownName; private System.Windows.Forms.NumericUpDown NUD_BankBells; private System.Windows.Forms.Label L_BankBells; private System.Windows.Forms.Label L_NookMiles; private System.Windows.Forms.NumericUpDown NUD_NookMiles; private System.Windows.Forms.Label L_Wallet; private System.Windows.Forms.NumericUpDown NUD_Wallet; private System.Windows.Forms.Button B_EditPlayerItems; private System.Windows.Forms.ToolStripMenuItem Menu_DumpDecrypted; private System.Windows.Forms.Label L_VillagerID; private System.Windows.Forms.NumericUpDown NUD_Villager; private System.Windows.Forms.PictureBox PB_Villager; private System.Windows.Forms.Label L_Species; private System.Windows.Forms.ComboBox CB_Personality; private System.Windows.Forms.NumericUpDown NUD_Species; private System.Windows.Forms.NumericUpDown NUD_Variant; private System.Windows.Forms.Label L_Variant; private System.Windows.Forms.Label L_Personality; private System.Windows.Forms.TextBox TB_Catchphrase; private System.Windows.Forms.Label L_Catchphrase; private System.Windows.Forms.Label L_InternalName; private System.Windows.Forms.Label L_ExternalName; private System.Windows.Forms.ContextMenuStrip CM_Picture; private System.Windows.Forms.ToolStripMenuItem Menu_SavePNG; private System.Windows.Forms.ToolStripMenuItem Menu_VerifyHashes; private System.Windows.Forms.Button B_DumpVillager; private System.Windows.Forms.Button B_EditPlayerRecipes; private System.Windows.Forms.TabPage Tab_Map; private System.Windows.Forms.Button B_RecycleBin; private System.Windows.Forms.Button B_EditPlayerStorage; private System.Windows.Forms.ToolStripMenuItem Menu_LoadDecrypted; private System.Windows.Forms.Button B_LoadVillager; private System.Windows.Forms.Button B_EditFurniture; private System.Windows.Forms.Button B_EditPlayerReceivedItems; private System.Windows.Forms.TabPage Tab_Designs; private System.Windows.Forms.Button B_LoadDesign; private System.Windows.Forms.Button B_DumpDesign; private System.Windows.Forms.Label L_PatternIndex; private System.Windows.Forms.NumericUpDown NUD_PatternIndex; private System.Windows.Forms.PictureBox PB_Pattern; private System.Windows.Forms.Label L_PatternName; private System.Windows.Forms.PictureBox PB_Palette; private System.Windows.Forms.Button B_EditBuildings; private System.Windows.Forms.Button B_EditActivities; private System.Windows.Forms.ToolStripMenuItem Menu_RAMEdit; private System.Windows.Forms.Button B_EditTurnipExchange; private System.Windows.Forms.Button B_EditAcres; private System.Windows.Forms.Button B_EditTerrain; private System.Windows.Forms.Button B_EditPlayerFlags; private System.Windows.Forms.Button B_EditFieldItems; } }