Esempio n. 1
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DungeonEye.Dice dice1 = new DungeonEye.Dice();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.DifficultyBox     = new System.Windows.Forms.NumericUpDown();
     this.label1            = new System.Windows.Forms.Label();
     this.MonsterTriggerBox = new System.Windows.Forms.CheckBox();
     this.IsHiddenBox       = new System.Windows.Forms.CheckBox();
     this.IsIllusionBox     = new System.Windows.Forms.CheckBox();
     this.TargetBox         = new DungeonEye.Forms.TargetControl();
     this.DamageBox         = new DungeonEye.Forms.DiceControl();
     this.groupBox2         = new System.Windows.Forms.GroupBox();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DifficultyBox)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.DifficultyBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.MonsterTriggerBox);
     this.groupBox1.Controls.Add(this.IsHiddenBox);
     this.groupBox1.Controls.Add(this.IsIllusionBox);
     this.groupBox1.Location = new System.Drawing.Point(6, 125);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(230, 72);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "groupBox1";
     //
     // DifficultyBox
     //
     this.DifficultyBox.Location           = new System.Drawing.Point(156, 18);
     this.DifficultyBox.Name               = "DifficultyBox";
     this.DifficultyBox.Size               = new System.Drawing.Size(53, 20);
     this.DifficultyBox.TabIndex           = 2;
     this.DifficultyBox.TextAlign          = System.Windows.Forms.HorizontalAlignment.Right;
     this.DifficultyBox.ThousandsSeparator = true;
     this.DifficultyBox.ValueChanged      += new System.EventHandler(this.DifficultyBox_ValueChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(103, 20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(47, 13);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Difficulty";
     //
     // MonsterTriggerBox
     //
     this.MonsterTriggerBox.AutoSize = true;
     this.MonsterTriggerBox.Location = new System.Drawing.Point(106, 42);
     this.MonsterTriggerBox.Name     = "MonsterTriggerBox";
     this.MonsterTriggerBox.Size     = new System.Drawing.Size(118, 17);
     this.MonsterTriggerBox.TabIndex = 0;
     this.MonsterTriggerBox.Text     = "Monster also trigger";
     this.MonsterTriggerBox.UseVisualStyleBackColor = true;
     this.MonsterTriggerBox.CheckedChanged         += new System.EventHandler(this.MonsterTriggerBox_CheckedChanged);
     //
     // IsHiddenBox
     //
     this.IsHiddenBox.AutoSize = true;
     this.IsHiddenBox.Location = new System.Drawing.Point(6, 42);
     this.IsHiddenBox.Name     = "IsHiddenBox";
     this.IsHiddenBox.Size     = new System.Drawing.Size(60, 17);
     this.IsHiddenBox.TabIndex = 0;
     this.IsHiddenBox.Text     = "Hidden";
     this.IsHiddenBox.UseVisualStyleBackColor = true;
     this.IsHiddenBox.CheckedChanged         += new System.EventHandler(this.IsHiddenBox_CheckedChanged);
     //
     // IsIllusionBox
     //
     this.IsIllusionBox.AutoSize = true;
     this.IsIllusionBox.Location = new System.Drawing.Point(6, 19);
     this.IsIllusionBox.Name     = "IsIllusionBox";
     this.IsIllusionBox.Size     = new System.Drawing.Size(58, 17);
     this.IsIllusionBox.TabIndex = 0;
     this.IsIllusionBox.Text     = "Illusion";
     this.IsIllusionBox.UseVisualStyleBackColor = true;
     this.IsIllusionBox.CheckedChanged         += new System.EventHandler(this.IsIllusionBox_CheckedChanged);
     //
     // TargetBox
     //
     this.TargetBox.Dungeon        = null;
     this.TargetBox.Location       = new System.Drawing.Point(242, 19);
     this.TargetBox.MinimumSize    = new System.Drawing.Size(175, 100);
     this.TargetBox.Name           = "TargetBox";
     this.TargetBox.Size           = new System.Drawing.Size(175, 100);
     this.TargetBox.TabIndex       = 2;
     this.TargetBox.Title          = "Target :";
     this.TargetBox.TargetChanged += new DungeonEye.Forms.TargetControl.TargetChangedEventHandler(this.TargetBox_TargetChanged);
     //
     // DamageBox
     //
     this.DamageBox.ControlText = "Damage :";
     dice1.Faces                  = 1;
     dice1.Modifier               = 0;
     dice1.Throws                 = 1;
     this.DamageBox.Dice          = dice1;
     this.DamageBox.Location      = new System.Drawing.Point(6, 19);
     this.DamageBox.MinimumSize   = new System.Drawing.Size(230, 100);
     this.DamageBox.Name          = "DamageBox";
     this.DamageBox.Size          = new System.Drawing.Size(230, 100);
     this.DamageBox.TabIndex      = 1;
     this.DamageBox.ValueChanged += new System.EventHandler(this.DamageBox_ValueChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.DamageBox);
     this.groupBox2.Controls.Add(this.TargetBox);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(1068, 693);
     this.groupBox2.TabIndex = 4;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Pit";
     //
     // PitControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.groupBox2);
     this.Name = "PitControl";
     this.Size = new System.Drawing.Size(1068, 693);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DifficultyBox)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
		/// <summary> 
		/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
		/// le contenu de cette méthode avec l'éditeur de code.
		/// </summary>
		private void InitializeComponent()
		{
			DungeonEye.Dice dice1 = new DungeonEye.Dice();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MonsterControl));
			this.label11 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.GlControl = new OpenTK.GLControl();
			this.TileSetBox = new System.Windows.Forms.ComboBox();
			this.PocketGroupBox = new System.Windows.Forms.GroupBox();
			this.PocketItemsBox = new System.Windows.Forms.ListBox();
			this.AddPocketItemBox = new System.Windows.Forms.Button();
			this.ItemsBox = new System.Windows.Forms.ComboBox();
			this.RemovePocketItemBox = new System.Windows.Forms.Button();
			this.XPRewardBox = new System.Windows.Forms.NumericUpDown();
			this.label3 = new System.Windows.Forms.Label();
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.VisualTab = new System.Windows.Forms.TabPage();
			this.TileIDBox = new System.Windows.Forms.NumericUpDown();
			this.AttributesTab = new System.Windows.Forms.TabPage();
			this.EntityBox = new DungeonEye.Forms.EntityControl();
			this.PropertiesTab = new System.Windows.Forms.TabPage();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label19 = new System.Windows.Forms.Label();
			this.WeaponNameBox = new System.Windows.Forms.ComboBox();
			this.ScriptBox = new ArcEngine.Editor.ScriptControl();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.AttackSpeedBox = new System.Windows.Forms.NumericUpDown();
			this.label18 = new System.Windows.Forms.Label();
			this.NameBox = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.DirectionBox = new System.Windows.Forms.ComboBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.CurrentBehaviourBox = new System.Windows.Forms.ComboBox();
			this.DefaultBehaviourBox = new System.Windows.Forms.ComboBox();
			this.label16 = new System.Windows.Forms.Label();
			this.SightRangeBox = new System.Windows.Forms.NumericUpDown();
			this.CanSeeInvisibleBox = new System.Windows.Forms.CheckBox();
			this.SmartAIBox = new System.Windows.Forms.CheckBox();
			this.TeleportsBox = new System.Windows.Forms.CheckBox();
			this.BackRowAttackBox = new System.Windows.Forms.CheckBox();
			this.label5 = new System.Windows.Forms.Label();
			this.FlyingBox = new System.Windows.Forms.CheckBox();
			this.UseStairsBox = new System.Windows.Forms.CheckBox();
			this.label6 = new System.Windows.Forms.Label();
			this.PickupBox = new System.Windows.Forms.NumericUpDown();
			this.ThrowWeaponsBox = new System.Windows.Forms.CheckBox();
			this.label4 = new System.Windows.Forms.Label();
			this.PoisonImmunityBox = new System.Windows.Forms.CheckBox();
			this.ArmorClassBox = new System.Windows.Forms.NumericUpDown();
			this.NonMaterialBox = new System.Windows.Forms.CheckBox();
			this.StealBox = new System.Windows.Forms.NumericUpDown();
			this.FillSquareBox = new System.Windows.Forms.CheckBox();
			this.FleesBox = new System.Windows.Forms.CheckBox();
			this.DamageBox = new DungeonEye.Forms.DiceControl();
			this.MagicTab = new System.Windows.Forms.TabPage();
			this.HasMagicBox = new System.Windows.Forms.CheckBox();
			this.MagicGroupBox = new System.Windows.Forms.GroupBox();
			this.AvailableSpellsBox = new System.Windows.Forms.ComboBox();
			this.label9 = new System.Windows.Forms.Label();
			this.ClearKnownSpellsBox = new System.Windows.Forms.Button();
			this.RemoveMagicSpellBox = new System.Windows.Forms.Button();
			this.AddMagicSpellBox = new System.Windows.Forms.Button();
			this.KnownSpellsBox = new System.Windows.Forms.ListBox();
			this.label8 = new System.Windows.Forms.Label();
			this.CastingLevelBox = new System.Windows.Forms.NumericUpDown();
			this.HasDrainMagicBox = new System.Windows.Forms.CheckBox();
			this.HealMagicBox = new System.Windows.Forms.CheckBox();
			this.AudioTab = new System.Windows.Forms.TabPage();
			this.PlayHurtSoundBox = new System.Windows.Forms.Button();
			this.PlayDeathSoundBox = new System.Windows.Forms.Button();
			this.PlayMoveSoundBox = new System.Windows.Forms.Button();
			this.PlayAttackSoundBox = new System.Windows.Forms.Button();
			this.LoadHurtSoundBox = new System.Windows.Forms.Button();
			this.LoadDeathSoundBox = new System.Windows.Forms.Button();
			this.LoadMoveSoundBox = new System.Windows.Forms.Button();
			this.LoadAttackSoundBox = new System.Windows.Forms.Button();
			this.HurtSoundBox = new System.Windows.Forms.TextBox();
			this.DeathSoundBox = new System.Windows.Forms.TextBox();
			this.MoveSoundBox = new System.Windows.Forms.TextBox();
			this.AttackSoundBox = new System.Windows.Forms.TextBox();
			this.label15 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.PocketGroupBox.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.XPRewardBox)).BeginInit();
			this.tabControl1.SuspendLayout();
			this.VisualTab.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.TileIDBox)).BeginInit();
			this.AttributesTab.SuspendLayout();
			this.PropertiesTab.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.AttackSpeedBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.SightRangeBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.PickupBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.ArmorClassBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.StealBox)).BeginInit();
			this.MagicTab.SuspendLayout();
			this.MagicGroupBox.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.CastingLevelBox)).BeginInit();
			this.AudioTab.SuspendLayout();
			this.SuspendLayout();
			// 
			// label11
			// 
			this.label11.AutoSize = true;
			this.label11.Location = new System.Drawing.Point(29, 35);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(30, 13);
			this.label11.TabIndex = 3;
			this.label11.Text = "Tile :";
			// 
			// label12
			// 
			this.label12.AutoSize = true;
			this.label12.Location = new System.Drawing.Point(13, 9);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(46, 13);
			this.label12.TabIndex = 3;
			this.label12.Text = "TileSet :";
			// 
			// GlControl
			// 
			this.GlControl.BackColor = System.Drawing.Color.Black;
			this.GlControl.Location = new System.Drawing.Point(7, 62);
			this.GlControl.Name = "GlControl";
			this.GlControl.Size = new System.Drawing.Size(297, 259);
			this.GlControl.TabIndex = 1;
			this.GlControl.VSync = true;
			this.GlControl.Load += new System.EventHandler(this.GlControl_Load);
			this.GlControl.Paint += new System.Windows.Forms.PaintEventHandler(this.GlControl_Paint);
			// 
			// TileSetBox
			// 
			this.TileSetBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.TileSetBox.FormattingEnabled = true;
			this.TileSetBox.Location = new System.Drawing.Point(65, 6);
			this.TileSetBox.Name = "TileSetBox";
			this.TileSetBox.Size = new System.Drawing.Size(143, 21);
			this.TileSetBox.Sorted = true;
			this.TileSetBox.TabIndex = 2;
			this.TileSetBox.SelectedIndexChanged += new System.EventHandler(this.TileSetBox_SelectedIndexChanged);
			// 
			// PocketGroupBox
			// 
			this.PocketGroupBox.Controls.Add(this.PocketItemsBox);
			this.PocketGroupBox.Controls.Add(this.AddPocketItemBox);
			this.PocketGroupBox.Controls.Add(this.ItemsBox);
			this.PocketGroupBox.Controls.Add(this.RemovePocketItemBox);
			this.PocketGroupBox.Location = new System.Drawing.Point(257, 2);
			this.PocketGroupBox.Name = "PocketGroupBox";
			this.PocketGroupBox.Size = new System.Drawing.Size(227, 169);
			this.PocketGroupBox.TabIndex = 7;
			this.PocketGroupBox.TabStop = false;
			this.PocketGroupBox.Text = "Items in pocket :";
			// 
			// PocketItemsBox
			// 
			this.PocketItemsBox.FormattingEnabled = true;
			this.PocketItemsBox.Location = new System.Drawing.Point(6, 48);
			this.PocketItemsBox.Name = "PocketItemsBox";
			this.PocketItemsBox.Size = new System.Drawing.Size(215, 82);
			this.PocketItemsBox.Sorted = true;
			this.PocketItemsBox.TabIndex = 5;
			this.PocketItemsBox.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.PocketItemsBox_MouseDoubleClick);
			// 
			// AddPocketItemBox
			// 
			this.AddPocketItemBox.AutoSize = true;
			this.AddPocketItemBox.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.AddPocketItemBox.Location = new System.Drawing.Point(185, 19);
			this.AddPocketItemBox.Name = "AddPocketItemBox";
			this.AddPocketItemBox.Size = new System.Drawing.Size(36, 23);
			this.AddPocketItemBox.TabIndex = 4;
			this.AddPocketItemBox.Text = "Add";
			this.AddPocketItemBox.UseVisualStyleBackColor = true;
			this.AddPocketItemBox.Click += new System.EventHandler(this.AddPocketItemBox_Click);
			// 
			// ItemsBox
			// 
			this.ItemsBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.ItemsBox.FormattingEnabled = true;
			this.ItemsBox.Location = new System.Drawing.Point(6, 19);
			this.ItemsBox.Name = "ItemsBox";
			this.ItemsBox.Size = new System.Drawing.Size(173, 21);
			this.ItemsBox.Sorted = true;
			this.ItemsBox.TabIndex = 3;
			// 
			// RemovePocketItemBox
			// 
			this.RemovePocketItemBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.RemovePocketItemBox.Location = new System.Drawing.Point(6, 140);
			this.RemovePocketItemBox.Name = "RemovePocketItemBox";
			this.RemovePocketItemBox.Size = new System.Drawing.Size(215, 23);
			this.RemovePocketItemBox.TabIndex = 2;
			this.RemovePocketItemBox.Text = "Remove";
			this.RemovePocketItemBox.UseVisualStyleBackColor = true;
			this.RemovePocketItemBox.Click += new System.EventHandler(this.RemovePocketItemBox_Click);
			// 
			// XPRewardBox
			// 
			this.XPRewardBox.Location = new System.Drawing.Point(113, 355);
			this.XPRewardBox.Maximum = new decimal(new int[] {
            1410065408,
            2,
            0,
            0});
			this.XPRewardBox.Name = "XPRewardBox";
			this.XPRewardBox.Size = new System.Drawing.Size(73, 20);
			this.XPRewardBox.TabIndex = 11;
			this.XPRewardBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.XPRewardBox.ThousandsSeparator = true;
			this.XPRewardBox.ValueChanged += new System.EventHandler(this.ExperienceBox_ValueChanged);
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(45, 357);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(62, 13);
			this.label3.TabIndex = 12;
			this.label3.Text = "XP reward :";
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add(this.VisualTab);
			this.tabControl1.Controls.Add(this.AttributesTab);
			this.tabControl1.Controls.Add(this.PropertiesTab);
			this.tabControl1.Controls.Add(this.MagicTab);
			this.tabControl1.Controls.Add(this.AudioTab);
			this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tabControl1.Location = new System.Drawing.Point(0, 0);
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(500, 473);
			this.tabControl1.TabIndex = 13;
			// 
			// VisualTab
			// 
			this.VisualTab.Controls.Add(this.TileIDBox);
			this.VisualTab.Controls.Add(this.label11);
			this.VisualTab.Controls.Add(this.label12);
			this.VisualTab.Controls.Add(this.GlControl);
			this.VisualTab.Controls.Add(this.TileSetBox);
			this.VisualTab.Location = new System.Drawing.Point(4, 22);
			this.VisualTab.Name = "VisualTab";
			this.VisualTab.Padding = new System.Windows.Forms.Padding(3);
			this.VisualTab.Size = new System.Drawing.Size(492, 447);
			this.VisualTab.TabIndex = 0;
			this.VisualTab.Text = "Visual";
			this.VisualTab.UseVisualStyleBackColor = true;
			// 
			// TileIDBox
			// 
			this.TileIDBox.Location = new System.Drawing.Point(65, 33);
			this.TileIDBox.Maximum = new decimal(new int[] {
            1316134911,
            2328,
            0,
            0});
			this.TileIDBox.Name = "TileIDBox";
			this.TileIDBox.Size = new System.Drawing.Size(93, 20);
			this.TileIDBox.TabIndex = 4;
			this.TileIDBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.TileIDBox.ThousandsSeparator = true;
			this.TileIDBox.ValueChanged += new System.EventHandler(this.TileIDBox_ValueChanged);
			// 
			// AttributesTab
			// 
			this.AttributesTab.Controls.Add(this.EntityBox);
			this.AttributesTab.Location = new System.Drawing.Point(4, 22);
			this.AttributesTab.Name = "AttributesTab";
			this.AttributesTab.Padding = new System.Windows.Forms.Padding(3);
			this.AttributesTab.Size = new System.Drawing.Size(492, 447);
			this.AttributesTab.TabIndex = 1;
			this.AttributesTab.Text = "Attributes";
			this.AttributesTab.UseVisualStyleBackColor = true;
			// 
			// EntityBox
			// 
			this.EntityBox.Dock = System.Windows.Forms.DockStyle.Fill;
			this.EntityBox.Entity = null;
			this.EntityBox.Location = new System.Drawing.Point(3, 3);
			this.EntityBox.Name = "EntityBox";
			this.EntityBox.Size = new System.Drawing.Size(486, 441);
			this.EntityBox.TabIndex = 0;
			// 
			// PropertiesTab
			// 
			this.PropertiesTab.Controls.Add(this.groupBox1);
			this.PropertiesTab.Controls.Add(this.ScriptBox);
			this.PropertiesTab.Controls.Add(this.groupBox2);
			this.PropertiesTab.Controls.Add(this.PocketGroupBox);
			this.PropertiesTab.Controls.Add(this.DamageBox);
			this.PropertiesTab.Location = new System.Drawing.Point(4, 22);
			this.PropertiesTab.Name = "PropertiesTab";
			this.PropertiesTab.Size = new System.Drawing.Size(492, 447);
			this.PropertiesTab.TabIndex = 2;
			this.PropertiesTab.Text = "Properties";
			this.PropertiesTab.UseVisualStyleBackColor = true;
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.label19);
			this.groupBox1.Controls.Add(this.WeaponNameBox);
			this.groupBox1.Location = new System.Drawing.Point(257, 363);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(227, 74);
			this.groupBox1.TabIndex = 15;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Attack :";
			// 
			// label19
			// 
			this.label19.AutoSize = true;
			this.label19.Location = new System.Drawing.Point(6, 22);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(54, 13);
			this.label19.TabIndex = 1;
			this.label19.Text = "Weapon :";
			// 
			// WeaponNameBox
			// 
			this.WeaponNameBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.WeaponNameBox.FormattingEnabled = true;
			this.WeaponNameBox.Location = new System.Drawing.Point(66, 19);
			this.WeaponNameBox.Name = "WeaponNameBox";
			this.WeaponNameBox.Size = new System.Drawing.Size(155, 21);
			this.WeaponNameBox.Sorted = true;
			this.WeaponNameBox.TabIndex = 0;
			this.WeaponNameBox.SelectedIndexChanged += new System.EventHandler(this.WeaponNameBox_SelectedIndexChanged);
			// 
			// ScriptBox
			// 
			this.ScriptBox.ControlText = "Script :";
			this.ScriptBox.Location = new System.Drawing.Point(257, 177);
			this.ScriptBox.MinimumSize = new System.Drawing.Size(200, 70);
			this.ScriptBox.Name = "ScriptBox";
			this.ScriptBox.Size = new System.Drawing.Size(225, 74);
			this.ScriptBox.TabIndex = 14;
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.AttackSpeedBox);
			this.groupBox2.Controls.Add(this.label18);
			this.groupBox2.Controls.Add(this.NameBox);
			this.groupBox2.Controls.Add(this.label7);
			this.groupBox2.Controls.Add(this.DirectionBox);
			this.groupBox2.Controls.Add(this.label2);
			this.groupBox2.Controls.Add(this.label17);
			this.groupBox2.Controls.Add(this.label1);
			this.groupBox2.Controls.Add(this.CurrentBehaviourBox);
			this.groupBox2.Controls.Add(this.DefaultBehaviourBox);
			this.groupBox2.Controls.Add(this.label16);
			this.groupBox2.Controls.Add(this.SightRangeBox);
			this.groupBox2.Controls.Add(this.CanSeeInvisibleBox);
			this.groupBox2.Controls.Add(this.SmartAIBox);
			this.groupBox2.Controls.Add(this.TeleportsBox);
			this.groupBox2.Controls.Add(this.BackRowAttackBox);
			this.groupBox2.Controls.Add(this.label5);
			this.groupBox2.Controls.Add(this.FlyingBox);
			this.groupBox2.Controls.Add(this.XPRewardBox);
			this.groupBox2.Controls.Add(this.UseStairsBox);
			this.groupBox2.Controls.Add(this.label6);
			this.groupBox2.Controls.Add(this.PickupBox);
			this.groupBox2.Controls.Add(this.ThrowWeaponsBox);
			this.groupBox2.Controls.Add(this.label4);
			this.groupBox2.Controls.Add(this.PoisonImmunityBox);
			this.groupBox2.Controls.Add(this.ArmorClassBox);
			this.groupBox2.Controls.Add(this.NonMaterialBox);
			this.groupBox2.Controls.Add(this.StealBox);
			this.groupBox2.Controls.Add(this.FillSquareBox);
			this.groupBox2.Controls.Add(this.label3);
			this.groupBox2.Controls.Add(this.FleesBox);
			this.groupBox2.Location = new System.Drawing.Point(3, 3);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(248, 434);
			this.groupBox2.TabIndex = 13;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "Misc :";
			// 
			// AttackSpeedBox
			// 
			this.AttackSpeedBox.Location = new System.Drawing.Point(113, 407);
			this.AttackSpeedBox.Maximum = new decimal(new int[] {
            1410065407,
            2,
            0,
            0});
			this.AttackSpeedBox.Name = "AttackSpeedBox";
			this.AttackSpeedBox.Size = new System.Drawing.Size(73, 20);
			this.AttackSpeedBox.TabIndex = 24;
			this.AttackSpeedBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.AttackSpeedBox.ThousandsSeparator = true;
			this.AttackSpeedBox.ValueChanged += new System.EventHandler(this.AttackSpeedBox_ValueChanged);
			// 
			// label18
			// 
			this.label18.AutoSize = true;
			this.label18.Location = new System.Drawing.Point(37, 409);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(70, 13);
			this.label18.TabIndex = 23;
			this.label18.Text = "Attack speed";
			// 
			// NameBox
			// 
			this.NameBox.Location = new System.Drawing.Point(57, 15);
			this.NameBox.Name = "NameBox";
			this.NameBox.Size = new System.Drawing.Size(129, 20);
			this.NameBox.TabIndex = 22;
			this.NameBox.TextChanged += new System.EventHandler(this.NameBox_TextChanged);
			// 
			// label7
			// 
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(6, 18);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(41, 13);
			this.label7.TabIndex = 21;
			this.label7.Text = "Name :";
			// 
			// DirectionBox
			// 
			this.DirectionBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.DirectionBox.FormattingEnabled = true;
			this.DirectionBox.Location = new System.Drawing.Point(113, 240);
			this.DirectionBox.Name = "DirectionBox";
			this.DirectionBox.Size = new System.Drawing.Size(129, 21);
			this.DirectionBox.TabIndex = 20;
			this.DirectionBox.SelectedIndexChanged += new System.EventHandler(this.DirectionBox_SelectedIndexChanged);
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(52, 243);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(55, 13);
			this.label2.TabIndex = 19;
			this.label2.Text = "Direction :";
			// 
			// label17
			// 
			this.label17.AutoSize = true;
			this.label17.Location = new System.Drawing.Point(10, 216);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(97, 13);
			this.label17.TabIndex = 18;
			this.label17.Text = "Current behaviour :";
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(10, 189);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(97, 13);
			this.label1.TabIndex = 18;
			this.label1.Text = "Default behaviour :";
			// 
			// CurrentBehaviourBox
			// 
			this.CurrentBehaviourBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.CurrentBehaviourBox.FormattingEnabled = true;
			this.CurrentBehaviourBox.Location = new System.Drawing.Point(113, 213);
			this.CurrentBehaviourBox.Name = "CurrentBehaviourBox";
			this.CurrentBehaviourBox.Size = new System.Drawing.Size(129, 21);
			this.CurrentBehaviourBox.Sorted = true;
			this.CurrentBehaviourBox.TabIndex = 17;
			this.CurrentBehaviourBox.SelectedIndexChanged += new System.EventHandler(this.CurrentBehaviourBox_SelectedIndexChanged);
			// 
			// DefaultBehaviourBox
			// 
			this.DefaultBehaviourBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.DefaultBehaviourBox.FormattingEnabled = true;
			this.DefaultBehaviourBox.Location = new System.Drawing.Point(113, 186);
			this.DefaultBehaviourBox.Name = "DefaultBehaviourBox";
			this.DefaultBehaviourBox.Size = new System.Drawing.Size(129, 21);
			this.DefaultBehaviourBox.Sorted = true;
			this.DefaultBehaviourBox.TabIndex = 17;
			this.DefaultBehaviourBox.SelectedIndexChanged += new System.EventHandler(this.DefaultBehaviourBox_SelectedIndexChanged);
			// 
			// label16
			// 
			this.label16.AutoSize = true;
			this.label16.Location = new System.Drawing.Point(40, 281);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(67, 13);
			this.label16.TabIndex = 16;
			this.label16.Text = "Sight range :";
			// 
			// SightRangeBox
			// 
			this.SightRangeBox.Location = new System.Drawing.Point(113, 279);
			this.SightRangeBox.Name = "SightRangeBox";
			this.SightRangeBox.Size = new System.Drawing.Size(73, 20);
			this.SightRangeBox.TabIndex = 15;
			this.SightRangeBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.SightRangeBox.ValueChanged += new System.EventHandler(this.SightRangeBox_ValueChanged);
			// 
			// CanSeeInvisibleBox
			// 
			this.CanSeeInvisibleBox.AutoSize = true;
			this.CanSeeInvisibleBox.Location = new System.Drawing.Point(135, 133);
			this.CanSeeInvisibleBox.Name = "CanSeeInvisibleBox";
			this.CanSeeInvisibleBox.Size = new System.Drawing.Size(105, 17);
			this.CanSeeInvisibleBox.TabIndex = 14;
			this.CanSeeInvisibleBox.Text = "Can see invisible";
			this.CanSeeInvisibleBox.UseVisualStyleBackColor = true;
			this.CanSeeInvisibleBox.CheckedChanged += new System.EventHandler(this.CanSeeInvisibleBox_CheckedChanged);
			// 
			// SmartAIBox
			// 
			this.SmartAIBox.AutoSize = true;
			this.SmartAIBox.Location = new System.Drawing.Point(135, 87);
			this.SmartAIBox.Name = "SmartAIBox";
			this.SmartAIBox.Size = new System.Drawing.Size(66, 17);
			this.SmartAIBox.TabIndex = 14;
			this.SmartAIBox.Text = "Smart AI";
			this.SmartAIBox.UseVisualStyleBackColor = true;
			this.SmartAIBox.CheckedChanged += new System.EventHandler(this.SmartAIBox_CheckedChanged);
			// 
			// TeleportsBox
			// 
			this.TeleportsBox.AutoSize = true;
			this.TeleportsBox.Location = new System.Drawing.Point(135, 110);
			this.TeleportsBox.Name = "TeleportsBox";
			this.TeleportsBox.Size = new System.Drawing.Size(83, 17);
			this.TeleportsBox.TabIndex = 13;
			this.TeleportsBox.Text = "Can teleport";
			this.TeleportsBox.UseVisualStyleBackColor = true;
			this.TeleportsBox.CheckedChanged += new System.EventHandler(this.TeleportsBox_CheckedChanged);
			// 
			// BackRowAttackBox
			// 
			this.BackRowAttackBox.AutoSize = true;
			this.BackRowAttackBox.Location = new System.Drawing.Point(6, 151);
			this.BackRowAttackBox.Name = "BackRowAttackBox";
			this.BackRowAttackBox.Size = new System.Drawing.Size(104, 17);
			this.BackRowAttackBox.TabIndex = 13;
			this.BackRowAttackBox.Text = "Back row attack";
			this.BackRowAttackBox.UseVisualStyleBackColor = true;
			this.BackRowAttackBox.CheckedChanged += new System.EventHandler(this.BackRowAttackBox_CheckedChanged);
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(6, 307);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(101, 13);
			this.label5.TabIndex = 5;
			this.label5.Text = "Pickups floor items :";
			// 
			// FlyingBox
			// 
			this.FlyingBox.AutoSize = true;
			this.FlyingBox.Location = new System.Drawing.Point(6, 129);
			this.FlyingBox.Name = "FlyingBox";
			this.FlyingBox.Size = new System.Drawing.Size(53, 17);
			this.FlyingBox.TabIndex = 13;
			this.FlyingBox.Text = "Flying";
			this.FlyingBox.UseVisualStyleBackColor = true;
			this.FlyingBox.CheckedChanged += new System.EventHandler(this.FlyingBox_CheckedChanged);
			// 
			// UseStairsBox
			// 
			this.UseStairsBox.AutoSize = true;
			this.UseStairsBox.Location = new System.Drawing.Point(6, 107);
			this.UseStairsBox.Name = "UseStairsBox";
			this.UseStairsBox.Size = new System.Drawing.Size(72, 17);
			this.UseStairsBox.TabIndex = 13;
			this.UseStairsBox.Text = "Use stairs";
			this.UseStairsBox.UseVisualStyleBackColor = true;
			this.UseStairsBox.CheckedChanged += new System.EventHandler(this.UseStairsBox_CheckedChanged);
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(38, 331);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(69, 13);
			this.label6.TabIndex = 5;
			this.label6.Text = "Steals items :";
			// 
			// PickupBox
			// 
			this.PickupBox.Location = new System.Drawing.Point(113, 305);
			this.PickupBox.Name = "PickupBox";
			this.PickupBox.Size = new System.Drawing.Size(73, 20);
			this.PickupBox.TabIndex = 4;
			this.PickupBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.PickupBox.ValueChanged += new System.EventHandler(this.PickupBox_ValueChanged);
			// 
			// ThrowWeaponsBox
			// 
			this.ThrowWeaponsBox.AutoSize = true;
			this.ThrowWeaponsBox.Location = new System.Drawing.Point(135, 64);
			this.ThrowWeaponsBox.Name = "ThrowWeaponsBox";
			this.ThrowWeaponsBox.Size = new System.Drawing.Size(102, 17);
			this.ThrowWeaponsBox.TabIndex = 3;
			this.ThrowWeaponsBox.Text = "Throw weapons";
			this.ThrowWeaponsBox.UseVisualStyleBackColor = true;
			this.ThrowWeaponsBox.CheckedChanged += new System.EventHandler(this.ThrowWeaponsBox_CheckedChanged);
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(39, 383);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(68, 13);
			this.label4.TabIndex = 12;
			this.label4.Text = "Armor Class :";
			// 
			// PoisonImmunityBox
			// 
			this.PoisonImmunityBox.AutoSize = true;
			this.PoisonImmunityBox.Location = new System.Drawing.Point(135, 41);
			this.PoisonImmunityBox.Name = "PoisonImmunityBox";
			this.PoisonImmunityBox.Size = new System.Drawing.Size(101, 17);
			this.PoisonImmunityBox.TabIndex = 3;
			this.PoisonImmunityBox.Text = "Poison immunity";
			this.PoisonImmunityBox.UseVisualStyleBackColor = true;
			this.PoisonImmunityBox.CheckedChanged += new System.EventHandler(this.PoisonImmunityBox_CheckedChanged);
			// 
			// ArmorClassBox
			// 
			this.ArmorClassBox.Location = new System.Drawing.Point(113, 381);
			this.ArmorClassBox.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.ArmorClassBox.Name = "ArmorClassBox";
			this.ArmorClassBox.Size = new System.Drawing.Size(73, 20);
			this.ArmorClassBox.TabIndex = 11;
			this.ArmorClassBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.ArmorClassBox.ThousandsSeparator = true;
			this.ArmorClassBox.ValueChanged += new System.EventHandler(this.ArmorClassBox_ValueChanged);
			// 
			// NonMaterialBox
			// 
			this.NonMaterialBox.AutoSize = true;
			this.NonMaterialBox.Location = new System.Drawing.Point(6, 85);
			this.NonMaterialBox.Name = "NonMaterialBox";
			this.NonMaterialBox.Size = new System.Drawing.Size(85, 17);
			this.NonMaterialBox.TabIndex = 2;
			this.NonMaterialBox.Text = "Non-material";
			this.NonMaterialBox.UseVisualStyleBackColor = true;
			this.NonMaterialBox.CheckedChanged += new System.EventHandler(this.NonMaterialBox_CheckedChanged);
			// 
			// StealBox
			// 
			this.StealBox.Location = new System.Drawing.Point(113, 329);
			this.StealBox.Name = "StealBox";
			this.StealBox.Size = new System.Drawing.Size(73, 20);
			this.StealBox.TabIndex = 4;
			this.StealBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.StealBox.ValueChanged += new System.EventHandler(this.StealBox_ValueChanged);
			// 
			// FillSquareBox
			// 
			this.FillSquareBox.AutoSize = true;
			this.FillSquareBox.Location = new System.Drawing.Point(6, 63);
			this.FillSquareBox.Name = "FillSquareBox";
			this.FillSquareBox.Size = new System.Drawing.Size(73, 17);
			this.FillSquareBox.TabIndex = 1;
			this.FillSquareBox.Text = "Fill square";
			this.FillSquareBox.UseVisualStyleBackColor = true;
			this.FillSquareBox.CheckedChanged += new System.EventHandler(this.FillSquareBox_CheckedChanged);
			// 
			// FleesBox
			// 
			this.FleesBox.AutoSize = true;
			this.FleesBox.Location = new System.Drawing.Point(6, 41);
			this.FleesBox.Name = "FleesBox";
			this.FleesBox.Size = new System.Drawing.Size(123, 17);
			this.FleesBox.TabIndex = 0;
			this.FleesBox.Text = "Flees after an attack";
			this.FleesBox.UseVisualStyleBackColor = true;
			this.FleesBox.CheckedChanged += new System.EventHandler(this.FleesBox_CheckedChanged);
			// 
			// DamageBox
			// 
			this.DamageBox.ControlText = "Damage :";
			dice1.Faces = 1;
			dice1.Modifier = 0;
			dice1.Throws = 1;
			this.DamageBox.Dice = dice1;
			this.DamageBox.Location = new System.Drawing.Point(257, 257);
			this.DamageBox.MinimumSize = new System.Drawing.Size(225, 100);
			this.DamageBox.Name = "DamageBox";
			this.DamageBox.Size = new System.Drawing.Size(225, 100);
			this.DamageBox.TabIndex = 10;
			this.DamageBox.ValueChanged += new System.EventHandler(this.DamageBox_ValueChanged);
			// 
			// MagicTab
			// 
			this.MagicTab.Controls.Add(this.HasMagicBox);
			this.MagicTab.Controls.Add(this.MagicGroupBox);
			this.MagicTab.Location = new System.Drawing.Point(4, 22);
			this.MagicTab.Name = "MagicTab";
			this.MagicTab.Size = new System.Drawing.Size(492, 447);
			this.MagicTab.TabIndex = 4;
			this.MagicTab.Text = "Magic";
			this.MagicTab.UseVisualStyleBackColor = true;
			// 
			// HasMagicBox
			// 
			this.HasMagicBox.AutoSize = true;
			this.HasMagicBox.Location = new System.Drawing.Point(9, 3);
			this.HasMagicBox.Name = "HasMagicBox";
			this.HasMagicBox.Size = new System.Drawing.Size(77, 17);
			this.HasMagicBox.TabIndex = 4;
			this.HasMagicBox.Text = "Has Magic";
			this.HasMagicBox.UseVisualStyleBackColor = true;
			this.HasMagicBox.CheckedChanged += new System.EventHandler(this.HasMagicBox_CheckedChanged);
			// 
			// MagicGroupBox
			// 
			this.MagicGroupBox.Controls.Add(this.AvailableSpellsBox);
			this.MagicGroupBox.Controls.Add(this.label9);
			this.MagicGroupBox.Controls.Add(this.ClearKnownSpellsBox);
			this.MagicGroupBox.Controls.Add(this.RemoveMagicSpellBox);
			this.MagicGroupBox.Controls.Add(this.AddMagicSpellBox);
			this.MagicGroupBox.Controls.Add(this.KnownSpellsBox);
			this.MagicGroupBox.Controls.Add(this.label8);
			this.MagicGroupBox.Controls.Add(this.CastingLevelBox);
			this.MagicGroupBox.Controls.Add(this.HasDrainMagicBox);
			this.MagicGroupBox.Controls.Add(this.HealMagicBox);
			this.MagicGroupBox.Location = new System.Drawing.Point(3, 23);
			this.MagicGroupBox.Name = "MagicGroupBox";
			this.MagicGroupBox.Size = new System.Drawing.Size(316, 212);
			this.MagicGroupBox.TabIndex = 5;
			this.MagicGroupBox.TabStop = false;
			this.MagicGroupBox.Text = "Magic properties :";
			this.MagicGroupBox.EnabledChanged += new System.EventHandler(this.MagicGroupBox_EnabledChanged);
			// 
			// AvailableSpellsBox
			// 
			this.AvailableSpellsBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.AvailableSpellsBox.FormattingEnabled = true;
			this.AvailableSpellsBox.Location = new System.Drawing.Point(8, 99);
			this.AvailableSpellsBox.Name = "AvailableSpellsBox";
			this.AvailableSpellsBox.Size = new System.Drawing.Size(215, 21);
			this.AvailableSpellsBox.TabIndex = 13;
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(5, 83);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(75, 13);
			this.label9.TabIndex = 12;
			this.label9.Text = "Known spells :";
			// 
			// ClearKnownSpellsBox
			// 
			this.ClearKnownSpellsBox.Location = new System.Drawing.Point(234, 172);
			this.ClearKnownSpellsBox.Name = "ClearKnownSpellsBox";
			this.ClearKnownSpellsBox.Size = new System.Drawing.Size(75, 23);
			this.ClearKnownSpellsBox.TabIndex = 11;
			this.ClearKnownSpellsBox.Text = "Clear";
			this.ClearKnownSpellsBox.UseVisualStyleBackColor = true;
			// 
			// RemoveMagicSpellBox
			// 
			this.RemoveMagicSpellBox.Location = new System.Drawing.Point(234, 128);
			this.RemoveMagicSpellBox.Name = "RemoveMagicSpellBox";
			this.RemoveMagicSpellBox.Size = new System.Drawing.Size(75, 23);
			this.RemoveMagicSpellBox.TabIndex = 11;
			this.RemoveMagicSpellBox.Text = "Remove";
			this.RemoveMagicSpellBox.UseVisualStyleBackColor = true;
			// 
			// AddMagicSpellBox
			// 
			this.AddMagicSpellBox.Location = new System.Drawing.Point(234, 97);
			this.AddMagicSpellBox.Name = "AddMagicSpellBox";
			this.AddMagicSpellBox.Size = new System.Drawing.Size(75, 23);
			this.AddMagicSpellBox.TabIndex = 11;
			this.AddMagicSpellBox.Text = "Add";
			this.AddMagicSpellBox.UseVisualStyleBackColor = true;
			// 
			// KnownSpellsBox
			// 
			this.KnownSpellsBox.FormattingEnabled = true;
			this.KnownSpellsBox.Location = new System.Drawing.Point(8, 126);
			this.KnownSpellsBox.Name = "KnownSpellsBox";
			this.KnownSpellsBox.Size = new System.Drawing.Size(216, 69);
			this.KnownSpellsBox.TabIndex = 10;
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(163, 25);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(73, 13);
			this.label8.TabIndex = 9;
			this.label8.Text = "Casting level :";
			// 
			// CastingLevelBox
			// 
			this.CastingLevelBox.Location = new System.Drawing.Point(249, 23);
			this.CastingLevelBox.Name = "CastingLevelBox";
			this.CastingLevelBox.Size = new System.Drawing.Size(61, 20);
			this.CastingLevelBox.TabIndex = 8;
			this.CastingLevelBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.CastingLevelBox.ValueChanged += new System.EventHandler(this.CastingLevelBox_ValueChanged);
			// 
			// HasDrainMagicBox
			// 
			this.HasDrainMagicBox.AutoSize = true;
			this.HasDrainMagicBox.Location = new System.Drawing.Point(8, 48);
			this.HasDrainMagicBox.Name = "HasDrainMagicBox";
			this.HasDrainMagicBox.Size = new System.Drawing.Size(102, 17);
			this.HasDrainMagicBox.TabIndex = 6;
			this.HasDrainMagicBox.Text = "Has drain magic";
			this.HasDrainMagicBox.UseVisualStyleBackColor = true;
			// 
			// HealMagicBox
			// 
			this.HealMagicBox.AutoSize = true;
			this.HealMagicBox.Location = new System.Drawing.Point(8, 24);
			this.HealMagicBox.Name = "HealMagicBox";
			this.HealMagicBox.Size = new System.Drawing.Size(99, 17);
			this.HealMagicBox.TabIndex = 5;
			this.HealMagicBox.Text = "Has heal magic";
			this.HealMagicBox.UseVisualStyleBackColor = true;
			// 
			// AudioTab
			// 
			this.AudioTab.Controls.Add(this.PlayHurtSoundBox);
			this.AudioTab.Controls.Add(this.PlayDeathSoundBox);
			this.AudioTab.Controls.Add(this.PlayMoveSoundBox);
			this.AudioTab.Controls.Add(this.PlayAttackSoundBox);
			this.AudioTab.Controls.Add(this.LoadHurtSoundBox);
			this.AudioTab.Controls.Add(this.LoadDeathSoundBox);
			this.AudioTab.Controls.Add(this.LoadMoveSoundBox);
			this.AudioTab.Controls.Add(this.LoadAttackSoundBox);
			this.AudioTab.Controls.Add(this.HurtSoundBox);
			this.AudioTab.Controls.Add(this.DeathSoundBox);
			this.AudioTab.Controls.Add(this.MoveSoundBox);
			this.AudioTab.Controls.Add(this.AttackSoundBox);
			this.AudioTab.Controls.Add(this.label15);
			this.AudioTab.Controls.Add(this.label14);
			this.AudioTab.Controls.Add(this.label13);
			this.AudioTab.Controls.Add(this.label10);
			this.AudioTab.Location = new System.Drawing.Point(4, 22);
			this.AudioTab.Name = "AudioTab";
			this.AudioTab.Size = new System.Drawing.Size(492, 447);
			this.AudioTab.TabIndex = 3;
			this.AudioTab.Text = "Audio";
			this.AudioTab.UseVisualStyleBackColor = true;
			// 
			// PlayHurtSoundBox
			// 
			this.PlayHurtSoundBox.Image = ((System.Drawing.Image)(resources.GetObject("PlayHurtSoundBox.Image")));
			this.PlayHurtSoundBox.Location = new System.Drawing.Point(343, 101);
			this.PlayHurtSoundBox.Name = "PlayHurtSoundBox";
			this.PlayHurtSoundBox.Size = new System.Drawing.Size(23, 23);
			this.PlayHurtSoundBox.TabIndex = 3;
			this.PlayHurtSoundBox.UseVisualStyleBackColor = true;
			// 
			// PlayDeathSoundBox
			// 
			this.PlayDeathSoundBox.Image = ((System.Drawing.Image)(resources.GetObject("PlayDeathSoundBox.Image")));
			this.PlayDeathSoundBox.Location = new System.Drawing.Point(343, 75);
			this.PlayDeathSoundBox.Name = "PlayDeathSoundBox";
			this.PlayDeathSoundBox.Size = new System.Drawing.Size(23, 23);
			this.PlayDeathSoundBox.TabIndex = 3;
			this.PlayDeathSoundBox.UseVisualStyleBackColor = true;
			// 
			// PlayMoveSoundBox
			// 
			this.PlayMoveSoundBox.Image = ((System.Drawing.Image)(resources.GetObject("PlayMoveSoundBox.Image")));
			this.PlayMoveSoundBox.Location = new System.Drawing.Point(343, 49);
			this.PlayMoveSoundBox.Name = "PlayMoveSoundBox";
			this.PlayMoveSoundBox.Size = new System.Drawing.Size(23, 23);
			this.PlayMoveSoundBox.TabIndex = 3;
			this.PlayMoveSoundBox.UseVisualStyleBackColor = true;
			// 
			// PlayAttackSoundBox
			// 
			this.PlayAttackSoundBox.Image = ((System.Drawing.Image)(resources.GetObject("PlayAttackSoundBox.Image")));
			this.PlayAttackSoundBox.Location = new System.Drawing.Point(343, 23);
			this.PlayAttackSoundBox.Name = "PlayAttackSoundBox";
			this.PlayAttackSoundBox.Size = new System.Drawing.Size(23, 23);
			this.PlayAttackSoundBox.TabIndex = 3;
			this.PlayAttackSoundBox.UseVisualStyleBackColor = true;
			// 
			// LoadHurtSoundBox
			// 
			this.LoadHurtSoundBox.Location = new System.Drawing.Point(269, 102);
			this.LoadHurtSoundBox.Name = "LoadHurtSoundBox";
			this.LoadHurtSoundBox.Size = new System.Drawing.Size(68, 23);
			this.LoadHurtSoundBox.TabIndex = 2;
			this.LoadHurtSoundBox.Text = "Browse...";
			this.LoadHurtSoundBox.UseVisualStyleBackColor = true;
			this.LoadHurtSoundBox.Click += new System.EventHandler(this.LoadHurtSoundBox_Click);
			// 
			// LoadDeathSoundBox
			// 
			this.LoadDeathSoundBox.Location = new System.Drawing.Point(269, 76);
			this.LoadDeathSoundBox.Name = "LoadDeathSoundBox";
			this.LoadDeathSoundBox.Size = new System.Drawing.Size(68, 23);
			this.LoadDeathSoundBox.TabIndex = 2;
			this.LoadDeathSoundBox.Text = "Browse...";
			this.LoadDeathSoundBox.UseVisualStyleBackColor = true;
			this.LoadDeathSoundBox.Click += new System.EventHandler(this.LoadDeathSoundBox_Click);
			// 
			// LoadMoveSoundBox
			// 
			this.LoadMoveSoundBox.Location = new System.Drawing.Point(269, 50);
			this.LoadMoveSoundBox.Name = "LoadMoveSoundBox";
			this.LoadMoveSoundBox.Size = new System.Drawing.Size(68, 23);
			this.LoadMoveSoundBox.TabIndex = 2;
			this.LoadMoveSoundBox.Text = "Browse...";
			this.LoadMoveSoundBox.UseVisualStyleBackColor = true;
			this.LoadMoveSoundBox.Click += new System.EventHandler(this.LoadMoveSoundBox_Click);
			// 
			// LoadAttackSoundBox
			// 
			this.LoadAttackSoundBox.Location = new System.Drawing.Point(269, 24);
			this.LoadAttackSoundBox.Name = "LoadAttackSoundBox";
			this.LoadAttackSoundBox.Size = new System.Drawing.Size(68, 23);
			this.LoadAttackSoundBox.TabIndex = 2;
			this.LoadAttackSoundBox.Text = "Browse...";
			this.LoadAttackSoundBox.UseVisualStyleBackColor = true;
			this.LoadAttackSoundBox.Click += new System.EventHandler(this.LoadAttackSoundBox_Click);
			// 
			// HurtSoundBox
			// 
			this.HurtSoundBox.Location = new System.Drawing.Point(53, 104);
			this.HurtSoundBox.Name = "HurtSoundBox";
			this.HurtSoundBox.Size = new System.Drawing.Size(210, 20);
			this.HurtSoundBox.TabIndex = 1;
			// 
			// DeathSoundBox
			// 
			this.DeathSoundBox.Location = new System.Drawing.Point(53, 78);
			this.DeathSoundBox.Name = "DeathSoundBox";
			this.DeathSoundBox.Size = new System.Drawing.Size(210, 20);
			this.DeathSoundBox.TabIndex = 1;
			// 
			// MoveSoundBox
			// 
			this.MoveSoundBox.Location = new System.Drawing.Point(53, 52);
			this.MoveSoundBox.Name = "MoveSoundBox";
			this.MoveSoundBox.Size = new System.Drawing.Size(210, 20);
			this.MoveSoundBox.TabIndex = 1;
			// 
			// AttackSoundBox
			// 
			this.AttackSoundBox.Location = new System.Drawing.Point(53, 26);
			this.AttackSoundBox.Name = "AttackSoundBox";
			this.AttackSoundBox.Size = new System.Drawing.Size(210, 20);
			this.AttackSoundBox.TabIndex = 1;
			// 
			// label15
			// 
			this.label15.AutoSize = true;
			this.label15.Location = new System.Drawing.Point(5, 81);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(42, 13);
			this.label15.TabIndex = 0;
			this.label15.Text = "Death :";
			// 
			// label14
			// 
			this.label14.AutoSize = true;
			this.label14.Location = new System.Drawing.Point(14, 107);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(33, 13);
			this.label14.TabIndex = 0;
			this.label14.Text = "Hurt :";
			// 
			// label13
			// 
			this.label13.AutoSize = true;
			this.label13.Location = new System.Drawing.Point(3, 29);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(44, 13);
			this.label13.TabIndex = 0;
			this.label13.Text = "Attack :";
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(7, 55);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(40, 13);
			this.label10.TabIndex = 0;
			this.label10.Text = "Move :";
			// 
			// MonsterControl
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.tabControl1);
			this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.Name = "MonsterControl";
			this.Size = new System.Drawing.Size(500, 473);
			this.PocketGroupBox.ResumeLayout(false);
			this.PocketGroupBox.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.XPRewardBox)).EndInit();
			this.tabControl1.ResumeLayout(false);
			this.VisualTab.ResumeLayout(false);
			this.VisualTab.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.TileIDBox)).EndInit();
			this.AttributesTab.ResumeLayout(false);
			this.PropertiesTab.ResumeLayout(false);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.AttackSpeedBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.SightRangeBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.PickupBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.ArmorClassBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.StealBox)).EndInit();
			this.MagicTab.ResumeLayout(false);
			this.MagicTab.PerformLayout();
			this.MagicGroupBox.ResumeLayout(false);
			this.MagicGroupBox.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.CastingLevelBox)).EndInit();
			this.AudioTab.ResumeLayout(false);
			this.AudioTab.PerformLayout();
			this.ResumeLayout(false);

		}
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			DungeonEye.Dice dice1 = new DungeonEye.Dice();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.DifficultyBox = new System.Windows.Forms.NumericUpDown();
			this.label1 = new System.Windows.Forms.Label();
			this.MonsterTriggerBox = new System.Windows.Forms.CheckBox();
			this.IsHiddenBox = new System.Windows.Forms.CheckBox();
			this.IsIllusionBox = new System.Windows.Forms.CheckBox();
			this.TargetBox = new DungeonEye.Forms.TargetControl();
			this.DamageBox = new DungeonEye.Forms.DiceControl();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.DifficultyBox)).BeginInit();
			this.groupBox2.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.DifficultyBox);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.MonsterTriggerBox);
			this.groupBox1.Controls.Add(this.IsHiddenBox);
			this.groupBox1.Controls.Add(this.IsIllusionBox);
			this.groupBox1.Location = new System.Drawing.Point(6, 125);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(230, 72);
			this.groupBox1.TabIndex = 3;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "groupBox1";
			// 
			// DifficultyBox
			// 
			this.DifficultyBox.Location = new System.Drawing.Point(156, 18);
			this.DifficultyBox.Name = "DifficultyBox";
			this.DifficultyBox.Size = new System.Drawing.Size(53, 20);
			this.DifficultyBox.TabIndex = 2;
			this.DifficultyBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.DifficultyBox.ThousandsSeparator = true;
			this.DifficultyBox.ValueChanged += new System.EventHandler(this.DifficultyBox_ValueChanged);
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(103, 20);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(47, 13);
			this.label1.TabIndex = 1;
			this.label1.Text = "Difficulty";
			// 
			// MonsterTriggerBox
			// 
			this.MonsterTriggerBox.AutoSize = true;
			this.MonsterTriggerBox.Location = new System.Drawing.Point(106, 42);
			this.MonsterTriggerBox.Name = "MonsterTriggerBox";
			this.MonsterTriggerBox.Size = new System.Drawing.Size(118, 17);
			this.MonsterTriggerBox.TabIndex = 0;
			this.MonsterTriggerBox.Text = "Monster also trigger";
			this.MonsterTriggerBox.UseVisualStyleBackColor = true;
			this.MonsterTriggerBox.CheckedChanged += new System.EventHandler(this.MonsterTriggerBox_CheckedChanged);
			// 
			// IsHiddenBox
			// 
			this.IsHiddenBox.AutoSize = true;
			this.IsHiddenBox.Location = new System.Drawing.Point(6, 42);
			this.IsHiddenBox.Name = "IsHiddenBox";
			this.IsHiddenBox.Size = new System.Drawing.Size(60, 17);
			this.IsHiddenBox.TabIndex = 0;
			this.IsHiddenBox.Text = "Hidden";
			this.IsHiddenBox.UseVisualStyleBackColor = true;
			this.IsHiddenBox.CheckedChanged += new System.EventHandler(this.IsHiddenBox_CheckedChanged);
			// 
			// IsIllusionBox
			// 
			this.IsIllusionBox.AutoSize = true;
			this.IsIllusionBox.Location = new System.Drawing.Point(6, 19);
			this.IsIllusionBox.Name = "IsIllusionBox";
			this.IsIllusionBox.Size = new System.Drawing.Size(58, 17);
			this.IsIllusionBox.TabIndex = 0;
			this.IsIllusionBox.Text = "Illusion";
			this.IsIllusionBox.UseVisualStyleBackColor = true;
			this.IsIllusionBox.CheckedChanged += new System.EventHandler(this.IsIllusionBox_CheckedChanged);
			// 
			// TargetBox
			// 
			this.TargetBox.Dungeon = null;
			this.TargetBox.Location = new System.Drawing.Point(242, 19);
			this.TargetBox.MinimumSize = new System.Drawing.Size(175, 100);
			this.TargetBox.Name = "TargetBox";
			this.TargetBox.Size = new System.Drawing.Size(175, 100);
			this.TargetBox.TabIndex = 2;
			this.TargetBox.Title = "Target :";
			this.TargetBox.TargetChanged += new DungeonEye.Forms.TargetControl.TargetChangedEventHandler(this.TargetBox_TargetChanged);
			// 
			// DamageBox
			// 
			this.DamageBox.ControlText = "Damage :";
			dice1.Faces = 1;
			dice1.Modifier = 0;
			dice1.Throws = 1;
			this.DamageBox.Dice = dice1;
			this.DamageBox.Location = new System.Drawing.Point(6, 19);
			this.DamageBox.MinimumSize = new System.Drawing.Size(230, 100);
			this.DamageBox.Name = "DamageBox";
			this.DamageBox.Size = new System.Drawing.Size(230, 100);
			this.DamageBox.TabIndex = 1;
			this.DamageBox.ValueChanged += new System.EventHandler(this.DamageBox_ValueChanged);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.groupBox1);
			this.groupBox2.Controls.Add(this.DamageBox);
			this.groupBox2.Controls.Add(this.TargetBox);
			this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupBox2.Location = new System.Drawing.Point(0, 0);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(1068, 693);
			this.groupBox2.TabIndex = 4;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "Pit";
			// 
			// PitControl
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.groupBox2);
			this.Name = "PitControl";
			this.Size = new System.Drawing.Size(1068, 693);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.DifficultyBox)).EndInit();
			this.groupBox2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			DungeonEye.Dice dice1 = new DungeonEye.Dice();
			this.GLGroundTile = new OpenTK.GLControl();
			this.GLInventoryTile = new OpenTK.GLControl();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.GroundTileBox = new System.Windows.Forms.NumericUpDown();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.IdentifiedNameBox = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.ShortNameBox = new System.Windows.Forms.TextBox();
			this.label34 = new System.Windows.Forms.Label();
			this.groupBox5 = new System.Windows.Forms.GroupBox();
			this.CanIdentifyBox = new System.Windows.Forms.CheckBox();
			this.IsBigBox = new System.Windows.Forms.CheckBox();
			this.IdentifiedBox = new System.Windows.Forms.CheckBox();
			this.IsCursedBox = new System.Windows.Forms.CheckBox();
			this.ACBonusBox = new System.Windows.Forms.NumericUpDown();
			this.label14 = new System.Windows.Forms.Label();
			this.RangeBox = new System.Windows.Forms.NumericUpDown();
			this.WeightBox = new System.Windows.Forms.NumericUpDown();
			this.SpeedBox = new System.Windows.Forms.NumericUpDown();
			this.label3 = new System.Windows.Forms.Label();
			this.Weight = new System.Windows.Forms.Label();
			this.TypeBox = new System.Windows.Forms.ComboBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.groupBox6 = new System.Windows.Forms.GroupBox();
			this.WaistBox = new System.Windows.Forms.CheckBox();
			this.HeadBox = new System.Windows.Forms.CheckBox();
			this.FeetBox = new System.Windows.Forms.CheckBox();
			this.WristBox = new System.Windows.Forms.CheckBox();
			this.RingBox = new System.Windows.Forms.CheckBox();
			this.BodyBox = new System.Windows.Forms.CheckBox();
			this.NeckBox = new System.Windows.Forms.CheckBox();
			this.SecondaryBox = new System.Windows.Forms.CheckBox();
			this.QuiverBox = new System.Windows.Forms.CheckBox();
			this.PrimaryBox = new System.Windows.Forms.CheckBox();
			this.groupBox8 = new System.Windows.Forms.GroupBox();
			this.MultiplierBox = new System.Windows.Forms.NumericUpDown();
			this.label11 = new System.Windows.Forms.Label();
			this.CriticalMaxBox = new System.Windows.Forms.NumericUpDown();
			this.label9 = new System.Windows.Forms.Label();
			this.CriticalMinBox = new System.Windows.Forms.NumericUpDown();
			this.label10 = new System.Windows.Forms.Label();
			this.label15 = new System.Windows.Forms.Label();
			this.GLIncomingTile = new OpenTK.GLControl();
			this.GLThrownTile = new OpenTK.GLControl();
			this.label12 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.TileSetNameBox = new System.Windows.Forms.ComboBox();
			this.IncomingTileBox = new System.Windows.Forms.NumericUpDown();
			this.ThrownTileBox = new System.Windows.Forms.NumericUpDown();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.ThiefBox = new System.Windows.Forms.CheckBox();
			this.MageBox = new System.Windows.Forms.CheckBox();
			this.ClericBox = new System.Windows.Forms.CheckBox();
			this.RangerBox = new System.Windows.Forms.CheckBox();
			this.PaladinBox = new System.Windows.Forms.CheckBox();
			this.FighterBox = new System.Windows.Forms.CheckBox();
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.VisualTab = new System.Windows.Forms.TabPage();
			this.InventoryTileBox = new System.Windows.Forms.NumericUpDown();
			this.PropertiesTab = new System.Windows.Forms.TabPage();
			this.groupBox7 = new System.Windows.Forms.GroupBox();
			this.AllowedHandPrimaryBox = new System.Windows.Forms.CheckBox();
			this.AllowedHandSecondaryBox = new System.Windows.Forms.CheckBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.SlashBox = new System.Windows.Forms.CheckBox();
			this.BludgeBox = new System.Windows.Forms.CheckBox();
			this.PiercingBox = new System.Windows.Forms.CheckBox();
			this.DamageBox = new DungeonEye.Forms.DiceControl();
			this.ScriptTab = new System.Windows.Forms.TabPage();
			this.scriptControl1 = new ArcEngine.Editor.ScriptControl();
			this.groupBox11 = new System.Windows.Forms.GroupBox();
			((System.ComponentModel.ISupportInitialize)(this.GroundTileBox)).BeginInit();
			this.groupBox4.SuspendLayout();
			this.groupBox5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.ACBonusBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.RangeBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.WeightBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.SpeedBox)).BeginInit();
			this.groupBox6.SuspendLayout();
			this.groupBox8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.MultiplierBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.CriticalMaxBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.CriticalMinBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.IncomingTileBox)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.ThrownTileBox)).BeginInit();
			this.groupBox3.SuspendLayout();
			this.tabControl1.SuspendLayout();
			this.VisualTab.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.InventoryTileBox)).BeginInit();
			this.PropertiesTab.SuspendLayout();
			this.groupBox7.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.ScriptTab.SuspendLayout();
			this.groupBox11.SuspendLayout();
			this.SuspendLayout();
			// 
			// GLGroundTile
			// 
			this.GLGroundTile.BackColor = System.Drawing.Color.Black;
			this.GLGroundTile.Location = new System.Drawing.Point(200, 73);
			this.GLGroundTile.Name = "GLGroundTile";
			this.GLGroundTile.Size = new System.Drawing.Size(181, 165);
			this.GLGroundTile.TabIndex = 2;
			this.GLGroundTile.TabStop = false;
			this.GLGroundTile.VSync = true;
			this.GLGroundTile.Load += new System.EventHandler(this.GLGroundTile_Load);
			this.GLGroundTile.Paint += new System.Windows.Forms.PaintEventHandler(this.Paint_Tiles);
			this.GLGroundTile.Resize += new System.EventHandler(this.GLGroundTile_Resize);
			// 
			// GLInventoryTile
			// 
			this.GLInventoryTile.BackColor = System.Drawing.Color.Black;
			this.GLInventoryTile.Location = new System.Drawing.Point(6, 73);
			this.GLInventoryTile.Name = "GLInventoryTile";
			this.GLInventoryTile.Size = new System.Drawing.Size(181, 165);
			this.GLInventoryTile.TabIndex = 2;
			this.GLInventoryTile.TabStop = false;
			this.GLInventoryTile.VSync = true;
			this.GLInventoryTile.Load += new System.EventHandler(this.GLInventoryTile_Load);
			this.GLInventoryTile.Paint += new System.Windows.Forms.PaintEventHandler(this.Paint_Tiles);
			this.GLInventoryTile.Resize += new System.EventHandler(this.GLInventoryTile_Resize);
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(206, 49);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(48, 13);
			this.label2.TabIndex = 1;
			this.label2.Text = "Ground :";
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(3, 49);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(57, 13);
			this.label1.TabIndex = 1;
			this.label1.Text = "Inventory :";
			// 
			// GroundTileBox
			// 
			this.GroundTileBox.Location = new System.Drawing.Point(259, 46);
			this.GroundTileBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.GroundTileBox.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            -2147483648});
			this.GroundTileBox.Name = "GroundTileBox";
			this.GroundTileBox.Size = new System.Drawing.Size(122, 20);
			this.GroundTileBox.TabIndex = 2;
			this.GroundTileBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.GroundTileBox.ThousandsSeparator = true;
			this.GroundTileBox.ValueChanged += new System.EventHandler(this.GroundTileID_OnChange);
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.IdentifiedNameBox);
			this.groupBox4.Controls.Add(this.label4);
			this.groupBox4.Controls.Add(this.ShortNameBox);
			this.groupBox4.Controls.Add(this.label34);
			this.groupBox4.Location = new System.Drawing.Point(6, 6);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(386, 79);
			this.groupBox4.TabIndex = 5;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "Description :";
			// 
			// IdentifiedNameBox
			// 
			this.IdentifiedNameBox.Location = new System.Drawing.Point(97, 45);
			this.IdentifiedNameBox.Name = "IdentifiedNameBox";
			this.IdentifiedNameBox.Size = new System.Drawing.Size(283, 20);
			this.IdentifiedNameBox.TabIndex = 1;
			this.IdentifiedNameBox.TextChanged += new System.EventHandler(this.IdentifiedNameBox_TextChanged);
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(6, 48);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(85, 13);
			this.label4.TabIndex = 0;
			this.label4.Text = "Identified name :";
			// 
			// ShortNameBox
			// 
			this.ShortNameBox.Location = new System.Drawing.Point(97, 19);
			this.ShortNameBox.Name = "ShortNameBox";
			this.ShortNameBox.Size = new System.Drawing.Size(283, 20);
			this.ShortNameBox.TabIndex = 0;
			this.ShortNameBox.TextChanged += new System.EventHandler(this.ShortNameBox_TextChanged);
			// 
			// label34
			// 
			this.label34.AutoSize = true;
			this.label34.Location = new System.Drawing.Point(24, 19);
			this.label34.Name = "label34";
			this.label34.Size = new System.Drawing.Size(67, 13);
			this.label34.TabIndex = 0;
			this.label34.Text = "Short name :";
			// 
			// groupBox5
			// 
			this.groupBox5.Controls.Add(this.CanIdentifyBox);
			this.groupBox5.Controls.Add(this.IsBigBox);
			this.groupBox5.Controls.Add(this.IdentifiedBox);
			this.groupBox5.Controls.Add(this.IsCursedBox);
			this.groupBox5.Controls.Add(this.ACBonusBox);
			this.groupBox5.Controls.Add(this.label14);
			this.groupBox5.Controls.Add(this.RangeBox);
			this.groupBox5.Controls.Add(this.WeightBox);
			this.groupBox5.Controls.Add(this.SpeedBox);
			this.groupBox5.Controls.Add(this.label3);
			this.groupBox5.Controls.Add(this.Weight);
			this.groupBox5.Controls.Add(this.TypeBox);
			this.groupBox5.Controls.Add(this.label6);
			this.groupBox5.Controls.Add(this.label5);
			this.groupBox5.Location = new System.Drawing.Point(6, 91);
			this.groupBox5.Name = "groupBox5";
			this.groupBox5.Size = new System.Drawing.Size(219, 158);
			this.groupBox5.TabIndex = 6;
			this.groupBox5.TabStop = false;
			this.groupBox5.Text = "Misc :";
			// 
			// CanIdentifyBox
			// 
			this.CanIdentifyBox.AutoSize = true;
			this.CanIdentifyBox.Location = new System.Drawing.Point(133, 122);
			this.CanIdentifyBox.Name = "CanIdentifyBox";
			this.CanIdentifyBox.Size = new System.Drawing.Size(81, 17);
			this.CanIdentifyBox.TabIndex = 6;
			this.CanIdentifyBox.Text = "Can identify";
			this.CanIdentifyBox.UseVisualStyleBackColor = true;
			this.CanIdentifyBox.CheckedChanged += new System.EventHandler(this.CanIdentifyBox_CheckedChanged);
			// 
			// IsBigBox
			// 
			this.IsBigBox.AutoSize = true;
			this.IsBigBox.Location = new System.Drawing.Point(133, 88);
			this.IsBigBox.Name = "IsBigBox";
			this.IsBigBox.Size = new System.Drawing.Size(52, 17);
			this.IsBigBox.TabIndex = 6;
			this.IsBigBox.Text = "Is Big";
			this.IsBigBox.UseVisualStyleBackColor = true;
			this.IsBigBox.CheckedChanged += new System.EventHandler(this.IsBigBox_CheckedChanged);
			// 
			// IdentifiedBox
			// 
			this.IdentifiedBox.AutoSize = true;
			this.IdentifiedBox.Location = new System.Drawing.Point(133, 65);
			this.IdentifiedBox.Name = "IdentifiedBox";
			this.IdentifiedBox.Size = new System.Drawing.Size(80, 17);
			this.IdentifiedBox.TabIndex = 6;
			this.IdentifiedBox.Text = "Is Identified";
			this.IdentifiedBox.UseVisualStyleBackColor = true;
			this.IdentifiedBox.CheckedChanged += new System.EventHandler(this.IdentifiedBox_CheckedChanged);
			// 
			// IsCursedBox
			// 
			this.IsCursedBox.AutoSize = true;
			this.IsCursedBox.Location = new System.Drawing.Point(133, 44);
			this.IsCursedBox.Name = "IsCursedBox";
			this.IsCursedBox.Size = new System.Drawing.Size(70, 17);
			this.IsCursedBox.TabIndex = 5;
			this.IsCursedBox.Text = "Is Cursed";
			this.IsCursedBox.UseVisualStyleBackColor = true;
			this.IsCursedBox.CheckedChanged += new System.EventHandler(this.CursedBox_CheckedChanged);
			// 
			// ACBonusBox
			// 
			this.ACBonusBox.Location = new System.Drawing.Point(70, 122);
			this.ACBonusBox.Maximum = new decimal(new int[] {
            127,
            0,
            0,
            0});
			this.ACBonusBox.Minimum = new decimal(new int[] {
            127,
            0,
            0,
            -2147483648});
			this.ACBonusBox.Name = "ACBonusBox";
			this.ACBonusBox.Size = new System.Drawing.Size(57, 20);
			this.ACBonusBox.TabIndex = 2;
			this.ACBonusBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.ACBonusBox.ValueChanged += new System.EventHandler(this.ACBonusBox_ValueChanged);
			// 
			// label14
			// 
			this.label14.AutoSize = true;
			this.label14.Location = new System.Drawing.Point(4, 126);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(60, 13);
			this.label14.TabIndex = 1;
			this.label14.Text = "AC Bonus :";
			this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// RangeBox
			// 
			this.RangeBox.Location = new System.Drawing.Point(70, 96);
			this.RangeBox.Name = "RangeBox";
			this.RangeBox.Size = new System.Drawing.Size(57, 20);
			this.RangeBox.TabIndex = 4;
			this.RangeBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.RangeBox.ThousandsSeparator = true;
			this.RangeBox.ValueChanged += new System.EventHandler(this.RangeBox_ValueChanged);
			// 
			// WeightBox
			// 
			this.WeightBox.Location = new System.Drawing.Point(70, 70);
			this.WeightBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.WeightBox.Name = "WeightBox";
			this.WeightBox.Size = new System.Drawing.Size(57, 20);
			this.WeightBox.TabIndex = 2;
			this.WeightBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.WeightBox.ThousandsSeparator = true;
			this.WeightBox.ValueChanged += new System.EventHandler(this.WeightBox_ValueChanged);
			// 
			// SpeedBox
			// 
			this.SpeedBox.Location = new System.Drawing.Point(70, 44);
			this.SpeedBox.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
			this.SpeedBox.Name = "SpeedBox";
			this.SpeedBox.Size = new System.Drawing.Size(57, 20);
			this.SpeedBox.TabIndex = 2;
			this.SpeedBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.SpeedBox.ThousandsSeparator = true;
			this.SpeedBox.ValueChanged += new System.EventHandler(this.SpeedBox_ValueChanged);
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(20, 98);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(45, 13);
			this.label3.TabIndex = 1;
			this.label3.Text = "Range :";
			// 
			// Weight
			// 
			this.Weight.AutoSize = true;
			this.Weight.Location = new System.Drawing.Point(17, 72);
			this.Weight.Name = "Weight";
			this.Weight.Size = new System.Drawing.Size(47, 13);
			this.Weight.TabIndex = 1;
			this.Weight.Text = "Weight :";
			// 
			// TypeBox
			// 
			this.TypeBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.TypeBox.FormattingEnabled = true;
			this.TypeBox.Location = new System.Drawing.Point(70, 19);
			this.TypeBox.Name = "TypeBox";
			this.TypeBox.Size = new System.Drawing.Size(127, 21);
			this.TypeBox.Sorted = true;
			this.TypeBox.TabIndex = 2;
			this.TypeBox.SelectedIndexChanged += new System.EventHandler(this.TypeBox_SelectedIndexChanged);
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(20, 46);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(44, 13);
			this.label6.TabIndex = 1;
			this.label6.Text = "Speed :";
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(27, 22);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(37, 13);
			this.label5.TabIndex = 1;
			this.label5.Text = "Type :";
			// 
			// groupBox6
			// 
			this.groupBox6.Controls.Add(this.WaistBox);
			this.groupBox6.Controls.Add(this.HeadBox);
			this.groupBox6.Controls.Add(this.FeetBox);
			this.groupBox6.Controls.Add(this.WristBox);
			this.groupBox6.Controls.Add(this.RingBox);
			this.groupBox6.Controls.Add(this.BodyBox);
			this.groupBox6.Controls.Add(this.NeckBox);
			this.groupBox6.Controls.Add(this.SecondaryBox);
			this.groupBox6.Controls.Add(this.QuiverBox);
			this.groupBox6.Controls.Add(this.PrimaryBox);
			this.groupBox6.Location = new System.Drawing.Point(231, 91);
			this.groupBox6.Name = "groupBox6";
			this.groupBox6.Size = new System.Drawing.Size(161, 158);
			this.groupBox6.TabIndex = 7;
			this.groupBox6.TabStop = false;
			this.groupBox6.Text = "Allowed slots :";
			// 
			// WaistBox
			// 
			this.WaistBox.AutoSize = true;
			this.WaistBox.Location = new System.Drawing.Point(78, 110);
			this.WaistBox.Name = "WaistBox";
			this.WaistBox.Size = new System.Drawing.Size(44, 17);
			this.WaistBox.TabIndex = 0;
			this.WaistBox.Text = "Belt";
			this.WaistBox.UseVisualStyleBackColor = true;
			this.WaistBox.CheckedChanged += new System.EventHandler(this.WaistBox_CheckedChanged);
			// 
			// HeadBox
			// 
			this.HeadBox.AutoSize = true;
			this.HeadBox.Location = new System.Drawing.Point(6, 111);
			this.HeadBox.Name = "HeadBox";
			this.HeadBox.Size = new System.Drawing.Size(52, 17);
			this.HeadBox.TabIndex = 0;
			this.HeadBox.Text = "Head";
			this.HeadBox.UseVisualStyleBackColor = true;
			this.HeadBox.CheckedChanged += new System.EventHandler(this.HeadBox_CheckedChanged);
			// 
			// FeetBox
			// 
			this.FeetBox.AutoSize = true;
			this.FeetBox.Location = new System.Drawing.Point(78, 87);
			this.FeetBox.Name = "FeetBox";
			this.FeetBox.Size = new System.Drawing.Size(47, 17);
			this.FeetBox.TabIndex = 0;
			this.FeetBox.Text = "Feet";
			this.FeetBox.UseVisualStyleBackColor = true;
			this.FeetBox.CheckedChanged += new System.EventHandler(this.FeetBox_CheckedChanged);
			// 
			// WristBox
			// 
			this.WristBox.AutoSize = true;
			this.WristBox.Location = new System.Drawing.Point(6, 88);
			this.WristBox.Name = "WristBox";
			this.WristBox.Size = new System.Drawing.Size(55, 17);
			this.WristBox.TabIndex = 0;
			this.WristBox.Text = "Wrists";
			this.WristBox.UseVisualStyleBackColor = true;
			this.WristBox.CheckedChanged += new System.EventHandler(this.WristBox_CheckedChanged);
			// 
			// RingBox
			// 
			this.RingBox.AutoSize = true;
			this.RingBox.Location = new System.Drawing.Point(78, 64);
			this.RingBox.Name = "RingBox";
			this.RingBox.Size = new System.Drawing.Size(60, 17);
			this.RingBox.TabIndex = 0;
			this.RingBox.Text = "Fingers";
			this.RingBox.UseVisualStyleBackColor = true;
			this.RingBox.CheckedChanged += new System.EventHandler(this.RingBox_CheckedChanged);
			// 
			// BodyBox
			// 
			this.BodyBox.AutoSize = true;
			this.BodyBox.Location = new System.Drawing.Point(78, 41);
			this.BodyBox.Name = "BodyBox";
			this.BodyBox.Size = new System.Drawing.Size(50, 17);
			this.BodyBox.TabIndex = 0;
			this.BodyBox.Text = "Body";
			this.BodyBox.UseVisualStyleBackColor = true;
			this.BodyBox.CheckedChanged += new System.EventHandler(this.BodyBox_CheckedChanged);
			// 
			// NeckBox
			// 
			this.NeckBox.AutoSize = true;
			this.NeckBox.Location = new System.Drawing.Point(6, 65);
			this.NeckBox.Name = "NeckBox";
			this.NeckBox.Size = new System.Drawing.Size(52, 17);
			this.NeckBox.TabIndex = 0;
			this.NeckBox.Text = "Neck";
			this.NeckBox.UseVisualStyleBackColor = true;
			this.NeckBox.CheckedChanged += new System.EventHandler(this.NeckBox_CheckedChanged);
			// 
			// SecondaryBox
			// 
			this.SecondaryBox.AutoSize = true;
			this.SecondaryBox.Location = new System.Drawing.Point(78, 18);
			this.SecondaryBox.Name = "SecondaryBox";
			this.SecondaryBox.Size = new System.Drawing.Size(77, 17);
			this.SecondaryBox.TabIndex = 0;
			this.SecondaryBox.Text = "Secondary";
			this.SecondaryBox.UseVisualStyleBackColor = true;
			this.SecondaryBox.CheckedChanged += new System.EventHandler(this.SecondaryBox_CheckedChanged);
			// 
			// QuiverBox
			// 
			this.QuiverBox.AutoSize = true;
			this.QuiverBox.Location = new System.Drawing.Point(6, 42);
			this.QuiverBox.Name = "QuiverBox";
			this.QuiverBox.Size = new System.Drawing.Size(57, 17);
			this.QuiverBox.TabIndex = 0;
			this.QuiverBox.Text = "Quiver";
			this.QuiverBox.UseVisualStyleBackColor = true;
			this.QuiverBox.CheckedChanged += new System.EventHandler(this.QuiverBox_CheckedChanged);
			// 
			// PrimaryBox
			// 
			this.PrimaryBox.AutoSize = true;
			this.PrimaryBox.Location = new System.Drawing.Point(6, 19);
			this.PrimaryBox.Name = "PrimaryBox";
			this.PrimaryBox.Size = new System.Drawing.Size(60, 17);
			this.PrimaryBox.TabIndex = 0;
			this.PrimaryBox.Text = "Primary";
			this.PrimaryBox.UseVisualStyleBackColor = true;
			this.PrimaryBox.CheckedChanged += new System.EventHandler(this.PrimaryBox_CheckedChanged);
			// 
			// groupBox8
			// 
			this.groupBox8.Controls.Add(this.MultiplierBox);
			this.groupBox8.Controls.Add(this.label11);
			this.groupBox8.Controls.Add(this.CriticalMaxBox);
			this.groupBox8.Controls.Add(this.label9);
			this.groupBox8.Controls.Add(this.CriticalMinBox);
			this.groupBox8.Controls.Add(this.label10);
			this.groupBox8.Location = new System.Drawing.Point(244, 255);
			this.groupBox8.Name = "groupBox8";
			this.groupBox8.Size = new System.Drawing.Size(148, 104);
			this.groupBox8.TabIndex = 8;
			this.groupBox8.TabStop = false;
			this.groupBox8.Text = "Critical :";
			// 
			// MultiplierBox
			// 
			this.MultiplierBox.Location = new System.Drawing.Point(76, 75);
			this.MultiplierBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.MultiplierBox.Name = "MultiplierBox";
			this.MultiplierBox.Size = new System.Drawing.Size(59, 20);
			this.MultiplierBox.TabIndex = 2;
			this.MultiplierBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.MultiplierBox.ValueChanged += new System.EventHandler(this.MultiplierBox_ValueChanged);
			// 
			// label11
			// 
			this.label11.AutoSize = true;
			this.label11.Location = new System.Drawing.Point(16, 77);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(54, 13);
			this.label11.TabIndex = 1;
			this.label11.Text = "Multiplier :";
			// 
			// CriticalMaxBox
			// 
			this.CriticalMaxBox.Location = new System.Drawing.Point(76, 49);
			this.CriticalMaxBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.CriticalMaxBox.Name = "CriticalMaxBox";
			this.CriticalMaxBox.Size = new System.Drawing.Size(59, 20);
			this.CriticalMaxBox.TabIndex = 2;
			this.CriticalMaxBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.CriticalMaxBox.ValueChanged += new System.EventHandler(this.CriticalMaxBox_ValueChanged);
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(13, 51);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(57, 13);
			this.label9.TabIndex = 1;
			this.label9.Text = "Maximum :";
			// 
			// CriticalMinBox
			// 
			this.CriticalMinBox.Location = new System.Drawing.Point(76, 23);
			this.CriticalMinBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.CriticalMinBox.Name = "CriticalMinBox";
			this.CriticalMinBox.Size = new System.Drawing.Size(59, 20);
			this.CriticalMinBox.TabIndex = 2;
			this.CriticalMinBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.CriticalMinBox.ValueChanged += new System.EventHandler(this.CriticalMinBox_ValueChanged);
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(16, 25);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(54, 13);
			this.label10.TabIndex = 1;
			this.label10.Text = "Minimum :";
			// 
			// label15
			// 
			this.label15.AutoSize = true;
			this.label15.Location = new System.Drawing.Point(7, 15);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(44, 13);
			this.label15.TabIndex = 3;
			this.label15.Text = "Tileset :";
			// 
			// GLIncomingTile
			// 
			this.GLIncomingTile.BackColor = System.Drawing.Color.Black;
			this.GLIncomingTile.Location = new System.Drawing.Point(200, 289);
			this.GLIncomingTile.Name = "GLIncomingTile";
			this.GLIncomingTile.Size = new System.Drawing.Size(181, 165);
			this.GLIncomingTile.TabIndex = 2;
			this.GLIncomingTile.TabStop = false;
			this.GLIncomingTile.VSync = true;
			this.GLIncomingTile.Load += new System.EventHandler(this.GLIncomingTile_Load);
			this.GLIncomingTile.Paint += new System.Windows.Forms.PaintEventHandler(this.Paint_Tiles);
			this.GLIncomingTile.Resize += new System.EventHandler(this.GLIncomingTile_Resize);
			// 
			// GLThrownTile
			// 
			this.GLThrownTile.BackColor = System.Drawing.Color.Black;
			this.GLThrownTile.Location = new System.Drawing.Point(6, 289);
			this.GLThrownTile.Name = "GLThrownTile";
			this.GLThrownTile.Size = new System.Drawing.Size(181, 165);
			this.GLThrownTile.TabIndex = 2;
			this.GLThrownTile.TabStop = false;
			this.GLThrownTile.VSync = true;
			this.GLThrownTile.Load += new System.EventHandler(this.GLThrownTile_Load);
			this.GLThrownTile.Paint += new System.Windows.Forms.PaintEventHandler(this.Paint_Tiles);
			this.GLThrownTile.Resize += new System.EventHandler(this.GLThrownTile_Resize);
			// 
			// label12
			// 
			this.label12.AutoSize = true;
			this.label12.Location = new System.Drawing.Point(206, 265);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(56, 13);
			this.label12.TabIndex = 1;
			this.label12.Text = "Incoming :";
			// 
			// label13
			// 
			this.label13.AutoSize = true;
			this.label13.Location = new System.Drawing.Point(3, 265);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(49, 13);
			this.label13.TabIndex = 1;
			this.label13.Text = "Thrown :";
			// 
			// TileSetNameBox
			// 
			this.TileSetNameBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.TileSetNameBox.FormattingEnabled = true;
			this.TileSetNameBox.Location = new System.Drawing.Point(66, 10);
			this.TileSetNameBox.Name = "TileSetNameBox";
			this.TileSetNameBox.Size = new System.Drawing.Size(315, 21);
			this.TileSetNameBox.Sorted = true;
			this.TileSetNameBox.TabIndex = 0;
			this.TileSetNameBox.SelectedIndexChanged += new System.EventHandler(this.TileSetOnSelectedChanged);
			// 
			// IncomingTileBox
			// 
			this.IncomingTileBox.Location = new System.Drawing.Point(264, 262);
			this.IncomingTileBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.IncomingTileBox.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            -2147483648});
			this.IncomingTileBox.Name = "IncomingTileBox";
			this.IncomingTileBox.Size = new System.Drawing.Size(117, 20);
			this.IncomingTileBox.TabIndex = 4;
			this.IncomingTileBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.IncomingTileBox.ThousandsSeparator = true;
			this.IncomingTileBox.ValueChanged += new System.EventHandler(this.IncomingTile_OnChange);
			// 
			// ThrownTileBox
			// 
			this.ThrownTileBox.Location = new System.Drawing.Point(77, 262);
			this.ThrownTileBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.ThrownTileBox.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            -2147483648});
			this.ThrownTileBox.Name = "ThrownTileBox";
			this.ThrownTileBox.Size = new System.Drawing.Size(110, 20);
			this.ThrownTileBox.TabIndex = 3;
			this.ThrownTileBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.ThrownTileBox.ThousandsSeparator = true;
			this.ThrownTileBox.ValueChanged += new System.EventHandler(this.ThrownID_OnChange);
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.ThiefBox);
			this.groupBox3.Controls.Add(this.MageBox);
			this.groupBox3.Controls.Add(this.ClericBox);
			this.groupBox3.Controls.Add(this.RangerBox);
			this.groupBox3.Controls.Add(this.PaladinBox);
			this.groupBox3.Controls.Add(this.FighterBox);
			this.groupBox3.Location = new System.Drawing.Point(398, 91);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(111, 158);
			this.groupBox3.TabIndex = 7;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "Allowed classes :";
			// 
			// ThiefBox
			// 
			this.ThiefBox.AutoSize = true;
			this.ThiefBox.Location = new System.Drawing.Point(16, 135);
			this.ThiefBox.Name = "ThiefBox";
			this.ThiefBox.Size = new System.Drawing.Size(50, 17);
			this.ThiefBox.TabIndex = 0;
			this.ThiefBox.Text = "Thief";
			this.ThiefBox.UseVisualStyleBackColor = true;
			this.ThiefBox.CheckedChanged += new System.EventHandler(this.ThiefBox_CheckedChanged);
			// 
			// MageBox
			// 
			this.MageBox.AutoSize = true;
			this.MageBox.Location = new System.Drawing.Point(16, 112);
			this.MageBox.Name = "MageBox";
			this.MageBox.Size = new System.Drawing.Size(53, 17);
			this.MageBox.TabIndex = 0;
			this.MageBox.Text = "Mage";
			this.MageBox.UseVisualStyleBackColor = true;
			this.MageBox.CheckedChanged += new System.EventHandler(this.MageBox_CheckedChanged);
			// 
			// ClericBox
			// 
			this.ClericBox.AutoSize = true;
			this.ClericBox.Location = new System.Drawing.Point(16, 88);
			this.ClericBox.Name = "ClericBox";
			this.ClericBox.Size = new System.Drawing.Size(52, 17);
			this.ClericBox.TabIndex = 0;
			this.ClericBox.Text = "Cleric";
			this.ClericBox.UseVisualStyleBackColor = true;
			this.ClericBox.CheckedChanged += new System.EventHandler(this.ClericBox_CheckedChanged);
			// 
			// RangerBox
			// 
			this.RangerBox.AutoSize = true;
			this.RangerBox.Location = new System.Drawing.Point(16, 65);
			this.RangerBox.Name = "RangerBox";
			this.RangerBox.Size = new System.Drawing.Size(61, 17);
			this.RangerBox.TabIndex = 0;
			this.RangerBox.Text = "Ranger";
			this.RangerBox.UseVisualStyleBackColor = true;
			this.RangerBox.CheckedChanged += new System.EventHandler(this.RangerBox_CheckedChanged);
			// 
			// PaladinBox
			// 
			this.PaladinBox.AutoSize = true;
			this.PaladinBox.Location = new System.Drawing.Point(16, 42);
			this.PaladinBox.Name = "PaladinBox";
			this.PaladinBox.Size = new System.Drawing.Size(61, 17);
			this.PaladinBox.TabIndex = 0;
			this.PaladinBox.Text = "Paladin";
			this.PaladinBox.UseVisualStyleBackColor = true;
			this.PaladinBox.CheckedChanged += new System.EventHandler(this.PaladinBox_CheckedChanged);
			// 
			// FighterBox
			// 
			this.FighterBox.AutoSize = true;
			this.FighterBox.Location = new System.Drawing.Point(16, 19);
			this.FighterBox.Name = "FighterBox";
			this.FighterBox.Size = new System.Drawing.Size(58, 17);
			this.FighterBox.TabIndex = 0;
			this.FighterBox.Text = "Fighter";
			this.FighterBox.UseVisualStyleBackColor = true;
			this.FighterBox.CheckedChanged += new System.EventHandler(this.FighterBox_CheckedChanged);
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add(this.VisualTab);
			this.tabControl1.Controls.Add(this.PropertiesTab);
			this.tabControl1.Controls.Add(this.ScriptTab);
			this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tabControl1.Location = new System.Drawing.Point(3, 16);
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(890, 587);
			this.tabControl1.TabIndex = 10;
			// 
			// VisualTab
			// 
			this.VisualTab.Controls.Add(this.InventoryTileBox);
			this.VisualTab.Controls.Add(this.label15);
			this.VisualTab.Controls.Add(this.GLGroundTile);
			this.VisualTab.Controls.Add(this.GLInventoryTile);
			this.VisualTab.Controls.Add(this.ThrownTileBox);
			this.VisualTab.Controls.Add(this.GLIncomingTile);
			this.VisualTab.Controls.Add(this.IncomingTileBox);
			this.VisualTab.Controls.Add(this.label2);
			this.VisualTab.Controls.Add(this.GLThrownTile);
			this.VisualTab.Controls.Add(this.TileSetNameBox);
			this.VisualTab.Controls.Add(this.label1);
			this.VisualTab.Controls.Add(this.label13);
			this.VisualTab.Controls.Add(this.label12);
			this.VisualTab.Controls.Add(this.GroundTileBox);
			this.VisualTab.Location = new System.Drawing.Point(4, 22);
			this.VisualTab.Name = "VisualTab";
			this.VisualTab.Padding = new System.Windows.Forms.Padding(3);
			this.VisualTab.Size = new System.Drawing.Size(882, 561);
			this.VisualTab.TabIndex = 0;
			this.VisualTab.Text = "Visuals";
			this.VisualTab.UseVisualStyleBackColor = true;
			// 
			// InventoryTileBox
			// 
			this.InventoryTileBox.Location = new System.Drawing.Point(66, 47);
			this.InventoryTileBox.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
			this.InventoryTileBox.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            -2147483648});
			this.InventoryTileBox.Name = "InventoryTileBox";
			this.InventoryTileBox.Size = new System.Drawing.Size(121, 20);
			this.InventoryTileBox.TabIndex = 1;
			this.InventoryTileBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.InventoryTileBox.ThousandsSeparator = true;
			this.InventoryTileBox.ValueChanged += new System.EventHandler(this.InventoryTileID_OnChange);
			// 
			// PropertiesTab
			// 
			this.PropertiesTab.AutoScroll = true;
			this.PropertiesTab.Controls.Add(this.groupBox7);
			this.PropertiesTab.Controls.Add(this.groupBox1);
			this.PropertiesTab.Controls.Add(this.groupBox4);
			this.PropertiesTab.Controls.Add(this.groupBox8);
			this.PropertiesTab.Controls.Add(this.groupBox5);
			this.PropertiesTab.Controls.Add(this.groupBox6);
			this.PropertiesTab.Controls.Add(this.groupBox3);
			this.PropertiesTab.Controls.Add(this.DamageBox);
			this.PropertiesTab.Location = new System.Drawing.Point(4, 22);
			this.PropertiesTab.Name = "PropertiesTab";
			this.PropertiesTab.Padding = new System.Windows.Forms.Padding(3);
			this.PropertiesTab.Size = new System.Drawing.Size(882, 561);
			this.PropertiesTab.TabIndex = 1;
			this.PropertiesTab.Text = "Properties";
			this.PropertiesTab.UseVisualStyleBackColor = true;
			// 
			// groupBox7
			// 
			this.groupBox7.Controls.Add(this.AllowedHandPrimaryBox);
			this.groupBox7.Controls.Add(this.AllowedHandSecondaryBox);
			this.groupBox7.Location = new System.Drawing.Point(398, 6);
			this.groupBox7.Name = "groupBox7";
			this.groupBox7.Size = new System.Drawing.Size(111, 79);
			this.groupBox7.TabIndex = 13;
			this.groupBox7.TabStop = false;
			this.groupBox7.Text = "Allowed hands :";
			// 
			// AllowedHandPrimaryBox
			// 
			this.AllowedHandPrimaryBox.AutoSize = true;
			this.AllowedHandPrimaryBox.Location = new System.Drawing.Point(6, 18);
			this.AllowedHandPrimaryBox.Name = "AllowedHandPrimaryBox";
			this.AllowedHandPrimaryBox.Size = new System.Drawing.Size(60, 17);
			this.AllowedHandPrimaryBox.TabIndex = 1;
			this.AllowedHandPrimaryBox.Text = "Primary";
			this.AllowedHandPrimaryBox.UseVisualStyleBackColor = true;
			this.AllowedHandPrimaryBox.CheckedChanged += new System.EventHandler(this.AllowedHands_CheckedChanged);
			// 
			// AllowedHandSecondaryBox
			// 
			this.AllowedHandSecondaryBox.AutoSize = true;
			this.AllowedHandSecondaryBox.Location = new System.Drawing.Point(6, 41);
			this.AllowedHandSecondaryBox.Name = "AllowedHandSecondaryBox";
			this.AllowedHandSecondaryBox.Size = new System.Drawing.Size(77, 17);
			this.AllowedHandSecondaryBox.TabIndex = 0;
			this.AllowedHandSecondaryBox.Text = "Secondary";
			this.AllowedHandSecondaryBox.UseVisualStyleBackColor = true;
			this.AllowedHandSecondaryBox.CheckedChanged += new System.EventHandler(this.AllowedHands_CheckedChanged);
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.SlashBox);
			this.groupBox1.Controls.Add(this.BludgeBox);
			this.groupBox1.Controls.Add(this.PiercingBox);
			this.groupBox1.Location = new System.Drawing.Point(398, 255);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(111, 104);
			this.groupBox1.TabIndex = 10;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Damage type :";
			// 
			// SlashBox
			// 
			this.SlashBox.AutoSize = true;
			this.SlashBox.Location = new System.Drawing.Point(6, 73);
			this.SlashBox.Name = "SlashBox";
			this.SlashBox.Size = new System.Drawing.Size(52, 17);
			this.SlashBox.TabIndex = 0;
			this.SlashBox.Text = "Slash";
			this.SlashBox.UseVisualStyleBackColor = true;
			this.SlashBox.CheckedChanged += new System.EventHandler(this.SlashBox_CheckedChanged);
			// 
			// BludgeBox
			// 
			this.BludgeBox.AutoSize = true;
			this.BludgeBox.Location = new System.Drawing.Point(6, 50);
			this.BludgeBox.Name = "BludgeBox";
			this.BludgeBox.Size = new System.Drawing.Size(59, 17);
			this.BludgeBox.TabIndex = 0;
			this.BludgeBox.Text = "Bludge";
			this.BludgeBox.UseVisualStyleBackColor = true;
			this.BludgeBox.CheckedChanged += new System.EventHandler(this.BludgeBox_CheckedChanged);
			// 
			// PiercingBox
			// 
			this.PiercingBox.AutoSize = true;
			this.PiercingBox.Location = new System.Drawing.Point(6, 27);
			this.PiercingBox.Name = "PiercingBox";
			this.PiercingBox.Size = new System.Drawing.Size(56, 17);
			this.PiercingBox.TabIndex = 0;
			this.PiercingBox.Text = "Pierce";
			this.PiercingBox.UseVisualStyleBackColor = true;
			this.PiercingBox.CheckedChanged += new System.EventHandler(this.PiercingBox_CheckedChanged);
			// 
			// DamageBox
			// 
			this.DamageBox.ControlText = "Damage :";
			dice1.Faces = 1;
			dice1.Modifier = 0;
			dice1.Throws = 1;
			this.DamageBox.Dice = dice1;
			this.DamageBox.Location = new System.Drawing.Point(6, 255);
			this.DamageBox.MinimumSize = new System.Drawing.Size(225, 100);
			this.DamageBox.Name = "DamageBox";
			this.DamageBox.Size = new System.Drawing.Size(232, 104);
			this.DamageBox.TabIndex = 9;
			this.DamageBox.ValueChanged += new System.EventHandler(this.DamageBox_ValueChanged);
			// 
			// ScriptTab
			// 
			this.ScriptTab.Controls.Add(this.scriptControl1);
			this.ScriptTab.Location = new System.Drawing.Point(4, 22);
			this.ScriptTab.Name = "ScriptTab";
			this.ScriptTab.Size = new System.Drawing.Size(882, 561);
			this.ScriptTab.TabIndex = 2;
			this.ScriptTab.Text = "Scripting";
			this.ScriptTab.UseVisualStyleBackColor = true;
			// 
			// scriptControl1
			// 
			this.scriptControl1.ControlText = "Interface :";
			this.scriptControl1.Location = new System.Drawing.Point(5, 3);
			this.scriptControl1.MinimumSize = new System.Drawing.Size(200, 70);
			this.scriptControl1.Name = "scriptControl1";
			this.scriptControl1.Size = new System.Drawing.Size(267, 80);
			this.scriptControl1.TabIndex = 7;
			this.scriptControl1.InterfaceChanged += new System.EventHandler(this.scriptControl1_InterfaceChanged);
			this.scriptControl1.ScriptChanged += new System.EventHandler(this.scriptControl1_ScriptChanged);
			// 
			// groupBox11
			// 
			this.groupBox11.Controls.Add(this.tabControl1);
			this.groupBox11.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupBox11.Location = new System.Drawing.Point(0, 0);
			this.groupBox11.Name = "groupBox11";
			this.groupBox11.Size = new System.Drawing.Size(896, 606);
			this.groupBox11.TabIndex = 13;
			this.groupBox11.TabStop = false;
			this.groupBox11.Text = "Properties :";
			// 
			// ItemForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(896, 606);
			this.Controls.Add(this.groupBox11);
			this.Name = "ItemForm";
			this.TabText = "ItemForm";
			this.Text = "ItemForm";
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ItemForm_FormClosed);
			this.Load += new System.EventHandler(this.Form_Load);
			((System.ComponentModel.ISupportInitialize)(this.GroundTileBox)).EndInit();
			this.groupBox4.ResumeLayout(false);
			this.groupBox4.PerformLayout();
			this.groupBox5.ResumeLayout(false);
			this.groupBox5.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.ACBonusBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.RangeBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.WeightBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.SpeedBox)).EndInit();
			this.groupBox6.ResumeLayout(false);
			this.groupBox6.PerformLayout();
			this.groupBox8.ResumeLayout(false);
			this.groupBox8.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.MultiplierBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.CriticalMaxBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.CriticalMinBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.IncomingTileBox)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.ThrownTileBox)).EndInit();
			this.groupBox3.ResumeLayout(false);
			this.groupBox3.PerformLayout();
			this.tabControl1.ResumeLayout(false);
			this.VisualTab.ResumeLayout(false);
			this.VisualTab.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.InventoryTileBox)).EndInit();
			this.PropertiesTab.ResumeLayout(false);
			this.groupBox7.ResumeLayout(false);
			this.groupBox7.PerformLayout();
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.ScriptTab.ResumeLayout(false);
			this.groupBox11.ResumeLayout(false);
			this.ResumeLayout(false);

		}