From def83f4091b3ad19e93f991ec704fc02f6da0163 Mon Sep 17 00:00:00 2001 From: tolik518 Date: Sat, 3 Aug 2024 13:20:48 +0200 Subject: [PATCH] added images to all skills and talents; adjusted position of images --- SoG_SGreader/DataReader.cs | 2 +- SoG_SGreader/Forms/FrmLoadSaveGame.cs | 2 +- SoG_SGreader/Forms/FrmMain.Designer.cs | 4551 ++++++++--------- SoG_SGreader/Forms/FrmMain.cs | 6 - SoG_SGreader/Properties/Resources.Designer.cs | 634 ++- SoG_SGreader/Properties/Resources.resx | 311 +- SoG_SGreader/Resources/general_adaptable.png | Bin 0 -> 681 bytes SoG_SGreader/Resources/general_alchemist.png | Bin 0 -> 852 bytes .../Resources/general_arrowscavenger.png | Bin 0 -> 648 bytes SoG_SGreader/Resources/general_brutality.png | Bin 0 -> 638 bytes .../Resources/general_efficientcounter.png | Bin 0 -> 751 bytes SoG_SGreader/Resources/general_endurance.png | Bin 0 -> 610 bytes SoG_SGreader/Resources/general_finetaste.png | Bin 0 -> 656 bytes .../Resources/general_gotyoucovered.png | Bin 0 -> 808 bytes .../Resources/general_healthinsurance.png | Bin 0 -> 583 bytes .../Resources/general_kineticenergy.png | Bin 0 -> 478 bytes SoG_SGreader/Resources/general_ladyluck.png | Bin 0 -> 759 bytes SoG_SGreader/Resources/general_laststand.png | Bin 0 -> 576 bytes SoG_SGreader/Resources/general_metabolism.png | Bin 0 -> 508 bytes SoG_SGreader/Resources/general_multitask.png | Bin 0 -> 1006 bytes .../Resources/general_quickreflex.png | Bin 0 -> 612 bytes SoG_SGreader/Resources/general_quickshot.png | Bin 0 -> 593 bytes .../Resources/general_shieldbearer.png | Bin 0 -> 954 bytes SoG_SGreader/Resources/general_surgeon.png | Bin 0 -> 553 bytes SoG_SGreader/Resources/general_tenacious.png | Bin 0 -> 625 bytes SoG_SGreader/Resources/general_unknown.png | Bin 0 -> 725 bytes .../Resources/general_utilityflow.png | Bin 0 -> 676 bytes SoG_SGreader/Resources/magic_arcanecharge.png | Bin 0 -> 695 bytes SoG_SGreader/Resources/magic_arcanecollar.png | Bin 0 -> 699 bytes SoG_SGreader/Resources/magic_battlemage.png | Bin 0 -> 601 bytes .../Resources/magic_concentration.png | Bin 0 -> 892 bytes .../Resources/magic_cripplingblast.png | Bin 0 -> 494 bytes SoG_SGreader/Resources/magic_fasttalker.png | Bin 0 -> 911 bytes SoG_SGreader/Resources/magic_intelligence.png | Bin 0 -> 705 bytes SoG_SGreader/Resources/magic_lastspark.png | Bin 0 -> 572 bytes SoG_SGreader/Resources/magic_manaburn.png | Bin 0 -> 628 bytes SoG_SGreader/Resources/magic_prismatic.png | Bin 0 -> 782 bytes SoG_SGreader/Resources/magic_snapcast.png | Bin 0 -> 794 bytes SoG_SGreader/Resources/magic_soulsiphon.png | Bin 0 -> 703 bytes SoG_SGreader/Resources/magic_specialist.png | Bin 0 -> 804 bytes SoG_SGreader/Resources/magic_turtle.png | Bin 0 -> 713 bytes SoG_SGreader/Resources/magic_wandmaster.png | Bin 0 -> 660 bytes SoG_SGreader/Resources/melee_backhanded.png | Bin 0 -> 645 bytes SoG_SGreader/Resources/melee_bloodthirst.png | Bin 0 -> 945 bytes SoG_SGreader/Resources/melee_brawler.png | Bin 0 -> 708 bytes .../Resources/melee_burningweapon.png | Bin 0 -> 707 bytes SoG_SGreader/Resources/melee_chillytouch.png | Bin 0 -> 840 bytes SoG_SGreader/Resources/melee_combostarter.png | Bin 0 -> 729 bytes SoG_SGreader/Resources/melee_fencer.png | Bin 0 -> 526 bytes SoG_SGreader/Resources/melee_insultinjury.png | Bin 0 -> 750 bytes .../Resources/melee_knowledgeispower.png | Bin 0 -> 777 bytes SoG_SGreader/Resources/melee_lastbreath.png | Bin 0 -> 569 bytes SoG_SGreader/Resources/melee_riposte.png | Bin 0 -> 738 bytes SoG_SGreader/Resources/melee_secondbreath.png | Bin 0 -> 1300 bytes SoG_SGreader/Resources/melee_strength.png | Bin 0 -> 615 bytes SoG_SGreader/Resources/melee_suddenstrike.png | Bin 0 -> 509 bytes SoG_SGreader/Resources/melee_wit.png | Bin 0 -> 529 bytes SoG_SGreader/SoG_SGreader.csproj | 51 + 58 files changed, 3124 insertions(+), 2433 deletions(-) create mode 100644 SoG_SGreader/Resources/general_adaptable.png create mode 100644 SoG_SGreader/Resources/general_alchemist.png create mode 100644 SoG_SGreader/Resources/general_arrowscavenger.png create mode 100644 SoG_SGreader/Resources/general_brutality.png create mode 100644 SoG_SGreader/Resources/general_efficientcounter.png create mode 100644 SoG_SGreader/Resources/general_endurance.png create mode 100644 SoG_SGreader/Resources/general_finetaste.png create mode 100644 SoG_SGreader/Resources/general_gotyoucovered.png create mode 100644 SoG_SGreader/Resources/general_healthinsurance.png create mode 100644 SoG_SGreader/Resources/general_kineticenergy.png create mode 100644 SoG_SGreader/Resources/general_ladyluck.png create mode 100644 SoG_SGreader/Resources/general_laststand.png create mode 100644 SoG_SGreader/Resources/general_metabolism.png create mode 100644 SoG_SGreader/Resources/general_multitask.png create mode 100644 SoG_SGreader/Resources/general_quickreflex.png create mode 100644 SoG_SGreader/Resources/general_quickshot.png create mode 100644 SoG_SGreader/Resources/general_shieldbearer.png create mode 100644 SoG_SGreader/Resources/general_surgeon.png create mode 100644 SoG_SGreader/Resources/general_tenacious.png create mode 100644 SoG_SGreader/Resources/general_unknown.png create mode 100644 SoG_SGreader/Resources/general_utilityflow.png create mode 100644 SoG_SGreader/Resources/magic_arcanecharge.png create mode 100644 SoG_SGreader/Resources/magic_arcanecollar.png create mode 100644 SoG_SGreader/Resources/magic_battlemage.png create mode 100644 SoG_SGreader/Resources/magic_concentration.png create mode 100644 SoG_SGreader/Resources/magic_cripplingblast.png create mode 100644 SoG_SGreader/Resources/magic_fasttalker.png create mode 100644 SoG_SGreader/Resources/magic_intelligence.png create mode 100644 SoG_SGreader/Resources/magic_lastspark.png create mode 100644 SoG_SGreader/Resources/magic_manaburn.png create mode 100644 SoG_SGreader/Resources/magic_prismatic.png create mode 100644 SoG_SGreader/Resources/magic_snapcast.png create mode 100644 SoG_SGreader/Resources/magic_soulsiphon.png create mode 100644 SoG_SGreader/Resources/magic_specialist.png create mode 100644 SoG_SGreader/Resources/magic_turtle.png create mode 100644 SoG_SGreader/Resources/magic_wandmaster.png create mode 100644 SoG_SGreader/Resources/melee_backhanded.png create mode 100644 SoG_SGreader/Resources/melee_bloodthirst.png create mode 100644 SoG_SGreader/Resources/melee_brawler.png create mode 100644 SoG_SGreader/Resources/melee_burningweapon.png create mode 100644 SoG_SGreader/Resources/melee_chillytouch.png create mode 100644 SoG_SGreader/Resources/melee_combostarter.png create mode 100644 SoG_SGreader/Resources/melee_fencer.png create mode 100644 SoG_SGreader/Resources/melee_insultinjury.png create mode 100644 SoG_SGreader/Resources/melee_knowledgeispower.png create mode 100644 SoG_SGreader/Resources/melee_lastbreath.png create mode 100644 SoG_SGreader/Resources/melee_riposte.png create mode 100644 SoG_SGreader/Resources/melee_secondbreath.png create mode 100644 SoG_SGreader/Resources/melee_strength.png create mode 100644 SoG_SGreader/Resources/melee_suddenstrike.png create mode 100644 SoG_SGreader/Resources/melee_wit.png diff --git a/SoG_SGreader/DataReader.cs b/SoG_SGreader/DataReader.cs index a3e7fb3..644171b 100644 --- a/SoG_SGreader/DataReader.cs +++ b/SoG_SGreader/DataReader.cs @@ -431,7 +431,7 @@ public static Player ReadFromFile(string fileName, ITextBoxWrapper txtConsole) return playerObject; } - public static PlayerPreview GetCharName(string fileName) + public static PlayerPreview GetPlayerPreview(string fileName) { string nickname = ""; bool sex = false; diff --git a/SoG_SGreader/Forms/FrmLoadSaveGame.cs b/SoG_SGreader/Forms/FrmLoadSaveGame.cs index c35380f..7058473 100644 --- a/SoG_SGreader/Forms/FrmLoadSaveGame.cs +++ b/SoG_SGreader/Forms/FrmLoadSaveGame.cs @@ -29,7 +29,7 @@ private void GetSaveGameFiles(string sFilePath) string savegame = Path.Combine(sFilePath, i + ".cha"); if (File.Exists(savegame)) { - PlayerPreview player = DataReader.GetCharName(savegame); + PlayerPreview player = DataReader.GetPlayerPreview(savegame); string[] item = new string[] { i.ToString(), player.GetSex(), player.Nickname }; lstvSaveGames.Items.Add(new ListViewItem(item, 0)); } diff --git a/SoG_SGreader/Forms/FrmMain.Designer.cs b/SoG_SGreader/Forms/FrmMain.Designer.cs index a40d2b4..e27da5e 100644 --- a/SoG_SGreader/Forms/FrmMain.Designer.cs +++ b/SoG_SGreader/Forms/FrmMain.Designer.cs @@ -222,8 +222,113 @@ private void InitializeComponent() this.numUtilityO2 = new System.Windows.Forms.NumericUpDown(); this.pictureBox26 = new System.Windows.Forms.PictureBox(); this.tabTalentsMelee = new System.Windows.Forms.TabPage(); + this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.numTalentMelee13 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMelee8 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox43 = new System.Windows.Forms.PictureBox(); + this.pictureBox36 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee14 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMelee9 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox44 = new System.Windows.Forms.PictureBox(); + this.pictureBox39 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee10 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMelee5 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox45 = new System.Windows.Forms.PictureBox(); + this.pictureBox40 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee11 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMelee6 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox46 = new System.Windows.Forms.PictureBox(); + this.pictureBox41 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee12 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMelee7 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox47 = new System.Windows.Forms.PictureBox(); + this.pictureBox42 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee3 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox37 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee4 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox38 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee0 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox33 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee1 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox34 = new System.Windows.Forms.PictureBox(); + this.numTalentMelee2 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox35 = new System.Windows.Forms.PictureBox(); this.tabTalentsMagic = new System.Windows.Forms.TabPage(); + this.groupBox4 = new System.Windows.Forms.GroupBox(); + this.numTalentMagic13 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMagic8 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox48 = new System.Windows.Forms.PictureBox(); + this.pictureBox49 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic14 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMagic9 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox50 = new System.Windows.Forms.PictureBox(); + this.pictureBox51 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic10 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMagic5 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox52 = new System.Windows.Forms.PictureBox(); + this.pictureBox53 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic11 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMagic6 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox54 = new System.Windows.Forms.PictureBox(); + this.pictureBox55 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic12 = new System.Windows.Forms.NumericUpDown(); + this.numTalentMagic7 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox56 = new System.Windows.Forms.PictureBox(); + this.pictureBox57 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic3 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox58 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic4 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox59 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic0 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox60 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic1 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox61 = new System.Windows.Forms.PictureBox(); + this.numTalentMagic2 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox62 = new System.Windows.Forms.PictureBox(); this.tabTalentsGeneral = new System.Windows.Forms.TabPage(); + this.groupBox5 = new System.Windows.Forms.GroupBox(); + this.numTalentGeneral20 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox78 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral19 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox79 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral18 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox80 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral17 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox81 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral16 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox82 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral15 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox83 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral13 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral6 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox65 = new System.Windows.Forms.PictureBox(); + this.pictureBox72 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral12 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral5 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox66 = new System.Windows.Forms.PictureBox(); + this.pictureBox69 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral11 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral4 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox73 = new System.Windows.Forms.PictureBox(); + this.pictureBox70 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral10 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral3 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox74 = new System.Windows.Forms.PictureBox(); + this.pictureBox71 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral9 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral2 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox76 = new System.Windows.Forms.PictureBox(); + this.pictureBox64 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral8 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral1 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox77 = new System.Windows.Forms.PictureBox(); + this.pictureBox63 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral14 = new System.Windows.Forms.NumericUpDown(); + this.numTalentGeneral7 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox67 = new System.Windows.Forms.PictureBox(); + this.pictureBox68 = new System.Windows.Forms.PictureBox(); + this.numTalentGeneral0 = new System.Windows.Forms.NumericUpDown(); + this.pictureBox75 = new System.Windows.Forms.PictureBox(); this.tabCards = new System.Windows.Forms.TabPage(); this.grpCards = new System.Windows.Forms.GroupBox(); this.lblCardsNullWarning = new System.Windows.Forms.Label(); @@ -316,112 +421,6 @@ private void InitializeComponent() this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.txtConsole = new System.Windows.Forms.TextBox(); this.Tooltips = new System.Windows.Forms.ToolTip(this.components); - this.pictureBox3 = new System.Windows.Forms.PictureBox(); - this.groupBox3 = new System.Windows.Forms.GroupBox(); - this.numTalentMelee13 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMelee8 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox43 = new System.Windows.Forms.PictureBox(); - this.pictureBox36 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee14 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMelee9 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox44 = new System.Windows.Forms.PictureBox(); - this.pictureBox39 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee10 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMelee5 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox45 = new System.Windows.Forms.PictureBox(); - this.pictureBox40 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee11 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMelee6 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox46 = new System.Windows.Forms.PictureBox(); - this.pictureBox41 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee12 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMelee7 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox47 = new System.Windows.Forms.PictureBox(); - this.pictureBox42 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee3 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox37 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee4 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox38 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee0 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox33 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee1 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox34 = new System.Windows.Forms.PictureBox(); - this.numTalentMelee2 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox35 = new System.Windows.Forms.PictureBox(); - this.groupBox4 = new System.Windows.Forms.GroupBox(); - this.numTalentMagic13 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMagic8 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox48 = new System.Windows.Forms.PictureBox(); - this.pictureBox49 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic14 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMagic9 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox50 = new System.Windows.Forms.PictureBox(); - this.pictureBox51 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic10 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMagic5 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox52 = new System.Windows.Forms.PictureBox(); - this.pictureBox53 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic11 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMagic6 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox54 = new System.Windows.Forms.PictureBox(); - this.pictureBox55 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic12 = new System.Windows.Forms.NumericUpDown(); - this.numTalentMagic7 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox56 = new System.Windows.Forms.PictureBox(); - this.pictureBox57 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic3 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox58 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic4 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox59 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic0 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox60 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic1 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox61 = new System.Windows.Forms.PictureBox(); - this.numTalentMagic2 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox62 = new System.Windows.Forms.PictureBox(); - this.groupBox5 = new System.Windows.Forms.GroupBox(); - this.numTalentGeneral0 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox75 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral1 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox63 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral2 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox64 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral5 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox69 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral4 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox70 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral3 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox71 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral6 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox72 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral14 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox67 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral7 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox68 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral13 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox65 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral12 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox66 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral11 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox73 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral10 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox74 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral9 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox76 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral8 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox77 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral20 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox78 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral19 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox79 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral18 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox80 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral17 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox81 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral16 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox82 = new System.Windows.Forms.PictureBox(); - this.numTalentGeneral15 = new System.Windows.Forms.NumericUpDown(); - this.pictureBox83 = new System.Windows.Forms.PictureBox(); this.lblTrophiesNullWarning.SuspendLayout(); this.tabChar.SuspendLayout(); this.grpPatch.SuspendLayout(); @@ -530,30 +529,6 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.numUtilityO2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).BeginInit(); this.tabTalentsMelee.SuspendLayout(); - this.tabTalentsMagic.SuspendLayout(); - this.tabTalentsGeneral.SuspendLayout(); - this.tabCards.SuspendLayout(); - this.grpCards.SuspendLayout(); - this.tabMaps.SuspendLayout(); - this.grpMaps.SuspendLayout(); - this.tabQuests.SuspendLayout(); - this.grpQuests.SuspendLayout(); - this.tabFlags.SuspendLayout(); - this.grpFlags.SuspendLayout(); - this.tabTrophies.SuspendLayout(); - this.grpTrophies.SuspendLayout(); - this.tabFishCaught.SuspendLayout(); - this.groupBox2.SuspendLayout(); - this.tabEnemiesSeen.SuspendLayout(); - this.grpEnemiesSeen.SuspendLayout(); - this.tabItemsSeen.SuspendLayout(); - this.grpItemsSeen.SuspendLayout(); - this.tabItemsCrafted.SuspendLayout(); - this.groupBox1.SuspendLayout(); - this.tabQuickslots.SuspendLayout(); - this.grpQuickslots.SuspendLayout(); - this.msMenu.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); this.groupBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMelee13)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMelee8)).BeginInit(); @@ -585,6 +560,7 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMelee2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox35)).BeginInit(); + this.tabTalentsMagic.SuspendLayout(); this.groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMagic13)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMagic8)).BeginInit(); @@ -616,37 +592,8 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pictureBox61)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMagic2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox62)).BeginInit(); + this.tabTalentsGeneral.SuspendLayout(); this.groupBox5.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral0)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox75)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox63)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox64)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox69)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral4)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox70)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral3)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox71)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral6)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox72)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral14)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox67)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral7)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox68)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral13)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox65)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral12)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox66)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral11)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox73)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral10)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox74)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral9)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox76)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral8)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox77)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox78)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral19)).BeginInit(); @@ -659,6 +606,57 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pictureBox82)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox83)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral13)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox65)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox72)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox66)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox69)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox73)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox70)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox74)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox71)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox76)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox64)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox77)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox63)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral14)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox67)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox68)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral0)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox75)).BeginInit(); + this.tabCards.SuspendLayout(); + this.grpCards.SuspendLayout(); + this.tabMaps.SuspendLayout(); + this.grpMaps.SuspendLayout(); + this.tabQuests.SuspendLayout(); + this.grpQuests.SuspendLayout(); + this.tabFlags.SuspendLayout(); + this.grpFlags.SuspendLayout(); + this.tabTrophies.SuspendLayout(); + this.grpTrophies.SuspendLayout(); + this.tabFishCaught.SuspendLayout(); + this.groupBox2.SuspendLayout(); + this.tabEnemiesSeen.SuspendLayout(); + this.grpEnemiesSeen.SuspendLayout(); + this.tabItemsSeen.SuspendLayout(); + this.grpItemsSeen.SuspendLayout(); + this.tabItemsCrafted.SuspendLayout(); + this.groupBox1.SuspendLayout(); + this.tabQuickslots.SuspendLayout(); + this.grpQuickslots.SuspendLayout(); + this.msMenu.SuspendLayout(); this.SuspendLayout(); // // lblTrophiesNullWarning @@ -1996,14 +1994,15 @@ private void InitializeComponent() this.tabControl1.Controls.Add(this.tabTalentsMelee); this.tabControl1.Controls.Add(this.tabTalentsMagic); this.tabControl1.Controls.Add(this.tabTalentsGeneral); + this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed; this.tabControl1.ItemSize = new System.Drawing.Size(60, 100); - this.tabControl1.Location = new System.Drawing.Point(12, 9); + this.tabControl1.Location = new System.Drawing.Point(4, 5); this.tabControl1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabControl1.Multiline = true; this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; - this.tabControl1.Size = new System.Drawing.Size(818, 562); + this.tabControl1.Size = new System.Drawing.Size(834, 606); this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.tabControl1.TabIndex = 32; this.tabControl1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.TabControl1_DrawItem); @@ -2016,7 +2015,7 @@ private void InitializeComponent() this.tabSkillsMelee.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabSkillsMelee.Name = "tabSkillsMelee"; this.tabSkillsMelee.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabSkillsMelee.Size = new System.Drawing.Size(710, 554); + this.tabSkillsMelee.Size = new System.Drawing.Size(726, 598); this.tabSkillsMelee.TabIndex = 0; this.tabSkillsMelee.Text = "Skills: Melee"; this.tabSkillsMelee.UseVisualStyleBackColor = true; @@ -2044,50 +2043,50 @@ private void InitializeComponent() // // numSkillMelee2h4 // - this.numSkillMelee2h4.Location = new System.Drawing.Point(507, 131); + this.numSkillMelee2h4.Location = new System.Drawing.Point(532, 131); this.numSkillMelee2h4.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee2h4.Name = "numSkillMelee2h4"; - this.numSkillMelee2h4.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee2h4.Size = new System.Drawing.Size(69, 26); this.numSkillMelee2h4.TabIndex = 19; // // numSkillMelee2h3 // - this.numSkillMelee2h3.Location = new System.Drawing.Point(380, 131); + this.numSkillMelee2h3.Location = new System.Drawing.Point(405, 131); this.numSkillMelee2h3.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee2h3.Name = "numSkillMelee2h3"; - this.numSkillMelee2h3.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee2h3.Size = new System.Drawing.Size(69, 26); this.numSkillMelee2h3.TabIndex = 19; // // numSkillMelee2h2 // - this.numSkillMelee2h2.Location = new System.Drawing.Point(261, 131); + this.numSkillMelee2h2.Location = new System.Drawing.Point(286, 131); this.numSkillMelee2h2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee2h2.Name = "numSkillMelee2h2"; - this.numSkillMelee2h2.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee2h2.Size = new System.Drawing.Size(69, 26); this.numSkillMelee2h2.TabIndex = 19; // // numSkillMelee2h1 // - this.numSkillMelee2h1.Location = new System.Drawing.Point(142, 131); + this.numSkillMelee2h1.Location = new System.Drawing.Point(168, 131); this.numSkillMelee2h1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee2h1.Name = "numSkillMelee2h1"; - this.numSkillMelee2h1.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee2h1.Size = new System.Drawing.Size(69, 26); this.numSkillMelee2h1.TabIndex = 20; // // pictureBox7 @@ -2136,14 +2135,14 @@ private void InitializeComponent() // // numSkillMelee2h0 // - this.numSkillMelee2h0.Location = new System.Drawing.Point(15, 131); + this.numSkillMelee2h0.Location = new System.Drawing.Point(40, 131); this.numSkillMelee2h0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee2h0.Name = "numSkillMelee2h0"; - this.numSkillMelee2h0.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee2h0.Size = new System.Drawing.Size(69, 26); this.numSkillMelee2h0.TabIndex = 10; // // pictureBox9 @@ -2180,26 +2179,26 @@ private void InitializeComponent() // // numSkillMelee1h1 // - this.numSkillMelee1h1.Location = new System.Drawing.Point(142, 135); + this.numSkillMelee1h1.Location = new System.Drawing.Point(168, 135); this.numSkillMelee1h1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee1h1.Name = "numSkillMelee1h1"; - this.numSkillMelee1h1.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee1h1.Size = new System.Drawing.Size(69, 26); this.numSkillMelee1h1.TabIndex = 13; // // numSkillMelee1h0 // - this.numSkillMelee1h0.Location = new System.Drawing.Point(15, 135); + this.numSkillMelee1h0.Location = new System.Drawing.Point(40, 135); this.numSkillMelee1h0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee1h0.Name = "numSkillMelee1h0"; - this.numSkillMelee1h0.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee1h0.Size = new System.Drawing.Size(69, 26); this.numSkillMelee1h0.TabIndex = 12; // // pictureBox1 @@ -2226,14 +2225,14 @@ private void InitializeComponent() // // numSkillMelee1h2 // - this.numSkillMelee1h2.Location = new System.Drawing.Point(261, 135); + this.numSkillMelee1h2.Location = new System.Drawing.Point(286, 135); this.numSkillMelee1h2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee1h2.Name = "numSkillMelee1h2"; - this.numSkillMelee1h2.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee1h2.Size = new System.Drawing.Size(69, 26); this.numSkillMelee1h2.TabIndex = 4; // // pictureBox4 @@ -2249,14 +2248,14 @@ private void InitializeComponent() // // numSkillMelee1h3 // - this.numSkillMelee1h3.Location = new System.Drawing.Point(380, 135); + this.numSkillMelee1h3.Location = new System.Drawing.Point(405, 135); this.numSkillMelee1h3.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee1h3.Name = "numSkillMelee1h3"; - this.numSkillMelee1h3.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee1h3.Size = new System.Drawing.Size(69, 26); this.numSkillMelee1h3.TabIndex = 6; // // pictureBox5 @@ -2272,14 +2271,14 @@ private void InitializeComponent() // // numSkillMelee1h4 // - this.numSkillMelee1h4.Location = new System.Drawing.Point(507, 135); + this.numSkillMelee1h4.Location = new System.Drawing.Point(532, 135); this.numSkillMelee1h4.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMelee1h4.Name = "numSkillMelee1h4"; - this.numSkillMelee1h4.Size = new System.Drawing.Size(118, 26); + this.numSkillMelee1h4.Size = new System.Drawing.Size(69, 26); this.numSkillMelee1h4.TabIndex = 8; // // pictureBox6 @@ -2303,7 +2302,7 @@ private void InitializeComponent() this.tabSkillsMagic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabSkillsMagic.Name = "tabSkillsMagic"; this.tabSkillsMagic.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabSkillsMagic.Size = new System.Drawing.Size(710, 554); + this.tabSkillsMagic.Size = new System.Drawing.Size(726, 598); this.tabSkillsMagic.TabIndex = 1; this.tabSkillsMagic.Text = "Skills: Magic"; this.tabSkillsMagic.UseVisualStyleBackColor = true; @@ -2327,14 +2326,14 @@ private void InitializeComponent() // // numSkillMagicA2 // - this.numSkillMagicA2.Location = new System.Drawing.Point(204, 135); + this.numSkillMagicA2.Location = new System.Drawing.Point(219, 135); this.numSkillMagicA2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicA2.Name = "numSkillMagicA2"; - this.numSkillMagicA2.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicA2.Size = new System.Drawing.Size(69, 26); this.numSkillMagicA2.TabIndex = 10; // // pictureBox21 @@ -2350,14 +2349,14 @@ private void InitializeComponent() // // numSkillMagicA1 // - this.numSkillMagicA1.Location = new System.Drawing.Point(110, 135); + this.numSkillMagicA1.Location = new System.Drawing.Point(124, 135); this.numSkillMagicA1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicA1.Name = "numSkillMagicA1"; - this.numSkillMagicA1.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicA1.Size = new System.Drawing.Size(69, 26); this.numSkillMagicA1.TabIndex = 8; // // pictureBox22 @@ -2373,14 +2372,14 @@ private void InitializeComponent() // // numSkillMagicA0 // - this.numSkillMagicA0.Location = new System.Drawing.Point(14, 135); + this.numSkillMagicA0.Location = new System.Drawing.Point(28, 135); this.numSkillMagicA0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicA0.Name = "numSkillMagicA0"; - this.numSkillMagicA0.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicA0.Size = new System.Drawing.Size(69, 26); this.numSkillMagicA0.TabIndex = 6; // // pictureBox23 @@ -2413,14 +2412,14 @@ private void InitializeComponent() // // numSkillMagicE2 // - this.numSkillMagicE2.Location = new System.Drawing.Point(204, 135); + this.numSkillMagicE2.Location = new System.Drawing.Point(219, 135); this.numSkillMagicE2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicE2.Name = "numSkillMagicE2"; - this.numSkillMagicE2.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicE2.Size = new System.Drawing.Size(69, 26); this.numSkillMagicE2.TabIndex = 10; // // pictureBox18 @@ -2436,14 +2435,14 @@ private void InitializeComponent() // // numSkillMagicE1 // - this.numSkillMagicE1.Location = new System.Drawing.Point(110, 135); + this.numSkillMagicE1.Location = new System.Drawing.Point(124, 135); this.numSkillMagicE1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicE1.Name = "numSkillMagicE1"; - this.numSkillMagicE1.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicE1.Size = new System.Drawing.Size(69, 26); this.numSkillMagicE1.TabIndex = 8; // // pictureBox19 @@ -2459,14 +2458,14 @@ private void InitializeComponent() // // numSkillMagicE0 // - this.numSkillMagicE0.Location = new System.Drawing.Point(14, 135); + this.numSkillMagicE0.Location = new System.Drawing.Point(28, 135); this.numSkillMagicE0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicE0.Name = "numSkillMagicE0"; - this.numSkillMagicE0.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicE0.Size = new System.Drawing.Size(69, 26); this.numSkillMagicE0.TabIndex = 6; // // pictureBox20 @@ -2499,14 +2498,14 @@ private void InitializeComponent() // // numSkillMagicI2 // - this.numSkillMagicI2.Location = new System.Drawing.Point(204, 135); + this.numSkillMagicI2.Location = new System.Drawing.Point(219, 135); this.numSkillMagicI2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicI2.Name = "numSkillMagicI2"; - this.numSkillMagicI2.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicI2.Size = new System.Drawing.Size(69, 26); this.numSkillMagicI2.TabIndex = 10; // // pictureBox15 @@ -2522,14 +2521,14 @@ private void InitializeComponent() // // numSkillMagicI1 // - this.numSkillMagicI1.Location = new System.Drawing.Point(110, 135); + this.numSkillMagicI1.Location = new System.Drawing.Point(124, 135); this.numSkillMagicI1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicI1.Name = "numSkillMagicI1"; - this.numSkillMagicI1.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicI1.Size = new System.Drawing.Size(69, 26); this.numSkillMagicI1.TabIndex = 8; // // pictureBox16 @@ -2545,14 +2544,14 @@ private void InitializeComponent() // // numSkillMagicI0 // - this.numSkillMagicI0.Location = new System.Drawing.Point(14, 135); + this.numSkillMagicI0.Location = new System.Drawing.Point(28, 135); this.numSkillMagicI0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicI0.Name = "numSkillMagicI0"; - this.numSkillMagicI0.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicI0.Size = new System.Drawing.Size(69, 26); this.numSkillMagicI0.TabIndex = 6; // // pictureBox17 @@ -2585,14 +2584,14 @@ private void InitializeComponent() // // numSkillMagicF2 // - this.numSkillMagicF2.Location = new System.Drawing.Point(204, 135); + this.numSkillMagicF2.Location = new System.Drawing.Point(219, 135); this.numSkillMagicF2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicF2.Name = "numSkillMagicF2"; - this.numSkillMagicF2.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicF2.Size = new System.Drawing.Size(69, 26); this.numSkillMagicF2.TabIndex = 10; // // pictureBox14 @@ -2608,14 +2607,14 @@ private void InitializeComponent() // // numSkillMagicF1 // - this.numSkillMagicF1.Location = new System.Drawing.Point(110, 135); + this.numSkillMagicF1.Location = new System.Drawing.Point(124, 135); this.numSkillMagicF1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicF1.Name = "numSkillMagicF1"; - this.numSkillMagicF1.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicF1.Size = new System.Drawing.Size(69, 26); this.numSkillMagicF1.TabIndex = 8; // // pictureBox13 @@ -2631,14 +2630,14 @@ private void InitializeComponent() // // numSkillMagicF0 // - this.numSkillMagicF0.Location = new System.Drawing.Point(14, 135); + this.numSkillMagicF0.Location = new System.Drawing.Point(28, 135); this.numSkillMagicF0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numSkillMagicF0.Name = "numSkillMagicF0"; - this.numSkillMagicF0.Size = new System.Drawing.Size(100, 26); + this.numSkillMagicF0.Size = new System.Drawing.Size(69, 26); this.numSkillMagicF0.TabIndex = 6; // // pictureBox12 @@ -2661,7 +2660,7 @@ private void InitializeComponent() this.tabSkillsUtility.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabSkillsUtility.Name = "tabSkillsUtility"; this.tabSkillsUtility.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabSkillsUtility.Size = new System.Drawing.Size(710, 554); + this.tabSkillsUtility.Size = new System.Drawing.Size(726, 598); this.tabSkillsUtility.TabIndex = 2; this.tabSkillsUtility.Text = "Skills: Utility"; this.tabSkillsUtility.UseVisualStyleBackColor = true; @@ -2685,14 +2684,14 @@ private void InitializeComponent() // // numUtilityE0 // - this.numUtilityE0.Location = new System.Drawing.Point(135, 105); + this.numUtilityE0.Location = new System.Drawing.Point(160, 105); this.numUtilityE0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityE0.Name = "numUtilityE0"; - this.numUtilityE0.Size = new System.Drawing.Size(118, 26); + this.numUtilityE0.Size = new System.Drawing.Size(69, 26); this.numUtilityE0.TabIndex = 0; // // pictureBox30 @@ -2708,14 +2707,14 @@ private void InitializeComponent() // // numUtilityE1 // - this.numUtilityE1.Location = new System.Drawing.Point(262, 105); + this.numUtilityE1.Location = new System.Drawing.Point(288, 105); this.numUtilityE1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityE1.Name = "numUtilityE1"; - this.numUtilityE1.Size = new System.Drawing.Size(118, 26); + this.numUtilityE1.Size = new System.Drawing.Size(69, 26); this.numUtilityE1.TabIndex = 2; // // pictureBox31 @@ -2731,14 +2730,14 @@ private void InitializeComponent() // // numUtilityE2 // - this.numUtilityE2.Location = new System.Drawing.Point(381, 105); + this.numUtilityE2.Location = new System.Drawing.Point(406, 105); this.numUtilityE2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityE2.Name = "numUtilityE2"; - this.numUtilityE2.Size = new System.Drawing.Size(118, 26); + this.numUtilityE2.Size = new System.Drawing.Size(69, 26); this.numUtilityE2.TabIndex = 4; // // pictureBox32 @@ -2771,14 +2770,14 @@ private void InitializeComponent() // // numUtilityD0 // - this.numUtilityD0.Location = new System.Drawing.Point(135, 105); + this.numUtilityD0.Location = new System.Drawing.Point(160, 105); this.numUtilityD0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityD0.Name = "numUtilityD0"; - this.numUtilityD0.Size = new System.Drawing.Size(118, 26); + this.numUtilityD0.Size = new System.Drawing.Size(69, 26); this.numUtilityD0.TabIndex = 0; // // pictureBox27 @@ -2794,14 +2793,14 @@ private void InitializeComponent() // // numUtilityD1 // - this.numUtilityD1.Location = new System.Drawing.Point(262, 105); + this.numUtilityD1.Location = new System.Drawing.Point(288, 105); this.numUtilityD1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityD1.Name = "numUtilityD1"; - this.numUtilityD1.Size = new System.Drawing.Size(118, 26); + this.numUtilityD1.Size = new System.Drawing.Size(69, 26); this.numUtilityD1.TabIndex = 2; // // pictureBox28 @@ -2817,14 +2816,14 @@ private void InitializeComponent() // // numUtilityD2 // - this.numUtilityD2.Location = new System.Drawing.Point(381, 105); + this.numUtilityD2.Location = new System.Drawing.Point(406, 105); this.numUtilityD2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityD2.Name = "numUtilityD2"; - this.numUtilityD2.Size = new System.Drawing.Size(118, 26); + this.numUtilityD2.Size = new System.Drawing.Size(69, 26); this.numUtilityD2.TabIndex = 4; // // pictureBox29 @@ -2857,14 +2856,14 @@ private void InitializeComponent() // // numUtilityO0 // - this.numUtilityO0.Location = new System.Drawing.Point(135, 105); + this.numUtilityO0.Location = new System.Drawing.Point(160, 105); this.numUtilityO0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityO0.Name = "numUtilityO0"; - this.numUtilityO0.Size = new System.Drawing.Size(118, 26); + this.numUtilityO0.Size = new System.Drawing.Size(69, 26); this.numUtilityO0.TabIndex = 0; // // pictureBox24 @@ -2880,14 +2879,14 @@ private void InitializeComponent() // // numUtilityO1 // - this.numUtilityO1.Location = new System.Drawing.Point(262, 105); + this.numUtilityO1.Location = new System.Drawing.Point(288, 105); this.numUtilityO1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityO1.Name = "numUtilityO1"; - this.numUtilityO1.Size = new System.Drawing.Size(118, 26); + this.numUtilityO1.Size = new System.Drawing.Size(69, 26); this.numUtilityO1.TabIndex = 2; // // pictureBox25 @@ -2903,14 +2902,14 @@ private void InitializeComponent() // // numUtilityO2 // - this.numUtilityO2.Location = new System.Drawing.Point(381, 105); + this.numUtilityO2.Location = new System.Drawing.Point(406, 105); this.numUtilityO2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.numUtilityO2.Name = "numUtilityO2"; - this.numUtilityO2.Size = new System.Drawing.Size(118, 26); + this.numUtilityO2.Size = new System.Drawing.Size(69, 26); this.numUtilityO2.TabIndex = 4; // // pictureBox26 @@ -2930,2416 +2929,2403 @@ private void InitializeComponent() this.tabTalentsMelee.Location = new System.Drawing.Point(104, 4); this.tabTalentsMelee.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabTalentsMelee.Name = "tabTalentsMelee"; - this.tabTalentsMelee.Size = new System.Drawing.Size(710, 554); + this.tabTalentsMelee.Size = new System.Drawing.Size(726, 598); this.tabTalentsMelee.TabIndex = 3; this.tabTalentsMelee.Text = "Talents: Melee"; this.tabTalentsMelee.UseVisualStyleBackColor = true; // - // tabTalentsMagic - // - this.tabTalentsMagic.Controls.Add(this.groupBox4); - this.tabTalentsMagic.Location = new System.Drawing.Point(104, 4); - this.tabTalentsMagic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabTalentsMagic.Name = "tabTalentsMagic"; - this.tabTalentsMagic.Size = new System.Drawing.Size(710, 554); - this.tabTalentsMagic.TabIndex = 4; - this.tabTalentsMagic.Text = "Talents: Magic"; - this.tabTalentsMagic.UseVisualStyleBackColor = true; + // groupBox3 // - // tabTalentsGeneral + this.groupBox3.Controls.Add(this.numTalentMelee13); + this.groupBox3.Controls.Add(this.numTalentMelee8); + this.groupBox3.Controls.Add(this.pictureBox43); + this.groupBox3.Controls.Add(this.pictureBox36); + this.groupBox3.Controls.Add(this.numTalentMelee14); + this.groupBox3.Controls.Add(this.numTalentMelee9); + this.groupBox3.Controls.Add(this.pictureBox44); + this.groupBox3.Controls.Add(this.pictureBox39); + this.groupBox3.Controls.Add(this.numTalentMelee10); + this.groupBox3.Controls.Add(this.numTalentMelee5); + this.groupBox3.Controls.Add(this.pictureBox45); + this.groupBox3.Controls.Add(this.pictureBox40); + this.groupBox3.Controls.Add(this.numTalentMelee11); + this.groupBox3.Controls.Add(this.numTalentMelee6); + this.groupBox3.Controls.Add(this.pictureBox46); + this.groupBox3.Controls.Add(this.pictureBox41); + this.groupBox3.Controls.Add(this.numTalentMelee12); + this.groupBox3.Controls.Add(this.numTalentMelee7); + this.groupBox3.Controls.Add(this.pictureBox47); + this.groupBox3.Controls.Add(this.pictureBox42); + this.groupBox3.Controls.Add(this.numTalentMelee3); + this.groupBox3.Controls.Add(this.pictureBox37); + this.groupBox3.Controls.Add(this.numTalentMelee4); + this.groupBox3.Controls.Add(this.pictureBox38); + this.groupBox3.Controls.Add(this.numTalentMelee0); + this.groupBox3.Controls.Add(this.pictureBox33); + this.groupBox3.Controls.Add(this.numTalentMelee1); + this.groupBox3.Controls.Add(this.pictureBox34); + this.groupBox3.Controls.Add(this.numTalentMelee2); + this.groupBox3.Controls.Add(this.pictureBox35); + this.groupBox3.Location = new System.Drawing.Point(9, 9); + this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox3.Name = "groupBox3"; + this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox3.Size = new System.Drawing.Size(693, 432); + this.groupBox3.TabIndex = 41; + this.groupBox3.TabStop = false; + this.groupBox3.Text = "Melee"; // - this.tabTalentsGeneral.Controls.Add(this.groupBox5); - this.tabTalentsGeneral.Location = new System.Drawing.Point(104, 4); - this.tabTalentsGeneral.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabTalentsGeneral.Name = "tabTalentsGeneral"; - this.tabTalentsGeneral.Size = new System.Drawing.Size(710, 554); - this.tabTalentsGeneral.TabIndex = 5; - this.tabTalentsGeneral.Text = "Talents: General"; - this.tabTalentsGeneral.UseVisualStyleBackColor = true; + // numTalentMelee13 // - // tabCards + this.numTalentMelee13.Location = new System.Drawing.Point(426, 373); + this.numTalentMelee13.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee13.Name = "numTalentMelee13"; + this.numTalentMelee13.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee13.TabIndex = 67; // - this.tabCards.Controls.Add(this.grpCards); - this.tabCards.Controls.Add(this.cblstCards); - this.tabCards.Location = new System.Drawing.Point(4, 29); - this.tabCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabCards.Name = "tabCards"; - this.tabCards.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabCards.Size = new System.Drawing.Size(842, 616); - this.tabCards.TabIndex = 5; - this.tabCards.Text = "Cards"; - this.tabCards.UseVisualStyleBackColor = true; + // numTalentMelee8 // - // grpCards + this.numTalentMelee8.Location = new System.Drawing.Point(426, 239); + this.numTalentMelee8.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee8.Name = "numTalentMelee8"; + this.numTalentMelee8.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee8.TabIndex = 57; // - this.grpCards.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpCards.Controls.Add(this.lblCardsNullWarning); - this.grpCards.Controls.Add(this.btnSelectAllCards); - this.grpCards.Controls.Add(this.btnResetCards); - this.grpCards.Controls.Add(this.btnDeselectAllCards); - this.grpCards.Location = new System.Drawing.Point(681, 9); - this.grpCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpCards.Name = "grpCards"; - this.grpCards.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpCards.Size = new System.Drawing.Size(146, 583); - this.grpCards.TabIndex = 6; - this.grpCards.TabStop = false; - this.grpCards.Text = "Cards"; + // pictureBox43 // - // lblCardsNullWarning + this.pictureBox43.Image = global::SoG_SGreader.Properties.Resources.melee_suddenstrike; + this.pictureBox43.Location = new System.Drawing.Point(426, 297); + this.pictureBox43.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox43.Name = "pictureBox43"; + this.pictureBox43.Size = new System.Drawing.Size(80, 64); + this.pictureBox43.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox43.TabIndex = 68; + this.pictureBox43.TabStop = false; // - this.lblCardsNullWarning.AutoSize = true; - this.lblCardsNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblCardsNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblCardsNullWarning.Name = "lblCardsNullWarning"; - this.lblCardsNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblCardsNullWarning.TabIndex = 7; - this.lblCardsNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // pictureBox36 // - // btnSelectAllCards + this.pictureBox36.Image = global::SoG_SGreader.Properties.Resources.melee_lastbreath; + this.pictureBox36.Location = new System.Drawing.Point(426, 163); + this.pictureBox36.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox36.Name = "pictureBox36"; + this.pictureBox36.Size = new System.Drawing.Size(80, 64); + this.pictureBox36.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox36.TabIndex = 58; + this.pictureBox36.TabStop = false; // - this.btnSelectAllCards.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllCards.Name = "btnSelectAllCards"; - this.btnSelectAllCards.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllCards.TabIndex = 3; - this.btnSelectAllCards.Text = "Select all"; - this.btnSelectAllCards.UseVisualStyleBackColor = true; - this.btnSelectAllCards.Click += new System.EventHandler(this.btnSelectAllCards_Click); + // numTalentMelee14 // - // btnResetCards + this.numTalentMelee14.Location = new System.Drawing.Point(544, 373); + this.numTalentMelee14.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee14.Name = "numTalentMelee14"; + this.numTalentMelee14.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee14.TabIndex = 69; // - this.btnResetCards.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetCards.Location = new System.Drawing.Point(9, 538); - this.btnResetCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetCards.Name = "btnResetCards"; - this.btnResetCards.Size = new System.Drawing.Size(130, 35); - this.btnResetCards.TabIndex = 5; - this.btnResetCards.Text = "Reset"; - this.btnResetCards.UseVisualStyleBackColor = true; - this.btnResetCards.Click += new System.EventHandler(this.btnResetCards_Click); + // numTalentMelee9 // - // btnDeselectAllCards + this.numTalentMelee9.Location = new System.Drawing.Point(544, 239); + this.numTalentMelee9.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee9.Name = "numTalentMelee9"; + this.numTalentMelee9.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee9.TabIndex = 59; // - this.btnDeselectAllCards.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllCards.Name = "btnDeselectAllCards"; - this.btnDeselectAllCards.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllCards.TabIndex = 4; - this.btnDeselectAllCards.Text = "Deselect all"; - this.btnDeselectAllCards.UseVisualStyleBackColor = true; - this.btnDeselectAllCards.Click += new System.EventHandler(this.btnDeselectAllCards_Click); + // pictureBox44 // - // cblstCards + this.pictureBox44.Image = global::SoG_SGreader.Properties.Resources.melee_riposte; + this.pictureBox44.Location = new System.Drawing.Point(544, 297); + this.pictureBox44.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox44.Name = "pictureBox44"; + this.pictureBox44.Size = new System.Drawing.Size(80, 64); + this.pictureBox44.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox44.TabIndex = 70; + this.pictureBox44.TabStop = false; // - this.cblstCards.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstCards.FormattingEnabled = true; - this.cblstCards.Location = new System.Drawing.Point(9, 9); - this.cblstCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstCards.Name = "cblstCards"; - this.cblstCards.Size = new System.Drawing.Size(661, 579); - this.cblstCards.TabIndex = 2; + // pictureBox39 // - // tabMaps + this.pictureBox39.Image = global::SoG_SGreader.Properties.Resources.melee_backhanded; + this.pictureBox39.Location = new System.Drawing.Point(544, 163); + this.pictureBox39.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox39.Name = "pictureBox39"; + this.pictureBox39.Size = new System.Drawing.Size(80, 64); + this.pictureBox39.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox39.TabIndex = 60; + this.pictureBox39.TabStop = false; // - this.tabMaps.Controls.Add(this.grpMaps); - this.tabMaps.Controls.Add(this.cblstMaps); - this.tabMaps.Location = new System.Drawing.Point(4, 29); - this.tabMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabMaps.Name = "tabMaps"; - this.tabMaps.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabMaps.Size = new System.Drawing.Size(842, 616); - this.tabMaps.TabIndex = 10; - this.tabMaps.Text = "Maps"; - this.tabMaps.UseVisualStyleBackColor = true; + // numTalentMelee10 // - // grpMaps + this.numTalentMelee10.Location = new System.Drawing.Point(52, 373); + this.numTalentMelee10.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee10.Name = "numTalentMelee10"; + this.numTalentMelee10.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee10.TabIndex = 61; // - this.grpMaps.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpMaps.Controls.Add(this.lblMapsNullWarning); - this.grpMaps.Controls.Add(this.btnSelectAllMaps); - this.grpMaps.Controls.Add(this.btnResetMaps); - this.grpMaps.Controls.Add(this.btnDeselectAllMaps); - this.grpMaps.Location = new System.Drawing.Point(681, 9); - this.grpMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpMaps.Name = "grpMaps"; - this.grpMaps.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpMaps.Size = new System.Drawing.Size(146, 583); - this.grpMaps.TabIndex = 8; - this.grpMaps.TabStop = false; - this.grpMaps.Text = "Maps"; + // numTalentMelee5 // - // lblMapsNullWarning + this.numTalentMelee5.Location = new System.Drawing.Point(52, 239); + this.numTalentMelee5.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee5.Name = "numTalentMelee5"; + this.numTalentMelee5.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee5.TabIndex = 51; // - this.lblMapsNullWarning.AutoSize = true; - this.lblMapsNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblMapsNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblMapsNullWarning.Name = "lblMapsNullWarning"; - this.lblMapsNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblMapsNullWarning.TabIndex = 8; - this.lblMapsNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // pictureBox45 // - // btnSelectAllMaps + this.pictureBox45.Image = global::SoG_SGreader.Properties.Resources.melee_insultinjury; + this.pictureBox45.Location = new System.Drawing.Point(52, 297); + this.pictureBox45.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox45.Name = "pictureBox45"; + this.pictureBox45.Size = new System.Drawing.Size(80, 64); + this.pictureBox45.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox45.TabIndex = 62; + this.pictureBox45.TabStop = false; // - this.btnSelectAllMaps.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllMaps.Name = "btnSelectAllMaps"; - this.btnSelectAllMaps.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllMaps.TabIndex = 3; - this.btnSelectAllMaps.Text = "Select all"; - this.btnSelectAllMaps.UseVisualStyleBackColor = true; - this.btnSelectAllMaps.Click += new System.EventHandler(this.btnSelectAllMaps_Click); + // pictureBox40 // - // btnResetMaps + this.pictureBox40.Image = global::SoG_SGreader.Properties.Resources.melee_secondbreath; + this.pictureBox40.Location = new System.Drawing.Point(52, 163); + this.pictureBox40.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox40.Name = "pictureBox40"; + this.pictureBox40.Size = new System.Drawing.Size(80, 64); + this.pictureBox40.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox40.TabIndex = 52; + this.pictureBox40.TabStop = false; // - this.btnResetMaps.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetMaps.Location = new System.Drawing.Point(9, 538); - this.btnResetMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetMaps.Name = "btnResetMaps"; - this.btnResetMaps.Size = new System.Drawing.Size(130, 35); - this.btnResetMaps.TabIndex = 5; - this.btnResetMaps.Text = "Reset"; - this.btnResetMaps.UseVisualStyleBackColor = true; - this.btnResetMaps.Click += new System.EventHandler(this.btnResetMaps_Click); + // numTalentMelee11 // - // btnDeselectAllMaps + this.numTalentMelee11.Location = new System.Drawing.Point(180, 373); + this.numTalentMelee11.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee11.Name = "numTalentMelee11"; + this.numTalentMelee11.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee11.TabIndex = 63; // - this.btnDeselectAllMaps.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllMaps.Name = "btnDeselectAllMaps"; - this.btnDeselectAllMaps.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllMaps.TabIndex = 4; - this.btnDeselectAllMaps.Text = "Deselect all"; - this.btnDeselectAllMaps.UseVisualStyleBackColor = true; - this.btnDeselectAllMaps.Click += new System.EventHandler(this.btnDeselectAllMaps_Click); + // numTalentMelee6 // - // cblstMaps + this.numTalentMelee6.Location = new System.Drawing.Point(180, 239); + this.numTalentMelee6.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee6.Name = "numTalentMelee6"; + this.numTalentMelee6.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee6.TabIndex = 53; // - this.cblstMaps.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstMaps.FormattingEnabled = true; - this.cblstMaps.Location = new System.Drawing.Point(9, 9); - this.cblstMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstMaps.Name = "cblstMaps"; - this.cblstMaps.Size = new System.Drawing.Size(661, 579); - this.cblstMaps.TabIndex = 7; + // pictureBox46 // - // tabQuests + this.pictureBox46.Image = global::SoG_SGreader.Properties.Resources.melee_bloodthirst; + this.pictureBox46.Location = new System.Drawing.Point(180, 297); + this.pictureBox46.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox46.Name = "pictureBox46"; + this.pictureBox46.Size = new System.Drawing.Size(80, 64); + this.pictureBox46.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox46.TabIndex = 64; + this.pictureBox46.TabStop = false; // - this.tabQuests.Controls.Add(this.grpQuests); - this.tabQuests.Controls.Add(this.cblstQuests); - this.tabQuests.Location = new System.Drawing.Point(4, 29); - this.tabQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabQuests.Name = "tabQuests"; - this.tabQuests.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabQuests.Size = new System.Drawing.Size(842, 616); - this.tabQuests.TabIndex = 9; - this.tabQuests.Text = "Quests"; - this.tabQuests.UseVisualStyleBackColor = true; + // pictureBox41 // - // grpQuests + this.pictureBox41.Image = global::SoG_SGreader.Properties.Resources.melee_knowledgeispower; + this.pictureBox41.Location = new System.Drawing.Point(180, 163); + this.pictureBox41.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox41.Name = "pictureBox41"; + this.pictureBox41.Size = new System.Drawing.Size(80, 64); + this.pictureBox41.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox41.TabIndex = 54; + this.pictureBox41.TabStop = false; // - this.grpQuests.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpQuests.Controls.Add(this.lblQuestsChaningNoEffect); - this.grpQuests.Controls.Add(this.lblQuestsNullWarning); - this.grpQuests.Controls.Add(this.btnSelectAllQuests); - this.grpQuests.Controls.Add(this.btnResetQuests); - this.grpQuests.Controls.Add(this.btnDeselectAllQuests); - this.grpQuests.Location = new System.Drawing.Point(681, 9); - this.grpQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpQuests.Name = "grpQuests"; - this.grpQuests.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpQuests.Size = new System.Drawing.Size(146, 583); - this.grpQuests.TabIndex = 8; - this.grpQuests.TabStop = false; - this.grpQuests.Text = "Quests"; + // numTalentMelee12 // - // lblQuestsChaningNoEffect + this.numTalentMelee12.Location = new System.Drawing.Point(298, 373); + this.numTalentMelee12.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee12.Name = "numTalentMelee12"; + this.numTalentMelee12.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee12.TabIndex = 65; // - this.lblQuestsChaningNoEffect.AutoSize = true; - this.lblQuestsChaningNoEffect.Location = new System.Drawing.Point(9, 286); - this.lblQuestsChaningNoEffect.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblQuestsChaningNoEffect.Name = "lblQuestsChaningNoEffect"; - this.lblQuestsChaningNoEffect.Size = new System.Drawing.Size(132, 160); - this.lblQuestsChaningNoEffect.TabIndex = 10; - this.lblQuestsChaningNoEffect.Text = "Changing Quests\r\nmay have no \r\neffect on your\r\ngame since\r\nthese are addi-\r\ntiona" + - "lly saved\r\nin the World \r\nfiles."; + // numTalentMelee7 // - // lblQuestsNullWarning + this.numTalentMelee7.Location = new System.Drawing.Point(298, 239); + this.numTalentMelee7.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee7.Name = "numTalentMelee7"; + this.numTalentMelee7.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee7.TabIndex = 55; // - this.lblQuestsNullWarning.AutoSize = true; - this.lblQuestsNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblQuestsNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblQuestsNullWarning.Name = "lblQuestsNullWarning"; - this.lblQuestsNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblQuestsNullWarning.TabIndex = 8; - this.lblQuestsNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // pictureBox47 // - // btnSelectAllQuests + this.pictureBox47.Image = global::SoG_SGreader.Properties.Resources.melee_combostarter; + this.pictureBox47.Location = new System.Drawing.Point(298, 297); + this.pictureBox47.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox47.Name = "pictureBox47"; + this.pictureBox47.Size = new System.Drawing.Size(80, 64); + this.pictureBox47.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox47.TabIndex = 66; + this.pictureBox47.TabStop = false; // - this.btnSelectAllQuests.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllQuests.Name = "btnSelectAllQuests"; - this.btnSelectAllQuests.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllQuests.TabIndex = 3; - this.btnSelectAllQuests.Text = "Select all"; - this.btnSelectAllQuests.UseVisualStyleBackColor = true; - this.btnSelectAllQuests.Click += new System.EventHandler(this.btnSelectAllQuests_Click); + // pictureBox42 // - // btnResetQuests + this.pictureBox42.Image = global::SoG_SGreader.Properties.Resources.melee_wit; + this.pictureBox42.Location = new System.Drawing.Point(298, 163); + this.pictureBox42.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox42.Name = "pictureBox42"; + this.pictureBox42.Size = new System.Drawing.Size(80, 64); + this.pictureBox42.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox42.TabIndex = 56; + this.pictureBox42.TabStop = false; // - this.btnResetQuests.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetQuests.Location = new System.Drawing.Point(9, 538); - this.btnResetQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetQuests.Name = "btnResetQuests"; - this.btnResetQuests.Size = new System.Drawing.Size(130, 35); - this.btnResetQuests.TabIndex = 5; - this.btnResetQuests.Text = "Reset"; - this.btnResetQuests.UseVisualStyleBackColor = true; - this.btnResetQuests.Click += new System.EventHandler(this.btnResetQuests_Click); + // numTalentMelee3 // - // btnDeselectAllQuests + this.numTalentMelee3.Location = new System.Drawing.Point(426, 103); + this.numTalentMelee3.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee3.Name = "numTalentMelee3"; + this.numTalentMelee3.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee3.TabIndex = 47; // - this.btnDeselectAllQuests.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllQuests.Name = "btnDeselectAllQuests"; - this.btnDeselectAllQuests.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllQuests.TabIndex = 4; - this.btnDeselectAllQuests.Text = "Deselect all"; - this.btnDeselectAllQuests.UseVisualStyleBackColor = true; - this.btnDeselectAllQuests.Click += new System.EventHandler(this.btnDeselectAllQuests_Click); + // pictureBox37 // - // cblstQuests + this.pictureBox37.Image = global::SoG_SGreader.Properties.Resources.melee_burningweapon; + this.pictureBox37.Location = new System.Drawing.Point(426, 27); + this.pictureBox37.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox37.Name = "pictureBox37"; + this.pictureBox37.Size = new System.Drawing.Size(80, 64); + this.pictureBox37.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox37.TabIndex = 48; + this.pictureBox37.TabStop = false; // - this.cblstQuests.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstQuests.FormattingEnabled = true; - this.cblstQuests.Location = new System.Drawing.Point(9, 9); - this.cblstQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstQuests.Name = "cblstQuests"; - this.cblstQuests.Size = new System.Drawing.Size(661, 579); - this.cblstQuests.TabIndex = 7; + // numTalentMelee4 // - // tabFlags + this.numTalentMelee4.Location = new System.Drawing.Point(544, 103); + this.numTalentMelee4.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee4.Name = "numTalentMelee4"; + this.numTalentMelee4.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee4.TabIndex = 49; // - this.tabFlags.Controls.Add(this.cblstFlagsChecked); - this.tabFlags.Controls.Add(this.grpFlags); - this.tabFlags.Controls.Add(this.cblstFlags); - this.tabFlags.Location = new System.Drawing.Point(4, 29); - this.tabFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabFlags.Name = "tabFlags"; - this.tabFlags.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabFlags.Size = new System.Drawing.Size(842, 616); - this.tabFlags.TabIndex = 6; - this.tabFlags.Text = "Flags"; - this.tabFlags.UseVisualStyleBackColor = true; + // pictureBox38 // - // cblstFlagsChecked + this.pictureBox38.Image = global::SoG_SGreader.Properties.Resources.melee_chillytouch; + this.pictureBox38.Location = new System.Drawing.Point(544, 27); + this.pictureBox38.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox38.Name = "pictureBox38"; + this.pictureBox38.Size = new System.Drawing.Size(80, 64); + this.pictureBox38.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox38.TabIndex = 50; + this.pictureBox38.TabStop = false; // - this.cblstFlagsChecked.Enabled = false; - this.cblstFlagsChecked.FormattingEnabled = true; - this.cblstFlagsChecked.Location = new System.Drawing.Point(12, 375); - this.cblstFlagsChecked.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstFlagsChecked.Name = "cblstFlagsChecked"; - this.cblstFlagsChecked.Size = new System.Drawing.Size(658, 211); - this.cblstFlagsChecked.TabIndex = 11; - this.cblstFlagsChecked.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cblstFlagsChecked_ItemCheck); + // numTalentMelee0 // - // grpFlags + this.numTalentMelee0.Location = new System.Drawing.Point(52, 103); + this.numTalentMelee0.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee0.Name = "numTalentMelee0"; + this.numTalentMelee0.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee0.TabIndex = 41; // - this.grpFlags.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpFlags.Controls.Add(this.lblFlagsChaningNoEffect); - this.grpFlags.Controls.Add(this.label41); - this.grpFlags.Controls.Add(this.btnSelectAllFlags); - this.grpFlags.Controls.Add(this.btnResetFlags); - this.grpFlags.Controls.Add(this.btnDeselectAllFlags); - this.grpFlags.Location = new System.Drawing.Point(681, 9); - this.grpFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpFlags.Name = "grpFlags"; - this.grpFlags.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpFlags.Size = new System.Drawing.Size(146, 583); - this.grpFlags.TabIndex = 10; - this.grpFlags.TabStop = false; - this.grpFlags.Text = "Flags"; + // pictureBox33 // - // lblFlagsChaningNoEffect + this.pictureBox33.Image = global::SoG_SGreader.Properties.Resources.melee_strength; + this.pictureBox33.Location = new System.Drawing.Point(52, 27); + this.pictureBox33.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox33.Name = "pictureBox33"; + this.pictureBox33.Size = new System.Drawing.Size(80, 64); + this.pictureBox33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox33.TabIndex = 42; + this.pictureBox33.TabStop = false; // - this.lblFlagsChaningNoEffect.AutoSize = true; - this.lblFlagsChaningNoEffect.Location = new System.Drawing.Point(9, 286); - this.lblFlagsChaningNoEffect.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblFlagsChaningNoEffect.Name = "lblFlagsChaningNoEffect"; - this.lblFlagsChaningNoEffect.Size = new System.Drawing.Size(120, 160); - this.lblFlagsChaningNoEffect.TabIndex = 9; - this.lblFlagsChaningNoEffect.Text = "Changing Flags\r\nmay have no \r\neffect on your\r\ngame since\r\nthese are addi-\r\ntional" + - "ly saved\r\nin the World \r\nfiles."; + // numTalentMelee1 // - // label41 + this.numTalentMelee1.Location = new System.Drawing.Point(180, 103); + this.numTalentMelee1.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee1.Name = "numTalentMelee1"; + this.numTalentMelee1.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee1.TabIndex = 43; // - this.label41.AutoSize = true; - this.label41.Location = new System.Drawing.Point(9, 114); - this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label41.Name = "label41"; - this.label41.Size = new System.Drawing.Size(106, 80); - this.label41.TabIndex = 8; - this.label41.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // pictureBox34 // - // btnSelectAllFlags + this.pictureBox34.Image = global::SoG_SGreader.Properties.Resources.melee_fencer; + this.pictureBox34.Location = new System.Drawing.Point(180, 27); + this.pictureBox34.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox34.Name = "pictureBox34"; + this.pictureBox34.Size = new System.Drawing.Size(80, 64); + this.pictureBox34.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox34.TabIndex = 44; + this.pictureBox34.TabStop = false; // - this.btnSelectAllFlags.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllFlags.Name = "btnSelectAllFlags"; - this.btnSelectAllFlags.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllFlags.TabIndex = 3; - this.btnSelectAllFlags.Text = "Select all"; - this.btnSelectAllFlags.UseVisualStyleBackColor = true; - this.btnSelectAllFlags.Click += new System.EventHandler(this.btnSelectAllFlags_Click); + // numTalentMelee2 // - // btnResetFlags + this.numTalentMelee2.Location = new System.Drawing.Point(298, 103); + this.numTalentMelee2.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMelee2.Name = "numTalentMelee2"; + this.numTalentMelee2.Size = new System.Drawing.Size(80, 26); + this.numTalentMelee2.TabIndex = 45; // - this.btnResetFlags.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetFlags.Location = new System.Drawing.Point(9, 538); - this.btnResetFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetFlags.Name = "btnResetFlags"; - this.btnResetFlags.Size = new System.Drawing.Size(130, 35); - this.btnResetFlags.TabIndex = 5; - this.btnResetFlags.Text = "Reset"; - this.btnResetFlags.UseVisualStyleBackColor = true; - this.btnResetFlags.Click += new System.EventHandler(this.btnResetFlags_Click); + // pictureBox35 // - // btnDeselectAllFlags + this.pictureBox35.Image = global::SoG_SGreader.Properties.Resources.melee_brawler; + this.pictureBox35.Location = new System.Drawing.Point(298, 27); + this.pictureBox35.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox35.Name = "pictureBox35"; + this.pictureBox35.Size = new System.Drawing.Size(80, 64); + this.pictureBox35.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox35.TabIndex = 46; + this.pictureBox35.TabStop = false; // - this.btnDeselectAllFlags.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllFlags.Name = "btnDeselectAllFlags"; - this.btnDeselectAllFlags.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllFlags.TabIndex = 4; - this.btnDeselectAllFlags.Text = "Deselect all"; - this.btnDeselectAllFlags.UseVisualStyleBackColor = true; - this.btnDeselectAllFlags.Click += new System.EventHandler(this.btnDeselectAllFlags_Click); + // tabTalentsMagic // - // cblstFlags + this.tabTalentsMagic.Controls.Add(this.groupBox4); + this.tabTalentsMagic.Location = new System.Drawing.Point(104, 4); + this.tabTalentsMagic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabTalentsMagic.Name = "tabTalentsMagic"; + this.tabTalentsMagic.Size = new System.Drawing.Size(726, 598); + this.tabTalentsMagic.TabIndex = 4; + this.tabTalentsMagic.Text = "Talents: Magic"; + this.tabTalentsMagic.UseVisualStyleBackColor = true; // - this.cblstFlags.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstFlags.FormattingEnabled = true; - this.cblstFlags.Location = new System.Drawing.Point(9, 9); - this.cblstFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstFlags.Name = "cblstFlags"; - this.cblstFlags.Size = new System.Drawing.Size(661, 349); - this.cblstFlags.TabIndex = 9; - this.cblstFlags.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cblstFlags_ItemCheck); + // groupBox4 // - // tabTrophies + this.groupBox4.Controls.Add(this.numTalentMagic13); + this.groupBox4.Controls.Add(this.numTalentMagic8); + this.groupBox4.Controls.Add(this.pictureBox48); + this.groupBox4.Controls.Add(this.pictureBox49); + this.groupBox4.Controls.Add(this.numTalentMagic14); + this.groupBox4.Controls.Add(this.numTalentMagic9); + this.groupBox4.Controls.Add(this.pictureBox50); + this.groupBox4.Controls.Add(this.pictureBox51); + this.groupBox4.Controls.Add(this.numTalentMagic10); + this.groupBox4.Controls.Add(this.numTalentMagic5); + this.groupBox4.Controls.Add(this.pictureBox52); + this.groupBox4.Controls.Add(this.pictureBox53); + this.groupBox4.Controls.Add(this.numTalentMagic11); + this.groupBox4.Controls.Add(this.numTalentMagic6); + this.groupBox4.Controls.Add(this.pictureBox54); + this.groupBox4.Controls.Add(this.pictureBox55); + this.groupBox4.Controls.Add(this.numTalentMagic12); + this.groupBox4.Controls.Add(this.numTalentMagic7); + this.groupBox4.Controls.Add(this.pictureBox56); + this.groupBox4.Controls.Add(this.pictureBox57); + this.groupBox4.Controls.Add(this.numTalentMagic3); + this.groupBox4.Controls.Add(this.pictureBox58); + this.groupBox4.Controls.Add(this.numTalentMagic4); + this.groupBox4.Controls.Add(this.pictureBox59); + this.groupBox4.Controls.Add(this.numTalentMagic0); + this.groupBox4.Controls.Add(this.pictureBox60); + this.groupBox4.Controls.Add(this.numTalentMagic1); + this.groupBox4.Controls.Add(this.pictureBox61); + this.groupBox4.Controls.Add(this.numTalentMagic2); + this.groupBox4.Controls.Add(this.pictureBox62); + this.groupBox4.Location = new System.Drawing.Point(9, 9); + this.groupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox4.Name = "groupBox4"; + this.groupBox4.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox4.Size = new System.Drawing.Size(693, 432); + this.groupBox4.TabIndex = 42; + this.groupBox4.TabStop = false; + this.groupBox4.Text = "Magic"; // - this.tabTrophies.Controls.Add(this.grpTrophies); - this.tabTrophies.Controls.Add(this.cblstTrophies); - this.tabTrophies.Location = new System.Drawing.Point(4, 29); - this.tabTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabTrophies.Name = "tabTrophies"; - this.tabTrophies.Size = new System.Drawing.Size(842, 616); - this.tabTrophies.TabIndex = 11; - this.tabTrophies.Text = "Trophies"; - this.tabTrophies.UseVisualStyleBackColor = true; + // numTalentMagic13 // - // grpTrophies + this.numTalentMagic13.Location = new System.Drawing.Point(426, 373); + this.numTalentMagic13.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic13.Name = "numTalentMagic13"; + this.numTalentMagic13.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic13.TabIndex = 67; // - this.grpTrophies.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpTrophies.Controls.Add(this.label59); - this.grpTrophies.Controls.Add(this.btnSelectAllTrophies); - this.grpTrophies.Controls.Add(this.btnResetTrophies); - this.grpTrophies.Controls.Add(this.btnDeselectAllTrophies); - this.grpTrophies.Location = new System.Drawing.Point(681, 9); - this.grpTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpTrophies.Name = "grpTrophies"; - this.grpTrophies.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpTrophies.Size = new System.Drawing.Size(146, 583); - this.grpTrophies.TabIndex = 12; - this.grpTrophies.TabStop = false; - this.grpTrophies.Text = "Trophies"; + // numTalentMagic8 // - // label59 + this.numTalentMagic8.Location = new System.Drawing.Point(426, 239); + this.numTalentMagic8.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic8.Name = "numTalentMagic8"; + this.numTalentMagic8.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic8.TabIndex = 57; // - this.label59.AutoSize = true; - this.label59.Location = new System.Drawing.Point(9, 114); - this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label59.Name = "label59"; - this.label59.Size = new System.Drawing.Size(106, 80); - this.label59.TabIndex = 8; - this.label59.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // pictureBox48 // - // btnSelectAllTrophies + this.pictureBox48.Image = global::SoG_SGreader.Properties.Resources.magic_manaburn; + this.pictureBox48.Location = new System.Drawing.Point(426, 297); + this.pictureBox48.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox48.Name = "pictureBox48"; + this.pictureBox48.Size = new System.Drawing.Size(80, 64); + this.pictureBox48.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox48.TabIndex = 68; + this.pictureBox48.TabStop = false; // - this.btnSelectAllTrophies.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllTrophies.Name = "btnSelectAllTrophies"; - this.btnSelectAllTrophies.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllTrophies.TabIndex = 3; - this.btnSelectAllTrophies.Text = "Select all"; - this.btnSelectAllTrophies.UseVisualStyleBackColor = true; - this.btnSelectAllTrophies.Click += new System.EventHandler(this.btnSelectAllTrophies_Click); + // pictureBox49 // - // btnResetTrophies + this.pictureBox49.Image = global::SoG_SGreader.Properties.Resources.magic_specialist; + this.pictureBox49.Location = new System.Drawing.Point(426, 163); + this.pictureBox49.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox49.Name = "pictureBox49"; + this.pictureBox49.Size = new System.Drawing.Size(80, 64); + this.pictureBox49.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox49.TabIndex = 58; + this.pictureBox49.TabStop = false; // - this.btnResetTrophies.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetTrophies.Location = new System.Drawing.Point(9, 538); - this.btnResetTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetTrophies.Name = "btnResetTrophies"; - this.btnResetTrophies.Size = new System.Drawing.Size(130, 35); - this.btnResetTrophies.TabIndex = 5; - this.btnResetTrophies.Text = "Reset"; - this.btnResetTrophies.UseVisualStyleBackColor = true; - this.btnResetTrophies.Click += new System.EventHandler(this.btnResetTrophies_Click); + // numTalentMagic14 // - // btnDeselectAllTrophies + this.numTalentMagic14.Location = new System.Drawing.Point(544, 373); + this.numTalentMagic14.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic14.Name = "numTalentMagic14"; + this.numTalentMagic14.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic14.TabIndex = 69; // - this.btnDeselectAllTrophies.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllTrophies.Name = "btnDeselectAllTrophies"; - this.btnDeselectAllTrophies.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllTrophies.TabIndex = 4; - this.btnDeselectAllTrophies.Text = "Deselect all"; - this.btnDeselectAllTrophies.UseVisualStyleBackColor = true; - this.btnDeselectAllTrophies.Click += new System.EventHandler(this.btnDeselectAllTrophies_Click); + // numTalentMagic9 // - // cblstTrophies + this.numTalentMagic9.Location = new System.Drawing.Point(544, 239); + this.numTalentMagic9.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic9.Name = "numTalentMagic9"; + this.numTalentMagic9.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic9.TabIndex = 59; // - this.cblstTrophies.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstTrophies.FormattingEnabled = true; - this.cblstTrophies.Location = new System.Drawing.Point(9, 9); - this.cblstTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstTrophies.Name = "cblstTrophies"; - this.cblstTrophies.Size = new System.Drawing.Size(661, 579); - this.cblstTrophies.TabIndex = 11; + // pictureBox50 // - // tabFishCaught + this.pictureBox50.Image = global::SoG_SGreader.Properties.Resources.magic_snapcast; + this.pictureBox50.Location = new System.Drawing.Point(544, 297); + this.pictureBox50.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox50.Name = "pictureBox50"; + this.pictureBox50.Size = new System.Drawing.Size(80, 64); + this.pictureBox50.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox50.TabIndex = 70; + this.pictureBox50.TabStop = false; // - this.tabFishCaught.Controls.Add(this.groupBox2); - this.tabFishCaught.Controls.Add(this.cblstFishCaught); - this.tabFishCaught.Location = new System.Drawing.Point(4, 29); - this.tabFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabFishCaught.Name = "tabFishCaught"; - this.tabFishCaught.Size = new System.Drawing.Size(842, 616); - this.tabFishCaught.TabIndex = 14; - this.tabFishCaught.Text = "Fish Caught"; - this.tabFishCaught.UseVisualStyleBackColor = true; + // pictureBox51 // - // groupBox2 + this.pictureBox51.Image = global::SoG_SGreader.Properties.Resources.magic_lastspark; + this.pictureBox51.Location = new System.Drawing.Point(544, 163); + this.pictureBox51.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox51.Name = "pictureBox51"; + this.pictureBox51.Size = new System.Drawing.Size(80, 64); + this.pictureBox51.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox51.TabIndex = 60; + this.pictureBox51.TabStop = false; // - this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBox2.Controls.Add(this.lblFishNullWarning); - this.groupBox2.Controls.Add(this.btnSelectAllFishCaught); - this.groupBox2.Controls.Add(this.btnResetFishCaught); - this.groupBox2.Controls.Add(this.btnDeselectAllFishCaught); - this.groupBox2.Location = new System.Drawing.Point(681, 9); - this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox2.Name = "groupBox2"; - this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox2.Size = new System.Drawing.Size(146, 583); - this.groupBox2.TabIndex = 18; - this.groupBox2.TabStop = false; - this.groupBox2.Text = "Fish Caught"; + // numTalentMagic10 // - // lblFishNullWarning + this.numTalentMagic10.Location = new System.Drawing.Point(52, 373); + this.numTalentMagic10.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic10.Name = "numTalentMagic10"; + this.numTalentMagic10.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic10.TabIndex = 61; // - this.lblFishNullWarning.AutoSize = true; - this.lblFishNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblFishNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblFishNullWarning.Name = "lblFishNullWarning"; - this.lblFishNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblFishNullWarning.TabIndex = 8; - this.lblFishNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // numTalentMagic5 // - // btnSelectAllFishCaught + this.numTalentMagic5.Location = new System.Drawing.Point(52, 239); + this.numTalentMagic5.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic5.Name = "numTalentMagic5"; + this.numTalentMagic5.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic5.TabIndex = 51; // - this.btnSelectAllFishCaught.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllFishCaught.Name = "btnSelectAllFishCaught"; - this.btnSelectAllFishCaught.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllFishCaught.TabIndex = 3; - this.btnSelectAllFishCaught.Text = "Select all"; - this.btnSelectAllFishCaught.UseVisualStyleBackColor = true; - this.btnSelectAllFishCaught.Click += new System.EventHandler(this.btnSelectAllFishCaught_Click); + // pictureBox52 // - // btnResetFishCaught + this.pictureBox52.Image = global::SoG_SGreader.Properties.Resources.magic_wandmaster; + this.pictureBox52.Location = new System.Drawing.Point(52, 297); + this.pictureBox52.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox52.Name = "pictureBox52"; + this.pictureBox52.Size = new System.Drawing.Size(80, 64); + this.pictureBox52.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox52.TabIndex = 62; + this.pictureBox52.TabStop = false; // - this.btnResetFishCaught.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetFishCaught.Location = new System.Drawing.Point(9, 538); - this.btnResetFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetFishCaught.Name = "btnResetFishCaught"; - this.btnResetFishCaught.Size = new System.Drawing.Size(130, 35); - this.btnResetFishCaught.TabIndex = 5; - this.btnResetFishCaught.Text = "Reset"; - this.btnResetFishCaught.UseVisualStyleBackColor = true; - this.btnResetFishCaught.Click += new System.EventHandler(this.btnResetFishCaught_Click); + // pictureBox53 // - // btnDeselectAllFishCaught + this.pictureBox53.Image = global::SoG_SGreader.Properties.Resources.magic_concentration; + this.pictureBox53.Location = new System.Drawing.Point(52, 163); + this.pictureBox53.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox53.Name = "pictureBox53"; + this.pictureBox53.Size = new System.Drawing.Size(80, 64); + this.pictureBox53.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox53.TabIndex = 52; + this.pictureBox53.TabStop = false; // - this.btnDeselectAllFishCaught.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllFishCaught.Name = "btnDeselectAllFishCaught"; - this.btnDeselectAllFishCaught.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllFishCaught.TabIndex = 4; - this.btnDeselectAllFishCaught.Text = "Deselect all"; - this.btnDeselectAllFishCaught.UseVisualStyleBackColor = true; - this.btnDeselectAllFishCaught.Click += new System.EventHandler(this.btnDeselectAllFishCaught_Click); + // numTalentMagic11 // - // cblstFishCaught + this.numTalentMagic11.Location = new System.Drawing.Point(180, 373); + this.numTalentMagic11.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic11.Name = "numTalentMagic11"; + this.numTalentMagic11.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic11.TabIndex = 63; // - this.cblstFishCaught.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstFishCaught.FormattingEnabled = true; - this.cblstFishCaught.Location = new System.Drawing.Point(9, 9); - this.cblstFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstFishCaught.Name = "cblstFishCaught"; - this.cblstFishCaught.Size = new System.Drawing.Size(661, 579); - this.cblstFishCaught.TabIndex = 17; + // numTalentMagic6 // - // tabEnemiesSeen + this.numTalentMagic6.Location = new System.Drawing.Point(180, 239); + this.numTalentMagic6.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic6.Name = "numTalentMagic6"; + this.numTalentMagic6.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic6.TabIndex = 53; // - this.tabEnemiesSeen.Controls.Add(this.grpEnemiesSeen); - this.tabEnemiesSeen.Controls.Add(this.cblstEnemiesSeens); - this.tabEnemiesSeen.Location = new System.Drawing.Point(4, 29); - this.tabEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabEnemiesSeen.Name = "tabEnemiesSeen"; - this.tabEnemiesSeen.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabEnemiesSeen.Size = new System.Drawing.Size(842, 616); - this.tabEnemiesSeen.TabIndex = 4; - this.tabEnemiesSeen.Text = "Enemies seen"; - this.tabEnemiesSeen.UseVisualStyleBackColor = true; + // pictureBox54 // - // grpEnemiesSeen + this.pictureBox54.Image = global::SoG_SGreader.Properties.Resources.magic_arcanecollar; + this.pictureBox54.Location = new System.Drawing.Point(180, 297); + this.pictureBox54.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox54.Name = "pictureBox54"; + this.pictureBox54.Size = new System.Drawing.Size(80, 64); + this.pictureBox54.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox54.TabIndex = 64; + this.pictureBox54.TabStop = false; // - this.grpEnemiesSeen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpEnemiesSeen.Controls.Add(this.lblEnemiesSeenNullWarning); - this.grpEnemiesSeen.Controls.Add(this.btnSelectAllEnemiesSeen); - this.grpEnemiesSeen.Controls.Add(this.btnResetEnemiesSeen); - this.grpEnemiesSeen.Controls.Add(this.btnDeselectAllEnemiesSeen); - this.grpEnemiesSeen.Location = new System.Drawing.Point(681, 9); - this.grpEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpEnemiesSeen.Name = "grpEnemiesSeen"; - this.grpEnemiesSeen.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpEnemiesSeen.Size = new System.Drawing.Size(146, 583); - this.grpEnemiesSeen.TabIndex = 10; - this.grpEnemiesSeen.TabStop = false; - this.grpEnemiesSeen.Text = "Enemies seen"; + // pictureBox55 // - // lblEnemiesSeenNullWarning + this.pictureBox55.Image = global::SoG_SGreader.Properties.Resources.magic_turtle; + this.pictureBox55.Location = new System.Drawing.Point(180, 163); + this.pictureBox55.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox55.Name = "pictureBox55"; + this.pictureBox55.Size = new System.Drawing.Size(80, 64); + this.pictureBox55.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox55.TabIndex = 54; + this.pictureBox55.TabStop = false; // - this.lblEnemiesSeenNullWarning.AutoSize = true; - this.lblEnemiesSeenNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblEnemiesSeenNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblEnemiesSeenNullWarning.Name = "lblEnemiesSeenNullWarning"; - this.lblEnemiesSeenNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblEnemiesSeenNullWarning.TabIndex = 8; - this.lblEnemiesSeenNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // numTalentMagic12 // - // btnSelectAllEnemiesSeen + this.numTalentMagic12.Location = new System.Drawing.Point(298, 373); + this.numTalentMagic12.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic12.Name = "numTalentMagic12"; + this.numTalentMagic12.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic12.TabIndex = 65; // - this.btnSelectAllEnemiesSeen.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllEnemiesSeen.Name = "btnSelectAllEnemiesSeen"; - this.btnSelectAllEnemiesSeen.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllEnemiesSeen.TabIndex = 3; - this.btnSelectAllEnemiesSeen.Text = "Select all"; - this.btnSelectAllEnemiesSeen.UseVisualStyleBackColor = true; - this.btnSelectAllEnemiesSeen.Click += new System.EventHandler(this.btnSelectAllEnemiesSeen_Click); + // numTalentMagic7 // - // btnResetEnemiesSeen + this.numTalentMagic7.Location = new System.Drawing.Point(298, 239); + this.numTalentMagic7.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic7.Name = "numTalentMagic7"; + this.numTalentMagic7.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic7.TabIndex = 55; // - this.btnResetEnemiesSeen.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetEnemiesSeen.Location = new System.Drawing.Point(9, 538); - this.btnResetEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetEnemiesSeen.Name = "btnResetEnemiesSeen"; - this.btnResetEnemiesSeen.Size = new System.Drawing.Size(130, 35); - this.btnResetEnemiesSeen.TabIndex = 5; - this.btnResetEnemiesSeen.Text = "Reset"; - this.btnResetEnemiesSeen.UseVisualStyleBackColor = true; - this.btnResetEnemiesSeen.Click += new System.EventHandler(this.btnResetEnemiesSeen_Click); + // pictureBox56 // - // btnDeselectAllEnemiesSeen + this.pictureBox56.Image = global::SoG_SGreader.Properties.Resources.magic_cripplingblast; + this.pictureBox56.Location = new System.Drawing.Point(298, 297); + this.pictureBox56.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox56.Name = "pictureBox56"; + this.pictureBox56.Size = new System.Drawing.Size(80, 64); + this.pictureBox56.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox56.TabIndex = 66; + this.pictureBox56.TabStop = false; // - this.btnDeselectAllEnemiesSeen.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllEnemiesSeen.Name = "btnDeselectAllEnemiesSeen"; - this.btnDeselectAllEnemiesSeen.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllEnemiesSeen.TabIndex = 4; - this.btnDeselectAllEnemiesSeen.Text = "Deselect all"; - this.btnDeselectAllEnemiesSeen.UseVisualStyleBackColor = true; - this.btnDeselectAllEnemiesSeen.Click += new System.EventHandler(this.btnDeselectAllEnemiesSeen_Click); - // - // cblstEnemiesSeens - // - this.cblstEnemiesSeens.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstEnemiesSeens.FormattingEnabled = true; - this.cblstEnemiesSeens.Location = new System.Drawing.Point(9, 9); - this.cblstEnemiesSeens.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstEnemiesSeens.Name = "cblstEnemiesSeens"; - this.cblstEnemiesSeens.Size = new System.Drawing.Size(661, 579); - this.cblstEnemiesSeens.TabIndex = 9; - // - // tabItemsSeen - // - this.tabItemsSeen.Controls.Add(this.grpItemsSeen); - this.tabItemsSeen.Controls.Add(this.cblstItemsSeen); - this.tabItemsSeen.Location = new System.Drawing.Point(4, 29); - this.tabItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabItemsSeen.Name = "tabItemsSeen"; - this.tabItemsSeen.Size = new System.Drawing.Size(842, 616); - this.tabItemsSeen.TabIndex = 12; - this.tabItemsSeen.Text = "Items Seen"; - this.tabItemsSeen.UseVisualStyleBackColor = true; - // - // grpItemsSeen - // - this.grpItemsSeen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.grpItemsSeen.Controls.Add(this.lblItemsSeenNullWarning); - this.grpItemsSeen.Controls.Add(this.btnSelectAllItemsSeen); - this.grpItemsSeen.Controls.Add(this.btnResetItemsSeen); - this.grpItemsSeen.Controls.Add(this.btnDeselectAllItemsSeen); - this.grpItemsSeen.Location = new System.Drawing.Point(681, 9); - this.grpItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpItemsSeen.Name = "grpItemsSeen"; - this.grpItemsSeen.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpItemsSeen.Size = new System.Drawing.Size(146, 583); - this.grpItemsSeen.TabIndex = 14; - this.grpItemsSeen.TabStop = false; - this.grpItemsSeen.Text = "Items Seen"; - // - // lblItemsSeenNullWarning + // pictureBox57 // - this.lblItemsSeenNullWarning.AutoSize = true; - this.lblItemsSeenNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblItemsSeenNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblItemsSeenNullWarning.Name = "lblItemsSeenNullWarning"; - this.lblItemsSeenNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblItemsSeenNullWarning.TabIndex = 8; - this.lblItemsSeenNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + this.pictureBox57.Image = global::SoG_SGreader.Properties.Resources.magic_soulsiphon; + this.pictureBox57.Location = new System.Drawing.Point(298, 163); + this.pictureBox57.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox57.Name = "pictureBox57"; + this.pictureBox57.Size = new System.Drawing.Size(80, 64); + this.pictureBox57.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox57.TabIndex = 56; + this.pictureBox57.TabStop = false; // - // btnSelectAllItemsSeen + // numTalentMagic3 // - this.btnSelectAllItemsSeen.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllItemsSeen.Name = "btnSelectAllItemsSeen"; - this.btnSelectAllItemsSeen.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllItemsSeen.TabIndex = 3; - this.btnSelectAllItemsSeen.Text = "Select all"; - this.btnSelectAllItemsSeen.UseVisualStyleBackColor = true; - this.btnSelectAllItemsSeen.Click += new System.EventHandler(this.btnSelectAllItemsSeen_Click); + this.numTalentMagic3.Location = new System.Drawing.Point(426, 103); + this.numTalentMagic3.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic3.Name = "numTalentMagic3"; + this.numTalentMagic3.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic3.TabIndex = 47; // - // btnResetItemsSeen + // pictureBox58 // - this.btnResetItemsSeen.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetItemsSeen.Location = new System.Drawing.Point(9, 538); - this.btnResetItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetItemsSeen.Name = "btnResetItemsSeen"; - this.btnResetItemsSeen.Size = new System.Drawing.Size(130, 35); - this.btnResetItemsSeen.TabIndex = 5; - this.btnResetItemsSeen.Text = "Reset"; - this.btnResetItemsSeen.UseVisualStyleBackColor = true; - this.btnResetItemsSeen.Click += new System.EventHandler(this.btnResetItemsSeen_Click); + this.pictureBox58.Image = global::SoG_SGreader.Properties.Resources.magic_prismatic; + this.pictureBox58.Location = new System.Drawing.Point(426, 27); + this.pictureBox58.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox58.Name = "pictureBox58"; + this.pictureBox58.Size = new System.Drawing.Size(80, 64); + this.pictureBox58.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox58.TabIndex = 48; + this.pictureBox58.TabStop = false; // - // btnDeselectAllItemsSeen + // numTalentMagic4 // - this.btnDeselectAllItemsSeen.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllItemsSeen.Name = "btnDeselectAllItemsSeen"; - this.btnDeselectAllItemsSeen.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllItemsSeen.TabIndex = 4; - this.btnDeselectAllItemsSeen.Text = "Deselect all"; - this.btnDeselectAllItemsSeen.UseVisualStyleBackColor = true; - this.btnDeselectAllItemsSeen.Click += new System.EventHandler(this.btnDeselectAllItemsSeen_Click); + this.numTalentMagic4.Location = new System.Drawing.Point(544, 103); + this.numTalentMagic4.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic4.Name = "numTalentMagic4"; + this.numTalentMagic4.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic4.TabIndex = 49; // - // cblstItemsSeen + // pictureBox59 // - this.cblstItemsSeen.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstItemsSeen.FormattingEnabled = true; - this.cblstItemsSeen.Location = new System.Drawing.Point(9, 9); - this.cblstItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstItemsSeen.Name = "cblstItemsSeen"; - this.cblstItemsSeen.Size = new System.Drawing.Size(661, 579); - this.cblstItemsSeen.TabIndex = 13; + this.pictureBox59.Image = global::SoG_SGreader.Properties.Resources.magic_battlemage; + this.pictureBox59.Location = new System.Drawing.Point(544, 27); + this.pictureBox59.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox59.Name = "pictureBox59"; + this.pictureBox59.Size = new System.Drawing.Size(80, 64); + this.pictureBox59.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox59.TabIndex = 50; + this.pictureBox59.TabStop = false; // - // tabItemsCrafted + // numTalentMagic0 // - this.tabItemsCrafted.Controls.Add(this.groupBox1); - this.tabItemsCrafted.Controls.Add(this.cblstItemsCrafted); - this.tabItemsCrafted.Location = new System.Drawing.Point(4, 29); - this.tabItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabItemsCrafted.Name = "tabItemsCrafted"; - this.tabItemsCrafted.Size = new System.Drawing.Size(842, 616); - this.tabItemsCrafted.TabIndex = 13; - this.tabItemsCrafted.Text = "Items Crafted"; - this.tabItemsCrafted.UseVisualStyleBackColor = true; + this.numTalentMagic0.Location = new System.Drawing.Point(52, 103); + this.numTalentMagic0.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic0.Name = "numTalentMagic0"; + this.numTalentMagic0.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic0.TabIndex = 41; // - // groupBox1 + // pictureBox60 // - this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBox1.Controls.Add(this.lblItemsCraftedNullWarning); - this.groupBox1.Controls.Add(this.btnSelectAllItemsCrafted); - this.groupBox1.Controls.Add(this.btnResetItemsCrafted); - this.groupBox1.Controls.Add(this.btnDeselectAllItemsCrafted); - this.groupBox1.Location = new System.Drawing.Point(681, 9); - this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox1.Name = "groupBox1"; - this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox1.Size = new System.Drawing.Size(146, 583); - this.groupBox1.TabIndex = 16; - this.groupBox1.TabStop = false; - this.groupBox1.Text = "Items Crafted"; + this.pictureBox60.Image = global::SoG_SGreader.Properties.Resources.magic_intelligence; + this.pictureBox60.Location = new System.Drawing.Point(52, 27); + this.pictureBox60.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox60.Name = "pictureBox60"; + this.pictureBox60.Size = new System.Drawing.Size(80, 64); + this.pictureBox60.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox60.TabIndex = 42; + this.pictureBox60.TabStop = false; // - // lblItemsCraftedNullWarning + // numTalentMagic1 // - this.lblItemsCraftedNullWarning.AutoSize = true; - this.lblItemsCraftedNullWarning.Location = new System.Drawing.Point(9, 114); - this.lblItemsCraftedNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.lblItemsCraftedNullWarning.Name = "lblItemsCraftedNullWarning"; - this.lblItemsCraftedNullWarning.Size = new System.Drawing.Size(106, 80); - this.lblItemsCraftedNullWarning.TabIndex = 8; - this.lblItemsCraftedNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + this.numTalentMagic1.Location = new System.Drawing.Point(180, 103); + this.numTalentMagic1.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic1.Name = "numTalentMagic1"; + this.numTalentMagic1.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic1.TabIndex = 43; // - // btnSelectAllItemsCrafted + // pictureBox61 // - this.btnSelectAllItemsCrafted.Location = new System.Drawing.Point(9, 29); - this.btnSelectAllItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnSelectAllItemsCrafted.Name = "btnSelectAllItemsCrafted"; - this.btnSelectAllItemsCrafted.Size = new System.Drawing.Size(130, 35); - this.btnSelectAllItemsCrafted.TabIndex = 3; - this.btnSelectAllItemsCrafted.Text = "Select all"; - this.btnSelectAllItemsCrafted.UseVisualStyleBackColor = true; - this.btnSelectAllItemsCrafted.Click += new System.EventHandler(this.btnSelectAllItemsCrafted_Click); + this.pictureBox61.Image = global::SoG_SGreader.Properties.Resources.magic_fasttalker; + this.pictureBox61.Location = new System.Drawing.Point(180, 27); + this.pictureBox61.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox61.Name = "pictureBox61"; + this.pictureBox61.Size = new System.Drawing.Size(80, 64); + this.pictureBox61.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox61.TabIndex = 44; + this.pictureBox61.TabStop = false; // - // btnResetItemsCrafted + // numTalentMagic2 // - this.btnResetItemsCrafted.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.btnResetItemsCrafted.Location = new System.Drawing.Point(9, 538); - this.btnResetItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnResetItemsCrafted.Name = "btnResetItemsCrafted"; - this.btnResetItemsCrafted.Size = new System.Drawing.Size(130, 35); - this.btnResetItemsCrafted.TabIndex = 5; - this.btnResetItemsCrafted.Text = "Reset"; - this.btnResetItemsCrafted.UseVisualStyleBackColor = true; - this.btnResetItemsCrafted.Click += new System.EventHandler(this.btnResetItemsCrafted_Click); + this.numTalentMagic2.Location = new System.Drawing.Point(298, 103); + this.numTalentMagic2.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentMagic2.Name = "numTalentMagic2"; + this.numTalentMagic2.Size = new System.Drawing.Size(80, 26); + this.numTalentMagic2.TabIndex = 45; // - // btnDeselectAllItemsCrafted + // pictureBox62 // - this.btnDeselectAllItemsCrafted.Location = new System.Drawing.Point(9, 74); - this.btnDeselectAllItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnDeselectAllItemsCrafted.Name = "btnDeselectAllItemsCrafted"; - this.btnDeselectAllItemsCrafted.Size = new System.Drawing.Size(130, 35); - this.btnDeselectAllItemsCrafted.TabIndex = 4; - this.btnDeselectAllItemsCrafted.Text = "Deselect all"; - this.btnDeselectAllItemsCrafted.UseVisualStyleBackColor = true; - this.btnDeselectAllItemsCrafted.Click += new System.EventHandler(this.btnDeselectAllItemsCrafted_Click); + this.pictureBox62.Image = global::SoG_SGreader.Properties.Resources.magic_arcanecharge; + this.pictureBox62.Location = new System.Drawing.Point(298, 27); + this.pictureBox62.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox62.Name = "pictureBox62"; + this.pictureBox62.Size = new System.Drawing.Size(80, 64); + this.pictureBox62.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox62.TabIndex = 46; + this.pictureBox62.TabStop = false; // - // cblstItemsCrafted + // tabTalentsGeneral // - this.cblstItemsCrafted.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.cblstItemsCrafted.FormattingEnabled = true; - this.cblstItemsCrafted.Location = new System.Drawing.Point(9, 9); - this.cblstItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cblstItemsCrafted.Name = "cblstItemsCrafted"; - this.cblstItemsCrafted.Size = new System.Drawing.Size(661, 579); - this.cblstItemsCrafted.TabIndex = 15; + this.tabTalentsGeneral.Controls.Add(this.groupBox5); + this.tabTalentsGeneral.Location = new System.Drawing.Point(104, 4); + this.tabTalentsGeneral.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabTalentsGeneral.Name = "tabTalentsGeneral"; + this.tabTalentsGeneral.Size = new System.Drawing.Size(726, 598); + this.tabTalentsGeneral.TabIndex = 5; + this.tabTalentsGeneral.Text = "Talents: General"; + this.tabTalentsGeneral.UseVisualStyleBackColor = true; // - // tabQuickslots + // groupBox5 // - this.tabQuickslots.Controls.Add(this.label57); - this.tabQuickslots.Controls.Add(this.grpQuickslots); - this.tabQuickslots.Location = new System.Drawing.Point(4, 29); - this.tabQuickslots.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabQuickslots.Name = "tabQuickslots"; - this.tabQuickslots.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabQuickslots.Size = new System.Drawing.Size(842, 616); - this.tabQuickslots.TabIndex = 1; - this.tabQuickslots.Text = "*Quickslots"; - this.tabQuickslots.UseVisualStyleBackColor = true; + this.groupBox5.Controls.Add(this.numTalentGeneral20); + this.groupBox5.Controls.Add(this.pictureBox78); + this.groupBox5.Controls.Add(this.numTalentGeneral19); + this.groupBox5.Controls.Add(this.pictureBox79); + this.groupBox5.Controls.Add(this.numTalentGeneral18); + this.groupBox5.Controls.Add(this.pictureBox80); + this.groupBox5.Controls.Add(this.numTalentGeneral17); + this.groupBox5.Controls.Add(this.pictureBox81); + this.groupBox5.Controls.Add(this.numTalentGeneral16); + this.groupBox5.Controls.Add(this.pictureBox82); + this.groupBox5.Controls.Add(this.numTalentGeneral15); + this.groupBox5.Controls.Add(this.pictureBox83); + this.groupBox5.Controls.Add(this.numTalentGeneral13); + this.groupBox5.Controls.Add(this.numTalentGeneral6); + this.groupBox5.Controls.Add(this.pictureBox65); + this.groupBox5.Controls.Add(this.pictureBox72); + this.groupBox5.Controls.Add(this.numTalentGeneral12); + this.groupBox5.Controls.Add(this.numTalentGeneral5); + this.groupBox5.Controls.Add(this.pictureBox66); + this.groupBox5.Controls.Add(this.pictureBox69); + this.groupBox5.Controls.Add(this.numTalentGeneral11); + this.groupBox5.Controls.Add(this.numTalentGeneral4); + this.groupBox5.Controls.Add(this.pictureBox73); + this.groupBox5.Controls.Add(this.pictureBox70); + this.groupBox5.Controls.Add(this.numTalentGeneral10); + this.groupBox5.Controls.Add(this.numTalentGeneral3); + this.groupBox5.Controls.Add(this.pictureBox74); + this.groupBox5.Controls.Add(this.pictureBox71); + this.groupBox5.Controls.Add(this.numTalentGeneral9); + this.groupBox5.Controls.Add(this.numTalentGeneral2); + this.groupBox5.Controls.Add(this.pictureBox76); + this.groupBox5.Controls.Add(this.pictureBox64); + this.groupBox5.Controls.Add(this.numTalentGeneral8); + this.groupBox5.Controls.Add(this.numTalentGeneral1); + this.groupBox5.Controls.Add(this.pictureBox77); + this.groupBox5.Controls.Add(this.pictureBox63); + this.groupBox5.Controls.Add(this.numTalentGeneral14); + this.groupBox5.Controls.Add(this.numTalentGeneral7); + this.groupBox5.Controls.Add(this.pictureBox67); + this.groupBox5.Controls.Add(this.pictureBox68); + this.groupBox5.Controls.Add(this.numTalentGeneral0); + this.groupBox5.Controls.Add(this.pictureBox75); + this.groupBox5.Location = new System.Drawing.Point(9, 9); + this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox5.Name = "groupBox5"; + this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox5.Size = new System.Drawing.Size(693, 432); + this.groupBox5.TabIndex = 43; + this.groupBox5.TabStop = false; + this.groupBox5.Text = "General"; // - // label57 + // numTalentGeneral20 // - this.label57.AutoSize = true; - this.label57.BackColor = System.Drawing.Color.Transparent; - this.label57.ForeColor = System.Drawing.SystemColors.Desktop; - this.label57.Location = new System.Drawing.Point(9, 466); - this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label57.Name = "label57"; - this.label57.Size = new System.Drawing.Size(578, 20); - this.label57.TabIndex = 32; - this.label57.Text = "* = support for this function was removed due to the risk of losing your save gam" + - "e"; + this.numTalentGeneral20.Location = new System.Drawing.Point(570, 371); + this.numTalentGeneral20.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral20.Name = "numTalentGeneral20"; + this.numTalentGeneral20.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral20.TabIndex = 116; // - // grpQuickslots + // pictureBox78 // - this.grpQuickslots.Controls.Add(this.label22); - this.grpQuickslots.Controls.Add(this.label21); - this.grpQuickslots.Controls.Add(this.label18); - this.grpQuickslots.Controls.Add(this.label19); - this.grpQuickslots.Controls.Add(this.label20); - this.grpQuickslots.Controls.Add(this.label23); - this.grpQuickslots.Controls.Add(this.label24); - this.grpQuickslots.Controls.Add(this.label25); - this.grpQuickslots.Controls.Add(this.label26); - this.grpQuickslots.Controls.Add(this.label27); - this.grpQuickslots.Location = new System.Drawing.Point(9, 9); - this.grpQuickslots.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpQuickslots.Name = "grpQuickslots"; - this.grpQuickslots.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.grpQuickslots.Size = new System.Drawing.Size(512, 452); - this.grpQuickslots.TabIndex = 29; - this.grpQuickslots.TabStop = false; - this.grpQuickslots.Text = "Quckslots"; + this.pictureBox78.Image = global::SoG_SGreader.Properties.Resources.general_alchemist; + this.pictureBox78.Location = new System.Drawing.Point(570, 297); + this.pictureBox78.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox78.Name = "pictureBox78"; + this.pictureBox78.Size = new System.Drawing.Size(80, 64); + this.pictureBox78.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox78.TabIndex = 117; + this.pictureBox78.TabStop = false; // - // label22 + // numTalentGeneral19 // - this.label22.AutoSize = true; - this.label22.Location = new System.Drawing.Point(18, 34); - this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(113, 20); - this.label22.TabIndex = 26; - this.label22.Text = "Quckslot 0 (C):"; + this.numTalentGeneral19.Location = new System.Drawing.Point(480, 371); + this.numTalentGeneral19.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral19.Name = "numTalentGeneral19"; + this.numTalentGeneral19.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral19.TabIndex = 114; // - // label21 + // pictureBox79 // - this.label21.AutoSize = true; - this.label21.Location = new System.Drawing.Point(18, 408); - this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(114, 20); - this.label21.TabIndex = 24; - this.label21.Text = "Quckslot 9 (R):"; + this.pictureBox79.Image = global::SoG_SGreader.Properties.Resources.general_finetaste; + this.pictureBox79.Location = new System.Drawing.Point(480, 297); + this.pictureBox79.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox79.Name = "pictureBox79"; + this.pictureBox79.Size = new System.Drawing.Size(80, 64); + this.pictureBox79.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox79.TabIndex = 115; + this.pictureBox79.TabStop = false; // - // label18 + // numTalentGeneral18 // - this.label18.AutoSize = true; - this.label18.Location = new System.Drawing.Point(18, 366); - this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(113, 20); - this.label18.TabIndex = 22; - this.label18.Text = "Quckslot 8 (E):"; + this.numTalentGeneral18.Location = new System.Drawing.Point(390, 371); + this.numTalentGeneral18.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral18.Name = "numTalentGeneral18"; + this.numTalentGeneral18.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral18.TabIndex = 112; // - // label19 + // pictureBox80 // - this.label19.AutoSize = true; - this.label19.Location = new System.Drawing.Point(18, 325); - this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(117, 20); - this.label19.TabIndex = 21; - this.label19.Text = "Quckslot 7 (W):"; + this.pictureBox80.Image = global::SoG_SGreader.Properties.Resources.general_quickreflex; + this.pictureBox80.Location = new System.Drawing.Point(390, 297); + this.pictureBox80.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox80.Name = "pictureBox80"; + this.pictureBox80.Size = new System.Drawing.Size(80, 64); + this.pictureBox80.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox80.TabIndex = 113; + this.pictureBox80.TabStop = false; // - // label20 + // numTalentGeneral17 // - this.label20.AutoSize = true; - this.label20.Location = new System.Drawing.Point(18, 283); - this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(114, 20); - this.label20.TabIndex = 20; - this.label20.Text = "Quckslot 6 (Q):"; + this.numTalentGeneral17.Location = new System.Drawing.Point(300, 371); + this.numTalentGeneral17.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral17.Name = "numTalentGeneral17"; + this.numTalentGeneral17.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral17.TabIndex = 110; // - // label23 + // pictureBox81 // - this.label23.AutoSize = true; - this.label23.Location = new System.Drawing.Point(18, 242); - this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label23.Name = "label23"; - this.label23.Size = new System.Drawing.Size(112, 20); - this.label23.TabIndex = 19; - this.label23.Text = "Quckslot 5 (F):"; + this.pictureBox81.Image = global::SoG_SGreader.Properties.Resources.general_efficientcounter; + this.pictureBox81.Location = new System.Drawing.Point(300, 297); + this.pictureBox81.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox81.Name = "pictureBox81"; + this.pictureBox81.Size = new System.Drawing.Size(80, 64); + this.pictureBox81.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox81.TabIndex = 111; + this.pictureBox81.TabStop = false; // - // label24 + // numTalentGeneral16 // - this.label24.AutoSize = true; - this.label24.Location = new System.Drawing.Point(18, 200); - this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label24.Name = "label24"; - this.label24.Size = new System.Drawing.Size(113, 20); - this.label24.TabIndex = 18; - this.label24.Text = "Quckslot 4 (V):"; + this.numTalentGeneral16.Location = new System.Drawing.Point(210, 371); + this.numTalentGeneral16.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral16.Name = "numTalentGeneral16"; + this.numTalentGeneral16.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral16.TabIndex = 108; // - // label25 + // pictureBox82 // - this.label25.AutoSize = true; - this.label25.Location = new System.Drawing.Point(18, 158); - this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label25.Name = "label25"; - this.label25.Size = new System.Drawing.Size(114, 20); - this.label25.TabIndex = 17; - this.label25.Text = "Quckslot 3 (D):"; + this.pictureBox82.Image = global::SoG_SGreader.Properties.Resources.general_kineticenergy; + this.pictureBox82.Location = new System.Drawing.Point(210, 297); + this.pictureBox82.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox82.Name = "pictureBox82"; + this.pictureBox82.Size = new System.Drawing.Size(80, 64); + this.pictureBox82.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox82.TabIndex = 109; + this.pictureBox82.TabStop = false; // - // label26 + // numTalentGeneral15 // - this.label26.AutoSize = true; - this.label26.Location = new System.Drawing.Point(18, 117); - this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label26.Name = "label26"; - this.label26.Size = new System.Drawing.Size(113, 20); - this.label26.TabIndex = 16; - this.label26.Text = "Quckslot 2 (S):"; + this.numTalentGeneral15.Location = new System.Drawing.Point(120, 371); + this.numTalentGeneral15.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral15.Name = "numTalentGeneral15"; + this.numTalentGeneral15.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral15.TabIndex = 106; // - // label27 + // pictureBox83 // - this.label27.AutoSize = true; - this.label27.Location = new System.Drawing.Point(18, 75); - this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label27.Name = "label27"; - this.label27.Size = new System.Drawing.Size(113, 20); - this.label27.TabIndex = 15; - this.label27.Text = "Quckslot 1 (A):"; + this.pictureBox83.Image = global::SoG_SGreader.Properties.Resources.general_shieldbearer; + this.pictureBox83.Location = new System.Drawing.Point(120, 297); + this.pictureBox83.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox83.Name = "pictureBox83"; + this.pictureBox83.Size = new System.Drawing.Size(80, 64); + this.pictureBox83.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox83.TabIndex = 107; + this.pictureBox83.TabStop = false; // - // msMenu + // numTalentGeneral13 // - this.msMenu.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2); - this.msMenu.ImageScalingSize = new System.Drawing.Size(20, 20); - this.msMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.fileToolStripMenuItem, - this.helpToolStripMenuItem}); - this.msMenu.Location = new System.Drawing.Point(0, 0); - this.msMenu.Name = "msMenu"; - this.msMenu.Padding = new System.Windows.Forms.Padding(3, 3, 0, 3); - this.msMenu.Size = new System.Drawing.Size(850, 35); - this.msMenu.TabIndex = 1; - this.msMenu.Text = "msMenu"; - // - // fileToolStripMenuItem - // - this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.openToolStripMenuItem, - this.saveToolStripMenuItem, - this.importToolStripMenuItem, - this.exportAsToolStripMenuItem, - this.openSavegameFolderToolStripMenuItem, - this.exitToolStripMenuItem}); - this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; - this.fileToolStripMenuItem.Size = new System.Drawing.Size(54, 29); - this.fileToolStripMenuItem.Text = "File"; - // - // openToolStripMenuItem - // - this.openToolStripMenuItem.Name = "openToolStripMenuItem"; - this.openToolStripMenuItem.Size = new System.Drawing.Size(329, 34); - this.openToolStripMenuItem.Text = "Open"; - this.openToolStripMenuItem.Click += new System.EventHandler(this.OpenToolStripMenuItem_Click); - // - // saveToolStripMenuItem - // - this.saveToolStripMenuItem.Enabled = false; - this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; - this.saveToolStripMenuItem.Size = new System.Drawing.Size(329, 34); - this.saveToolStripMenuItem.Text = "Save"; - this.saveToolStripMenuItem.Click += new System.EventHandler(this.SaveToolStripMenuItem_Click); - // - // importToolStripMenuItem - // - this.importToolStripMenuItem.Enabled = false; - this.importToolStripMenuItem.Name = "importToolStripMenuItem"; - this.importToolStripMenuItem.Size = new System.Drawing.Size(329, 34); - this.importToolStripMenuItem.Text = "Import"; - // - // exportAsToolStripMenuItem - // - this.exportAsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.jSONToolStripMenuItem}); - this.exportAsToolStripMenuItem.Name = "exportAsToolStripMenuItem"; - this.exportAsToolStripMenuItem.Size = new System.Drawing.Size(329, 34); - this.exportAsToolStripMenuItem.Text = "Export as..."; - // - // jSONToolStripMenuItem - // - this.jSONToolStripMenuItem.Name = "jSONToolStripMenuItem"; - this.jSONToolStripMenuItem.Size = new System.Drawing.Size(157, 34); - this.jSONToolStripMenuItem.Text = "JSON"; - this.jSONToolStripMenuItem.Click += new System.EventHandler(this.JSONToolStripMenuItem_Click); - // - // openSavegameFolderToolStripMenuItem - // - this.openSavegameFolderToolStripMenuItem.Name = "openSavegameFolderToolStripMenuItem"; - this.openSavegameFolderToolStripMenuItem.Size = new System.Drawing.Size(329, 34); - this.openSavegameFolderToolStripMenuItem.Text = "Open Savegame Location..."; - this.openSavegameFolderToolStripMenuItem.Click += new System.EventHandler(this.openSavegameFolderToolStripMenuItem_Click); - // - // exitToolStripMenuItem - // - this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; - this.exitToolStripMenuItem.Size = new System.Drawing.Size(329, 34); - this.exitToolStripMenuItem.Text = "Exit"; - this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click); - // - // helpToolStripMenuItem - // - this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.aboutToolStripMenuItem}); - this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; - this.helpToolStripMenuItem.Size = new System.Drawing.Size(65, 29); - this.helpToolStripMenuItem.Text = "Help"; - // - // aboutToolStripMenuItem - // - this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; - this.aboutToolStripMenuItem.Size = new System.Drawing.Size(164, 34); - this.aboutToolStripMenuItem.Text = "About"; - this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click); + this.numTalentGeneral13.Location = new System.Drawing.Point(570, 243); + this.numTalentGeneral13.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral13.Name = "numTalentGeneral13"; + this.numTalentGeneral13.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral13.TabIndex = 102; // - // txtConsole + // numTalentGeneral6 // - this.txtConsole.BackColor = System.Drawing.Color.Black; - this.txtConsole.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.txtConsole.Dock = System.Windows.Forms.DockStyle.Bottom; - this.txtConsole.ForeColor = System.Drawing.Color.LimeGreen; - this.txtConsole.Location = new System.Drawing.Point(0, 680); - this.txtConsole.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtConsole.Multiline = true; - this.txtConsole.Name = "txtConsole"; - this.txtConsole.ReadOnly = true; - this.txtConsole.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; - this.txtConsole.Size = new System.Drawing.Size(850, 197); - this.txtConsole.TabIndex = 28; - this.txtConsole.TabStop = false; + this.numTalentGeneral6.Location = new System.Drawing.Point(570, 103); + this.numTalentGeneral6.Maximum = new decimal(new int[] { + 255, + 0, + 0, + 0}); + this.numTalentGeneral6.Name = "numTalentGeneral6"; + this.numTalentGeneral6.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral6.TabIndex = 88; // - // pictureBox3 + // pictureBox65 // - this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.pictureBox3.BackColor = System.Drawing.Color.Transparent; - this.pictureBox3.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox3.Location = new System.Drawing.Point(820, 3); - this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox3.Name = "pictureBox3"; - this.pictureBox3.Size = new System.Drawing.Size(26, 26); - this.pictureBox3.TabIndex = 30; - this.pictureBox3.TabStop = false; - this.pictureBox3.Click += new System.EventHandler(this.PictureBox3_Click); + this.pictureBox65.Image = global::SoG_SGreader.Properties.Resources.general_arrowscavenger; + this.pictureBox65.Location = new System.Drawing.Point(570, 169); + this.pictureBox65.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox65.Name = "pictureBox65"; + this.pictureBox65.Size = new System.Drawing.Size(80, 64); + this.pictureBox65.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox65.TabIndex = 103; + this.pictureBox65.TabStop = false; // - // groupBox3 + // pictureBox72 // - this.groupBox3.Controls.Add(this.numTalentMelee13); - this.groupBox3.Controls.Add(this.numTalentMelee8); - this.groupBox3.Controls.Add(this.pictureBox43); - this.groupBox3.Controls.Add(this.pictureBox36); - this.groupBox3.Controls.Add(this.numTalentMelee14); - this.groupBox3.Controls.Add(this.numTalentMelee9); - this.groupBox3.Controls.Add(this.pictureBox44); - this.groupBox3.Controls.Add(this.pictureBox39); - this.groupBox3.Controls.Add(this.numTalentMelee10); - this.groupBox3.Controls.Add(this.numTalentMelee5); - this.groupBox3.Controls.Add(this.pictureBox45); - this.groupBox3.Controls.Add(this.pictureBox40); - this.groupBox3.Controls.Add(this.numTalentMelee11); - this.groupBox3.Controls.Add(this.numTalentMelee6); - this.groupBox3.Controls.Add(this.pictureBox46); - this.groupBox3.Controls.Add(this.pictureBox41); - this.groupBox3.Controls.Add(this.numTalentMelee12); - this.groupBox3.Controls.Add(this.numTalentMelee7); - this.groupBox3.Controls.Add(this.pictureBox47); - this.groupBox3.Controls.Add(this.pictureBox42); - this.groupBox3.Controls.Add(this.numTalentMelee3); - this.groupBox3.Controls.Add(this.pictureBox37); - this.groupBox3.Controls.Add(this.numTalentMelee4); - this.groupBox3.Controls.Add(this.pictureBox38); - this.groupBox3.Controls.Add(this.numTalentMelee0); - this.groupBox3.Controls.Add(this.pictureBox33); - this.groupBox3.Controls.Add(this.numTalentMelee1); - this.groupBox3.Controls.Add(this.pictureBox34); - this.groupBox3.Controls.Add(this.numTalentMelee2); - this.groupBox3.Controls.Add(this.pictureBox35); - this.groupBox3.Location = new System.Drawing.Point(9, 9); - this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox3.Name = "groupBox3"; - this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox3.Size = new System.Drawing.Size(693, 432); - this.groupBox3.TabIndex = 41; - this.groupBox3.TabStop = false; - this.groupBox3.Text = "Melee"; + this.pictureBox72.Image = global::SoG_SGreader.Properties.Resources.general_brutality; + this.pictureBox72.Location = new System.Drawing.Point(570, 27); + this.pictureBox72.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox72.Name = "pictureBox72"; + this.pictureBox72.Size = new System.Drawing.Size(80, 64); + this.pictureBox72.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox72.TabIndex = 89; + this.pictureBox72.TabStop = false; // - // numTalentMelee13 + // numTalentGeneral12 // - this.numTalentMelee13.Location = new System.Drawing.Point(416, 373); - this.numTalentMelee13.Maximum = new decimal(new int[] { + this.numTalentGeneral12.Location = new System.Drawing.Point(480, 243); + this.numTalentGeneral12.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee13.Name = "numTalentMelee13"; - this.numTalentMelee13.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee13.TabIndex = 67; + this.numTalentGeneral12.Name = "numTalentGeneral12"; + this.numTalentGeneral12.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral12.TabIndex = 100; // - // numTalentMelee8 + // numTalentGeneral5 // - this.numTalentMelee8.Location = new System.Drawing.Point(416, 239); - this.numTalentMelee8.Maximum = new decimal(new int[] { + this.numTalentGeneral5.Location = new System.Drawing.Point(480, 103); + this.numTalentGeneral5.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee8.Name = "numTalentMelee8"; - this.numTalentMelee8.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee8.TabIndex = 57; + this.numTalentGeneral5.Name = "numTalentGeneral5"; + this.numTalentGeneral5.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral5.TabIndex = 84; // - // pictureBox43 + // pictureBox66 // - this.pictureBox43.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox43.Location = new System.Drawing.Point(442, 297); - this.pictureBox43.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox43.Name = "pictureBox43"; - this.pictureBox43.Size = new System.Drawing.Size(69, 71); - this.pictureBox43.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox43.TabIndex = 68; - this.pictureBox43.TabStop = false; + this.pictureBox66.Image = global::SoG_SGreader.Properties.Resources.general_quickshot; + this.pictureBox66.Location = new System.Drawing.Point(480, 169); + this.pictureBox66.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox66.Name = "pictureBox66"; + this.pictureBox66.Size = new System.Drawing.Size(80, 64); + this.pictureBox66.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox66.TabIndex = 101; + this.pictureBox66.TabStop = false; // - // pictureBox36 + // pictureBox69 // - this.pictureBox36.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox36.Location = new System.Drawing.Point(442, 163); - this.pictureBox36.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox36.Name = "pictureBox36"; - this.pictureBox36.Size = new System.Drawing.Size(69, 71); - this.pictureBox36.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox36.TabIndex = 58; - this.pictureBox36.TabStop = false; + this.pictureBox69.Image = global::SoG_SGreader.Properties.Resources.general_surgeon; + this.pictureBox69.Location = new System.Drawing.Point(480, 27); + this.pictureBox69.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox69.Name = "pictureBox69"; + this.pictureBox69.Size = new System.Drawing.Size(80, 64); + this.pictureBox69.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox69.TabIndex = 85; + this.pictureBox69.TabStop = false; // - // numTalentMelee14 + // numTalentGeneral11 // - this.numTalentMelee14.Location = new System.Drawing.Point(535, 373); - this.numTalentMelee14.Maximum = new decimal(new int[] { + this.numTalentGeneral11.Location = new System.Drawing.Point(390, 243); + this.numTalentGeneral11.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee14.Name = "numTalentMelee14"; - this.numTalentMelee14.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee14.TabIndex = 69; + this.numTalentGeneral11.Name = "numTalentGeneral11"; + this.numTalentGeneral11.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral11.TabIndex = 98; // - // numTalentMelee9 + // numTalentGeneral4 // - this.numTalentMelee9.Location = new System.Drawing.Point(535, 239); - this.numTalentMelee9.Maximum = new decimal(new int[] { + this.numTalentGeneral4.Location = new System.Drawing.Point(390, 103); + this.numTalentGeneral4.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee9.Name = "numTalentMelee9"; - this.numTalentMelee9.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee9.TabIndex = 59; + this.numTalentGeneral4.Name = "numTalentGeneral4"; + this.numTalentGeneral4.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral4.TabIndex = 82; // - // pictureBox44 + // pictureBox73 // - this.pictureBox44.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox44.Location = new System.Drawing.Point(560, 297); - this.pictureBox44.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox44.Name = "pictureBox44"; - this.pictureBox44.Size = new System.Drawing.Size(69, 71); - this.pictureBox44.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox44.TabIndex = 70; - this.pictureBox44.TabStop = false; + this.pictureBox73.Image = global::SoG_SGreader.Properties.Resources.general_ladyluck; + this.pictureBox73.Location = new System.Drawing.Point(390, 169); + this.pictureBox73.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox73.Name = "pictureBox73"; + this.pictureBox73.Size = new System.Drawing.Size(80, 64); + this.pictureBox73.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox73.TabIndex = 99; + this.pictureBox73.TabStop = false; // - // pictureBox39 + // pictureBox70 // - this.pictureBox39.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox39.Location = new System.Drawing.Point(560, 163); - this.pictureBox39.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox39.Name = "pictureBox39"; - this.pictureBox39.Size = new System.Drawing.Size(69, 71); - this.pictureBox39.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox39.TabIndex = 60; - this.pictureBox39.TabStop = false; + this.pictureBox70.Image = global::SoG_SGreader.Properties.Resources.general_metabolism; + this.pictureBox70.Location = new System.Drawing.Point(390, 27); + this.pictureBox70.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox70.Name = "pictureBox70"; + this.pictureBox70.Size = new System.Drawing.Size(80, 64); + this.pictureBox70.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox70.TabIndex = 83; + this.pictureBox70.TabStop = false; // - // numTalentMelee10 + // numTalentGeneral10 // - this.numTalentMelee10.Location = new System.Drawing.Point(43, 373); - this.numTalentMelee10.Maximum = new decimal(new int[] { + this.numTalentGeneral10.Location = new System.Drawing.Point(300, 243); + this.numTalentGeneral10.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee10.Name = "numTalentMelee10"; - this.numTalentMelee10.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee10.TabIndex = 61; + this.numTalentGeneral10.Name = "numTalentGeneral10"; + this.numTalentGeneral10.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral10.TabIndex = 96; // - // numTalentMelee5 + // numTalentGeneral3 // - this.numTalentMelee5.Location = new System.Drawing.Point(43, 239); - this.numTalentMelee5.Maximum = new decimal(new int[] { + this.numTalentGeneral3.Location = new System.Drawing.Point(300, 103); + this.numTalentGeneral3.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee5.Name = "numTalentMelee5"; - this.numTalentMelee5.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee5.TabIndex = 51; + this.numTalentGeneral3.Name = "numTalentGeneral3"; + this.numTalentGeneral3.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral3.TabIndex = 80; // - // pictureBox45 + // pictureBox74 // - this.pictureBox45.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox45.Location = new System.Drawing.Point(68, 297); - this.pictureBox45.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox45.Name = "pictureBox45"; - this.pictureBox45.Size = new System.Drawing.Size(69, 71); - this.pictureBox45.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox45.TabIndex = 62; - this.pictureBox45.TabStop = false; + this.pictureBox74.Image = global::SoG_SGreader.Properties.Resources.general_unknown; + this.pictureBox74.Location = new System.Drawing.Point(300, 169); + this.pictureBox74.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox74.Name = "pictureBox74"; + this.pictureBox74.Size = new System.Drawing.Size(80, 64); + this.pictureBox74.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox74.TabIndex = 97; + this.pictureBox74.TabStop = false; // - // pictureBox40 + // pictureBox71 // - this.pictureBox40.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox40.Location = new System.Drawing.Point(68, 163); - this.pictureBox40.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox40.Name = "pictureBox40"; - this.pictureBox40.Size = new System.Drawing.Size(69, 71); - this.pictureBox40.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox40.TabIndex = 52; - this.pictureBox40.TabStop = false; + this.pictureBox71.Image = global::SoG_SGreader.Properties.Resources.general_endurance; + this.pictureBox71.Location = new System.Drawing.Point(300, 27); + this.pictureBox71.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox71.Name = "pictureBox71"; + this.pictureBox71.Size = new System.Drawing.Size(80, 64); + this.pictureBox71.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox71.TabIndex = 81; + this.pictureBox71.TabStop = false; // - // numTalentMelee11 + // numTalentGeneral9 // - this.numTalentMelee11.Location = new System.Drawing.Point(170, 373); - this.numTalentMelee11.Maximum = new decimal(new int[] { + this.numTalentGeneral9.Location = new System.Drawing.Point(210, 243); + this.numTalentGeneral9.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee11.Name = "numTalentMelee11"; - this.numTalentMelee11.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee11.TabIndex = 63; + this.numTalentGeneral9.Name = "numTalentGeneral9"; + this.numTalentGeneral9.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral9.TabIndex = 94; // - // numTalentMelee6 + // numTalentGeneral2 // - this.numTalentMelee6.Location = new System.Drawing.Point(170, 239); - this.numTalentMelee6.Maximum = new decimal(new int[] { + this.numTalentGeneral2.Location = new System.Drawing.Point(210, 103); + this.numTalentGeneral2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee6.Name = "numTalentMelee6"; - this.numTalentMelee6.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee6.TabIndex = 53; + this.numTalentGeneral2.Name = "numTalentGeneral2"; + this.numTalentGeneral2.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral2.TabIndex = 78; // - // pictureBox46 + // pictureBox76 // - this.pictureBox46.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox46.Location = new System.Drawing.Point(196, 297); - this.pictureBox46.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox46.Name = "pictureBox46"; - this.pictureBox46.Size = new System.Drawing.Size(69, 71); - this.pictureBox46.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox46.TabIndex = 64; - this.pictureBox46.TabStop = false; + this.pictureBox76.Image = global::SoG_SGreader.Properties.Resources.general_laststand; + this.pictureBox76.Location = new System.Drawing.Point(210, 169); + this.pictureBox76.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox76.Name = "pictureBox76"; + this.pictureBox76.Size = new System.Drawing.Size(80, 64); + this.pictureBox76.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox76.TabIndex = 95; + this.pictureBox76.TabStop = false; // - // pictureBox41 + // pictureBox64 // - this.pictureBox41.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox41.Location = new System.Drawing.Point(196, 163); - this.pictureBox41.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox41.Name = "pictureBox41"; - this.pictureBox41.Size = new System.Drawing.Size(69, 71); - this.pictureBox41.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox41.TabIndex = 54; - this.pictureBox41.TabStop = false; + this.pictureBox64.Image = global::SoG_SGreader.Properties.Resources.general_healthinsurance; + this.pictureBox64.Location = new System.Drawing.Point(210, 27); + this.pictureBox64.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox64.Name = "pictureBox64"; + this.pictureBox64.Size = new System.Drawing.Size(80, 64); + this.pictureBox64.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox64.TabIndex = 79; + this.pictureBox64.TabStop = false; // - // numTalentMelee12 + // numTalentGeneral8 // - this.numTalentMelee12.Location = new System.Drawing.Point(289, 373); - this.numTalentMelee12.Maximum = new decimal(new int[] { + this.numTalentGeneral8.Location = new System.Drawing.Point(120, 243); + this.numTalentGeneral8.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee12.Name = "numTalentMelee12"; - this.numTalentMelee12.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee12.TabIndex = 65; + this.numTalentGeneral8.Name = "numTalentGeneral8"; + this.numTalentGeneral8.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral8.TabIndex = 92; // - // numTalentMelee7 + // numTalentGeneral1 // - this.numTalentMelee7.Location = new System.Drawing.Point(289, 239); - this.numTalentMelee7.Maximum = new decimal(new int[] { + this.numTalentGeneral1.Location = new System.Drawing.Point(120, 103); + this.numTalentGeneral1.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee7.Name = "numTalentMelee7"; - this.numTalentMelee7.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee7.TabIndex = 55; + this.numTalentGeneral1.Name = "numTalentGeneral1"; + this.numTalentGeneral1.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral1.TabIndex = 76; // - // pictureBox47 + // pictureBox77 // - this.pictureBox47.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox47.Location = new System.Drawing.Point(314, 297); - this.pictureBox47.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox47.Name = "pictureBox47"; - this.pictureBox47.Size = new System.Drawing.Size(69, 71); - this.pictureBox47.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox47.TabIndex = 66; - this.pictureBox47.TabStop = false; + this.pictureBox77.Image = global::SoG_SGreader.Properties.Resources.general_gotyoucovered; + this.pictureBox77.Location = new System.Drawing.Point(120, 169); + this.pictureBox77.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox77.Name = "pictureBox77"; + this.pictureBox77.Size = new System.Drawing.Size(80, 64); + this.pictureBox77.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox77.TabIndex = 93; + this.pictureBox77.TabStop = false; // - // pictureBox42 + // pictureBox63 // - this.pictureBox42.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox42.Location = new System.Drawing.Point(314, 163); - this.pictureBox42.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox42.Name = "pictureBox42"; - this.pictureBox42.Size = new System.Drawing.Size(69, 71); - this.pictureBox42.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox42.TabIndex = 56; - this.pictureBox42.TabStop = false; + this.pictureBox63.Image = global::SoG_SGreader.Properties.Resources.general_tenacious; + this.pictureBox63.Location = new System.Drawing.Point(120, 27); + this.pictureBox63.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox63.Name = "pictureBox63"; + this.pictureBox63.Size = new System.Drawing.Size(80, 64); + this.pictureBox63.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox63.TabIndex = 77; + this.pictureBox63.TabStop = false; // - // numTalentMelee3 + // numTalentGeneral14 // - this.numTalentMelee3.Location = new System.Drawing.Point(416, 103); - this.numTalentMelee3.Maximum = new decimal(new int[] { + this.numTalentGeneral14.Location = new System.Drawing.Point(30, 371); + this.numTalentGeneral14.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee3.Name = "numTalentMelee3"; - this.numTalentMelee3.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee3.TabIndex = 47; - // - // pictureBox37 - // - this.pictureBox37.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox37.Location = new System.Drawing.Point(442, 27); - this.pictureBox37.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox37.Name = "pictureBox37"; - this.pictureBox37.Size = new System.Drawing.Size(69, 71); - this.pictureBox37.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox37.TabIndex = 48; - this.pictureBox37.TabStop = false; + this.numTalentGeneral14.Name = "numTalentGeneral14"; + this.numTalentGeneral14.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral14.TabIndex = 72; // - // numTalentMelee4 + // numTalentGeneral7 // - this.numTalentMelee4.Location = new System.Drawing.Point(535, 103); - this.numTalentMelee4.Maximum = new decimal(new int[] { + this.numTalentGeneral7.Location = new System.Drawing.Point(30, 243); + this.numTalentGeneral7.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee4.Name = "numTalentMelee4"; - this.numTalentMelee4.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee4.TabIndex = 49; + this.numTalentGeneral7.Name = "numTalentGeneral7"; + this.numTalentGeneral7.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral7.TabIndex = 71; // - // pictureBox38 + // pictureBox67 // - this.pictureBox38.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox38.Location = new System.Drawing.Point(560, 27); - this.pictureBox38.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox38.Name = "pictureBox38"; - this.pictureBox38.Size = new System.Drawing.Size(69, 71); - this.pictureBox38.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox38.TabIndex = 50; - this.pictureBox38.TabStop = false; + this.pictureBox67.Image = global::SoG_SGreader.Properties.Resources.general_multitask; + this.pictureBox67.Location = new System.Drawing.Point(30, 297); + this.pictureBox67.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox67.Name = "pictureBox67"; + this.pictureBox67.Size = new System.Drawing.Size(80, 64); + this.pictureBox67.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox67.TabIndex = 62; + this.pictureBox67.TabStop = false; // - // numTalentMelee0 + // pictureBox68 // - this.numTalentMelee0.Location = new System.Drawing.Point(43, 103); - this.numTalentMelee0.Maximum = new decimal(new int[] { + this.pictureBox68.Image = global::SoG_SGreader.Properties.Resources.general_utilityflow; + this.pictureBox68.Location = new System.Drawing.Point(30, 169); + this.pictureBox68.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox68.Name = "pictureBox68"; + this.pictureBox68.Size = new System.Drawing.Size(80, 64); + this.pictureBox68.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox68.TabIndex = 52; + this.pictureBox68.TabStop = false; + // + // numTalentGeneral0 + // + this.numTalentGeneral0.Location = new System.Drawing.Point(30, 103); + this.numTalentGeneral0.Maximum = new decimal(new int[] { 255, 0, 0, 0}); - this.numTalentMelee0.Name = "numTalentMelee0"; - this.numTalentMelee0.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee0.TabIndex = 41; + this.numTalentGeneral0.Name = "numTalentGeneral0"; + this.numTalentGeneral0.Size = new System.Drawing.Size(80, 26); + this.numTalentGeneral0.TabIndex = 41; // - // pictureBox33 + // pictureBox75 // - this.pictureBox33.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox33.Location = new System.Drawing.Point(68, 27); - this.pictureBox33.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox33.Name = "pictureBox33"; - this.pictureBox33.Size = new System.Drawing.Size(69, 71); - this.pictureBox33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox33.TabIndex = 42; - this.pictureBox33.TabStop = false; + this.pictureBox75.Image = global::SoG_SGreader.Properties.Resources.general_adaptable; + this.pictureBox75.Location = new System.Drawing.Point(30, 27); + this.pictureBox75.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.pictureBox75.Name = "pictureBox75"; + this.pictureBox75.Size = new System.Drawing.Size(80, 64); + this.pictureBox75.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox75.TabIndex = 42; + this.pictureBox75.TabStop = false; // - // numTalentMelee1 + // tabCards // - this.numTalentMelee1.Location = new System.Drawing.Point(170, 103); - this.numTalentMelee1.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMelee1.Name = "numTalentMelee1"; - this.numTalentMelee1.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee1.TabIndex = 43; + this.tabCards.Controls.Add(this.grpCards); + this.tabCards.Controls.Add(this.cblstCards); + this.tabCards.Location = new System.Drawing.Point(4, 29); + this.tabCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabCards.Name = "tabCards"; + this.tabCards.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabCards.Size = new System.Drawing.Size(842, 616); + this.tabCards.TabIndex = 5; + this.tabCards.Text = "Cards"; + this.tabCards.UseVisualStyleBackColor = true; // - // pictureBox34 + // grpCards // - this.pictureBox34.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox34.Location = new System.Drawing.Point(196, 27); - this.pictureBox34.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox34.Name = "pictureBox34"; - this.pictureBox34.Size = new System.Drawing.Size(69, 71); - this.pictureBox34.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox34.TabIndex = 44; - this.pictureBox34.TabStop = false; + this.grpCards.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpCards.Controls.Add(this.lblCardsNullWarning); + this.grpCards.Controls.Add(this.btnSelectAllCards); + this.grpCards.Controls.Add(this.btnResetCards); + this.grpCards.Controls.Add(this.btnDeselectAllCards); + this.grpCards.Location = new System.Drawing.Point(681, 9); + this.grpCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpCards.Name = "grpCards"; + this.grpCards.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpCards.Size = new System.Drawing.Size(146, 583); + this.grpCards.TabIndex = 6; + this.grpCards.TabStop = false; + this.grpCards.Text = "Cards"; // - // numTalentMelee2 + // lblCardsNullWarning // - this.numTalentMelee2.Location = new System.Drawing.Point(289, 103); - this.numTalentMelee2.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMelee2.Name = "numTalentMelee2"; - this.numTalentMelee2.Size = new System.Drawing.Size(118, 26); - this.numTalentMelee2.TabIndex = 45; + this.lblCardsNullWarning.AutoSize = true; + this.lblCardsNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblCardsNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblCardsNullWarning.Name = "lblCardsNullWarning"; + this.lblCardsNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblCardsNullWarning.TabIndex = 7; + this.lblCardsNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - // pictureBox35 + // btnSelectAllCards // - this.pictureBox35.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox35.Location = new System.Drawing.Point(314, 27); - this.pictureBox35.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox35.Name = "pictureBox35"; - this.pictureBox35.Size = new System.Drawing.Size(69, 71); - this.pictureBox35.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox35.TabIndex = 46; - this.pictureBox35.TabStop = false; + this.btnSelectAllCards.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllCards.Name = "btnSelectAllCards"; + this.btnSelectAllCards.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllCards.TabIndex = 3; + this.btnSelectAllCards.Text = "Select all"; + this.btnSelectAllCards.UseVisualStyleBackColor = true; + this.btnSelectAllCards.Click += new System.EventHandler(this.btnSelectAllCards_Click); // - // groupBox4 + // btnResetCards // - this.groupBox4.Controls.Add(this.numTalentMagic13); - this.groupBox4.Controls.Add(this.numTalentMagic8); - this.groupBox4.Controls.Add(this.pictureBox48); - this.groupBox4.Controls.Add(this.pictureBox49); - this.groupBox4.Controls.Add(this.numTalentMagic14); - this.groupBox4.Controls.Add(this.numTalentMagic9); - this.groupBox4.Controls.Add(this.pictureBox50); - this.groupBox4.Controls.Add(this.pictureBox51); - this.groupBox4.Controls.Add(this.numTalentMagic10); - this.groupBox4.Controls.Add(this.numTalentMagic5); - this.groupBox4.Controls.Add(this.pictureBox52); - this.groupBox4.Controls.Add(this.pictureBox53); - this.groupBox4.Controls.Add(this.numTalentMagic11); - this.groupBox4.Controls.Add(this.numTalentMagic6); - this.groupBox4.Controls.Add(this.pictureBox54); - this.groupBox4.Controls.Add(this.pictureBox55); - this.groupBox4.Controls.Add(this.numTalentMagic12); - this.groupBox4.Controls.Add(this.numTalentMagic7); - this.groupBox4.Controls.Add(this.pictureBox56); - this.groupBox4.Controls.Add(this.pictureBox57); - this.groupBox4.Controls.Add(this.numTalentMagic3); - this.groupBox4.Controls.Add(this.pictureBox58); - this.groupBox4.Controls.Add(this.numTalentMagic4); - this.groupBox4.Controls.Add(this.pictureBox59); - this.groupBox4.Controls.Add(this.numTalentMagic0); - this.groupBox4.Controls.Add(this.pictureBox60); - this.groupBox4.Controls.Add(this.numTalentMagic1); - this.groupBox4.Controls.Add(this.pictureBox61); - this.groupBox4.Controls.Add(this.numTalentMagic2); - this.groupBox4.Controls.Add(this.pictureBox62); - this.groupBox4.Location = new System.Drawing.Point(9, 9); - this.groupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox4.Name = "groupBox4"; - this.groupBox4.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox4.Size = new System.Drawing.Size(693, 432); - this.groupBox4.TabIndex = 42; - this.groupBox4.TabStop = false; - this.groupBox4.Text = "Magic"; - // - // numTalentMagic13 + this.btnResetCards.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetCards.Location = new System.Drawing.Point(9, 538); + this.btnResetCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetCards.Name = "btnResetCards"; + this.btnResetCards.Size = new System.Drawing.Size(130, 35); + this.btnResetCards.TabIndex = 5; + this.btnResetCards.Text = "Reset"; + this.btnResetCards.UseVisualStyleBackColor = true; + this.btnResetCards.Click += new System.EventHandler(this.btnResetCards_Click); // - this.numTalentMagic13.Location = new System.Drawing.Point(416, 373); - this.numTalentMagic13.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic13.Name = "numTalentMagic13"; - this.numTalentMagic13.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic13.TabIndex = 67; + // btnDeselectAllCards // - // numTalentMagic8 + this.btnDeselectAllCards.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllCards.Name = "btnDeselectAllCards"; + this.btnDeselectAllCards.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllCards.TabIndex = 4; + this.btnDeselectAllCards.Text = "Deselect all"; + this.btnDeselectAllCards.UseVisualStyleBackColor = true; + this.btnDeselectAllCards.Click += new System.EventHandler(this.btnDeselectAllCards_Click); // - this.numTalentMagic8.Location = new System.Drawing.Point(416, 239); - this.numTalentMagic8.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic8.Name = "numTalentMagic8"; - this.numTalentMagic8.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic8.TabIndex = 57; + // cblstCards // - // pictureBox48 + this.cblstCards.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstCards.FormattingEnabled = true; + this.cblstCards.Location = new System.Drawing.Point(9, 9); + this.cblstCards.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstCards.Name = "cblstCards"; + this.cblstCards.Size = new System.Drawing.Size(661, 579); + this.cblstCards.TabIndex = 2; // - this.pictureBox48.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox48.Location = new System.Drawing.Point(442, 297); - this.pictureBox48.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox48.Name = "pictureBox48"; - this.pictureBox48.Size = new System.Drawing.Size(69, 71); - this.pictureBox48.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox48.TabIndex = 68; - this.pictureBox48.TabStop = false; + // tabMaps // - // pictureBox49 + this.tabMaps.Controls.Add(this.grpMaps); + this.tabMaps.Controls.Add(this.cblstMaps); + this.tabMaps.Location = new System.Drawing.Point(4, 29); + this.tabMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabMaps.Name = "tabMaps"; + this.tabMaps.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabMaps.Size = new System.Drawing.Size(842, 616); + this.tabMaps.TabIndex = 10; + this.tabMaps.Text = "Maps"; + this.tabMaps.UseVisualStyleBackColor = true; // - this.pictureBox49.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox49.Location = new System.Drawing.Point(442, 163); - this.pictureBox49.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox49.Name = "pictureBox49"; - this.pictureBox49.Size = new System.Drawing.Size(69, 71); - this.pictureBox49.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox49.TabIndex = 58; - this.pictureBox49.TabStop = false; + // grpMaps // - // numTalentMagic14 + this.grpMaps.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpMaps.Controls.Add(this.lblMapsNullWarning); + this.grpMaps.Controls.Add(this.btnSelectAllMaps); + this.grpMaps.Controls.Add(this.btnResetMaps); + this.grpMaps.Controls.Add(this.btnDeselectAllMaps); + this.grpMaps.Location = new System.Drawing.Point(681, 9); + this.grpMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpMaps.Name = "grpMaps"; + this.grpMaps.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpMaps.Size = new System.Drawing.Size(146, 583); + this.grpMaps.TabIndex = 8; + this.grpMaps.TabStop = false; + this.grpMaps.Text = "Maps"; // - this.numTalentMagic14.Location = new System.Drawing.Point(535, 373); - this.numTalentMagic14.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic14.Name = "numTalentMagic14"; - this.numTalentMagic14.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic14.TabIndex = 69; + // lblMapsNullWarning // - // numTalentMagic9 + this.lblMapsNullWarning.AutoSize = true; + this.lblMapsNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblMapsNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblMapsNullWarning.Name = "lblMapsNullWarning"; + this.lblMapsNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblMapsNullWarning.TabIndex = 8; + this.lblMapsNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - this.numTalentMagic9.Location = new System.Drawing.Point(535, 239); - this.numTalentMagic9.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic9.Name = "numTalentMagic9"; - this.numTalentMagic9.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic9.TabIndex = 59; + // btnSelectAllMaps // - // pictureBox50 + this.btnSelectAllMaps.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllMaps.Name = "btnSelectAllMaps"; + this.btnSelectAllMaps.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllMaps.TabIndex = 3; + this.btnSelectAllMaps.Text = "Select all"; + this.btnSelectAllMaps.UseVisualStyleBackColor = true; + this.btnSelectAllMaps.Click += new System.EventHandler(this.btnSelectAllMaps_Click); // - this.pictureBox50.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox50.Location = new System.Drawing.Point(560, 297); - this.pictureBox50.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox50.Name = "pictureBox50"; - this.pictureBox50.Size = new System.Drawing.Size(69, 71); - this.pictureBox50.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox50.TabIndex = 70; - this.pictureBox50.TabStop = false; + // btnResetMaps // - // pictureBox51 + this.btnResetMaps.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetMaps.Location = new System.Drawing.Point(9, 538); + this.btnResetMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetMaps.Name = "btnResetMaps"; + this.btnResetMaps.Size = new System.Drawing.Size(130, 35); + this.btnResetMaps.TabIndex = 5; + this.btnResetMaps.Text = "Reset"; + this.btnResetMaps.UseVisualStyleBackColor = true; + this.btnResetMaps.Click += new System.EventHandler(this.btnResetMaps_Click); // - this.pictureBox51.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox51.Location = new System.Drawing.Point(560, 163); - this.pictureBox51.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox51.Name = "pictureBox51"; - this.pictureBox51.Size = new System.Drawing.Size(69, 71); - this.pictureBox51.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox51.TabIndex = 60; - this.pictureBox51.TabStop = false; + // btnDeselectAllMaps // - // numTalentMagic10 + this.btnDeselectAllMaps.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllMaps.Name = "btnDeselectAllMaps"; + this.btnDeselectAllMaps.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllMaps.TabIndex = 4; + this.btnDeselectAllMaps.Text = "Deselect all"; + this.btnDeselectAllMaps.UseVisualStyleBackColor = true; + this.btnDeselectAllMaps.Click += new System.EventHandler(this.btnDeselectAllMaps_Click); // - this.numTalentMagic10.Location = new System.Drawing.Point(43, 373); - this.numTalentMagic10.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic10.Name = "numTalentMagic10"; - this.numTalentMagic10.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic10.TabIndex = 61; + // cblstMaps // - // numTalentMagic5 + this.cblstMaps.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstMaps.FormattingEnabled = true; + this.cblstMaps.Location = new System.Drawing.Point(9, 9); + this.cblstMaps.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstMaps.Name = "cblstMaps"; + this.cblstMaps.Size = new System.Drawing.Size(661, 579); + this.cblstMaps.TabIndex = 7; // - this.numTalentMagic5.Location = new System.Drawing.Point(43, 239); - this.numTalentMagic5.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic5.Name = "numTalentMagic5"; - this.numTalentMagic5.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic5.TabIndex = 51; + // tabQuests // - // pictureBox52 + this.tabQuests.Controls.Add(this.grpQuests); + this.tabQuests.Controls.Add(this.cblstQuests); + this.tabQuests.Location = new System.Drawing.Point(4, 29); + this.tabQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabQuests.Name = "tabQuests"; + this.tabQuests.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabQuests.Size = new System.Drawing.Size(842, 616); + this.tabQuests.TabIndex = 9; + this.tabQuests.Text = "Quests"; + this.tabQuests.UseVisualStyleBackColor = true; // - this.pictureBox52.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox52.Location = new System.Drawing.Point(68, 297); - this.pictureBox52.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox52.Name = "pictureBox52"; - this.pictureBox52.Size = new System.Drawing.Size(69, 71); - this.pictureBox52.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox52.TabIndex = 62; - this.pictureBox52.TabStop = false; + // grpQuests // - // pictureBox53 + this.grpQuests.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpQuests.Controls.Add(this.lblQuestsChaningNoEffect); + this.grpQuests.Controls.Add(this.lblQuestsNullWarning); + this.grpQuests.Controls.Add(this.btnSelectAllQuests); + this.grpQuests.Controls.Add(this.btnResetQuests); + this.grpQuests.Controls.Add(this.btnDeselectAllQuests); + this.grpQuests.Location = new System.Drawing.Point(681, 9); + this.grpQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpQuests.Name = "grpQuests"; + this.grpQuests.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpQuests.Size = new System.Drawing.Size(146, 583); + this.grpQuests.TabIndex = 8; + this.grpQuests.TabStop = false; + this.grpQuests.Text = "Quests"; // - this.pictureBox53.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox53.Location = new System.Drawing.Point(68, 163); - this.pictureBox53.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox53.Name = "pictureBox53"; - this.pictureBox53.Size = new System.Drawing.Size(69, 71); - this.pictureBox53.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox53.TabIndex = 52; - this.pictureBox53.TabStop = false; + // lblQuestsChaningNoEffect // - // numTalentMagic11 + this.lblQuestsChaningNoEffect.AutoSize = true; + this.lblQuestsChaningNoEffect.Location = new System.Drawing.Point(9, 286); + this.lblQuestsChaningNoEffect.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblQuestsChaningNoEffect.Name = "lblQuestsChaningNoEffect"; + this.lblQuestsChaningNoEffect.Size = new System.Drawing.Size(132, 160); + this.lblQuestsChaningNoEffect.TabIndex = 10; + this.lblQuestsChaningNoEffect.Text = "Changing Quests\r\nmay have no \r\neffect on your\r\ngame since\r\nthese are addi-\r\ntiona" + + "lly saved\r\nin the World \r\nfiles."; // - this.numTalentMagic11.Location = new System.Drawing.Point(170, 373); - this.numTalentMagic11.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic11.Name = "numTalentMagic11"; - this.numTalentMagic11.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic11.TabIndex = 63; + // lblQuestsNullWarning // - // numTalentMagic6 - // - this.numTalentMagic6.Location = new System.Drawing.Point(170, 239); - this.numTalentMagic6.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic6.Name = "numTalentMagic6"; - this.numTalentMagic6.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic6.TabIndex = 53; + this.lblQuestsNullWarning.AutoSize = true; + this.lblQuestsNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblQuestsNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblQuestsNullWarning.Name = "lblQuestsNullWarning"; + this.lblQuestsNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblQuestsNullWarning.TabIndex = 8; + this.lblQuestsNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - // pictureBox54 + // btnSelectAllQuests // - this.pictureBox54.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox54.Location = new System.Drawing.Point(196, 297); - this.pictureBox54.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox54.Name = "pictureBox54"; - this.pictureBox54.Size = new System.Drawing.Size(69, 71); - this.pictureBox54.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox54.TabIndex = 64; - this.pictureBox54.TabStop = false; + this.btnSelectAllQuests.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllQuests.Name = "btnSelectAllQuests"; + this.btnSelectAllQuests.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllQuests.TabIndex = 3; + this.btnSelectAllQuests.Text = "Select all"; + this.btnSelectAllQuests.UseVisualStyleBackColor = true; + this.btnSelectAllQuests.Click += new System.EventHandler(this.btnSelectAllQuests_Click); // - // pictureBox55 + // btnResetQuests // - this.pictureBox55.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox55.Location = new System.Drawing.Point(196, 163); - this.pictureBox55.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox55.Name = "pictureBox55"; - this.pictureBox55.Size = new System.Drawing.Size(69, 71); - this.pictureBox55.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox55.TabIndex = 54; - this.pictureBox55.TabStop = false; + this.btnResetQuests.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetQuests.Location = new System.Drawing.Point(9, 538); + this.btnResetQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetQuests.Name = "btnResetQuests"; + this.btnResetQuests.Size = new System.Drawing.Size(130, 35); + this.btnResetQuests.TabIndex = 5; + this.btnResetQuests.Text = "Reset"; + this.btnResetQuests.UseVisualStyleBackColor = true; + this.btnResetQuests.Click += new System.EventHandler(this.btnResetQuests_Click); // - // numTalentMagic12 + // btnDeselectAllQuests // - this.numTalentMagic12.Location = new System.Drawing.Point(289, 373); - this.numTalentMagic12.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic12.Name = "numTalentMagic12"; - this.numTalentMagic12.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic12.TabIndex = 65; + this.btnDeselectAllQuests.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllQuests.Name = "btnDeselectAllQuests"; + this.btnDeselectAllQuests.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllQuests.TabIndex = 4; + this.btnDeselectAllQuests.Text = "Deselect all"; + this.btnDeselectAllQuests.UseVisualStyleBackColor = true; + this.btnDeselectAllQuests.Click += new System.EventHandler(this.btnDeselectAllQuests_Click); // - // numTalentMagic7 + // cblstQuests // - this.numTalentMagic7.Location = new System.Drawing.Point(289, 239); - this.numTalentMagic7.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic7.Name = "numTalentMagic7"; - this.numTalentMagic7.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic7.TabIndex = 55; + this.cblstQuests.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstQuests.FormattingEnabled = true; + this.cblstQuests.Location = new System.Drawing.Point(9, 9); + this.cblstQuests.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstQuests.Name = "cblstQuests"; + this.cblstQuests.Size = new System.Drawing.Size(661, 579); + this.cblstQuests.TabIndex = 7; // - // pictureBox56 + // tabFlags // - this.pictureBox56.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox56.Location = new System.Drawing.Point(314, 297); - this.pictureBox56.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox56.Name = "pictureBox56"; - this.pictureBox56.Size = new System.Drawing.Size(69, 71); - this.pictureBox56.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox56.TabIndex = 66; - this.pictureBox56.TabStop = false; + this.tabFlags.Controls.Add(this.cblstFlagsChecked); + this.tabFlags.Controls.Add(this.grpFlags); + this.tabFlags.Controls.Add(this.cblstFlags); + this.tabFlags.Location = new System.Drawing.Point(4, 29); + this.tabFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabFlags.Name = "tabFlags"; + this.tabFlags.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabFlags.Size = new System.Drawing.Size(842, 616); + this.tabFlags.TabIndex = 6; + this.tabFlags.Text = "Flags"; + this.tabFlags.UseVisualStyleBackColor = true; // - // pictureBox57 + // cblstFlagsChecked // - this.pictureBox57.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox57.Location = new System.Drawing.Point(314, 163); - this.pictureBox57.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox57.Name = "pictureBox57"; - this.pictureBox57.Size = new System.Drawing.Size(69, 71); - this.pictureBox57.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox57.TabIndex = 56; - this.pictureBox57.TabStop = false; + this.cblstFlagsChecked.Enabled = false; + this.cblstFlagsChecked.FormattingEnabled = true; + this.cblstFlagsChecked.Location = new System.Drawing.Point(12, 375); + this.cblstFlagsChecked.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstFlagsChecked.Name = "cblstFlagsChecked"; + this.cblstFlagsChecked.Size = new System.Drawing.Size(658, 211); + this.cblstFlagsChecked.TabIndex = 11; + this.cblstFlagsChecked.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cblstFlagsChecked_ItemCheck); // - // numTalentMagic3 + // grpFlags // - this.numTalentMagic3.Location = new System.Drawing.Point(416, 103); - this.numTalentMagic3.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic3.Name = "numTalentMagic3"; - this.numTalentMagic3.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic3.TabIndex = 47; + this.grpFlags.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpFlags.Controls.Add(this.lblFlagsChaningNoEffect); + this.grpFlags.Controls.Add(this.label41); + this.grpFlags.Controls.Add(this.btnSelectAllFlags); + this.grpFlags.Controls.Add(this.btnResetFlags); + this.grpFlags.Controls.Add(this.btnDeselectAllFlags); + this.grpFlags.Location = new System.Drawing.Point(681, 9); + this.grpFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpFlags.Name = "grpFlags"; + this.grpFlags.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpFlags.Size = new System.Drawing.Size(146, 583); + this.grpFlags.TabIndex = 10; + this.grpFlags.TabStop = false; + this.grpFlags.Text = "Flags"; // - // pictureBox58 + // lblFlagsChaningNoEffect // - this.pictureBox58.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox58.Location = new System.Drawing.Point(442, 27); - this.pictureBox58.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox58.Name = "pictureBox58"; - this.pictureBox58.Size = new System.Drawing.Size(69, 71); - this.pictureBox58.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox58.TabIndex = 48; - this.pictureBox58.TabStop = false; + this.lblFlagsChaningNoEffect.AutoSize = true; + this.lblFlagsChaningNoEffect.Location = new System.Drawing.Point(9, 286); + this.lblFlagsChaningNoEffect.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblFlagsChaningNoEffect.Name = "lblFlagsChaningNoEffect"; + this.lblFlagsChaningNoEffect.Size = new System.Drawing.Size(120, 160); + this.lblFlagsChaningNoEffect.TabIndex = 9; + this.lblFlagsChaningNoEffect.Text = "Changing Flags\r\nmay have no \r\neffect on your\r\ngame since\r\nthese are addi-\r\ntional" + + "ly saved\r\nin the World \r\nfiles."; // - // numTalentMagic4 + // label41 // - this.numTalentMagic4.Location = new System.Drawing.Point(535, 103); - this.numTalentMagic4.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic4.Name = "numTalentMagic4"; - this.numTalentMagic4.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic4.TabIndex = 49; + this.label41.AutoSize = true; + this.label41.Location = new System.Drawing.Point(9, 114); + this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(106, 80); + this.label41.TabIndex = 8; + this.label41.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - // pictureBox59 + // btnSelectAllFlags // - this.pictureBox59.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox59.Location = new System.Drawing.Point(560, 27); - this.pictureBox59.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox59.Name = "pictureBox59"; - this.pictureBox59.Size = new System.Drawing.Size(69, 71); - this.pictureBox59.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox59.TabIndex = 50; - this.pictureBox59.TabStop = false; + this.btnSelectAllFlags.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllFlags.Name = "btnSelectAllFlags"; + this.btnSelectAllFlags.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllFlags.TabIndex = 3; + this.btnSelectAllFlags.Text = "Select all"; + this.btnSelectAllFlags.UseVisualStyleBackColor = true; + this.btnSelectAllFlags.Click += new System.EventHandler(this.btnSelectAllFlags_Click); // - // numTalentMagic0 + // btnResetFlags // - this.numTalentMagic0.Location = new System.Drawing.Point(43, 103); - this.numTalentMagic0.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic0.Name = "numTalentMagic0"; - this.numTalentMagic0.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic0.TabIndex = 41; + this.btnResetFlags.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetFlags.Location = new System.Drawing.Point(9, 538); + this.btnResetFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetFlags.Name = "btnResetFlags"; + this.btnResetFlags.Size = new System.Drawing.Size(130, 35); + this.btnResetFlags.TabIndex = 5; + this.btnResetFlags.Text = "Reset"; + this.btnResetFlags.UseVisualStyleBackColor = true; + this.btnResetFlags.Click += new System.EventHandler(this.btnResetFlags_Click); // - // pictureBox60 + // btnDeselectAllFlags // - this.pictureBox60.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox60.Location = new System.Drawing.Point(68, 27); - this.pictureBox60.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox60.Name = "pictureBox60"; - this.pictureBox60.Size = new System.Drawing.Size(69, 71); - this.pictureBox60.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox60.TabIndex = 42; - this.pictureBox60.TabStop = false; + this.btnDeselectAllFlags.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllFlags.Name = "btnDeselectAllFlags"; + this.btnDeselectAllFlags.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllFlags.TabIndex = 4; + this.btnDeselectAllFlags.Text = "Deselect all"; + this.btnDeselectAllFlags.UseVisualStyleBackColor = true; + this.btnDeselectAllFlags.Click += new System.EventHandler(this.btnDeselectAllFlags_Click); // - // numTalentMagic1 + // cblstFlags // - this.numTalentMagic1.Location = new System.Drawing.Point(170, 103); - this.numTalentMagic1.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic1.Name = "numTalentMagic1"; - this.numTalentMagic1.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic1.TabIndex = 43; + this.cblstFlags.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstFlags.FormattingEnabled = true; + this.cblstFlags.Location = new System.Drawing.Point(9, 9); + this.cblstFlags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstFlags.Name = "cblstFlags"; + this.cblstFlags.Size = new System.Drawing.Size(661, 349); + this.cblstFlags.TabIndex = 9; + this.cblstFlags.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cblstFlags_ItemCheck); // - // pictureBox61 + // tabTrophies // - this.pictureBox61.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox61.Location = new System.Drawing.Point(196, 27); - this.pictureBox61.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox61.Name = "pictureBox61"; - this.pictureBox61.Size = new System.Drawing.Size(69, 71); - this.pictureBox61.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox61.TabIndex = 44; - this.pictureBox61.TabStop = false; + this.tabTrophies.Controls.Add(this.grpTrophies); + this.tabTrophies.Controls.Add(this.cblstTrophies); + this.tabTrophies.Location = new System.Drawing.Point(4, 29); + this.tabTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabTrophies.Name = "tabTrophies"; + this.tabTrophies.Size = new System.Drawing.Size(842, 616); + this.tabTrophies.TabIndex = 11; + this.tabTrophies.Text = "Trophies"; + this.tabTrophies.UseVisualStyleBackColor = true; // - // numTalentMagic2 + // grpTrophies // - this.numTalentMagic2.Location = new System.Drawing.Point(289, 103); - this.numTalentMagic2.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentMagic2.Name = "numTalentMagic2"; - this.numTalentMagic2.Size = new System.Drawing.Size(118, 26); - this.numTalentMagic2.TabIndex = 45; + this.grpTrophies.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpTrophies.Controls.Add(this.label59); + this.grpTrophies.Controls.Add(this.btnSelectAllTrophies); + this.grpTrophies.Controls.Add(this.btnResetTrophies); + this.grpTrophies.Controls.Add(this.btnDeselectAllTrophies); + this.grpTrophies.Location = new System.Drawing.Point(681, 9); + this.grpTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpTrophies.Name = "grpTrophies"; + this.grpTrophies.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpTrophies.Size = new System.Drawing.Size(146, 583); + this.grpTrophies.TabIndex = 12; + this.grpTrophies.TabStop = false; + this.grpTrophies.Text = "Trophies"; // - // pictureBox62 + // label59 // - this.pictureBox62.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox62.Location = new System.Drawing.Point(314, 27); - this.pictureBox62.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox62.Name = "pictureBox62"; - this.pictureBox62.Size = new System.Drawing.Size(69, 71); - this.pictureBox62.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox62.TabIndex = 46; - this.pictureBox62.TabStop = false; + this.label59.AutoSize = true; + this.label59.Location = new System.Drawing.Point(9, 114); + this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label59.Name = "label59"; + this.label59.Size = new System.Drawing.Size(106, 80); + this.label59.TabIndex = 8; + this.label59.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - // groupBox5 + // btnSelectAllTrophies // - this.groupBox5.Controls.Add(this.numTalentGeneral20); - this.groupBox5.Controls.Add(this.pictureBox78); - this.groupBox5.Controls.Add(this.numTalentGeneral19); - this.groupBox5.Controls.Add(this.pictureBox79); - this.groupBox5.Controls.Add(this.numTalentGeneral18); - this.groupBox5.Controls.Add(this.pictureBox80); - this.groupBox5.Controls.Add(this.numTalentGeneral17); - this.groupBox5.Controls.Add(this.pictureBox81); - this.groupBox5.Controls.Add(this.numTalentGeneral16); - this.groupBox5.Controls.Add(this.pictureBox82); - this.groupBox5.Controls.Add(this.numTalentGeneral15); - this.groupBox5.Controls.Add(this.pictureBox83); - this.groupBox5.Controls.Add(this.numTalentGeneral13); - this.groupBox5.Controls.Add(this.numTalentGeneral6); - this.groupBox5.Controls.Add(this.pictureBox65); - this.groupBox5.Controls.Add(this.pictureBox72); - this.groupBox5.Controls.Add(this.numTalentGeneral12); - this.groupBox5.Controls.Add(this.numTalentGeneral5); - this.groupBox5.Controls.Add(this.pictureBox66); - this.groupBox5.Controls.Add(this.pictureBox69); - this.groupBox5.Controls.Add(this.numTalentGeneral11); - this.groupBox5.Controls.Add(this.numTalentGeneral4); - this.groupBox5.Controls.Add(this.pictureBox73); - this.groupBox5.Controls.Add(this.pictureBox70); - this.groupBox5.Controls.Add(this.numTalentGeneral10); - this.groupBox5.Controls.Add(this.numTalentGeneral3); - this.groupBox5.Controls.Add(this.pictureBox74); - this.groupBox5.Controls.Add(this.pictureBox71); - this.groupBox5.Controls.Add(this.numTalentGeneral9); - this.groupBox5.Controls.Add(this.numTalentGeneral2); - this.groupBox5.Controls.Add(this.pictureBox76); - this.groupBox5.Controls.Add(this.pictureBox64); - this.groupBox5.Controls.Add(this.numTalentGeneral8); - this.groupBox5.Controls.Add(this.numTalentGeneral1); - this.groupBox5.Controls.Add(this.pictureBox77); - this.groupBox5.Controls.Add(this.pictureBox63); - this.groupBox5.Controls.Add(this.numTalentGeneral14); - this.groupBox5.Controls.Add(this.numTalentGeneral7); - this.groupBox5.Controls.Add(this.pictureBox67); - this.groupBox5.Controls.Add(this.pictureBox68); - this.groupBox5.Controls.Add(this.numTalentGeneral0); - this.groupBox5.Controls.Add(this.pictureBox75); - this.groupBox5.Location = new System.Drawing.Point(9, 9); - this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox5.Name = "groupBox5"; - this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox5.Size = new System.Drawing.Size(693, 432); - this.groupBox5.TabIndex = 43; - this.groupBox5.TabStop = false; - this.groupBox5.Text = "General"; + this.btnSelectAllTrophies.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllTrophies.Name = "btnSelectAllTrophies"; + this.btnSelectAllTrophies.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllTrophies.TabIndex = 3; + this.btnSelectAllTrophies.Text = "Select all"; + this.btnSelectAllTrophies.UseVisualStyleBackColor = true; + this.btnSelectAllTrophies.Click += new System.EventHandler(this.btnSelectAllTrophies_Click); // - // numTalentGeneral0 + // btnResetTrophies // - this.numTalentGeneral0.Location = new System.Drawing.Point(42, 103); - this.numTalentGeneral0.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral0.Name = "numTalentGeneral0"; - this.numTalentGeneral0.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral0.TabIndex = 41; + this.btnResetTrophies.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetTrophies.Location = new System.Drawing.Point(9, 538); + this.btnResetTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetTrophies.Name = "btnResetTrophies"; + this.btnResetTrophies.Size = new System.Drawing.Size(130, 35); + this.btnResetTrophies.TabIndex = 5; + this.btnResetTrophies.Text = "Reset"; + this.btnResetTrophies.UseVisualStyleBackColor = true; + this.btnResetTrophies.Click += new System.EventHandler(this.btnResetTrophies_Click); // - // pictureBox75 + // btnDeselectAllTrophies // - this.pictureBox75.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox75.Location = new System.Drawing.Point(42, 27); - this.pictureBox75.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox75.Name = "pictureBox75"; - this.pictureBox75.Size = new System.Drawing.Size(69, 71); - this.pictureBox75.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox75.TabIndex = 42; - this.pictureBox75.TabStop = false; + this.btnDeselectAllTrophies.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllTrophies.Name = "btnDeselectAllTrophies"; + this.btnDeselectAllTrophies.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllTrophies.TabIndex = 4; + this.btnDeselectAllTrophies.Text = "Deselect all"; + this.btnDeselectAllTrophies.UseVisualStyleBackColor = true; + this.btnDeselectAllTrophies.Click += new System.EventHandler(this.btnDeselectAllTrophies_Click); // - // numTalentGeneral1 + // cblstTrophies // - this.numTalentGeneral1.Location = new System.Drawing.Point(132, 103); - this.numTalentGeneral1.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral1.Name = "numTalentGeneral1"; - this.numTalentGeneral1.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral1.TabIndex = 76; + this.cblstTrophies.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstTrophies.FormattingEnabled = true; + this.cblstTrophies.Location = new System.Drawing.Point(9, 9); + this.cblstTrophies.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstTrophies.Name = "cblstTrophies"; + this.cblstTrophies.Size = new System.Drawing.Size(661, 579); + this.cblstTrophies.TabIndex = 11; + // + // tabFishCaught + // + this.tabFishCaught.Controls.Add(this.groupBox2); + this.tabFishCaught.Controls.Add(this.cblstFishCaught); + this.tabFishCaught.Location = new System.Drawing.Point(4, 29); + this.tabFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabFishCaught.Name = "tabFishCaught"; + this.tabFishCaught.Size = new System.Drawing.Size(842, 616); + this.tabFishCaught.TabIndex = 14; + this.tabFishCaught.Text = "Fish Caught"; + this.tabFishCaught.UseVisualStyleBackColor = true; + // + // groupBox2 + // + this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBox2.Controls.Add(this.lblFishNullWarning); + this.groupBox2.Controls.Add(this.btnSelectAllFishCaught); + this.groupBox2.Controls.Add(this.btnResetFishCaught); + this.groupBox2.Controls.Add(this.btnDeselectAllFishCaught); + this.groupBox2.Location = new System.Drawing.Point(681, 9); + this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox2.Size = new System.Drawing.Size(146, 583); + this.groupBox2.TabIndex = 18; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "Fish Caught"; + // + // lblFishNullWarning + // + this.lblFishNullWarning.AutoSize = true; + this.lblFishNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblFishNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblFishNullWarning.Name = "lblFishNullWarning"; + this.lblFishNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblFishNullWarning.TabIndex = 8; + this.lblFishNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // + // btnSelectAllFishCaught + // + this.btnSelectAllFishCaught.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllFishCaught.Name = "btnSelectAllFishCaught"; + this.btnSelectAllFishCaught.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllFishCaught.TabIndex = 3; + this.btnSelectAllFishCaught.Text = "Select all"; + this.btnSelectAllFishCaught.UseVisualStyleBackColor = true; + this.btnSelectAllFishCaught.Click += new System.EventHandler(this.btnSelectAllFishCaught_Click); + // + // btnResetFishCaught + // + this.btnResetFishCaught.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetFishCaught.Location = new System.Drawing.Point(9, 538); + this.btnResetFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetFishCaught.Name = "btnResetFishCaught"; + this.btnResetFishCaught.Size = new System.Drawing.Size(130, 35); + this.btnResetFishCaught.TabIndex = 5; + this.btnResetFishCaught.Text = "Reset"; + this.btnResetFishCaught.UseVisualStyleBackColor = true; + this.btnResetFishCaught.Click += new System.EventHandler(this.btnResetFishCaught_Click); + // + // btnDeselectAllFishCaught + // + this.btnDeselectAllFishCaught.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllFishCaught.Name = "btnDeselectAllFishCaught"; + this.btnDeselectAllFishCaught.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllFishCaught.TabIndex = 4; + this.btnDeselectAllFishCaught.Text = "Deselect all"; + this.btnDeselectAllFishCaught.UseVisualStyleBackColor = true; + this.btnDeselectAllFishCaught.Click += new System.EventHandler(this.btnDeselectAllFishCaught_Click); + // + // cblstFishCaught + // + this.cblstFishCaught.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstFishCaught.FormattingEnabled = true; + this.cblstFishCaught.Location = new System.Drawing.Point(9, 9); + this.cblstFishCaught.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstFishCaught.Name = "cblstFishCaught"; + this.cblstFishCaught.Size = new System.Drawing.Size(661, 579); + this.cblstFishCaught.TabIndex = 17; + // + // tabEnemiesSeen + // + this.tabEnemiesSeen.Controls.Add(this.grpEnemiesSeen); + this.tabEnemiesSeen.Controls.Add(this.cblstEnemiesSeens); + this.tabEnemiesSeen.Location = new System.Drawing.Point(4, 29); + this.tabEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabEnemiesSeen.Name = "tabEnemiesSeen"; + this.tabEnemiesSeen.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabEnemiesSeen.Size = new System.Drawing.Size(842, 616); + this.tabEnemiesSeen.TabIndex = 4; + this.tabEnemiesSeen.Text = "Enemies seen"; + this.tabEnemiesSeen.UseVisualStyleBackColor = true; + // + // grpEnemiesSeen + // + this.grpEnemiesSeen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpEnemiesSeen.Controls.Add(this.lblEnemiesSeenNullWarning); + this.grpEnemiesSeen.Controls.Add(this.btnSelectAllEnemiesSeen); + this.grpEnemiesSeen.Controls.Add(this.btnResetEnemiesSeen); + this.grpEnemiesSeen.Controls.Add(this.btnDeselectAllEnemiesSeen); + this.grpEnemiesSeen.Location = new System.Drawing.Point(681, 9); + this.grpEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpEnemiesSeen.Name = "grpEnemiesSeen"; + this.grpEnemiesSeen.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpEnemiesSeen.Size = new System.Drawing.Size(146, 583); + this.grpEnemiesSeen.TabIndex = 10; + this.grpEnemiesSeen.TabStop = false; + this.grpEnemiesSeen.Text = "Enemies seen"; + // + // lblEnemiesSeenNullWarning + // + this.lblEnemiesSeenNullWarning.AutoSize = true; + this.lblEnemiesSeenNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblEnemiesSeenNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblEnemiesSeenNullWarning.Name = "lblEnemiesSeenNullWarning"; + this.lblEnemiesSeenNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblEnemiesSeenNullWarning.TabIndex = 8; + this.lblEnemiesSeenNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; + // + // btnSelectAllEnemiesSeen + // + this.btnSelectAllEnemiesSeen.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllEnemiesSeen.Name = "btnSelectAllEnemiesSeen"; + this.btnSelectAllEnemiesSeen.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllEnemiesSeen.TabIndex = 3; + this.btnSelectAllEnemiesSeen.Text = "Select all"; + this.btnSelectAllEnemiesSeen.UseVisualStyleBackColor = true; + this.btnSelectAllEnemiesSeen.Click += new System.EventHandler(this.btnSelectAllEnemiesSeen_Click); + // + // btnResetEnemiesSeen + // + this.btnResetEnemiesSeen.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetEnemiesSeen.Location = new System.Drawing.Point(9, 538); + this.btnResetEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetEnemiesSeen.Name = "btnResetEnemiesSeen"; + this.btnResetEnemiesSeen.Size = new System.Drawing.Size(130, 35); + this.btnResetEnemiesSeen.TabIndex = 5; + this.btnResetEnemiesSeen.Text = "Reset"; + this.btnResetEnemiesSeen.UseVisualStyleBackColor = true; + this.btnResetEnemiesSeen.Click += new System.EventHandler(this.btnResetEnemiesSeen_Click); + // + // btnDeselectAllEnemiesSeen // - // pictureBox63 + this.btnDeselectAllEnemiesSeen.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllEnemiesSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllEnemiesSeen.Name = "btnDeselectAllEnemiesSeen"; + this.btnDeselectAllEnemiesSeen.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllEnemiesSeen.TabIndex = 4; + this.btnDeselectAllEnemiesSeen.Text = "Deselect all"; + this.btnDeselectAllEnemiesSeen.UseVisualStyleBackColor = true; + this.btnDeselectAllEnemiesSeen.Click += new System.EventHandler(this.btnDeselectAllEnemiesSeen_Click); // - this.pictureBox63.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox63.Location = new System.Drawing.Point(132, 27); - this.pictureBox63.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox63.Name = "pictureBox63"; - this.pictureBox63.Size = new System.Drawing.Size(69, 71); - this.pictureBox63.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox63.TabIndex = 77; - this.pictureBox63.TabStop = false; + // cblstEnemiesSeens // - // numTalentGeneral2 + this.cblstEnemiesSeens.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstEnemiesSeens.FormattingEnabled = true; + this.cblstEnemiesSeens.Location = new System.Drawing.Point(9, 9); + this.cblstEnemiesSeens.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstEnemiesSeens.Name = "cblstEnemiesSeens"; + this.cblstEnemiesSeens.Size = new System.Drawing.Size(661, 579); + this.cblstEnemiesSeens.TabIndex = 9; // - this.numTalentGeneral2.Location = new System.Drawing.Point(222, 103); - this.numTalentGeneral2.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral2.Name = "numTalentGeneral2"; - this.numTalentGeneral2.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral2.TabIndex = 78; + // tabItemsSeen // - // pictureBox64 + this.tabItemsSeen.Controls.Add(this.grpItemsSeen); + this.tabItemsSeen.Controls.Add(this.cblstItemsSeen); + this.tabItemsSeen.Location = new System.Drawing.Point(4, 29); + this.tabItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabItemsSeen.Name = "tabItemsSeen"; + this.tabItemsSeen.Size = new System.Drawing.Size(842, 616); + this.tabItemsSeen.TabIndex = 12; + this.tabItemsSeen.Text = "Items Seen"; + this.tabItemsSeen.UseVisualStyleBackColor = true; // - this.pictureBox64.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox64.Location = new System.Drawing.Point(222, 27); - this.pictureBox64.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox64.Name = "pictureBox64"; - this.pictureBox64.Size = new System.Drawing.Size(69, 71); - this.pictureBox64.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox64.TabIndex = 79; - this.pictureBox64.TabStop = false; + // grpItemsSeen // - // numTalentGeneral5 + this.grpItemsSeen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.grpItemsSeen.Controls.Add(this.lblItemsSeenNullWarning); + this.grpItemsSeen.Controls.Add(this.btnSelectAllItemsSeen); + this.grpItemsSeen.Controls.Add(this.btnResetItemsSeen); + this.grpItemsSeen.Controls.Add(this.btnDeselectAllItemsSeen); + this.grpItemsSeen.Location = new System.Drawing.Point(681, 9); + this.grpItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpItemsSeen.Name = "grpItemsSeen"; + this.grpItemsSeen.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpItemsSeen.Size = new System.Drawing.Size(146, 583); + this.grpItemsSeen.TabIndex = 14; + this.grpItemsSeen.TabStop = false; + this.grpItemsSeen.Text = "Items Seen"; // - this.numTalentGeneral5.Location = new System.Drawing.Point(492, 103); - this.numTalentGeneral5.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral5.Name = "numTalentGeneral5"; - this.numTalentGeneral5.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral5.TabIndex = 84; + // lblItemsSeenNullWarning // - // pictureBox69 + this.lblItemsSeenNullWarning.AutoSize = true; + this.lblItemsSeenNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblItemsSeenNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblItemsSeenNullWarning.Name = "lblItemsSeenNullWarning"; + this.lblItemsSeenNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblItemsSeenNullWarning.TabIndex = 8; + this.lblItemsSeenNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - this.pictureBox69.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox69.Location = new System.Drawing.Point(492, 27); - this.pictureBox69.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox69.Name = "pictureBox69"; - this.pictureBox69.Size = new System.Drawing.Size(69, 71); - this.pictureBox69.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox69.TabIndex = 85; - this.pictureBox69.TabStop = false; + // btnSelectAllItemsSeen // - // numTalentGeneral4 + this.btnSelectAllItemsSeen.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllItemsSeen.Name = "btnSelectAllItemsSeen"; + this.btnSelectAllItemsSeen.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllItemsSeen.TabIndex = 3; + this.btnSelectAllItemsSeen.Text = "Select all"; + this.btnSelectAllItemsSeen.UseVisualStyleBackColor = true; + this.btnSelectAllItemsSeen.Click += new System.EventHandler(this.btnSelectAllItemsSeen_Click); // - this.numTalentGeneral4.Location = new System.Drawing.Point(402, 103); - this.numTalentGeneral4.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral4.Name = "numTalentGeneral4"; - this.numTalentGeneral4.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral4.TabIndex = 82; + // btnResetItemsSeen // - // pictureBox70 + this.btnResetItemsSeen.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetItemsSeen.Location = new System.Drawing.Point(9, 538); + this.btnResetItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetItemsSeen.Name = "btnResetItemsSeen"; + this.btnResetItemsSeen.Size = new System.Drawing.Size(130, 35); + this.btnResetItemsSeen.TabIndex = 5; + this.btnResetItemsSeen.Text = "Reset"; + this.btnResetItemsSeen.UseVisualStyleBackColor = true; + this.btnResetItemsSeen.Click += new System.EventHandler(this.btnResetItemsSeen_Click); // - this.pictureBox70.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox70.Location = new System.Drawing.Point(402, 27); - this.pictureBox70.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox70.Name = "pictureBox70"; - this.pictureBox70.Size = new System.Drawing.Size(69, 71); - this.pictureBox70.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox70.TabIndex = 83; - this.pictureBox70.TabStop = false; + // btnDeselectAllItemsSeen // - // numTalentGeneral3 + this.btnDeselectAllItemsSeen.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllItemsSeen.Name = "btnDeselectAllItemsSeen"; + this.btnDeselectAllItemsSeen.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllItemsSeen.TabIndex = 4; + this.btnDeselectAllItemsSeen.Text = "Deselect all"; + this.btnDeselectAllItemsSeen.UseVisualStyleBackColor = true; + this.btnDeselectAllItemsSeen.Click += new System.EventHandler(this.btnDeselectAllItemsSeen_Click); // - this.numTalentGeneral3.Location = new System.Drawing.Point(312, 103); - this.numTalentGeneral3.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral3.Name = "numTalentGeneral3"; - this.numTalentGeneral3.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral3.TabIndex = 80; + // cblstItemsSeen // - // pictureBox71 + this.cblstItemsSeen.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstItemsSeen.FormattingEnabled = true; + this.cblstItemsSeen.Location = new System.Drawing.Point(9, 9); + this.cblstItemsSeen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstItemsSeen.Name = "cblstItemsSeen"; + this.cblstItemsSeen.Size = new System.Drawing.Size(661, 579); + this.cblstItemsSeen.TabIndex = 13; // - this.pictureBox71.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox71.Location = new System.Drawing.Point(312, 27); - this.pictureBox71.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox71.Name = "pictureBox71"; - this.pictureBox71.Size = new System.Drawing.Size(69, 71); - this.pictureBox71.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox71.TabIndex = 81; - this.pictureBox71.TabStop = false; + // tabItemsCrafted // - // numTalentGeneral6 + this.tabItemsCrafted.Controls.Add(this.groupBox1); + this.tabItemsCrafted.Controls.Add(this.cblstItemsCrafted); + this.tabItemsCrafted.Location = new System.Drawing.Point(4, 29); + this.tabItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabItemsCrafted.Name = "tabItemsCrafted"; + this.tabItemsCrafted.Size = new System.Drawing.Size(842, 616); + this.tabItemsCrafted.TabIndex = 13; + this.tabItemsCrafted.Text = "Items Crafted"; + this.tabItemsCrafted.UseVisualStyleBackColor = true; // - this.numTalentGeneral6.Location = new System.Drawing.Point(582, 103); - this.numTalentGeneral6.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral6.Name = "numTalentGeneral6"; - this.numTalentGeneral6.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral6.TabIndex = 88; + // groupBox1 // - // pictureBox72 + this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBox1.Controls.Add(this.lblItemsCraftedNullWarning); + this.groupBox1.Controls.Add(this.btnSelectAllItemsCrafted); + this.groupBox1.Controls.Add(this.btnResetItemsCrafted); + this.groupBox1.Controls.Add(this.btnDeselectAllItemsCrafted); + this.groupBox1.Location = new System.Drawing.Point(681, 9); + this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox1.Size = new System.Drawing.Size(146, 583); + this.groupBox1.TabIndex = 16; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "Items Crafted"; // - this.pictureBox72.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox72.Location = new System.Drawing.Point(582, 27); - this.pictureBox72.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox72.Name = "pictureBox72"; - this.pictureBox72.Size = new System.Drawing.Size(69, 71); - this.pictureBox72.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox72.TabIndex = 89; - this.pictureBox72.TabStop = false; + // lblItemsCraftedNullWarning // - // numTalentGeneral14 + this.lblItemsCraftedNullWarning.AutoSize = true; + this.lblItemsCraftedNullWarning.Location = new System.Drawing.Point(9, 114); + this.lblItemsCraftedNullWarning.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.lblItemsCraftedNullWarning.Name = "lblItemsCraftedNullWarning"; + this.lblItemsCraftedNullWarning.Size = new System.Drawing.Size(106, 80); + this.lblItemsCraftedNullWarning.TabIndex = 8; + this.lblItemsCraftedNullWarning.Text = "Selecting the \r\n\'null\'-Value \r\ncould lead \r\nto issues"; // - this.numTalentGeneral14.Location = new System.Drawing.Point(42, 376); - this.numTalentGeneral14.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral14.Name = "numTalentGeneral14"; - this.numTalentGeneral14.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral14.TabIndex = 72; + // btnSelectAllItemsCrafted // - // pictureBox67 + this.btnSelectAllItemsCrafted.Location = new System.Drawing.Point(9, 29); + this.btnSelectAllItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnSelectAllItemsCrafted.Name = "btnSelectAllItemsCrafted"; + this.btnSelectAllItemsCrafted.Size = new System.Drawing.Size(130, 35); + this.btnSelectAllItemsCrafted.TabIndex = 3; + this.btnSelectAllItemsCrafted.Text = "Select all"; + this.btnSelectAllItemsCrafted.UseVisualStyleBackColor = true; + this.btnSelectAllItemsCrafted.Click += new System.EventHandler(this.btnSelectAllItemsCrafted_Click); // - this.pictureBox67.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox67.Location = new System.Drawing.Point(42, 297); - this.pictureBox67.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox67.Name = "pictureBox67"; - this.pictureBox67.Size = new System.Drawing.Size(69, 71); - this.pictureBox67.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox67.TabIndex = 62; - this.pictureBox67.TabStop = false; + // btnResetItemsCrafted // - // numTalentGeneral7 + this.btnResetItemsCrafted.Anchor = System.Windows.Forms.AnchorStyles.Bottom; + this.btnResetItemsCrafted.Location = new System.Drawing.Point(9, 538); + this.btnResetItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnResetItemsCrafted.Name = "btnResetItemsCrafted"; + this.btnResetItemsCrafted.Size = new System.Drawing.Size(130, 35); + this.btnResetItemsCrafted.TabIndex = 5; + this.btnResetItemsCrafted.Text = "Reset"; + this.btnResetItemsCrafted.UseVisualStyleBackColor = true; + this.btnResetItemsCrafted.Click += new System.EventHandler(this.btnResetItemsCrafted_Click); // - this.numTalentGeneral7.Location = new System.Drawing.Point(42, 243); - this.numTalentGeneral7.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral7.Name = "numTalentGeneral7"; - this.numTalentGeneral7.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral7.TabIndex = 71; + // btnDeselectAllItemsCrafted // - // pictureBox68 + this.btnDeselectAllItemsCrafted.Location = new System.Drawing.Point(9, 74); + this.btnDeselectAllItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.btnDeselectAllItemsCrafted.Name = "btnDeselectAllItemsCrafted"; + this.btnDeselectAllItemsCrafted.Size = new System.Drawing.Size(130, 35); + this.btnDeselectAllItemsCrafted.TabIndex = 4; + this.btnDeselectAllItemsCrafted.Text = "Deselect all"; + this.btnDeselectAllItemsCrafted.UseVisualStyleBackColor = true; + this.btnDeselectAllItemsCrafted.Click += new System.EventHandler(this.btnDeselectAllItemsCrafted_Click); // - this.pictureBox68.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox68.Location = new System.Drawing.Point(42, 169); - this.pictureBox68.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox68.Name = "pictureBox68"; - this.pictureBox68.Size = new System.Drawing.Size(69, 71); - this.pictureBox68.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox68.TabIndex = 52; - this.pictureBox68.TabStop = false; + // cblstItemsCrafted + // + this.cblstItemsCrafted.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.cblstItemsCrafted.FormattingEnabled = true; + this.cblstItemsCrafted.Location = new System.Drawing.Point(9, 9); + this.cblstItemsCrafted.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.cblstItemsCrafted.Name = "cblstItemsCrafted"; + this.cblstItemsCrafted.Size = new System.Drawing.Size(661, 579); + this.cblstItemsCrafted.TabIndex = 15; // - // numTalentGeneral13 + // tabQuickslots // - this.numTalentGeneral13.Location = new System.Drawing.Point(582, 243); - this.numTalentGeneral13.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral13.Name = "numTalentGeneral13"; - this.numTalentGeneral13.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral13.TabIndex = 102; + this.tabQuickslots.Controls.Add(this.label57); + this.tabQuickslots.Controls.Add(this.grpQuickslots); + this.tabQuickslots.Location = new System.Drawing.Point(4, 29); + this.tabQuickslots.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabQuickslots.Name = "tabQuickslots"; + this.tabQuickslots.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabQuickslots.Size = new System.Drawing.Size(842, 616); + this.tabQuickslots.TabIndex = 1; + this.tabQuickslots.Text = "*Quickslots"; + this.tabQuickslots.UseVisualStyleBackColor = true; // - // pictureBox65 + // label57 // - this.pictureBox65.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox65.Location = new System.Drawing.Point(582, 169); - this.pictureBox65.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox65.Name = "pictureBox65"; - this.pictureBox65.Size = new System.Drawing.Size(69, 71); - this.pictureBox65.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox65.TabIndex = 103; - this.pictureBox65.TabStop = false; + this.label57.AutoSize = true; + this.label57.BackColor = System.Drawing.Color.Transparent; + this.label57.ForeColor = System.Drawing.SystemColors.Desktop; + this.label57.Location = new System.Drawing.Point(9, 466); + this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label57.Name = "label57"; + this.label57.Size = new System.Drawing.Size(578, 20); + this.label57.TabIndex = 32; + this.label57.Text = "* = support for this function was removed due to the risk of losing your save gam" + + "e"; // - // numTalentGeneral12 + // grpQuickslots // - this.numTalentGeneral12.Location = new System.Drawing.Point(492, 243); - this.numTalentGeneral12.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral12.Name = "numTalentGeneral12"; - this.numTalentGeneral12.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral12.TabIndex = 100; + this.grpQuickslots.Controls.Add(this.label22); + this.grpQuickslots.Controls.Add(this.label21); + this.grpQuickslots.Controls.Add(this.label18); + this.grpQuickslots.Controls.Add(this.label19); + this.grpQuickslots.Controls.Add(this.label20); + this.grpQuickslots.Controls.Add(this.label23); + this.grpQuickslots.Controls.Add(this.label24); + this.grpQuickslots.Controls.Add(this.label25); + this.grpQuickslots.Controls.Add(this.label26); + this.grpQuickslots.Controls.Add(this.label27); + this.grpQuickslots.Location = new System.Drawing.Point(9, 9); + this.grpQuickslots.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpQuickslots.Name = "grpQuickslots"; + this.grpQuickslots.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.grpQuickslots.Size = new System.Drawing.Size(512, 452); + this.grpQuickslots.TabIndex = 29; + this.grpQuickslots.TabStop = false; + this.grpQuickslots.Text = "Quckslots"; // - // pictureBox66 + // label22 // - this.pictureBox66.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox66.Location = new System.Drawing.Point(492, 169); - this.pictureBox66.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox66.Name = "pictureBox66"; - this.pictureBox66.Size = new System.Drawing.Size(69, 71); - this.pictureBox66.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox66.TabIndex = 101; - this.pictureBox66.TabStop = false; + this.label22.AutoSize = true; + this.label22.Location = new System.Drawing.Point(18, 34); + this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(113, 20); + this.label22.TabIndex = 26; + this.label22.Text = "Quckslot 0 (C):"; // - // numTalentGeneral11 + // label21 // - this.numTalentGeneral11.Location = new System.Drawing.Point(402, 243); - this.numTalentGeneral11.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral11.Name = "numTalentGeneral11"; - this.numTalentGeneral11.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral11.TabIndex = 98; + this.label21.AutoSize = true; + this.label21.Location = new System.Drawing.Point(18, 408); + this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(114, 20); + this.label21.TabIndex = 24; + this.label21.Text = "Quckslot 9 (R):"; // - // pictureBox73 + // label18 // - this.pictureBox73.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox73.Location = new System.Drawing.Point(402, 169); - this.pictureBox73.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox73.Name = "pictureBox73"; - this.pictureBox73.Size = new System.Drawing.Size(69, 71); - this.pictureBox73.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox73.TabIndex = 99; - this.pictureBox73.TabStop = false; + this.label18.AutoSize = true; + this.label18.Location = new System.Drawing.Point(18, 366); + this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(113, 20); + this.label18.TabIndex = 22; + this.label18.Text = "Quckslot 8 (E):"; // - // numTalentGeneral10 + // label19 // - this.numTalentGeneral10.Location = new System.Drawing.Point(312, 243); - this.numTalentGeneral10.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral10.Name = "numTalentGeneral10"; - this.numTalentGeneral10.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral10.TabIndex = 96; + this.label19.AutoSize = true; + this.label19.Location = new System.Drawing.Point(18, 325); + this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(117, 20); + this.label19.TabIndex = 21; + this.label19.Text = "Quckslot 7 (W):"; // - // pictureBox74 + // label20 // - this.pictureBox74.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox74.Location = new System.Drawing.Point(312, 169); - this.pictureBox74.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox74.Name = "pictureBox74"; - this.pictureBox74.Size = new System.Drawing.Size(69, 71); - this.pictureBox74.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox74.TabIndex = 97; - this.pictureBox74.TabStop = false; + this.label20.AutoSize = true; + this.label20.Location = new System.Drawing.Point(18, 283); + this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(114, 20); + this.label20.TabIndex = 20; + this.label20.Text = "Quckslot 6 (Q):"; // - // numTalentGeneral9 + // label23 // - this.numTalentGeneral9.Location = new System.Drawing.Point(222, 243); - this.numTalentGeneral9.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral9.Name = "numTalentGeneral9"; - this.numTalentGeneral9.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral9.TabIndex = 94; + this.label23.AutoSize = true; + this.label23.Location = new System.Drawing.Point(18, 242); + this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(112, 20); + this.label23.TabIndex = 19; + this.label23.Text = "Quckslot 5 (F):"; // - // pictureBox76 + // label24 // - this.pictureBox76.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox76.Location = new System.Drawing.Point(222, 169); - this.pictureBox76.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox76.Name = "pictureBox76"; - this.pictureBox76.Size = new System.Drawing.Size(69, 71); - this.pictureBox76.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox76.TabIndex = 95; - this.pictureBox76.TabStop = false; + this.label24.AutoSize = true; + this.label24.Location = new System.Drawing.Point(18, 200); + this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(113, 20); + this.label24.TabIndex = 18; + this.label24.Text = "Quckslot 4 (V):"; // - // numTalentGeneral8 + // label25 // - this.numTalentGeneral8.Location = new System.Drawing.Point(132, 243); - this.numTalentGeneral8.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral8.Name = "numTalentGeneral8"; - this.numTalentGeneral8.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral8.TabIndex = 92; + this.label25.AutoSize = true; + this.label25.Location = new System.Drawing.Point(18, 158); + this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(114, 20); + this.label25.TabIndex = 17; + this.label25.Text = "Quckslot 3 (D):"; // - // pictureBox77 + // label26 // - this.pictureBox77.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox77.Location = new System.Drawing.Point(132, 169); - this.pictureBox77.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox77.Name = "pictureBox77"; - this.pictureBox77.Size = new System.Drawing.Size(69, 71); - this.pictureBox77.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox77.TabIndex = 93; - this.pictureBox77.TabStop = false; + this.label26.AutoSize = true; + this.label26.Location = new System.Drawing.Point(18, 117); + this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(113, 20); + this.label26.TabIndex = 16; + this.label26.Text = "Quckslot 2 (S):"; // - // numTalentGeneral20 + // label27 // - this.numTalentGeneral20.Location = new System.Drawing.Point(582, 376); - this.numTalentGeneral20.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral20.Name = "numTalentGeneral20"; - this.numTalentGeneral20.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral20.TabIndex = 116; + this.label27.AutoSize = true; + this.label27.Location = new System.Drawing.Point(18, 75); + this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(113, 20); + this.label27.TabIndex = 15; + this.label27.Text = "Quckslot 1 (A):"; // - // pictureBox78 + // msMenu // - this.pictureBox78.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox78.Location = new System.Drawing.Point(582, 297); - this.pictureBox78.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox78.Name = "pictureBox78"; - this.pictureBox78.Size = new System.Drawing.Size(69, 71); - this.pictureBox78.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox78.TabIndex = 117; - this.pictureBox78.TabStop = false; + this.msMenu.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2); + this.msMenu.ImageScalingSize = new System.Drawing.Size(20, 20); + this.msMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.fileToolStripMenuItem, + this.helpToolStripMenuItem}); + this.msMenu.Location = new System.Drawing.Point(0, 0); + this.msMenu.Name = "msMenu"; + this.msMenu.Padding = new System.Windows.Forms.Padding(3, 3, 0, 3); + this.msMenu.Size = new System.Drawing.Size(850, 36); + this.msMenu.TabIndex = 1; + this.msMenu.Text = "msMenu"; // - // numTalentGeneral19 + // fileToolStripMenuItem // - this.numTalentGeneral19.Location = new System.Drawing.Point(492, 376); - this.numTalentGeneral19.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral19.Name = "numTalentGeneral19"; - this.numTalentGeneral19.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral19.TabIndex = 114; + this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.openToolStripMenuItem, + this.saveToolStripMenuItem, + this.importToolStripMenuItem, + this.exportAsToolStripMenuItem, + this.openSavegameFolderToolStripMenuItem, + this.exitToolStripMenuItem}); + this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; + this.fileToolStripMenuItem.Size = new System.Drawing.Size(54, 30); + this.fileToolStripMenuItem.Text = "File"; // - // pictureBox79 + // openToolStripMenuItem // - this.pictureBox79.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox79.Location = new System.Drawing.Point(492, 297); - this.pictureBox79.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox79.Name = "pictureBox79"; - this.pictureBox79.Size = new System.Drawing.Size(69, 71); - this.pictureBox79.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox79.TabIndex = 115; - this.pictureBox79.TabStop = false; + this.openToolStripMenuItem.Name = "openToolStripMenuItem"; + this.openToolStripMenuItem.Size = new System.Drawing.Size(329, 34); + this.openToolStripMenuItem.Text = "Open"; + this.openToolStripMenuItem.Click += new System.EventHandler(this.OpenToolStripMenuItem_Click); // - // numTalentGeneral18 + // saveToolStripMenuItem // - this.numTalentGeneral18.Location = new System.Drawing.Point(402, 376); - this.numTalentGeneral18.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral18.Name = "numTalentGeneral18"; - this.numTalentGeneral18.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral18.TabIndex = 112; + this.saveToolStripMenuItem.Enabled = false; + this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; + this.saveToolStripMenuItem.Size = new System.Drawing.Size(329, 34); + this.saveToolStripMenuItem.Text = "Save"; + this.saveToolStripMenuItem.Click += new System.EventHandler(this.SaveToolStripMenuItem_Click); // - // pictureBox80 + // importToolStripMenuItem // - this.pictureBox80.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox80.Location = new System.Drawing.Point(402, 297); - this.pictureBox80.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox80.Name = "pictureBox80"; - this.pictureBox80.Size = new System.Drawing.Size(69, 71); - this.pictureBox80.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox80.TabIndex = 113; - this.pictureBox80.TabStop = false; + this.importToolStripMenuItem.Enabled = false; + this.importToolStripMenuItem.Name = "importToolStripMenuItem"; + this.importToolStripMenuItem.Size = new System.Drawing.Size(329, 34); + this.importToolStripMenuItem.Text = "Import"; // - // numTalentGeneral17 + // exportAsToolStripMenuItem // - this.numTalentGeneral17.Location = new System.Drawing.Point(312, 376); - this.numTalentGeneral17.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral17.Name = "numTalentGeneral17"; - this.numTalentGeneral17.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral17.TabIndex = 110; + this.exportAsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.jSONToolStripMenuItem}); + this.exportAsToolStripMenuItem.Name = "exportAsToolStripMenuItem"; + this.exportAsToolStripMenuItem.Size = new System.Drawing.Size(329, 34); + this.exportAsToolStripMenuItem.Text = "Export as..."; // - // pictureBox81 + // jSONToolStripMenuItem // - this.pictureBox81.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox81.Location = new System.Drawing.Point(312, 297); - this.pictureBox81.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox81.Name = "pictureBox81"; - this.pictureBox81.Size = new System.Drawing.Size(69, 71); - this.pictureBox81.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox81.TabIndex = 111; - this.pictureBox81.TabStop = false; + this.jSONToolStripMenuItem.Name = "jSONToolStripMenuItem"; + this.jSONToolStripMenuItem.Size = new System.Drawing.Size(157, 34); + this.jSONToolStripMenuItem.Text = "JSON"; + this.jSONToolStripMenuItem.Click += new System.EventHandler(this.JSONToolStripMenuItem_Click); // - // numTalentGeneral16 + // openSavegameFolderToolStripMenuItem // - this.numTalentGeneral16.Location = new System.Drawing.Point(222, 376); - this.numTalentGeneral16.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral16.Name = "numTalentGeneral16"; - this.numTalentGeneral16.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral16.TabIndex = 108; + this.openSavegameFolderToolStripMenuItem.Name = "openSavegameFolderToolStripMenuItem"; + this.openSavegameFolderToolStripMenuItem.Size = new System.Drawing.Size(329, 34); + this.openSavegameFolderToolStripMenuItem.Text = "Open Savegame Location..."; + this.openSavegameFolderToolStripMenuItem.Click += new System.EventHandler(this.openSavegameFolderToolStripMenuItem_Click); // - // pictureBox82 + // exitToolStripMenuItem // - this.pictureBox82.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox82.Location = new System.Drawing.Point(222, 297); - this.pictureBox82.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox82.Name = "pictureBox82"; - this.pictureBox82.Size = new System.Drawing.Size(69, 71); - this.pictureBox82.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox82.TabIndex = 109; - this.pictureBox82.TabStop = false; + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + this.exitToolStripMenuItem.Size = new System.Drawing.Size(329, 34); + this.exitToolStripMenuItem.Text = "Exit"; + this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click); // - // numTalentGeneral15 + // helpToolStripMenuItem // - this.numTalentGeneral15.Location = new System.Drawing.Point(132, 376); - this.numTalentGeneral15.Maximum = new decimal(new int[] { - 255, - 0, - 0, - 0}); - this.numTalentGeneral15.Name = "numTalentGeneral15"; - this.numTalentGeneral15.Size = new System.Drawing.Size(69, 26); - this.numTalentGeneral15.TabIndex = 106; + this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.aboutToolStripMenuItem}); + this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; + this.helpToolStripMenuItem.Size = new System.Drawing.Size(65, 30); + this.helpToolStripMenuItem.Text = "Help"; // - // pictureBox83 + // aboutToolStripMenuItem // - this.pictureBox83.Image = global::SoG_SGreader.Properties.Resources.ada21; - this.pictureBox83.Location = new System.Drawing.Point(132, 297); - this.pictureBox83.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pictureBox83.Name = "pictureBox83"; - this.pictureBox83.Size = new System.Drawing.Size(69, 71); - this.pictureBox83.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox83.TabIndex = 107; - this.pictureBox83.TabStop = false; + this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; + this.aboutToolStripMenuItem.Size = new System.Drawing.Size(164, 34); + this.aboutToolStripMenuItem.Text = "About"; + this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click); + // + // txtConsole + // + this.txtConsole.BackColor = System.Drawing.Color.Black; + this.txtConsole.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtConsole.Dock = System.Windows.Forms.DockStyle.Bottom; + this.txtConsole.ForeColor = System.Drawing.Color.LimeGreen; + this.txtConsole.Location = new System.Drawing.Point(0, 680); + this.txtConsole.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.txtConsole.Multiline = true; + this.txtConsole.Name = "txtConsole"; + this.txtConsole.ReadOnly = true; + this.txtConsole.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.txtConsole.Size = new System.Drawing.Size(850, 197); + this.txtConsole.TabIndex = 28; + this.txtConsole.TabStop = false; // // FrmMain // @@ -5347,7 +5333,6 @@ private void InitializeComponent() this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlLight; this.ClientSize = new System.Drawing.Size(850, 877); - this.Controls.Add(this.pictureBox3); this.Controls.Add(this.txtConsole); this.Controls.Add(this.lblTrophiesNullWarning); this.Controls.Add(this.msMenu); @@ -5477,42 +5462,6 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.numUtilityO2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).EndInit(); this.tabTalentsMelee.ResumeLayout(false); - this.tabTalentsMagic.ResumeLayout(false); - this.tabTalentsGeneral.ResumeLayout(false); - this.tabCards.ResumeLayout(false); - this.grpCards.ResumeLayout(false); - this.grpCards.PerformLayout(); - this.tabMaps.ResumeLayout(false); - this.grpMaps.ResumeLayout(false); - this.grpMaps.PerformLayout(); - this.tabQuests.ResumeLayout(false); - this.grpQuests.ResumeLayout(false); - this.grpQuests.PerformLayout(); - this.tabFlags.ResumeLayout(false); - this.grpFlags.ResumeLayout(false); - this.grpFlags.PerformLayout(); - this.tabTrophies.ResumeLayout(false); - this.grpTrophies.ResumeLayout(false); - this.grpTrophies.PerformLayout(); - this.tabFishCaught.ResumeLayout(false); - this.groupBox2.ResumeLayout(false); - this.groupBox2.PerformLayout(); - this.tabEnemiesSeen.ResumeLayout(false); - this.grpEnemiesSeen.ResumeLayout(false); - this.grpEnemiesSeen.PerformLayout(); - this.tabItemsSeen.ResumeLayout(false); - this.grpItemsSeen.ResumeLayout(false); - this.grpItemsSeen.PerformLayout(); - this.tabItemsCrafted.ResumeLayout(false); - this.groupBox1.ResumeLayout(false); - this.groupBox1.PerformLayout(); - this.tabQuickslots.ResumeLayout(false); - this.tabQuickslots.PerformLayout(); - this.grpQuickslots.ResumeLayout(false); - this.grpQuickslots.PerformLayout(); - this.msMenu.ResumeLayout(false); - this.msMenu.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); this.groupBox3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.numTalentMelee13)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMelee8)).EndInit(); @@ -5544,6 +5493,7 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMelee2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox35)).EndInit(); + this.tabTalentsMagic.ResumeLayout(false); this.groupBox4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.numTalentMagic13)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMagic8)).EndInit(); @@ -5575,37 +5525,8 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pictureBox61)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentMagic2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox62)).EndInit(); + this.tabTalentsGeneral.ResumeLayout(false); this.groupBox5.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral0)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox75)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox63)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox64)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox69)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral4)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox70)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral3)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox71)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral6)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox72)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral14)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox67)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral7)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox68)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral13)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox65)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral12)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox66)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral11)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox73)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral10)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox74)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral9)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox76)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral8)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox77)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox78)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral19)).EndInit(); @@ -5618,6 +5539,69 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pictureBox82)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox83)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral13)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox65)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox72)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox66)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox69)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox73)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox70)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox74)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox71)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox76)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox64)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox77)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox63)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral14)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox67)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox68)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numTalentGeneral0)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox75)).EndInit(); + this.tabCards.ResumeLayout(false); + this.grpCards.ResumeLayout(false); + this.grpCards.PerformLayout(); + this.tabMaps.ResumeLayout(false); + this.grpMaps.ResumeLayout(false); + this.grpMaps.PerformLayout(); + this.tabQuests.ResumeLayout(false); + this.grpQuests.ResumeLayout(false); + this.grpQuests.PerformLayout(); + this.tabFlags.ResumeLayout(false); + this.grpFlags.ResumeLayout(false); + this.grpFlags.PerformLayout(); + this.tabTrophies.ResumeLayout(false); + this.grpTrophies.ResumeLayout(false); + this.grpTrophies.PerformLayout(); + this.tabFishCaught.ResumeLayout(false); + this.groupBox2.ResumeLayout(false); + this.groupBox2.PerformLayout(); + this.tabEnemiesSeen.ResumeLayout(false); + this.grpEnemiesSeen.ResumeLayout(false); + this.grpEnemiesSeen.PerformLayout(); + this.tabItemsSeen.ResumeLayout(false); + this.grpItemsSeen.ResumeLayout(false); + this.grpItemsSeen.PerformLayout(); + this.tabItemsCrafted.ResumeLayout(false); + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + this.tabQuickslots.ResumeLayout(false); + this.tabQuickslots.PerformLayout(); + this.grpQuickslots.ResumeLayout(false); + this.grpQuickslots.PerformLayout(); + this.msMenu.ResumeLayout(false); + this.msMenu.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); @@ -5772,7 +5756,6 @@ private void InitializeComponent() private System.Windows.Forms.TabPage tabTalentsMagic; private System.Windows.Forms.TabPage tabTalentsGeneral; private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.PictureBox pictureBox3; private System.Windows.Forms.PictureBox pictureBox7; private System.Windows.Forms.PictureBox pictureBox8; private System.Windows.Forms.PictureBox pictureBox9; diff --git a/SoG_SGreader/Forms/FrmMain.cs b/SoG_SGreader/Forms/FrmMain.cs index b80e9c0..c367aa1 100644 --- a/SoG_SGreader/Forms/FrmMain.cs +++ b/SoG_SGreader/Forms/FrmMain.cs @@ -914,12 +914,6 @@ private void TabControl1_DrawItem(object sender, DrawItemEventArgs e) //Skills ); } - private void PictureBox3_Click(object sender, EventArgs e) //:3 Icon in the top corner - { - FrmAbout frmAbout = new FrmAbout(); - frmAbout.ShowDialog(); - } - private async void FrmMain_Load(object sender, EventArgs e) { Text = "SoG: Savegame Editor v" + Application.ProductVersion + " by tolik518"; diff --git a/SoG_SGreader/Properties/Resources.Designer.cs b/SoG_SGreader/Properties/Resources.Designer.cs index 781fca8..27f1e87 100644 --- a/SoG_SGreader/Properties/Resources.Designer.cs +++ b/SoG_SGreader/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,13 +13,13 @@ namespace SoG_SGreader.Properties { /// - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -33,7 +33,7 @@ internal Resources() { } /// - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ internal Resources() { } /// - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ internal Resources() { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap ada2 { get { @@ -71,7 +71,7 @@ internal static System.Drawing.Bitmap ada2 { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap ada21 { get { @@ -81,7 +81,7 @@ internal static System.Drawing.Bitmap ada21 { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap frame_1h { get { @@ -91,7 +91,217 @@ internal static System.Drawing.Bitmap frame_1h { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_adaptable { + get { + object obj = ResourceManager.GetObject("general_adaptable", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_alchemist { + get { + object obj = ResourceManager.GetObject("general_alchemist", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_arrowscavenger { + get { + object obj = ResourceManager.GetObject("general_arrowscavenger", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_brutality { + get { + object obj = ResourceManager.GetObject("general_brutality", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_efficientcounter { + get { + object obj = ResourceManager.GetObject("general_efficientcounter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_endurance { + get { + object obj = ResourceManager.GetObject("general_endurance", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_finetaste { + get { + object obj = ResourceManager.GetObject("general_finetaste", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_gotyoucovered { + get { + object obj = ResourceManager.GetObject("general_gotyoucovered", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_healthinsurance { + get { + object obj = ResourceManager.GetObject("general_healthinsurance", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_kineticenergy { + get { + object obj = ResourceManager.GetObject("general_kineticenergy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_ladyluck { + get { + object obj = ResourceManager.GetObject("general_ladyluck", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_laststand { + get { + object obj = ResourceManager.GetObject("general_laststand", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_metabolism { + get { + object obj = ResourceManager.GetObject("general_metabolism", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_multitask { + get { + object obj = ResourceManager.GetObject("general_multitask", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_quickreflex { + get { + object obj = ResourceManager.GetObject("general_quickreflex", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_quickshot { + get { + object obj = ResourceManager.GetObject("general_quickshot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_shieldbearer { + get { + object obj = ResourceManager.GetObject("general_shieldbearer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_surgeon { + get { + object obj = ResourceManager.GetObject("general_surgeon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_tenacious { + get { + object obj = ResourceManager.GetObject("general_tenacious", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_unknown { + get { + object obj = ResourceManager.GetObject("general_unknown", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap general_utilityflow { + get { + object obj = ResourceManager.GetObject("general_utilityflow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon { get { @@ -101,7 +311,7 @@ internal static System.Drawing.Bitmap icon { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_2hsmash { get { @@ -111,7 +321,7 @@ internal static System.Drawing.Bitmap icon_2hsmash { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_2hthrow { get { @@ -121,7 +331,7 @@ internal static System.Drawing.Bitmap icon_2hthrow { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_attackdamage { get { @@ -131,7 +341,7 @@ internal static System.Drawing.Bitmap icon_attackdamage { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_attackspeed { get { @@ -141,7 +351,7 @@ internal static System.Drawing.Bitmap icon_attackspeed { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_berserk { get { @@ -151,7 +361,7 @@ internal static System.Drawing.Bitmap icon_berserk { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_castspeed { get { @@ -161,7 +371,7 @@ internal static System.Drawing.Bitmap icon_castspeed { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_chainlightning { get { @@ -171,7 +381,7 @@ internal static System.Drawing.Bitmap icon_chainlightning { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_dmgup { get { @@ -181,7 +391,7 @@ internal static System.Drawing.Bitmap icon_dmgup { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_dodgingstrike { get { @@ -191,7 +401,7 @@ internal static System.Drawing.Bitmap icon_dodgingstrike { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_earthspike { get { @@ -201,7 +411,7 @@ internal static System.Drawing.Bitmap icon_earthspike { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_fireball { get { @@ -211,7 +421,7 @@ internal static System.Drawing.Bitmap icon_fireball { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_flamethrower { get { @@ -221,7 +431,7 @@ internal static System.Drawing.Bitmap icon_flamethrower { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_frostnova_clover { get { @@ -231,7 +441,7 @@ internal static System.Drawing.Bitmap icon_frostnova_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_frosty { get { @@ -241,7 +451,7 @@ internal static System.Drawing.Bitmap icon_frosty { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_healthboost { get { @@ -251,7 +461,7 @@ internal static System.Drawing.Bitmap icon_healthboost { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_icespikes { get { @@ -261,7 +471,7 @@ internal static System.Drawing.Bitmap icon_icespikes { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_locked { get { @@ -271,7 +481,7 @@ internal static System.Drawing.Bitmap icon_locked { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_machinebow_clover { get { @@ -281,7 +491,7 @@ internal static System.Drawing.Bitmap icon_machinebow_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_magicdamage { get { @@ -291,7 +501,7 @@ internal static System.Drawing.Bitmap icon_magicdamage { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_manaboost { get { @@ -301,7 +511,7 @@ internal static System.Drawing.Bitmap icon_manaboost { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_meteor { get { @@ -311,7 +521,7 @@ internal static System.Drawing.Bitmap icon_meteor { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_millionstabs { get { @@ -321,7 +531,7 @@ internal static System.Drawing.Bitmap icon_millionstabs { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_overhead { get { @@ -331,7 +541,7 @@ internal static System.Drawing.Bitmap icon_overhead { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_plantsummon { get { @@ -341,7 +551,7 @@ internal static System.Drawing.Bitmap icon_plantsummon { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_protect_clover { get { @@ -351,7 +561,7 @@ internal static System.Drawing.Bitmap icon_protect_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_seekinglights_clover { get { @@ -361,7 +571,7 @@ internal static System.Drawing.Bitmap icon_seekinglights_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_shadowclone { get { @@ -371,7 +581,7 @@ internal static System.Drawing.Bitmap icon_shadowclone { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_soulstrike { get { @@ -381,7 +591,7 @@ internal static System.Drawing.Bitmap icon_soulstrike { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_speedup { get { @@ -391,7 +601,7 @@ internal static System.Drawing.Bitmap icon_speedup { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_splittingarrow_clover { get { @@ -401,7 +611,7 @@ internal static System.Drawing.Bitmap icon_splittingarrow_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_statictouch { get { @@ -411,7 +621,7 @@ internal static System.Drawing.Bitmap icon_statictouch { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_stinger_clover { get { @@ -421,7 +631,7 @@ internal static System.Drawing.Bitmap icon_stinger_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_summoncloud { get { @@ -431,7 +641,7 @@ internal static System.Drawing.Bitmap icon_summoncloud { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_swarm { get { @@ -441,7 +651,7 @@ internal static System.Drawing.Bitmap icon_swarm { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_swirl_clover { get { @@ -451,7 +661,7 @@ internal static System.Drawing.Bitmap icon_swirl_clover { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_barrier { get { @@ -461,7 +671,7 @@ internal static System.Drawing.Bitmap icon_utility_barrier { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_blink { get { @@ -471,7 +681,7 @@ internal static System.Drawing.Bitmap icon_utility_blink { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_deathmark { get { @@ -481,7 +691,7 @@ internal static System.Drawing.Bitmap icon_utility_deathmark { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_defenseup { get { @@ -491,7 +701,7 @@ internal static System.Drawing.Bitmap icon_utility_defenseup { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_focus { get { @@ -501,7 +711,7 @@ internal static System.Drawing.Bitmap icon_utility_focus { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_offenseup { get { @@ -511,7 +721,7 @@ internal static System.Drawing.Bitmap icon_utility_offenseup { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_sleep { get { @@ -521,7 +731,7 @@ internal static System.Drawing.Bitmap icon_utility_sleep { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_utility_taunt { get { @@ -531,7 +741,7 @@ internal static System.Drawing.Bitmap icon_utility_taunt { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap icon_windslash { get { @@ -541,7 +751,307 @@ internal static System.Drawing.Bitmap icon_windslash { } /// - /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_arcanecharge { + get { + object obj = ResourceManager.GetObject("magic_arcanecharge", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_arcanecollar { + get { + object obj = ResourceManager.GetObject("magic_arcanecollar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_battlemage { + get { + object obj = ResourceManager.GetObject("magic_battlemage", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_concentration { + get { + object obj = ResourceManager.GetObject("magic_concentration", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_cripplingblast { + get { + object obj = ResourceManager.GetObject("magic_cripplingblast", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_fasttalker { + get { + object obj = ResourceManager.GetObject("magic_fasttalker", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_intelligence { + get { + object obj = ResourceManager.GetObject("magic_intelligence", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_lastspark { + get { + object obj = ResourceManager.GetObject("magic_lastspark", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_manaburn { + get { + object obj = ResourceManager.GetObject("magic_manaburn", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_prismatic { + get { + object obj = ResourceManager.GetObject("magic_prismatic", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_snapcast { + get { + object obj = ResourceManager.GetObject("magic_snapcast", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_soulsiphon { + get { + object obj = ResourceManager.GetObject("magic_soulsiphon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_specialist { + get { + object obj = ResourceManager.GetObject("magic_specialist", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_turtle { + get { + object obj = ResourceManager.GetObject("magic_turtle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap magic_wandmaster { + get { + object obj = ResourceManager.GetObject("magic_wandmaster", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_backhanded { + get { + object obj = ResourceManager.GetObject("melee_backhanded", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_bloodthirst { + get { + object obj = ResourceManager.GetObject("melee_bloodthirst", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_brawler { + get { + object obj = ResourceManager.GetObject("melee_brawler", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_burningweapon { + get { + object obj = ResourceManager.GetObject("melee_burningweapon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_chillytouch { + get { + object obj = ResourceManager.GetObject("melee_chillytouch", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_combostarter { + get { + object obj = ResourceManager.GetObject("melee_combostarter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_fencer { + get { + object obj = ResourceManager.GetObject("melee_fencer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_insultinjury { + get { + object obj = ResourceManager.GetObject("melee_insultinjury", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_knowledgeispower { + get { + object obj = ResourceManager.GetObject("melee_knowledgeispower", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_lastbreath { + get { + object obj = ResourceManager.GetObject("melee_lastbreath", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_riposte { + get { + object obj = ResourceManager.GetObject("melee_riposte", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_secondbreath { + get { + object obj = ResourceManager.GetObject("melee_secondbreath", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_strength { + get { + object obj = ResourceManager.GetObject("melee_strength", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_suddenstrike { + get { + object obj = ResourceManager.GetObject("melee_suddenstrike", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap melee_wit { + get { + object obj = ResourceManager.GetObject("melee_wit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap save1 { get { diff --git a/SoG_SGreader/Properties/Resources.resx b/SoG_SGreader/Properties/Resources.resx index b4c409b..148448d 100644 --- a/SoG_SGreader/Properties/Resources.resx +++ b/SoG_SGreader/Properties/Resources.resx @@ -118,14 +118,68 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\icon_soulstrike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_fireball.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_speedup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\melee_burningweapon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_summoncloud.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_chainlightning.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_combostarter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_chillytouch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_quickshot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_magicdamage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_battlemage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_utility_focus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_earthspike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_snapcast.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_surgeon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_brutality.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_overhead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_soulsiphon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_tenacious.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_metabolism.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\frame_1h.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_utility_defenseup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_frosty.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_lastbreath.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_utility_sleep.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -133,136 +187,235 @@ ..\Resources\icon_icespikes.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_utility_deathmark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_berserk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_swirl_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_speedup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_specialist.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_insultinjury.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_2hsmash.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\save1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_attackspeed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_healthboost.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_suddenstrike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_concentration.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_cripplingblast.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_statictouch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_backhanded.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_riposte.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_utilityflow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_millionstabs.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_intelligence.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_wandmaster.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\magic_turtle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_brawler.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_shadowclone.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\ada2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_multitask.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\icon_plantsummon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_meteor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_finetaste.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_utility_focus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\icon_2hsmash.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_dodgingstrike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_2hthrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_machinebow_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\melee_fencer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_protect_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_flamethrower.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_utility_blink.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_overhead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\magic_lastspark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_laststand.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_stinger_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_utility_barrier.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_efficientcounter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_frosty.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\melee_secondbreath.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\ada2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_summoncloud.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\ada2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_soulstrike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_seekinglights_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\melee_bloodthirst.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_utility_offenseup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_castspeed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_machinebow_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_splittingarrow_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_berserk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\magic_manaburn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_statictouch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_dmgup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_manaboost.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_meteor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\melee_strength.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_kineticenergy.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_arrowscavenger.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_attackspeed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_swarm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_splittingarrow_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_2hthrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_utility_taunt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_seekinglights_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_dmgup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_ladyluck.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_earthspike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_protect_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_utility_barrier.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_attackdamage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_utility_offenseup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_gotyoucovered.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_windslash.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_adaptable.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_frostnova_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_magicdamage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\magic_arcanecollar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_utility_deathmark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\ada2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_chainlightning.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_healthinsurance.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_healthboost.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_quickreflex.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_fireball.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\magic_prismatic.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_utility_defenseup.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_shieldbearer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_attackdamage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon_manaboost.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\icon_locked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_swirl_clover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_windslash.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\magic_fasttalker.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_flamethrower.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\melee_wit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_castspeed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\magic_arcanecharge.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_millionstabs.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_endurance.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\icon_dodgingstrike.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\melee_knowledgeispower.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\frame_1h.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\general_unknown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\icon_utility_taunt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\general_alchemist.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/SoG_SGreader/Resources/general_adaptable.png b/SoG_SGreader/Resources/general_adaptable.png new file mode 100644 index 0000000000000000000000000000000000000000..401b32612dc7b7c01ab531123c51e72d829f4a13 GIT binary patch literal 681 zcmV;a0#^NrP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5KTu3mMF0Q*_Fho`_S#1R3fOcqwoDWjL2_%#>Z#`Y z`OA4BR*{1$59T}=DIQO3MaxPks_*9azLfsO_5SYs|2iCy-`Euf0006ANklk!q`H(^y0wT3&7hko-7*9Nq9Uk6(SllsMmhu>L>Fll zT1pK%xCjA7EDi-*kfc-*oXij-EInS8`P7_(!~^ zHOjGE9_c99T^)CV1rhI<8008Cb5-js$NIss&WQFN*V32GFs;3w;Z98C`YObr^6mp( zh)peU6k<9S13Ke?3WhM5LJaFHu<7mg|oR3Djzw1#B zbG}eV)>Mn08VzSjA7ytv8KXaT5{8K>-3L zyJr^RtdL3{a{T%$%tipZwkA>)IGZIJ9-ro17#r*%=c{aP8jG-Wv=g=Xta{>lXTAN| zlUETonc@xJCXV3SZd_+sGXO)=tgSXe&=ezncpSteuoIUzl6?z-ZJrmyVrBxHATcX6 zD=!55AnFe)eiIm)W`);?J)9jMo?581kYb;$DGDP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5X;4g5MF0Q*nTFi;{qtN`zfA}P&2uoTOB{Cz1ONa3 zLV3>n?$lF+8nNza_T0_n@chMGseQCQrag-P<@o0F|L}*@*>JrrObP$-`@~zQ98H-2 zq2}}W{r{xq|LOVv?)q>CROx`tx>26rcEdy<6`ueA0*OgPK~zXft(9L$Q*ji>&t00a z%qRv0Aq6c8lj@631;HL7v>tk>WJo>9&>jrz4@?ZS$ta3mY7xsG zW+}KC1`oqNyyZ8L>FaP~XDzu$9yf9?!0>AyQuz*48>`Yz=GJdVsO zZ)0?H`3;X0c$=P6o+WT$>kiwbAfne1IiJDxJ<2Ce9<8O41#Vrbht`JOP-hfeLVC&Y zd_)S82oBaKAVbm5F#aZ|Y7V@0Yi*$vbY-G5RWNMRkpk_V`^h9S@Cy7X716J73SM5@ z3@he(ug5@`rDHhX>tX$(Iymg6hGWSygj`?Q&aLpf%J)hCXM6fphQ% zo<1HD?jZ||wK+HX(a?6~Szt!-+XukwskQ|qgVE8Vj3^T+fLm0#vx-a?K+bQgDJy{J z86hPPe%^D4>`Z7M)K7hK8G?({9rMHZ`$;l}>)0oS=-@ev%kN%8YHlwCB7Vr#RDrj5 z5_~=%4Mg(!JWcEk{(#JfkE#{mc;GOVBYjSrghZH&V_`^!oU zLmJ=SSxs&78Z)?6{K!d!RUrblP&rsYQts;Vnb@Bdgd64eNe2ZuLPWl7gs-g}v*zFL e|DdDGZ~O(1>q~rQ4n4#G0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Gf+%aMF0Q*ZN=$Plft_6{A?cxD^?5OQYUrbCxAXB zn=K5jT|QD72U4IK)0bl4#3$vshR1yrVagSs0005=NklB>3*%4wP znM}!LAt_caQOZV9%F2$Ng`{l!1xm_d7G`Ck#+E208wooLV&Ph|Ko+B1iloLo@0|C{ z=a^$Co;vgO`x9`l1W73T8-KALngJ?&E;|xZ3Qez|SuJ!kuSgPRe)#w<0dL+? zroO#aZldwI-``yR(Nc zqVYk;rTgpzAW3ut&T>Lb1$`8|G{>v2UO+uubbRSqp6Qvm5>G*EOz=7hf>)ZV2?$y( zdMciI_i_1&WfrD$ae@>bzI!fhy1MQ?EI+D z+~e+8v;aMiTzmbVB+<4YmcGvRvu%5%D~{C_x+2q|P0&6P<~?{n8t6BKR>r%Wa7*sL i-=HzVPwz!LDx443*F=FaTQNxh0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj58&FJCMF0Q*|M}$UT~KKd1+O0rS_KUMyITM0py@#& zu>l>e00063Nkl0q6<*r(yyK5i1v3EadD`_Es} zBNxJ4&GX*6GHkBiNUv?%KRp+A;_po6MTAe5H&44+>FO{ZMbCZnC>{-=0H6qS>LX?t zpf=8e4>?>zAuT{CL~jYicFPs_q3mMP? zAT{y8ij@xLlb%I4?;pR)&>lXLc;-aI>K^fiLP~%z@%Fn0T*VVBfXz0sM6baf`&jh} zbY-$?gXK!1di6Xip6hyz>zvo;I!|=f({-D`ENH7ePJBg>c-?qAdWOb%d)smLx;al! zooGlLTILs3VZYqm%d?34tgt#kmH;1xeMJZjpT3^QR|Lr4FI<&h5r28W8(Xr3%9kDg Y7dCO}@{}%gmH+?%07*qoM6N<$f><6ClK=n! literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_efficientcounter.png b/SoG_SGreader/Resources/general_efficientcounter.png new file mode 100644 index 0000000000000000000000000000000000000000..3db9ad2669e1212f267cb0f23cdc4f0ac6e8aa56 GIT binary patch literal 751 zcmVP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5El^BUMeM!*%#Z7QC$gkM$oBR90002!@%vUM6_P(6 z@wsg~8V%otOsrEZykRw&MI#vDqC@}y0$@o*K~zXfm6c6MR8bVi&l}z)vOjKjrh=-_kTSxJdPvE2$XwVmJ8tA-qh4#bOb3a!omYIp4LyPn}znjr6oR!0nOMJ^DVBQ3B-{=u*Gs!RsCy;e$Q*cd6!$r!ryeC^TTZVK z+j%nGy`4mT(<(F~Rt^ZCo+AO`){DC7{F9|SbpNWK9@P3-=-r7BfWB2vb1ib@hRTU}629F)E34bo7^)_J(-mjh z889O9_6vI=Iq}K|D9DM)@>raLHJ6m=*5+^So0$19MQyl=7lb=cU;Mi%MN3505cohL> zu2@xgA!{H6L+isq?h6o=KVK_o;B+HoI0L)sLuYCsFFz(ZRJbIu25U=+0UssW*Y*hpzpkM1^EpYQl5YJR~39)Py002ovPDHLkV1gG(Rc8PI literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_endurance.png b/SoG_SGreader/Resources/general_endurance.png new file mode 100644 index 0000000000000000000000000000000000000000..a3cd94a0fce58ccff06c07e552805e79eb2313a7 GIT binary patch literal 610 zcmV-o0-gPdP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj57*I@9MF0Q*Odi@Y6tL(0|E6~HMIO)l{{P{&|H3~) zmH+?&=t)FDR7gv$mAgsmrtn<)0n^y{_ujf z0|ae!x+D-qtoBp)v)Ote?SBI=s6a4`_KDQF{w;HRfA=WP&jnmhy**hDZM1qP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5S5Qn;MF0Q*@3%ws{qx#sC`||i&2uoTOB{Cz0}@7; z`|i~C+|A_h{6UlM3N>^sZq4TN|8c66Zh9|wzP!v2BNv!v0T!RL z9{*)nm<-8?Y)DS}^$$XWEC8v40c_^sO4Z*#IUBk3>+V1 zr>;9Eo-&-hj!*_N7=}R>faD1Qf|(KI8-qaX`2z$lte=Q8RlxwkvI`b$xB$Ljf&ron qNL+xJ0ur1qh^-yT0cz84FaiJ-9qu_#D3O8y0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5LQqUpMF0Q*<*s1=|Nlr21dJmNw__yGhcV`;J@CF! z`_^aaWJ}pcM$~`Kkk0I><00M+bL_t(Y zOP!TVXcJKshR>AIN>%8h4XxQ2Y$a5Tui~PRx>0Zz)xIc*5Oia~MMb(P6IXjLL=Xe$wv*(^Ui zQ`*sUhphTd*fK{O>XhYWc&FDHXbyNEzr;U z482cf*p>(V!UJ0f69DibCVeu#olBNrAZ=umyfsCiM&_w_f~d3O5T(2Md!^KLiE=}I zoCUxoZTnl;2JIbtczrSVmRIoZ^%7^~HXb#^1(>ug?8(sV+&octJ5LiR+7l&xSa`N- zKhN0@L}Yrb>=VrOZBT69J7K zC=g|}NwX&HirRi1X{yxSkHmp#KKa0gzbDq@HTDDe0OB&bE3igF1LH{*sssW9h1!aq_)F*S mm*?+Sgu)0Cs7ADR!uSi=qC2GS-UIsp0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj58&FJCMF0Q*|M=sv?rHoe0K^6glmI4Di4gzHv30#4 z``PIo0005XNklgYcAUF)jdBBN>t}jM}>eV&;sPTwInTs zxUPtwFvf5Iuq&V!glK^*++lq|E*+f354j;YYE)z#c8LG(%B%DVZGpBg$nOwK0IV-| zrG-=2XmlcI0S(p^D{C7`_m{j7z#gH)P9fZEB@+sU7XnDC^dtZ~2?g|SH53Y=fW~c| z&d8l0C9$*eWG4+#7y>v5Q=F+yta(Y{q%WBTAq#7VJJs zxQ3SvQ0HKimK8l{fyLHG8ro9?_lYv)iEz*gi&aLL6jmr1Dvq1AOJfNTt4>*@DV&9_ zw&6FVMY5_l@KV?UCmE+s<(3d#%ci%7< VQh!g0tnB~*002ovPDHLkV1haM_;mmP literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_kineticenergy.png b/SoG_SGreader/Resources/general_kineticenergy.png new file mode 100644 index 0000000000000000000000000000000000000000..20027b7d8758a74549988b3654aa776b743e819e GIT binary patch literal 478 zcmV<40U`d0P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Ay7!;PeR$9NoGH#h~uS4u;bD3Mdc4CjCEqQqC6*%pKl4)sHI#d*50mxzy07X8? z0+2e8dR&0$I6(*K2>~C#YYEIZ-P2IBGRT5uOO_Mm3lJdalasSjCj(7`aFAVLNtMLfvh1@U`GvH%2_RD8t2RWPl9ijO!W0N7fy UfflMaTmS$707*qoM6N<$g5o>6yZ`_I literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_ladyluck.png b/SoG_SGreader/Resources/general_ladyluck.png new file mode 100644 index 0000000000000000000000000000000000000000..dfdc67a6cb128b4f9d1aa873e6dde6d4f2f62eb7 GIT binary patch literal 759 zcmVP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5El^BUMF0Q*aKif*RH)GG|1yuzKXD3^(NJEV8Z&j! zD^CN*;$267GiRqGS(X8aK*+t5`8N^*o%vHWWrWciHcmFPmneT=^VI#jg6V zkjw!;PfV1WqeucQ2038y^}8+hJb7o`?4{X{X5sP0V`eo6n3pG%D+03F@ zoFIgNoNLZf5tPp6H@dFAEz@Z`~E5-QpuD&AU2B_1Jib73^D ze~CdhbO;KZgBK9FBA_BreD`C*WV7Q>e@~K)Nmez85F_T%^?f3t{q53r~;vi!TRJvwg-Td zAx?$)66T6xBqF{krxq5In%B-Hxc;M>>{^=vnvuB-pBLD=r)${dcXipyce)S@aC|_p z{P0_7KUpvvLcC-35iHfJPo?aMdhV}O^R9P=MSX(fme$Bh8CKu_FAxP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Do{*RMF0Q*G?dPO*!CE7wD$G=Y6=AV=hMDBBl@Fh ziW3c>7YV&OBF|7V?Q~3|Sa72N00Fc~L_t(YOSP4;O9L?&#dC5X2)a2~tcrE0Ae4%W zqKkA99G$9zgQAGg1G`%%mx3pVRP5j&P8}Qsm*O8FqK;jZ4${Tl;#B+6d^I_f+$s2j zBkw}*d-uKMQirvfIeBbh{0|;>ryZwI`>-06%6EL+-dI%hZ?Kx6=%QiYB5M zI;N=J>J45rKiJFfi|?O`CdhDjEXGG2+D@ng6g_@<;&Zt~TG0dqBRTR-c)Ns>Sw==PqZGLVi;!H-uu$+d3DD zv5KVU+lEeNN8G6dYr0}ILhB%NG&RS3?~-|b=U&&L%#YnA?<(0qE<_!`tln&L4X_C! z#U)22bCtgkim`05GkX3SpU)Q8l~{u{BkwL00`bHUFH9HaO>0AFKSo<*D4d#|WFr$X z)}M-Z4e;$mjtiI~BWwn`4^kT!euxL~APUf;qv-1MJsa3N>>7maEMPplfE=5Dwkc*+ zu;8Ych)7308R@XaM1-0E`N$6vW&o^l$sjr%wj-Y4f4@<>`74EFpYsK6_vl=`fy^!d O0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj57*I@9MF0Q*cAM(K)c^ng|B5`T^3(s*jqtH(&$KKT zM*si;f=NU{R7gv;m9a_#K@f)b4tuNEN<^{H#?r!ADTsv#>1`D90?}uPK7c}e1VJoB z&`K>VZDJvcVyiZJf_VRA|8s6#_ttQJu-x9x&iu1Gb6jFFcDwHbJl7X%=KSshQ<($( zK8kIBXCg_jdjk>pFAzVq^PJ9hO-5tR$QT9qAqE+^+MOtq53P47cmt zIC)Kw5jOjTD8TPTcMw|KCqyP!$L%Z=@nxkq5F|qZUTbW7r#h=D(e+L7@|RYnbD2-! zy095{|GBknmx@`Cn3`#H@=@Oj>h)WJV@S?g_wqkMRsi(@%!2F0XUAy>YU}P15%x2o yk(AkWBCY_C-!D&tU?Bn6+&yjrK-)Kt7LqRtIQ#p1q&@8b0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5hfqvZMF0Q*iCXA%9TxJcaro-mpEe`^_`SCe2=CAQ zD+&TJ3j3o~BqI2GpLc~!q`rW3ZG8o%$N#Aoy*J(u8W#2>RT(V8NDWs&nog_H_OP`RbvJmWqbJcTZvp+Vnz-$kW4_FuAph?c`jp9)UJP7TbBq z`1TxbpN)aC`VA`8_x?E&q$F!Wt0pIO*O!1gG?H?puDBA8KKj6R9)hA?kszb@C98NS z+HL~dOe@Tcrhz0erRw0=IvpM8{W%A}rZtpv8v1^)Oaui*K}WzgWC!=TVpjE_t-3FX zG>`90v$6*iR2FT6=re~{1;CuJ8caFkl;en$0{g%SMZ^>rBNJ;1N<%1VZl#7KuGl^T z*sN?P!p|x}L5oWb_Y$L6MUI-qC158lZ!8dD@Td4cI6qIY44~xgsOO#Vo7LPJ2H7G0 zaKIQ#hpsjbQuKz83&D}41e(FVI}#l4$Dl^HKy|;Vd5S2&+eP4u#}%bl2{$+C1xK!t z)lKoZ*u008~UawyxoZlEo%liy2lJEzjh)a~B>oKAK z6!E1L(YWjlo9P|oRS&|G>?E;829Ay2w2J&1D6h!}bCOjyx|XIbEE6#wcd|@`z9%`0 z*ArjvjEoymgqD)`?fP$v#VQC1jF!wJ&^jgD5Y;GiNQu%$>OuSCUENLU=c) z3<1(D^TzFRL-)`aSlX+=-PyycBH0!z?9cqdc5PY(S;vyugtV1S3bQ%p90`*`_jfb#=Xjb(wIWP(rs@r`__?Hpk zV?!B=5H3SW*1kl5`2`41iKiMe-r=BlqOlXgX9Hxnjw5yAjj}5QW#;r literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_quickreflex.png b/SoG_SGreader/Resources/general_quickreflex.png new file mode 100644 index 0000000000000000000000000000000000000000..82ce94b68e25b633f137a9b25661b38465e354e8 GIT binary patch literal 612 zcmV-q0-ODbP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Gf+%aMF0Q*Ys%{O_5D^S73lH%l0P5*_y4@(_CtQu z@wsg~8V%otOsrEZykRx-^Zoqx|CvQ2AcJmQ0005cNklxzPLpd=4e1l58gFTP>;0%Rb}0(3{PKxsGt8NTn$cZT-a_rQD& zA2BeE4ZvIq0wBXd0AxXYl^?^AycJ+R2%uPkYymdIpML(qzyLG^WDv|y7=XDRWWmC= zO%SzEfDv5i7N7?k$Pf?!8H$WS;voF)%zdytGJyL8<_lzi?6b|~nqV=IAux-O0Z9Dp zxd#l!MhZ|71VHf#wqU|0c6!ALu%WwW?FZ8!K0bgm33q4;qxkI8pMOvm=>VrCoXkup zz5pfH-M2q5#7sR1=HmjJcU@*!dHWs1+UxJg%Z#|dhfk<+i4Le@2_b;jlFC#ih8tU6 zL3xk@5fo(gJ8wWmP{Fe|pD}_81W+tNHZ=drYX&C~PB0r6cuOFdU;u7O?q%$T;_?l8 z0>BpGFn|$U$cDl!hKV6tMhd{FPp}n`ATbaCiLZbD1K7S+EP?@S)$vp_F-8Ev1N=aXu$_$n0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Ay7JE=R$JFk&|o zsYDX!&@sjnC)@x40nSN8K~zXfV`Kn=H=F$agJ@a+5x-50Ot>ug=eiEcf&fnSC^&|J zdnX@4SrD*(!U-q~p&w*EBQd@J8LSmLAIf83xVAcx;rq>HP#y#zTM$@a0cAk|$XB08zmO0-)5wv^xmQh6Nue=#GE=i#OOnfCW7n;sOdl zpTN{=t3%?(w@;eE7c7Db&=UX)vbXSoe?W|^78ExOMUWI1H62WW0W2vaTg151MTn^2 za@_oiVZW~!nC&xl8pE>8Jg`qdfS0ozCAiRiLUEjcK-Ba}SmOkyhvGQF2Vjn(I8Gp` z3nGS`gpmQsaRQ1DP*5$3c!{%k0Rfn=L6)*O=h=WcgaF7VFbg1YA;sX#c?L))f~4^R zqKXwzM4Os>!!5v7cEOS_2!MP53p%Qm!pIh26!nzWC&-bFoIjA0Jl5(LSpf_nm$uj< f8W#}p+r$U}W6lMKY=N&M00000NkvXXu0mjf=D_WB literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_shieldbearer.png b/SoG_SGreader/Resources/general_shieldbearer.png new file mode 100644 index 0000000000000000000000000000000000000000..76c5de0be5fcec7eab78761cf13b52abc09b466a GIT binary patch literal 954 zcmV;r14aCaP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5cu-7KMF0Q*EoQlX9vAJjck}Mvt2!lr%=-{B2NF04 z^SgWP(xf{Y4Jm&X9aa!b0t?#t{*pf**mN@b)PwQ4Z4*5RtWzv*8WZ1zOk=rC4lo9b zE*cj}3%&QEU9?9pgd3sihPF%;T(d^B^qV}FD6jF8c+OzA^qp(LQxo*iqyPW{;7LS5 zR7gvem2F6qQ547jvnB=2#KHx=SVmN!1{p>|MMD`y7%rl)NQGD$#WW?NFQvmW5W^G& z2@;}6C?$im6ooz*iAMR7SdajInTY@-Loy~2bXj1x!3!D&hgwk6Eu>Y zkAIWR?l=xteIB`pPCv<(=-6*Zc~YI2{U1Y(c9ZF1zmElKoJ$ZD&6=2Sm%wY?%s$aw zP=?{_uf;4tS5_R`jJ7GZD(aeFr1rE0R(lLDd>{2<%RL|alGMI0!qYjLya4&@mg4Y+ zI5fWv6_N3q<6p6`rLkLt1CT(~*^Nld%N7y9krIoE6D?wUc>LxxI7xzf|O1MNWRUM*f-$uUQYZq>cAT>nCp!)XHz-}EmL3Si78;f90v(zrb| z&!wP}ghQ5!_Hnre(qhq3^ zv+_W!-em^7J}(Ae4x_r{3Ov&u5!E@DTY>o1fy=7m&*ap;#i)Pu15Z8?BtSxUSH%Q%S#R%i9wcB{W`S@1r&tMQ)bmDop>Vl` z&-Z{Ju_K;u?8~g8&1O^oPvadpi z6Lin0^Ng=G5mtndm(D0=gbpVn2@pZ$3Wr)kN#dq8!qX2Y!j(zFKZTL9QIVM$iS+f7 cvTbJ59}72J`0bmb?f?J)07*qoM6N<$g7rDKfB*mh literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_surgeon.png b/SoG_SGreader/Resources/general_surgeon.png new file mode 100644 index 0000000000000000000000000000000000000000..0b2d932bac5bb08f0ec532f539b0b34832bc24b2 GIT binary patch literal 553 zcmV+^0@nSBP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Do{*RMF0Q*>se*D4+#JE+FJ$G8{1IL{^& zg&_(IE>$5`k!#B8spk9NdV$mc00EszL_t(YOJe|m*O96JxASxSrv(i%p9#jG6#!Yr zBr>;@0farCUxEsg29|thg|cu1CUbEO1{eleMhYlcyMkfT<0oJmA7Gm5W5xi(Ad6r= zk`U)1iiQDP;vm2TB6gj)1jf_^$d<8yh>dT4fH@~$-e7o>+zn=91MpyZ0HHxa1*7w1 zW#Hljoe&(saAw?MvKe?Ssu@0?Xk~a}upZ%)*Pi`g1*Cx2H;$lKf(}6PAdBEW0Rdb-!RCuYPu>Gv zd<4ov)eG_o2!JfOU|>aAoZtc=!$ANRCq$<%QUJ_w8RI~3>H=p*5CG+N5CC}(q=*t4 z9e^!CE>;XK90N;G3SPYY0%ZX$ffXs}#R^Ojxim6h0u?DR42qW>l6p`n>H#K@!7vO8 rQ(6EfMlLl*km0oO0SI`0{J{tSc$OirYr^bt00000NkvXXu0mjfb9Bw% literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_tenacious.png b/SoG_SGreader/Resources/general_tenacious.png new file mode 100644 index 0000000000000000000000000000000000000000..a3ec507758e95e899b3ffeecf812bffb5bc2af65 GIT binary patch literal 625 zcmV-%0*?KOP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Cs0gOMF0Q*oA!W2k|HI059smxq!0&g2?NR|9s8wx z{FHS1s)g<8@%cV8{HRxW0005#Nklj!K_x0tLnS2Afv}J+HCPN5iC7I-F^NQ^OCy9zQT;jS0)Qy^zIIfAS(Jv$Us2Y{%PqdVY$irGiaPw(L16_Q4suiNer(Bs3V%A#g)QqUF zHb_JFuWpQ9dZ#nm#3J$pBG45I@m#pgWZWdx#ONYH{#KYb_bgBG)yd|Fw$i*eQcNN- zz4PN#XfCv zH%iw_+q`dq;6Gduv8DqD4P%39Mx1zKJ>p9Mt<55GNU#X2I6x== z&JIkx1Q3t=%u)esxzM^e$iU37TB!`;5U;nqfUb29UdjbWdIO-tzIRS|&xQ!t4qUMQ z7(q2cUIOMT#MbbpnfGQ^)4Wj{qopt#~0q{6h30AP?!jp literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/general_unknown.png b/SoG_SGreader/Resources/general_unknown.png new file mode 100644 index 0000000000000000000000000000000000000000..ef75f919dcdc1411b0be272c9e62e02e7432d1c4 GIT binary patch literal 725 zcmV;`0xJE9P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5IZ#YgMF0Q*=Z!MJUpbmV9{=IAHUa_&Ge;0dU?c(p zg$fPzhI7j~ICkp%A#Rb({r@?i!tnn8HiVxIKvxTSQV{?E0y;@VK~zXfwUs?c96=Pv z-<{tGHlA=-rU(HG;Zi6>#L6Omq>vC|p-CWIAt-`f6pO>N6C{Ziry_|(B!&y|D@BSV zhyhc0aD^Z$f+%;z*$CnnhwlIFzP)kvb{Eti4D;Tbnf=e3dAsW&jpXp-i;YAPJ*ql| zOY;k9YH9YdecO2G_pZka0gl`gc)mwOu!H(=9}nCGsc!>jhWSQ}1!^8VGrTN`V1r>1 z75f5)MRbx*8WvGi{Fh;6S>2frsp^oMADeuW3yR{v9L>WuC8 zPn#%E+sHOZt}Ida&qcOl{zCdvQ_Xf|OD&BIM(M}N5ep$B^SD$YVM?1gbDp8E2O0LG z?QhKtMBqhv9=$BcyS8pq6BvKp$;ah2;`DbQ!ULEftzz> z1XBcH02B7Kd%(gE9d#VXZr}Oz2E;}jU>@dUomBu_5wT;-Qs`FS4o4B(hqR%zemCgV zxD(ezkm_-)i{c+6)b)AUJd#{s9P=u|SLTx9~57yr@h;3(VZ;R6UbVZMwiD81v@ z7?rd}C>77X8~$KW^W$bet2Kak23hDAUc@mK$4u}*X?0CcIEG%0JK?&zq?`q-Z%0lM zwEzSu0<{?A!maOyimOaA``c!@;{4r~u5jbU3wkzTDtk3eiSIKU!>&uTkEH-#zEQcb z6#=OG!%x}&j0g*M$0T?Iy=(jnwgV4B!;Zy=xEp~$@0#ZlFK{-CsY}RC00000NkvXX Hu0mjfP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5El^BUMF0Q*e?OYTd(xyr$ok{|a2f>iuwmbTBhyM6 z|J$+suVeAP{GKQX-=gciMiGF<`3?X80u@O_K~zXfV`Kn=diz=bU2H5E9v=S&;xfov zaxv^Va)JSun0baSSPTYE&bW+IZ_GXmMwY|Xm;QqUi2>D1Qo(eYIV+fkfv%Ikffh3` ztcpJg6+wU{PAC4eK-mNV$n`M8o2JDwyuEOU;mfJ-U_MM7WEsd;=zs}I;{{<0&A|rs zA6(0jpC%8s00elz}p$HK6% zaw#0+vIv&aKyiZ(a9UDSpTw{>i-#d`^Gb%0jz}$wg8(iK!9MJ5Sx-f7QlSb8Z#Rz3ITX6fmr~faiyxc7hYiv zCK$kK$-5`-8RX?S8BR|_7!I=l6l5S!oV^fiI0%Cb2Vrbw7YJaKUDgT84EL6(F*r?K z0QSL}isj&VfEf|LZ9LEy>|?b43EJs1_4rCjSZkg zJjjAepZ+jNJBomlAvvzb2AFJH^}to|lbg@MuE&)O$pta{EEoY`%?Z+n&)`S^0000< KMNUMnLSTZWp%z8} literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_arcanecharge.png b/SoG_SGreader/Resources/magic_arcanecharge.png new file mode 100644 index 0000000000000000000000000000000000000000..e6ff2dbd4b841cb52a5ee3f9e3cc5f9e3bb2df3a GIT binary patch literal 695 zcmV;o0!aOdP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Fi=cXMF0Q*w+{&Y_5a(1hH^UV>se*=skE(X_zpH^ zf#mlmXRgQf{y+}`;AugjCk${K2Ob~U*8l(lB}qgE7(76t23 zkQ@Z@AQtSw2C3qogLpGgP%w$|61Vw=%x1G@6Bj=iX5PNH^UJsU_C=w%e5Ls+vYA?sBJ}<31lKd0PR>So zI_5c750BEPssgT|_TN!OIqh|31l)T!N0Idnu3t_+An$fL*G7#zKBKXrJ+2G7I_Z4C z#Wkd4a$$4;z{iolJT|J^o5vtHGP=oa=y;MSQzZ`W*VJha0QemGlj6n*#d=8JH}_z3 zDN!b6=0E^tb~n#Kzx=Z)pyR`@R85_v?|aQjHU|JaUz?`o*FHK9ZYAzYDxDMFSrW0Z zsvf=>=Xln1%Ht1Dqgq|k=u%((jHovE8fT1U4Kmi@Uex-&gx!U}#Kr15hZO+k^$^^T zTKe+ty{UsQ;j63w>49;I6I{sV;3fd+fwA5NJHf=G(j1OV0A#BUG$&~O!(&$$ZN&_- z3drO@;u=H%@{(`kKte&|1xGUlcK3NpzdyMo`?oNE2Mbf()Mg*#4-QAh!}`10@nLpO zrIQAM`j!J4!11D;CVPg`0?bZaGbymzQgw%nAb)KU?Ht8!P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5QBX`&MF0Q*ws_uQF1Y{i(I`^{mGg3!^K^sjTxZ@p zQq&=r^K*^wXgi+|7cl`opB6KK4;(=Q8ae_TKLa351tV4lEO7}?69E7D+yCo(^OF?N zS_6EDY?J^10tiV&K~zXfm6bh68(|p7pSvW5U`>S%ieH1oVjYa&l&Rn%20=2oJGg4Q z>1I0!>8PD*17;LDghGkn;OZcPF1Dzow1%kEwvZ2Lp_<WX^LVZ@5)54?Vo(=1==yJ!-p!@$ zr*{m$>Z7COGhZWL6ES$6d0~xev^u-W^AK`_IGs_WTuz)B+*;S0*|mnaU+pjVesZhA zlZhDM&48{9f~f{EgkaLt@!Pc2g@^xObi#rO_^hZ46cAP!Up(2=q7Fp5#A!=%n<59xfnOlHWSV8oh z7+6#`-_py80MF^xI8mMx<*BwZsI15Bffr<;$^zV5E`T@2nX_L;3kt hAx7YT3=*jU;~$5`8*QI~Kwtm>002ovPDHLkV1fuJLHGaw literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_battlemage.png b/SoG_SGreader/Resources/magic_battlemage.png new file mode 100644 index 0000000000000000000000000000000000000000..35dcc1ccef15ce816af67bd392eb8a218e7cbd14 GIT binary patch literal 601 zcmV-f0;c_mP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Fi=cXMF0Q*@H{X7yIPkB0{`#P4mM^|DAdrB{OQa7 zCugpK$4Nv%R7gv`l}$@RK@^71HK9cd3xtxO zwnaz^MHwwxS)1AzK@0bp;HG_%|DeF~5A?Cf7VUD?Lb4#Rh(5Ljp{>egkeToCj*WBY zdRoFf-Al&STDqmw7jfXCZlDE{nJdnBkO&TR00000NkvXXu0mjfjs+B3 literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_concentration.png b/SoG_SGreader/Resources/magic_concentration.png new file mode 100644 index 0000000000000000000000000000000000000000..e9071b979457a749cef37b2aa5ffb772457558c2 GIT binary patch literal 892 zcmV-?1B3jDP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5bx=%HMF0Q*Nu%d($o4Ua+yDRn|Ni_(Zre0iz`&h^ z?Bvu06FUE0DMrw}rrA49ZZeZ|S>adrRz0;NerK~zXf zos~^UR8bVi&(kO@Wkf4RM-o9H&=3X7g+&nIBm{lX2a=06MT<-*w1^>#pbrRgS_DBQ zScbG|A$`zBs7MQDlhtA(7deeZL-{q9n78?#x##+3-pq*o;BY?PedmAQeed39QH&iu zVO3G#q89@pq_lafhl0UzLQRmoYf}#ACx&LyjkXuJf0}qg; z<3(w@H>RVdv#1Cj9fl{7WdMlBLR02?CYEXM01aS)_A*_ec&z>|#5QWLj- zW+qL%ZSk9*c9nA+`R<%`;aU#`uE)oVn4Od&5Rm3)s{7azowdbIyln?~0)gHJhmb== z1ndo~8h07*u0Bex+!a(%+C;B=y<8uD_Q;H{YmW6u60+3%9Dl+nCa<%>%GN;~%d$u* zMMWELQ25PpiiF;C9b(|r^9FjWh1{N8BJ7iz%RvRP#@3)3xP4Lm7#%i-8a#lH^)Tk` z2rGA;-&_+z58Q{I=$-Hh_f_6BOH=5nWE=kQg?!ypTw7gI#U5-wHbm>I@@X!+m~)KH zD_F>+}+Xc`Qy>WI~2ylAJ?*4jiAFV1WqnwsbUQVz)Cr?LCW@jeZ&-8TC z^yml`pMPjRUpdWP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj56;Mo6MF0Q*PC@G5p88lSsOr0h|NsBGaz$tvXx;z- z0e4A6K~zXft(75913?gl_nImcrme^FD`*H35=?_Y;i&*q{y+_;)eQzgFeKDK0_pt) z47R@1ps>(4y+?+*o#n#uC7a#7+s>OevzKOJ#s1FQC+510jyGlQU%$%?rg=MSSOFeP z5j%rtgUdS^`aR-j|KWlHp<%aHM|s_kT^lG z)D?|^GH^f?ZV1-8C&|WFMGIL0AR^4D4iwS?td8r1{fL3*vGUqvxsG083fPZNH#Sxl zkCKQdprKe*A-7!iIzFB4xmVPJM0Gh!BFGBaAxi}1xOzO1_Y|sCF2b@A1hjiCfb*VU k^6yt$MgY67!ZdGZUuzEewg}6!LI3~&07*qoM6N<$f&d`Zxc~qF literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_fasttalker.png b/SoG_SGreader/Resources/magic_fasttalker.png new file mode 100644 index 0000000000000000000000000000000000000000..0c27f8218354c8d4105addef1afa1ff8d64498da GIT binary patch literal 911 zcmV;A191F_P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5icm~cMF0Q*{^Pd(*QfsR-P$)O|NHlqKhx~J|Nh~! z`LK8U#E$;grvBoy_G3)*UrL`*)!|x2;8Q`XXV?9}l>CQZ%#Z8zTs`~8ko?lZ{`T#z zB^32uL8u}V**z%TJtyHqET$n6)HWl-EgjD@A^N|F`n`skAr_S`74V5K^Vw!o76%?O z3wgddJ!2Xv)J!=500N^)L_t(YOO2IXNEA^N$Nw`f6s~6Evf8Ivn{8iGL5L3pSZ znPzwU!QtF{X7>E={ogyRf*G`-hdN~@@iUuC%CdRh>TLe?iBo^mNvwML2AwhDzQkcDe&_W0-Ua&Nvkj3Zlb znOW#r;=$mnxOs(h-KuP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5JWxzjMF0Q*HZQEsqt2B~!Bso9+1c4bG_*M*eWB>v) z{WbqVGziQnQDQj0@-xGM_g@(t1i9g~ORoe&X7p{SDh7t>OH~>66u-bwXBp1RkkNAw zs)~W()Wr}+CS(g}0YK(6LD@6~D3*YNs(r=_D33e<(ho8R88Dt(d=4I5*x~|2KY4Ky zssaaH%y1J;Nidyt{63flfoYbCU>c?d zWSNHJOt6p80prb^H!+g1(*J{C%^<`5gY+1rN;WVsGJ>-d!~g#f z3}>!CXP61J=pLgzSRNTL`pdll>-sEq1}p#qcb+a~s8Be8V!^ihpA24&>|lA2;mDT4 zEb4e*!Jr}?4HgFh-d84In&^CD6v_r=L3{zSlvsc@xIkc=tr0_5sSDUAAOH)V?G3-c z7E0(Kf(ryzb?;&DI(!byMh94vFf3(Fu`2{C0$BzE(xn^0GzdKH_6O4-!$BbDP(L_1 zV@t|dQ&$l%DS}eU4WLF4fLYcr#to)_h)OanT5y$tk}@P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Do{*RMF0Q*w^a7pwf~4F$oBR9Y6=AV=hMDBBl@Fh ziW3c>7YV&OBF|7V?Q~3kvfVHM00FQ`L_t(YOSP4;OT$1I#qXpb3c5KcRELTnNJ|D0 zMK>35lTOt^2N4`>iv1s43dRnCIOrfwMO?(if1q}#?I;x7-7QWv?{Z&zmtHPW@CV^u zj^=y$-d(Po`8?;pdKmwMt=c%}?@v9e!9%Go#+~yOP5%a~35uRHmxZo64NVhC40%*k zt#(@!El-V#`^x9HrU^34WwT;5VeEuDK+%g%Q_K}Jj;0ARgjrNqBXW!-@61URXc*$c zi{Qdb(VB%xb#A&+n(4h_O7NQPd_R$^09mLg$k4ue8 z<-U9?6=Q`;FuLBJm@icJwOGS76Ynk*0_n`OC`=dTqt=EnevG!rP&l``$Y$qf*hDVf zH^8@(I4%$s8DTRpeUQeu@IyR+2T_0)9YuHFUfJa7S>GUTXMxDG3#hSqSBG*|2MZn* z6OrhsCnFQKn21;tpdR^Q;tYT_E)_&)!gjP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Bv4FLMF0Q*)|U5d9LxXw--b*7JOKXg+yB_8|Kh>_ z>CgWk0H10Z&nvf-%K!iY?ny*JR7gvOl(9<#F%-s=+Qr?$p<)*Y#lgiZTf+7JWDXbc9qjK9rg)CD9UY&W$D(;Q)nD z1ExQqL{x`OQi+V2XHEp0=cfh`*yX7$R`8~kYflDIF)eM?mCGjk~Wc- z6!3_;;}A<*AJ-&nCvbqzcL#Wy(8_hvpQ#>iJ#YmiS&_P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5QBX`&MF0Q*Qq&c7^naM0$WK$K~zXfos~~WR6!iae{b7@Fey>ULkG)SNdzJkvf;sc#0t?L!jmB- zbO;YCNT)prWe5rFNw8Yz6w(rcOKb&2+mgqMElLRb3krtjCJD*fet$E+x8uB*KKj7y z{AQlaXMXdWL5C`wF791JABL~zn<e|?j7S8FPhwOO9lVp+u03%unkPQOCPSN-%$ydK-FJ^lble z{Z+xY3%rcCun24>Ywy&z(B#7d9r(Xp-VIqIMR^-%*sD%QZUTms1^iX8)UQ9*VOfeFqWJHP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5El^BUMF0Q*Ys%^#f2{xf--b*7e>0+1Cl$?w?vg(r z@wsi^g-ondEb6=enMETz8V&cI%+LS;0*gsRK~zXft&~kjR8bVi&y#_mqHxh*i<}99 zkfEp%CI~-TNG+xeT;wME*ac(jfj}}O%b?BBY+7oYB3w+mun#Jez`-{~AZ-NGkYpfb zM$&}fHUIPOdER&5IDzzo`|ig%@BHt*=iX~kg;c)ip#ERH7@y>Np|6>&&|%A}CGaTz ziy{NI>TM5#>3-;gdl#d$xjaGv5q%cju>?Jx&2zsNre9%bKTUkBXMz6dR=)@YWES|b zrC~QsEw9swBSkuQdX>j@5a{z0vD2P zZqgfXKX;rz^Uh$>aqPP*TwgkRz$s1KbTaJ`Zo_UCjKdB;-3Red5E~_At^iBLOuA!4 zD>L(S^;Rd*V2-!X1lt5V`~+|I8g;5>s_px$$8R|h0-6Qmu>T7$C)iJ-^KQq$Tam%s z%pGdGk>PflFu@YSZ0 zLmroZMQGd0SZ&L|vFHP8jz`HZeB&A-Zx+jZ<9iExIL7s{b)S%zcz~rLX<(spj9VIy z)0J45XDTzc3v8yJtYcnG;-Hcc&lq2bx0vbgBM0qpRDzwE@Wh8|^g z@rl4mifkJKT+Y7dwh6{z2k=M1rI!09`3odoke5^#|Fn;uq}si0gFy0RSy^4o;POEF zjxYiPd8SQX|46A8QOCioY6USLNDB{{2MAH1A6vU*@~+zApKWD{ZQ YFD)IX-zR-?P5=M^07*qoM6N<$g7zD17ytkO literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_soulsiphon.png b/SoG_SGreader/Resources/magic_soulsiphon.png new file mode 100644 index 0000000000000000000000000000000000000000..238d97cfc66ce4ff0b5ee83088c64afa75379f0d GIT binary patch literal 703 zcmV;w0zmzVP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Hc(7dMF0Q*@LE93D;WIv|JaB6xmoMHT`ze3FysE!(fho%_m>-44KbJ+D~cD~%(uJ%00JjTL_t(YOO=()D{WC2#@F5@ zg?tn40HyAg;NX(3kj2Jmc$w&DZpp=h75)SUox$dpw zKCk_3uXXl5I=@=I?^%1T_gU|=_BqEf|B3arClJB$?xB|%Q`7Lx%iiEK%;!umN&ah~ zLn6@6N&alqakYRA3bB|5bH@{ZWrRH^sPB5Y|A426Y+t1;bhh^(gXk{o?wqZoW1Z%?t=l~86T-rlbfXz)4 zxxOXH^#Q`L9iWhOLLr_AplIhzv5X)ATB5rEK@NxrHn24E?kd=M*ZI}#zLy8^fd%*oq@#O?qBUwghJ2@DmE`LQ=|Se|2`TOJlb0N*{# zIr!S^3)BL&)s^0CGA-HNrarS(^2xg&644bq0;mOdTqv?d3c#YzSpB_V_W!KNASD$A zvY#E%ewPV_9uMOZQ*}Wggh8-}`}N((#Uru1NOjqtu`su3Hv2EcHq`Zhg~`vZQHcj9 zXA;u|`{LK{KP~>-Wm^SqF7Lf8J+Mz(hLO~X_Bh>c!q&U^d-QT)etO-%51b0GB}P~Q l%ySLa$By3J0Qs{~=N06%Z~w+S;^F`R002ovPDHLkV1lm>N)P}5 literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_specialist.png b/SoG_SGreader/Resources/magic_specialist.png new file mode 100644 index 0000000000000000000000000000000000000000..999e9132244bb94e037a061fea12c5fd905bd01b GIT binary patch literal 804 zcmV+<1Ka$GP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5JWxzjMF0Q*q~P&XqQC$D|H2_5`AJF2UJ3u^y5Op0 zt5FGeApr3G|2n_@1asv7_3*0j|66_>K)sKp)KZ81zd6Wa761SOhDk(0R7gvOl}|_% zQ5?sABMYGrc8D@uh&+U+Flg&g+IrXx#IP0%Vvz{!5M6{|(?de1wnOM8x&#rr1-m9j zqOe+u)lUs&D|Ew{ALk=9mu=gqd+S<5m7DCR|CzDs5mel9o3tb!?bNxTHAcqsXpqhj-U zn!Zk_I5%aw$dTv*eOYqn8@M~t~u+TJ6)=Y+3K*dImXmpK|d8l{!H zBl3wPwH6Z?kYNDaU)@I{bGlxLPg${%?&pE~;veBezY%^q!tuuM1>yUh@W*$#hk9>U zeol&yF7nbK0(|XTyCda|Z*V?V)yW-UA0l7LrJMaSBbqQ|3OtWYlpH}aFR1g`DCdfr zlD8)(o&CT}QAl-Vg69#L?|8Q$GdC92U*;16=^duYceO^chcu2k6vdbq5Om_X`muhuZ4-Ay9$?PhuRg il%~WiR*RuPr}Ynwv2*@)M|17~0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5KTu3mMF0Q*VJ^6~c;5f|-a8Eo3<_5k6n2*g0{^>O z@H{Veiu^1oup}XoWH)uqcfH$b3c+0khS!2`WPckYs}J72J|} zXVe&MgmuA!$l&5%A1I4~fs0EX%3@&n_U$2*#lWD?yamcafFo}&Gi#_7;ZEZ{9KRiU@(_K{SXD5(mk{e1V*zkO9Fs z0T~Fx5!p6iF%XR`P6!aR1O{Nq83xe#_yA5zU_k~73K$4+1=kF48U*k~I1CW&6HrnH z;Rg?w!`XlT+=a^G2Pion9l(+^s04ud2*QVyVQg$71bqPl1bqSvHW)_czkOAVGesc- vCQ$VVW#a@OgF%MDTnuBw`1pWVhY}+I=6x^yj8)Fo00000NkvXXu0mjfOaUqa literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/magic_wandmaster.png b/SoG_SGreader/Resources/magic_wandmaster.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab0ee731aa7e72604e8a86b2b95cfdc7f011834 GIT binary patch literal 660 zcmV;F0&D$=P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5IZ#YgMF0Q*_nKS(_SxD1O8@P}_RxO+KQ#Z3jQ{27 zWB>;II4}S2^8f1XmJtj8qM&P*ApeM@|Ju<1^zxAj!(IRY0r^QpK~zXfot3dm!$1_q zU$lZ1$KpSrsgtXVgU~?-7s1VnsE|U%MO>U5oH_{IDp*hl3nD0jh#;tR?WmKsjxHj& zNZUnfzstS&ay@JG2glu|m;3U4FS$C@rm>f9q5p~gg)KcIY94LtQ8eP2lH)`Xs1B^_ z8IfDhhlKj)R#o3TEvVi`kM0$%@nJpkVF7pYmE3%a+?NCL2F3zs5cr(&8;dd0eMrQq zJnNAVct0jOza>g9>tDj`J=Ro{;NHelDG&;YFnFp!U^eBqzCNOxE4{)85iQ+qs3zk= zobhCu)()rD+$uuxgx_Ox=HiU1izj;W4cv1AGBOD5#3s}@5Rn-IH#bjS`JSrfA-`D! zBwQb}HbA{yoFOdY2{1>2i%%8ulH+=*PqF^c@fx!L(|cJ6#iyKbhUU!>D1N*tv0`pt zUkzgl0Mk(rmni_Su{W4dV&3LThYOnkBZcgRH^An95nxy-rsn}>J!~~#58xOx=>u*TyQ)xYu?0$ydJ40jO_@CLU0O4sRbXP@{9v; zwmUMVXMSA&b|Q}u2{y#W+{_4-NZ0P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5JWxzjMF0Q*{ftGb5()iUGq4p4|Ixxu1Oc{86onxQ z`OA4iiMVUZ>LFH0D-?f zuK!mFaf0#RDC7Uc@HdEZsmzzoX8$~$#DPd zO|V6t`|KG)Ejt*T>r=sMV8IAV49I|_I00F(t!FudS4kvToTu6oOe0%_4G;`2SQ16H z;K-sK4DvJL!9fE9AT`(kQ-nW$OJG41{pc4%MZq+%1=shVgIj`hQYc1dL(wD3-u1$UgN7uLU3s zGX!QJG6so*ECX2p;=?ULw*W*tb?zYA2gn#^ILtyuP#A&?K~JW*BKge8hv0Aq(f9y3 fE`We}*;z&awr=J)0->?~00000NkvXXu0mjfMxO^X literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_bloodthirst.png b/SoG_SGreader/Resources/melee_bloodthirst.png new file mode 100644 index 0000000000000000000000000000000000000000..adbbed8ff2f9b0db841eeb4f5b118bb98a9ae8ef GIT binary patch literal 945 zcmV;i15W&jP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5PEbr#MF0Q*`_3*A5D-jCN`-@iQBP0xjU6{OHua|+ zu&b**J3Ad594ICx(pe8+2naejIQPS;|NsA~5D@zB@9kDr>~;tyBqYtp$DNs(l8%lc zjD6Su00RL@L_t(YOO2IJNYp_T$KP*pV;2_IwJk7`pq9-D3}P>ChGiurX?4)@R6<5x zg3v8Q_Ry(7w?miyc&Nog>7htN#mbUQFA}w|XbT~A$V0kX?&7A0ZNAUnth3WE2qoi{VT_cKVa^06ch3$|B$r$c@}eHa^~`Gp13yM`-2pIVxm%@NVW!~|QP&&O6W zK0eO&Wq-e6NrsBj%WvnY?23(>*XyO9v$HI4s;Y`7N-$Q1d;9u0_`8u2>Ij8+tRvn@ z8xX1JE~MdWGwj^iw8)uUYG|P7)D-*Vs!B^s+3qhcW(zP!%?4rs*~<3}b*lif+2(e0 zHm!jG2N@h3B&XBKA`rOM-p&cci>LYs-)oo?*cm5d;UL_fxdHCQb)RN_dRG zU0q$|@pv+ssL0jg41s!H0MCs`y))hTbuV@9`C__>?mYiPZ$vgy=yN2J>FdPfahep_ zV#QblGN`Gp=HM8!h`wE*(I2CGufpW5UtQHPv2_qtNhA_%9S#RCK+jSYv6#Mpu$9$u z@Ys{pgM^i1*dKil=yWQ@WB2edwFQG&7Xm;4Sa5yyrqXoc0-dzk*aCk=_sxFLzuevWhQU zBF>Nfsu=om&eonDt_b?Jt(ysioaenXcf(F+r>E(eC^ynSd)>x?yUhmSi(*UHBX6?( zo7v6Hj-s_}D=PSjZ3bBwQTC(JD2w1s zP+B$=k$=gXqGYIi5(P7vOwyugD!Kq*5p+P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Hc(7dMF0Q*mk0vtJuv^#!Zr;82qs4mHeiJz3iYCM z%UL)i2?BP`{2^A6%<}&^g2M3o|2A%)4KP(Ejkojgi3?bq3Ylgj7n__iMDjn z&ath7xI|jQGyik%d0u1lUZC~|H}`+fz4x4Z-aYSyz`W(Re+C=5-L!^(zli?@{QK~; z^67y3n;NM6Wmr%BI}0r#_6eLIkM^R}ayP_AlY_uLt%$7BfL283r%A1d8j_n@U9z_w zrC*Q7SaT3$fB-#Z7L8Ai(zlHro*aJnk@|Livknh+QK0bwYmiK=)7bJF>(!28dehs? zx~{W>=AO;d;_*2heo%p~WK!E2qLC_#7XvI@{*k7)M`<1-5I{x`7hba-tSO+O%7SbA zBmnU9Zw44Jfd$gaC!%^*fs-Q}2_RsdxetDDCl1KOEIoUF%eHRcx7((+?9XSm(@y`W zRz3LK(dInXV;}Zs`*bq#;wYtsCVT9LXAs>~3cpdeiPj-qrPDJgAi-d+bKeAnK8+0uZDK%wll6a3SwZ zq+Id*MW;``>sfdHdhr66bLN|d0*Egu8%|v^puS;6w@N*;0IorRdTf{fGuh)@6=mYD qh$Vbl=LC-7OinCX#%@%^621#Nxq9N*u(00%0000P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Fi=cXMF0Q*GeJAgt+2>?o* z03}a_AqoJ6`~PbT%<})rMF4Zo|3tn8@c;klWx>yNiED@;}Iq1WEg8_8D-}mr8ttKi(c$2kXRU4u*iS zsS_65c>mI=(l5~^du5RTM;NE;W&aJm+wGJiY*C}jB9pZqapK?l;Kn<+6FSQPtgQUO z7&3s3`?&t8C{S{KKHzzkR{-24WU#6NU&buNmg);63Nv?j|`D&V8;a1==EUtYHb5eTYUgEn@>3>Np@UO^nlJ#Fn({?0aFun|&97q19wC3KC p__Q4fKKF?RxdH9u0>p8w{sK_F4;DeKr6&LY002ovPDHLkV1lT|LfilV literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_chillytouch.png b/SoG_SGreader/Resources/melee_chillytouch.png new file mode 100644 index 0000000000000000000000000000000000000000..a78fbcec332b8696948f6be63608b9aeefadba1c GIT binary patch literal 840 zcmV-O1GoH%P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5LQqUpMF0Q*>OC+_%-^u}|M2_&7kJId7z^e9@@o$U z=5Ij#^5aYj1pCvp3?cvzDgklOJyNqB7CHmkX(%gW4*H{M@3%v(t}BNC00N{*L_t(Y zOQn=wNK_J4rM3PVm6K3FAxBET!p1U8{s~LUZ-1GaL-~FBM@BGg02rRW6 z)jG!KH28F0W4~H3JgnyCC(9%z>+-(rw;S@iWH9n}f|}1YQrY_n+Bn^akOg9b(;8y3 z-wC(r9l^%>lS5Wwc+3&sDRZ;4C6Tr=!>cFlNn|P6e~c3Yc+3$OWfdF7IGr?E?ZLZ!y1@Bn8d&&D-2pEhA86WiFh_7*U$r&ua-d8rt}U>~9C3UD z_%=Fx9{w&c#yYH!d&Tc#P2QJW>U=cl*9Z?M5o}((+GYueNg}%t4utsbgT#h0VlWSW zV$|A7w^moEProi)1-uISBIHaDmIohDP2#CJBRYH}K=D)y%`beRXl;cV)fGC+SeRRW|M z2m$-G*x9OzXlH=eJ^ZwR{v`9?>5?v#O2#?K|G<@CV6O(K{n-g5P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5LQqUpMF0Q*4*vfB|Ns9VD@d*6+&YtT z|Ni^u^zYXA^fD9^8%$O*6cXp1J(n93``%5?VL;)EF=iPP{{5p!ZWmzy00K2hL_t(Y zOSM%^FI-_1K6gZ=q$FkrF_J0Es?FS@A=XI5$3|;mXCbLYV^JHrv1%L3A`$Dh3C735 zFPI22Hkw-0LKDVdG-+C7s_x}EnR9#ZHFM_@p5)1S@B49{^Pcyd8HKK}`@*Zkt}l9E zsJ2~WI~hKw{;pgeyIBM5>lI&)70>X4LKe6SbetSm1cC5FziyqmC%6(pbcoW9z~=-r z8*X(II37*@qWSz1CV(JfJ$@r)YEGV!x*Ll?;PKN|b`FO^2mm4^j9w&3!NaGk5;Md} z`KKdVC@4+MTH&|{A}C=Hm4I(e(=3#A(7uK<0IYmtpZHB%UC1ROF%!`N5~Z21t5jZd zLfZVGp+Mxb^YqXVg4MpS(1-WE)Oix)u^Zg@;msIq9-y7C%SMGE2ST6sGa~n@|9@1+rM2|0vXFw!75r@%kcS2` zH6bb!P0kIDMhf|g_5JB4eInpxhJ0Q<(ALe=wR3%TcUuouw^*7^n5j{vDPa{HRQ+C7 zUtMdY&C%aH?pxZV=wX~1KMv8}P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Do{*RMF0Q*$s-i~fGAD`0nzjSM*<4AOca+00{P2% z2qs7&R*`GU>Z#`Y>0MC7;z)S_00DwYL_t(YOJigJf|JT3|3Ne@fcf1wjEsL9H2$Ai z{D#3KRs<}Fi;WL})Zqh+)bIteL$F!M=*PnNzgk|Hq4nWgumCcfSOC%k10W00En>X* z`TzeP2BHic7hZz}klDllonB3bz?Pd(9>hX)ix}ORxZuInq{szj5eLv61G5m_BF1e# zkT{vR?HfY?+YhiHsle*>UnmP<(fS&7R7*e>fP8@*fme#JqXZo(!B{KEgyI{0w~l0A(WsxKD0{v_pj`0~_Y%foZHh@hXXgvJe2>^&o)F2QaX$XE~IG3gDK^jfsP@ z5MVBpCInF8gdq={!jJ(<>Ouyfl!2VWC`w&)$tTD;eo?d=l*PdC;Mfr;3pXG-$0L_r zqyz~Jzzl`~tYsH+DGZ}Y1t5JefNlW@(5F5D5y-V8j3xzOGZ+TU@4jIK03IpgUr}M* Q^Z)<=07*qoM6N<$g85C+g8%>k literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_insultinjury.png b/SoG_SGreader/Resources/melee_insultinjury.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa52901e1a1fe01c9099e34e668a8cd26944a11 GIT binary patch literal 750 zcmVP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Fi=cXMF0Q*y$t}@9})K1v-)-y|L@WFznOJ22+3>} z>5n^|Nf0;~0-ZSx`n_ZS|Nq^CFVjRrpa1{@TuDShR7gv$mCs8RQ546|yfl&!vOpoh ziXdK#eqj&~5+bEl(MHswndv8 zy&Xlfa_NrfKp5B48F?F4$jDoLkEoDVSN>|Q_mAg;spp3e7cKlgaaV;({5>v5V7V|~ g|3hL}x4S06A5?0ojX;v*VgLXD07*qoM6N<$f|(*;5C8xG literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_knowledgeispower.png b/SoG_SGreader/Resources/melee_knowledgeispower.png new file mode 100644 index 0000000000000000000000000000000000000000..7842bbac5e13e13b690e7699a839f8c2c7212f34 GIT binary patch literal 777 zcmV+k1NQuhP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5S5Qn;MF0Q*@_1SLwtm%9Jp1kU(?~Y%Rz+4PVnZTJ zx>(KUhvs`PjF&;F|K)w$f*k+<|G^?6{(ne{Ih^$4_vtJwloJ3u4GS?DIl`=o`{>k3 zFC>a@N=qtKxQ;Ky0006|NklS|+<*y0aF)&kTVTQK2o?l^gV*;%S(pHy95w*9 z1RdOcd56JX6Jnuj?*=dp0x&j64y1-yfYlOZaTPEPGW71;`Cv8(fY>mLU}|81)w7X7 zXZuMg4;5gw1O#A)-Mh9COoIT7jqE!RU=iYAIHar$#vsek0ZvO`0NFrv!$Dx>jk#dM zZDZBI7{nG_xeF=_0XQu|4knP{$QHolBq}7~7Qg^Di*Q=9dw(yAMKAyo1If8AH^Q(0 z24EJ!f)1Wf&;cl7*KKcL2x4e}ia-EJENhh?*bogaE{4}@pMb?hgJr-pj1Q6nsj<6z z7q=xKU?6V@cJ-5YkHLHyAz7f93In$c2gBu$_kb8I3=G`P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Do{*RMF0Q*&leEuS!J>g0QU9$Y6=AV=hMDBBl@Fh ziW3c>7YV&OBF|7V?Q~3{U(nnD00FH@L_t(YOSP3hOT$1I#xGhB2c=7qiq)Ymf>1hE zbdheZI#?ZCir~_K{SGbx<042G2hqU}E^fuO;8MSUAXE^^(ycg@+UIg_dl&C6QSb-h zo`mLo@;>*c4ja)~NDndo2gT2x;{^Lvt3ms*!N<~0Rnfn}YJ#HWj{(=M?6jhZB!-SD zs&2o>i`FwU{N4+`6itv}ZZ^$F9okN)0~Eb@?eJ%{d{NN^8N$re)sz@x*)6UJ6>1pb z!iV6(N70-`NxeVa3#n(=x)e&)1Pr&D53Dva@`3^HC>mXAX?st|30>)n+~bLEN_ul- z=#)>yol3N3N{mKm9%RnfH<<6(@dtR`J5o^$+>;ig%>M8m*alb)gW*<+HpnU3hMq8$!DoZIPjHp|r-9R~Ok_AvZR_ z-box6Fhxe#40Ib(8y9|v7w{qq(4?d2!OJt7KRp{8#H}n~JiCA#n}4N0GBDw$n21D2 zJsIh+#YDuK0Qty|5@!IcamgS$9kwH$;D5hKy7?=ayN2@(p{3xb(NSz300000NkvXX Hu0mjf-gEuV literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_riposte.png b/SoG_SGreader/Resources/melee_riposte.png new file mode 100644 index 0000000000000000000000000000000000000000..2de209dd101e620d3bdfd3dfb3eef63f76bce057 GIT binary patch literal 738 zcmV<80v-K{P)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5El^BUMF0Q*_)!|_8UX*Li~rx#_VxW%Cl%=N`;tE& z@wsg~8V%otOsrEZykRw&MI(dZn|1&I0#ivuK~zXfm6gp)8$lSx-(6Nxi--ss2}qPG z)QT4i6}1O1t)7a7LJt-7FAx-R@giQl2yN+KP{D&ji(q@G?KLfJtzH6ENQ;UP{HP&B zXbiOKJa6`0$H``mKbXwN?)yA5?`&o)Qk*=FoS_!7-%?aJJ4@6v;EpK1e4xWvjHY~7++i8rn{X@?nr^q^A&R3HdF5Y ztS)?|TPMEXQ7{P{h)CJg zO5sd0N&PwYQian1F^Kg{g2ZK&c&GBj4DbC#4Jk_D|9VBu)8=e(nP?vTrP<_zE@&G{7^3d~GPQ0(k}yV>NeJ=WOaN U5C2H|Gynhq07*qoM6N<$g1$vfwg3PC literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_secondbreath.png b/SoG_SGreader/Resources/melee_secondbreath.png new file mode 100644 index 0000000000000000000000000000000000000000..b86ef055002187330161acefe252d277eb9b5fab GIT binary patch literal 1300 zcmV+v1?&2WP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj64p2-~MF0Q*HWsF4I@M7r$!0m##f$s@@5gi&2>IX0 z`ryg^;l=fuVep1k?t@a2B^Jb7I@)$j$Z<%9QRMxAC}<1?Zw&?e-obVZ1$GSu{j_uc z`}hC#>ipco|MS)T-^2a8eg5_8`_{PosBDW^<#iAT`>$~Q^5fihO#k-m|Mu(pq-t^v z1^egJ`{>mD?%wg6XZogY`TqZS4+otR2i>Wd{OHsD?c8(@1?@gD{h4w5<g%r=+*k8X|x^^{OQ&3@csFuZv5)l{p{P|MK}B7&Z=_p=Vws* zq-%8&3N#jr|L3p!)3jj+3bGpy&p#ynmo(00X2+L_t(YOQn@* zNK{c2$N%q*(`vMU6(-SQiy2y$nzmElin5}JAX@1|w3|fVDk_7~qQ10J6cL5AfDua3 zo-r-z7-J4(E~QpZjitHF%zLkU&b+HLE>QG?JNLZvF86=`=iPfpfgowtZ1y28VO*R)J2#kTGFCj@TbVQ50AdKU(uIz~^p)u4%Y>iKYWP5N2-9-5jp^cKs@ay-Dn zxP^d-mn=<0%IXx9KXqZ;ksQF=2(7LR+Jaa^(GE;B)SZ_=LTNMS;B{FI_HInTlY*}t zlM51%sOdMk-xWCp$4edp&O1Qwew-`6Ulb4!7$j0v2$bA~${CZnsl&_&u+mbyLC;>n zeJ_g&y;um&*##tTLB#`8!1r6UfP2F5>!BjS6gWP2aY2xibm8LY`?o;KX29>`d_?pJ z?hQj1&ES|(!$L)-r-y~~ogsn!Q3;5(s<;w64b@Mci?Yzl+Yr8DAD2jCXl;Q&_xJ3i zC;VciX_F^medbn-oRxypG1H*?TE(owL0doNgv6QZQm&R?frCfeczLP{avBT?W!DyCyT{Az%!jIgQ1lpR_s@!NAr@$s zNzyLT)9QmEK`Cl9I=MgI=wqRWj(4cLY!@z?g_#~iB+m0XYU-Lf4t7J0Vs1%I+?K`I zc^nB*3BB&`a34MdrB8p(L$!z>1tBN?M8-2zqC@~%fi%ZQn9k3G$ zq#J@91w)e)c1K^J&v1^>`UUCZS8-^o`G}UZW&B+hReazap;tLzIPP_b5b~o+F^SzZ zntOT0$g9PcwT+)!Zam{1mRVYh3-y6g5mF?iTyhe-D`?w_6?eYBBy=E&vTyac?e<~E zj7WZFett58pmO~y(v8P!QlLy5#p6aVpegsOaaT{Y~>FCkj>{_4Oz_q0000< KMNUMnLSTXokbma@ literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_strength.png b/SoG_SGreader/Resources/melee_strength.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8a82da43d9cfe6c04f362bc4ac0a4d68c811aa GIT binary patch literal 615 zcmV-t0+{`YP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5El^BUMF0Q*&leE?vw{0-Pyg?}2qs9E2m&Eik!#B8 zspk7f0t)%dc`O77woDY*bTT)=wG#jU0oX}IK~zXfot3>y12Gtf-z&E$;s+v95J9IR z2(3$)0E2R?8lZ<5PH-b->8)w%8OuAv0MT#Bms8y-2aHSv5dwd3nw5xEQ~~D2{5}Nn*eq)hm_%;q1eg~v32+mM zRm668Sd3C$jhg^8B;Y?Q@)7`t1n5M9iGdzoYvLsUEfS!LRCF?v0B9w^OC;ka0JdAs z6ZO9A;yML+tOJ6?{u+<;*m6#FjCXbN8qvkmJFhiCzt za!!%n8CK7~ov>1eJSOX(WOWq_$DY?6;GkiGqe7DA!uop(h<-?n_Zcs>Jo|oGnT)p6 zaA1&zmZn$?9`?@YzVyiIVw?%>O2jEfu1EW#yw%Lz>nRlj3&tC~MWS94@<)X*6X~FI z{)>%kS5;0wEIMo9NP*+dg*O5}|U%`U3?H3U0m?%VPil002ovPDHLkV1oO` B3Mc>o literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_suddenstrike.png b/SoG_SGreader/Resources/melee_suddenstrike.png new file mode 100644 index 0000000000000000000000000000000000000000..0429a966e63c587e5d5c335cc519ef066cba89e5 GIT binary patch literal 509 zcmVP000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5Bv4FLMF0Q*^^F~rGzrvD6ZerE|Ns9QRh)Cl?n98u z>iPewJ`A+y`)%VbLjV8)cS%G+R7gv$lf6nqF%-wsOF`Ss>Lk`hC+W~Z1xN7(bnpor z1qU5`20=wdH+R87`UXxS)}@Fai&Kk>(CZ*p3&qGk&9TYtX>x=9Amlqg&PgJ`$6iq$ z&*miR`{hwpJ`X3<7#LqYm0LHlDoY1d`P!DMU>qd(n&;vC2!qOG@EEtn@J2)TY|0DM zx@D8!tgC%VaDJrQ7Bht*@pV+xy&l`;5#17^8h3Q7OKX2p?c-o2TqG_57!(O$B`#{$ z&#Im;WL2Gppmgoj-c-#Au>Q~KA^}}|GG$o*FX^It;qJsmY6%JGPFzG;`&R@-LMa26 z^>^L!lUia5La`*tFb5G51z;mFpCW$p%lVo(+r7{uUC_t4`P74+Fu>;Z+m`OR!8-0= z5#BpN3UPoL4HpFmrQazznalrvN)kO?-B|+6W1S0cBo8ZNeIiqUc^_WM)MBnr1W15+ zA6^MCMO4xXKvb$UGrH}BL{waScX~&bD$UFf&TrQanyp7Y00000NkvXXu0mjf&1~3e literal 0 HcmV?d00001 diff --git a/SoG_SGreader/Resources/melee_wit.png b/SoG_SGreader/Resources/melee_wit.png new file mode 100644 index 0000000000000000000000000000000000000000..698f4ee439ec8afbece0efc374dad7f1ce27de40 GIT binary patch literal 529 zcmV+s0`C2ZP)P000yS1^@s6cz2e)00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj5IZ#YgMF0Q*@H{V<2m=4_(NZYX(31RS6An%j5ZW;$ z_Ips36bk?4ecXZ^I}HoMtcm;R)JZQSif>9)8W%TiDeM3M0d`45K~zXfV`Kn=4>tP$ zK{PU0e&#Ym#`E(~9s&egGBd0_{uj!_1R(jkEDb1+fx#e;g^>}T1?eibP!Zz6%sYoM zEMkGuZ~(KwU&WrGM@|eXN*Ks^=`a+`*azjI0wyR82FMn;GyZ~#B7o|aNEDh_fMN+Q z05kNq&vF!+Sj&jA1ldp+1_78jAwbX)n1Sf7#wCso5VVAlYl-mxR&YcgY zVF1R5$>ReAEpe5V0@MH2bASzoVGth#VDk6?Q4tSwEy!RP1_5Gx0Rlu>0&^|QP#8^& zFF*hz$0Gw!E=C543=lqyCKjNSU4(KxA#m|O3)Zp=Z*VR9$w(5u`U`vMj5D}En%d{r zL3s=emNwo{7A81;WGh2^^K6Ds_nt#VPyyaJ0civQM+Y^A6Ne9i+1SAT1Gk_o>;SJN zm9?o*7Ji>t*g|}Q3t&`Qu*eV7c4K(<`3qE(cyQ#=F^q`ETK&Q-!UjmMepwg+Zc@2M Tmj~qV00000NkvXXu0mjf6Z^}j literal 0 HcmV?d00001 diff --git a/SoG_SGreader/SoG_SGreader.csproj b/SoG_SGreader/SoG_SGreader.csproj index 1be07ac..189e250 100644 --- a/SoG_SGreader/SoG_SGreader.csproj +++ b/SoG_SGreader/SoG_SGreader.csproj @@ -313,6 +313,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TextTemplatingFileGenerator VersionInc.cs