diff --git a/DrawPool/Controls/PoolView.cs b/DrawPool/Controls/PoolView.cs
new file mode 100644
index 0000000..c480a44
--- /dev/null
+++ b/DrawPool/Controls/PoolView.cs
@@ -0,0 +1,213 @@
+namespace DrawPool.Controls
+{
+ using Hearthstone_Deck_Tracker;
+ using Hearthstone_Deck_Tracker.Controls;
+ using Logic;
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Windows;
+ using System.Windows.Controls;
+ using Card = Hearthstone_Deck_Tracker.Hearthstone.Card;
+ using Core = Hearthstone_Deck_Tracker.API.Core;
+
+ public partial class PoolView : StackPanel
+ {
+ private User32.MouseInput _mouseInput;
+
+ ///
+ /// The deck hash reference
+ ///
+ private int deckHash;
+
+ ///
+ /// Indicates if the window is movable or pined
+ ///
+ private bool isDraggable = false;
+
+ internal Point mousePosition;
+
+ ///
+ /// The list of Cards
+ ///
+ public List Cards;
+
+ protected AnimatedCardList AnimatedCardLister => this.AnimatedCards;
+ protected HearthstoneTextBlock Chance1 => (HearthstoneTextBlock)this.FindName("LblDrawChance1");
+ protected HearthstoneTextBlock Chance2 => (HearthstoneTextBlock)this.FindName("LblDrawChance2");
+ protected double ScreenRatio => (4.0 / 3.0) / (Core.OverlayCanvas.Width / Core.OverlayCanvas.Height);
+
+ ///
+ /// Gets the deck Hash Code.
+ ///
+ /// The deck HashCode.
+ public int DeckHash => Core.Game.Player.Deck.GetHashCode();
+
+ ///
+ /// The Hearthstone Text Block With the view's styled Title within
+ ///
+ public HearthstoneTextBlock poolTitleLabel => (HearthstoneTextBlock)this.FindName("BlockTitleText");
+
+ ///
+ /// Returns the list of Minions Grouped by their Counts, for statistical purposes.
+ ///
+ /// The list of Minions Grouped by their Counts, for statistical purposes
+ protected List> GroupedMinion() => Cards.GroupBy(c => c.Count).OrderByDescending(grp => grp.Count()).OrderBy(g => g.Key).ToList();
+
+ ///
+ /// Gets or sets the minion count.
+ ///
+ /// The minion count.
+ protected int MinionCount() => Cards.Sum(c => c.Count);
+
+ ///
+ /// Writes the deck mix of minions in cards.
+ ///
+ /// The count of possible cards that could be draw.
+ /// The count of cards in the deck.
+ /// The deck mix of minions in cards as Minion Count/Deck Count
+ protected string WriteDeckMix(int possibleDraw, int deckCount)
+ {
+ return $"{possibleDraw}";
+ }
+
+ ///
+ /// Writes the formatted draw probability text.
+ ///
+ /// The .
+ /// The minion count.
+ /// The formatted draw probability text
+ protected string WriteDrawProbability(int copyCount, int minionCount, int drawCount)
+ {
+ return $"{DrawProbability(minionCount, copyCount, drawCount)}%";
+ }
+
+ ///
+ /// Checks if the deck changed since the last time we displayed the view.
+ ///
+ ///
+ /// true if the Deck has Changed;otherwise, false
+ ///
+ public bool CheckDeckChanged() => (deckHash != Core.Game.Player.Deck.GetHashCode());
+
+ ///
+ /// Calculates the Draw the probability.
+ ///
+ /// The pool size you will draw from.
+ /// The number of copies of a card.
+ /// The number of cards to draw.
+ /// The decimal place to round to.
+ /// The Draw probability.
+ public Double DrawProbability(int poolsize, int copies = 1, int draw = 1, int dec = 1)
+ {
+ //double dp = Helper.DrawProbability(copies, poolsize, draw);
+ return Math.Round(Helper.DrawProbability(copies, poolsize, draw) * 100, dec);
+ }
+
+ ///
+ /// Collapsed the view.
+ ///
+ public void Hide()
+ {
+ this.Visibility = System.Windows.Visibility.Collapsed;
+ }
+
+ ///
+ /// Gets or sets a value indicating whether this window instance is draggable.
+ ///
+ ///
+ /// true if window instance is draggable; otherwise, false.
+ ///
+ public bool IsPoolWindowDraggable() => isDraggable;
+
+ ///
+ /// Called when the mouse focus moves off the card.
+ ///
+ public void OnMouseOff()
+ {
+ Hide();
+ }
+
+ public void Pin()
+ {
+ isDraggable = false;
+ }
+
+ ///
+ /// Indicates if the Pool is visibile.
+ ///
+ ///
+ /// true if it is Visible;otherwise, false.
+ ///
+ public bool PoolIsVisibile() => (base.Visibility == System.Windows.Visibility.Visible);
+
+ public void SetTitle()
+ {
+ this.poolTitleLabel.Text = StringTools.GetLocalized("MinstrelLabel") + " " + StringTools.GetLocalized("PluginName");
+ }
+
+ ///
+ /// Shows the view.
+ ///
+ public void Show()
+ {
+ this.Visibility = System.Windows.Visibility.Visible;
+ }
+
+ public void UnPin()
+ {
+ isDraggable = true;
+ Show();
+ }
+
+ public bool Update(Card card)
+ {
+ if (card.Type != "Minion")
+ {
+ return false;
+ }
+
+ var match = Cards.FirstOrDefault(c => c.Name == card.Name);
+
+ if (match != null)
+ {
+ match.Count++;
+ }
+ else
+ {
+ Cards.Add(card.Clone() as Card);
+ }
+
+ //Label.Visibility = Visibility.Visible;
+
+ return true;
+ }
+
+ public void UpdatePosition()
+ {
+ /* OLD CODE; positions near top of screen
+ Canvas.SetTop(this, Core.OverlayCanvas.Height * 3 / 100);
+ var xPos = Hearthstone_Deck_Tracker.Helper.GetScaledXPos(8.0 / 100, (int)Core.OverlayCanvas.Width, ScreenRatio);
+
+ if (isLocal)
+ {
+ Canvas.SetRight(this, xPos);
+ }
+ else
+ {
+ Canvas.SetLeft(this, xPos);
+ }
+ */
+
+ // Canvas.SetRight(this, Hearthstone_Deck_Tracker.Helper.GetScaledXPos(5.0 / 100, (int)Core.OverlayCanvas.Width, ScreenRatio));
+ if (true)
+ {
+ // Canvas.SetTop(this, Core.OverlayCanvas.Height * 65 / 100);
+ }
+ else
+ {
+ // Canvas.SetBottom(this, Core.OverlayCanvas.Height * 75 / 100);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/Controls/PoolView.xaml b/DrawPool/Controls/PoolView.xaml
new file mode 100644
index 0000000..589f883
--- /dev/null
+++ b/DrawPool/Controls/PoolView.xaml
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DrawPool/Controls/PoolView.xaml.cs b/DrawPool/Controls/PoolView.xaml.cs
new file mode 100644
index 0000000..8020284
--- /dev/null
+++ b/DrawPool/Controls/PoolView.xaml.cs
@@ -0,0 +1,15 @@
+using System.Windows.Controls;
+
+namespace DrawPool.Controls
+{
+ ///
+ /// Interaction logic for PoolView.xaml
+ ///
+ public partial class PoolView : StackPanel
+ {
+ public PoolView()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/Controls/SettingsView.xaml b/DrawPool/Controls/SettingsView.xaml
new file mode 100644
index 0000000..f35da0d
--- /dev/null
+++ b/DrawPool/Controls/SettingsView.xaml
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DrawPool/Controls/SettingsView.xaml.cs b/DrawPool/Controls/SettingsView.xaml.cs
new file mode 100644
index 0000000..7bb52cc
--- /dev/null
+++ b/DrawPool/Controls/SettingsView.xaml.cs
@@ -0,0 +1,92 @@
+namespace DrawPool.Controls
+{
+ using global::DrawPool.DrawLogic;
+ using global::DrawPool.Logic;
+ using MahApps.Metro.Controls;
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Windows;
+ using System.Windows.Controls;
+ using Core = Hearthstone_Deck_Tracker.API.Core;
+
+ ///
+ /// Interaction logic for SettingsView.xaml
+ ///
+ public partial class SettingsView : ScrollViewer
+ {
+ private static Flyout _flyout;
+
+ public SettingsView()
+ {
+ InitializeComponent();
+ }
+
+ public static Flyout Flyout
+ {
+ get
+ {
+ if (_flyout == null)
+ {
+ _flyout = CreateSettingsFlyout();
+ }
+ return _flyout;
+ }
+ }
+
+ public static bool IsUnlocked { get; private set; }
+ public IEnumerable OrientationTypes => Enum.GetValues(typeof(Orientation)).Cast();
+
+ private static Flyout CreateSettingsFlyout()
+ {
+ var settings = new Flyout();
+ settings.Position = Position.Left;
+ Panel.SetZIndex(settings, 100);
+ settings.Header = StringTools.GetLocalized("PluginName") + " " + StringTools.GetLocalized("SettingsLabel");
+ settings.Content = new SettingsView();
+ Core.MainWindow.Flyouts.Items.Add(settings);
+ return settings;
+ }
+
+ private void BtnShowHide_Click(object sender, RoutedEventArgs e)
+ {
+ MinstrelPool poolView = Core.OverlayCanvas.FindChild("MinstrelPoolView");
+ bool wasVisible = poolView.PoolIsVisibile() || false;
+
+ if (wasVisible)
+ {
+ BtnShowHide.Content = StringTools.GetLocalized("ShowLabel");
+ poolView.Hide();
+ }
+ else
+ {
+ BtnShowHide.Content = StringTools.GetLocalized("HideLabel");
+ poolView.Show();
+ }
+ }
+
+ private void BtnUnlock_Click(object sender, RoutedEventArgs e)
+ {
+ IsUnlocked = DrawPool.inputMoveManager.Toggle();
+ if (!IsUnlocked)
+ {
+ BtnUnlock.Content = StringTools.GetLocalized("UnlockLabel");
+ BtnShowHide.IsEnabled = true;
+ }
+ else
+ {
+ BtnUnlock.Content = StringTools.GetLocalized("LockLabel");
+ BtnShowHide.Content = StringTools.GetLocalized("HideLabel");
+ BtnShowHide.IsEnabled = false;
+ }
+ }
+
+ private void Translate(Flyout settings)
+ {
+ BtnUnlock.Content = StringTools.GetLocalized("UnlockLabel");
+ BtnShowHide.Content = StringTools.GetLocalized("ShowLabel");
+
+ //MinstrelToggleSwitch MinstrelLabel
+ }
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/Core/IRecruit.cs b/DrawPool/Core/IRecruit.cs
deleted file mode 100644
index 46a8398..0000000
--- a/DrawPool/Core/IRecruit.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace DrawPool
-{
- ///
- /// Interface for the Recruit mechanic, as opposed to a card draw
- ///
- public interface IRecruit
- {
- string MechanicId { get; set; }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/Core/Views.cs b/DrawPool/Core/Views.cs
deleted file mode 100644
index 26b2dc0..0000000
--- a/DrawPool/Core/Views.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace DrawPool
-{
- ///
- /// The list of possible Displays
- ///
- public enum ViewModes
- {
- ///
- /// The Options Config
- ///
- Options = 0,
-
- ///
- /// The Elven Minstrel DrawPool
- ///
- ElvenMinstrel = 1,
-
- ///
- /// The Witchwood Piper DrawPool
- ///
- WitchWoodPiper = 2
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DisplayControl.cs b/DrawPool/DisplayControl.cs
deleted file mode 100644
index 5618d85..0000000
--- a/DrawPool/DisplayControl.cs
+++ /dev/null
@@ -1,150 +0,0 @@
-namespace DrawPool
-{
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Controls;
- using Card = Hearthstone_Deck_Tracker.Hearthstone.Card;
- using Helper = Hearthstone_Deck_Tracker.Helper;
-
- ///
- /// The Possible Draw List Display Control
- ///
- ///
- ///
- public partial class DisplayControl : UserControl
- {
- ///
- /// The deck hash reference
- ///
- private int deckHash;
-
- ///
- /// Occurs when [raise curtain], meaning there is a display with data.
- ///
- public event EventHandler RaiseCurtain;
-
- ///
- /// Gets the deck hash.
- ///
- /// The deck hash.
- public int DeckHash => Hearthstone_Deck_Tracker.API.Core.Game.Player.Deck.GetHashCode();
-
- ///
- /// The Deck object reference for the Cards data.
- ///
- /// The list of current Cards
- public List QueryDeck { get; set; }
-
- ///
- /// Queries the Deck for specific scoped Cards.
- ///
- /// The scoped list of Cards
- internal virtual List BuildQueryDeck()
- {
- var playerDeck = Hearthstone_Deck_Tracker.API.Core.Game.Player
- .PlayerCardList
- .Where(c =>
- c.Type == "Minion" &&
- (c.Count - c.InHandCount) > 0
- )
- .OrderBy(c => c.Cost)
- .ThenBy(c => c.Count)
- .ThenBy(c => c.Name)
- .ToList()
- .FixCreatedCards()
- .FixDuplicateCards();
- return playerDeck;
- }
-
- ///
- /// Checks if the deck has changed, since the last check..
- ///
- /// True, if the deck has changed, since the last check.
- internal bool CheckDeckChanged()
- {
- if (deckHash != Hearthstone_Deck_Tracker.API.Core.Game.Player.Deck.GetHashCode())
- {
- deckHash = Hearthstone_Deck_Tracker.API.Core.Game.Player.Deck.GetHashCode();
- return true;
- }
- else
- {
- return false;
- }
- }
-
- ///
- /// Gets or sets the minion count.
- ///
- /// The minion count.
- internal int MinionCount() => QueryDeck.Sum(c => c.Count);
-
- ///
- /// Checks the panel to see if there is data to display.
- ///
- /// The sender.
- /// The instance containing the event data.
- internal void ShowDisplay(object sender, EventArgs e)
- {
- if (this.RaiseCurtain != null) // hack: && this.CardList.Items.Count > 0
- {
- RaiseCurtain(sender, e);
- }
- }
-
- ///
- /// Writes the deck mix of minions in cards.
- ///
- /// The count of possible cards that could be draw.
- /// The count of cards in the deck.
- /// The deck mix of minions in cards as Minion Count/Deck Count
- internal string WriteDeckMix(int possibleDraw, int deckCount)
- {
- return $"{possibleDraw}/{deckCount}";
- }
-
- ///
- /// Writes the formatted draw probability text.
- ///
- /// The .
- /// The minion count.
- /// The formatted draw probability text
- internal string WriteDrawProbability(int copyCount, int minionCount, int drawCount)
- {
- return $"({copyCount}): {DrawProbability(minionCount, copyCount, drawCount)}%";
- }
-
- ///
- /// Calculates the Draw the probability.
- ///
- /// The pool size you will draw from.
- /// The number of copies of a card.
- /// The number of cards to draw.
- /// The decimal place to round to.
- /// The Draw probability.
- public Double DrawProbability(int poolsize, int copies = 1, int draw = 1, int dec = 0)
- {
- return Math.Round(
- Helper.DrawProbability(copies, poolsize, draw) * 100, dec);
- }
-
- ///
- /// Loads the cards, sorts and filters as needed.
- ///
- public void LoadCards()
- {
- this.QueryDeck = BuildQueryDeck();
- this.CardList.Update(this.QueryDeck, true);
- }
-
- ///
- /// Resets this instance's lists.
- ///
- public void Reset()
- {
- CardList.Update(null, true);
- this.Visibility = System.Windows.Visibility.Collapsed;
- }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DisplayControl.xaml b/DrawPool/DisplayControl.xaml
deleted file mode 100644
index 6b5f1ca..0000000
--- a/DrawPool/DisplayControl.xaml
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/DrawPool/DisplayControl.xaml.cs b/DrawPool/DisplayControl.xaml.cs
deleted file mode 100644
index 26ead22..0000000
--- a/DrawPool/DisplayControl.xaml.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-namespace DrawPool
-{
- using System.Windows.Controls;
-
- ///
- /// Interaction logic for DisplayControl.xaml
- ///
- public partial class DisplayControl : UserControl
- {
- public DisplayControl()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DrawLogic/ElvenMinstrelControl.cs b/DrawPool/DrawLogic/ElvenMinstrelControl.cs
deleted file mode 100644
index 010fd1b..0000000
--- a/DrawPool/DrawLogic/ElvenMinstrelControl.cs
+++ /dev/null
@@ -1,85 +0,0 @@
-namespace DrawPool
-{
- using DrawPool.Models;
- using Hearthstone_Deck_Tracker.API;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows;
- using Card = Hearthstone_Deck_Tracker.Hearthstone.Card;
-
- ///
- /// Elven Minstrel Display Control
- ///
- ///
- ///
- internal class ElvenMinstrelControl : DisplayControl, IDraw
- {
- ///
- /// Initializes a new instance of the class.
- ///
- public ElvenMinstrelControl()
- {
- GameEvents.OnPlayerHandMouseOver.Add(PlayerHandMouseOver);
- }
-
- ///
- /// Returns the list of Minions Grouped by their Counts, for statistical purposes.
- ///
- /// The list of Minions Grouped by their Counts, for statistical purposes
- internal List> GroupedMinion() => QueryDeck.GroupBy(c => c.Count).OrderByDescending(grp => grp.Count()).OrderBy(g => g.Key).ToList();
-
- ///
- /// Gets the unique card identifier.
- ///
- /// The card identifier.
- public string CardId() => "LOOT_211";
-
- ///
- /// Does the math.
- ///
- public void DoMath()
- {
- // First, figure out our remaining card mix
- lblDeckMix.Content = WriteDeckMix(MinionCount(), Hearthstone_Deck_Tracker.API.Core.Game.Player.DeckCount);
- if (MinionCount() >= 1)
- {
- lblProbability.Content = "";
- var gm = GroupedMinion();
- // Next, figure out our odds
- lblProbability.Content = WriteDrawProbability(gm.First>().First().Count, MinionCount(), 2);
- if (gm.Count >= 2)
- {
- lblProbability.Content += " ";
- lblProbability.Content += WriteDrawProbability(gm[1].First().Count, MinionCount(), 2);
- if (gm.Count >= 3)
- {
- lblProbability.Content += " ";
- lblProbability.Content += WriteDrawProbability(gm.Last>().First().Count, MinionCount(), 2);
- }
- }
- }
- }
-
- ///
- /// When the Player mouses over a in his hand.
- ///
- /// The .
- public void PlayerHandMouseOver(Card card)
- {
- if (!card.Id.Contains(CardId()))
- {
- this.Visibility = Visibility.Collapsed;
- }
- else
- {
- if (CheckDeckChanged())
- {
- LoadCards();
- DoMath();
- }
- ShowDisplay(new CurtainCall { CallingView = ViewModes.ElvenMinstrel, ShouldShow = true }, new EventArgs());
- }
- }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DrawLogic/WitchWoodPiperControl.cs b/DrawPool/DrawLogic/WitchWoodPiperControl.cs
deleted file mode 100644
index 0647be9..0000000
--- a/DrawPool/DrawLogic/WitchWoodPiperControl.cs
+++ /dev/null
@@ -1,109 +0,0 @@
-namespace DrawPool
-{
- using DrawPool.Models;
- using Hearthstone_Deck_Tracker.API;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows;
- using Card = Hearthstone_Deck_Tracker.Hearthstone.Card;
-
- ///
- /// WitchWood Piper Display Control
- ///
- ///
- ///
- internal class WitchWoodPiperControl : DisplayControl, IDraw
- {
- ///
- /// Initializes a new instance of the class.
- ///
- public WitchWoodPiperControl()
- {
- GameEvents.OnPlayerHandMouseOver.Add(PlayerHandMouseOver);
- }
-
- ///
- /// Queries the Deck for specific scoped Cards.
- ///
- /// The scoped list of Cards
- internal override List BuildQueryDeck()
- {
- var playerDeck = Hearthstone_Deck_Tracker.API.Core.Game.Player
- .PlayerCardList
- .Where(c =>
- c.Type == "Minion" &&
- c.Count > 0
- )
- .ToList()
- .FixCreatedCards()
- .OrderBy(c => c.Cost)
- .ThenBy(c => c.Count)
- .ThenBy(c => c.Name)
- .GroupBy(c => c.Cost)
- .First()
- .ToList()
- .FixDuplicateCards()
- ;
-
- //c.EqualsWithCount c.Mechanics
-
- return playerDeck;
- }
-
- ///
- /// Gets the unique card identifier.
- ///
- /// The card identifier.
- public string CardId() => "GIL_584";
-
- ///
- /// Does the math.
- ///
- public void DoMath()
- {
- lblProbability.Content = "";
- lblDeckMix.Content = WriteDeckMix(MinionCount(), Hearthstone_Deck_Tracker.API.Core.Game.Player.DeckCount);
- if (QueryDeck.Count >= 1 || QueryDeck.Count == MinionCount())
- {
- lblProbability.Content = WriteDrawProbability(QueryDeck[0].Count, MinionCount(), 1);
- }
- if (QueryDeck.Count >= 2)
- {
- if (QueryDeck[1].Count != QueryDeck[0].Count)
- {
- lblProbability.Content += " ";
- lblProbability.Content += WriteDrawProbability(QueryDeck[1].Count, MinionCount(), 1);
- }
-
- if (QueryDeck.Count >= 3)
- {
- lblProbability.Content += " ";
- lblProbability.Content += WriteDrawProbability(QueryDeck.Last().Count, MinionCount(), 1);
- }
- }
- }
-
- ///
- /// When the Player mouses over a in his hand.
- ///
- /// The .
- public void PlayerHandMouseOver(Card card)
- {
- if (card.Id != CardId())
- {
- this.Visibility = Visibility.Collapsed;
- }
- else
- {
- if (CheckDeckChanged())
- {
- LoadCards();
- // ToDo: Should do math be moved into the load cards process?
- DoMath();
- }
- ShowDisplay(new CurtainCall { CallingView = ViewModes.WitchWoodPiper, ShouldShow = true }, new EventArgs());
- }
- }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DrawPool.cs b/DrawPool/DrawPool.cs
new file mode 100644
index 0000000..31b2af4
--- /dev/null
+++ b/DrawPool/DrawPool.cs
@@ -0,0 +1,74 @@
+using DrawPool.DrawLogic;
+using DrawPool.Logic;
+using DrawPool.Properties;
+using Hearthstone_Deck_Tracker.API;
+using System;
+using System.Windows.Controls;
+using System.Windows.Media;
+using Core = Hearthstone_Deck_Tracker.API.Core;
+
+namespace DrawPool
+{
+ public class DrawPool : IDisposable
+ {
+ public static InputMoveManager inputMoveManager;
+ public MinstrelPool minstrelPool;
+
+ public DrawPool()
+ {
+ minstrelPool = new MinstrelPool();
+ minstrelPool.Name = "MinstrelPoolView";
+ minstrelPool.Visibility = System.Windows.Visibility.Collapsed;
+ Core.OverlayCanvas.Children.Add(minstrelPool);
+
+ Settings.Default.DrawPoolTop = CheckDefault(Settings.Default.DrawPoolTop);
+ Settings.Default.DrawPoolLeft = CheckDefault(Settings.Default.DrawPoolLeft);
+ Canvas.SetTop(minstrelPool, Settings.Default.DrawPoolTop);
+ Canvas.SetLeft(minstrelPool, Settings.Default.DrawPoolLeft);
+
+ inputMoveManager = new InputMoveManager(minstrelPool);
+
+ Settings.Default.PropertyChanged += SettingsChanged;
+ SettingsChanged(null, null);
+
+ GameEvents.OnGameStart.Add(GameTypeCheck);
+ GameEvents.OnGameEnd.Add(CleanUp);
+ }
+
+ private double CheckDefault(double n) {
+ return n > 0 ? n : n * -1;
+ }
+
+
+ private void GameTypeCheck()
+ {
+ // ToDo : Enable toggle Props
+ if (Core.Game.CurrentGameType == HearthDb.Enums.GameType.GT_RANKED ||
+ Core.Game.CurrentGameType == HearthDb.Enums.GameType.GT_CASUAL ||
+ Core.Game.CurrentGameType == HearthDb.Enums.GameType.GT_ARENA)
+ {
+ InitLogic();
+ }
+ }
+
+ private void InitLogic()
+ {
+ }
+
+ private void SettingsChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
+ {
+ minstrelPool.RenderTransform = new ScaleTransform(Settings.Default.DrawPoolScale / 100, Settings.Default.DrawPoolScale / 100);
+ minstrelPool.Opacity = Settings.Default.DrawPoolOpacity / 100;
+ }
+
+ public void CleanUp()
+ {
+ }
+
+ public void Dispose()
+ {
+ Core.OverlayCanvas.Children.Remove(minstrelPool);
+ inputMoveManager.Dispose();
+ }
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/DrawPool.csproj b/DrawPool/DrawPool.csproj
index b4ec866..742926c 100644
--- a/DrawPool/DrawPool.csproj
+++ b/DrawPool/DrawPool.csproj
@@ -31,20 +31,14 @@
4
-
- ..\packages\ControlzEx.3.0.2.4\lib\net462\ControlzEx.dll
- False
-
-
+
+ False
lib\HearthDb.dll
False
-
+
lib\HearthstoneDeckTracker.exe
- False
-
-
- ..\packages\MahApps.Metro.1.6.5\lib\net47\MahApps.Metro.dll
+ False
False
@@ -54,83 +48,153 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- DisplayControl.xaml
-
-
-
-
- DrawPoolWindow.xaml
+
+
+ PoolView.xaml
-
-
- InfoControl.xaml
+
+ SettingsView.xaml
-
+
+
+
+
+
True
True
Settings.settings
-
- UserOptionsControl.xaml
+
+ True
+ True
+ DrawPoolStrings.resx
+
-
- Designer
-
SettingsSingleFileGenerator
Settings.Designer.cs
+
-
- Designer
- MSBuild:Compile
-
-
+
+ 3.0.2.4
+
+
+ 1.6.5
+
+
+ 3.5.0
+
+
+ 1.8.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ResXFileCodeGenerator
+ DrawPoolStrings.Designer.cs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
-
+
Designer
MSBuild:Compile
-
+
+
+
+
if $(ConfigurationName) == Debug (
-copy "$(TargetDir)$(ProjectName).*" "C:\Users\VeX\AppData\Roaming\HearthstoneDeckTracker\Plugins" /y
+ copy "$(TargetDir)$(ProjectName).dll" "C:\Users\alexp\AppData\Roaming\HearthstoneDeckTracker\Plugins" /y
)
\ No newline at end of file
diff --git a/DrawPool/DrawPoolPlugin.cs b/DrawPool/DrawPoolPlugin.cs
index 0f83f7a..6c44e32 100644
--- a/DrawPool/DrawPoolPlugin.cs
+++ b/DrawPool/DrawPoolPlugin.cs
@@ -1,10 +1,14 @@
namespace DrawPool
{
+
+ using global::DrawPool.Logic;
+ using global::DrawPool.Controls;
using Hearthstone_Deck_Tracker.Plugins;
using System;
using System.Reflection;
using System.Windows.Controls;
- using Settings = DrawPool.Properties.Settings;
+ using System.Windows.Input;
+ using Settings = Properties.Settings;
///
/// The DrawPool plug-in Instance
@@ -12,10 +16,7 @@
///
public class DrawPoolPlugin : IPlugin
{
- ///
- /// The DrawPool Window reference
- ///
- private DrawPoolWindow win;
+ public DrawPool drawPoolInstance;
///
/// The author.
@@ -27,13 +28,13 @@ public class DrawPoolPlugin : IPlugin
/// The button text.
///
/// The button text.
- public string ButtonText => "Settings";
+ public string ButtonText => StringTools.GetLocalized("SettingsLabel");
///
/// The plug-in description.
///
/// The plug-in description.
- public string Description => @"Helps to see scoped draw pools from the current cards in your deck.";
+ public string Description => StringTools.GetLocalized("PluginDescription");
///
/// Gets or sets the main Menu Item.
@@ -45,7 +46,7 @@ public class DrawPoolPlugin : IPlugin
/// The plug-in name.
///
/// The plug-in name.
- public string Name => "DrawPool";
+ public string Name => StringTools.GetLocalized("PluginName");
///
/// The plugin version.
@@ -78,32 +79,22 @@ protected void CheckForDefaultSettings()
{
Settings.Default.IsMinstrelEnabled = Properties.Settings.Default.IsMinstrelEnabled || true;
Settings.Default.IsPiperEnabled = Properties.Settings.Default.IsPiperEnabled || false;
- Settings.Default.Scale = 100;
- Settings.Default.Opacity = 1.00;
- Settings.Default.Top = 400;
- Settings.Default.Left = 300;
+ Settings.Default.DrawPoolScale = 100;
+ Settings.Default.DrawPoolOpacity = 1.00;
+ Settings.Default.DrawPoolTop = 10;
+ Settings.Default.DrawPoolLeft = 10;
Settings.Default.Save();
}
+
// Make Sure we save changes
Settings.Default.PropertyChanged += (sender, e) => Settings.Default.Save();
}
- ///
- /// Called when [button press].
- ///
- public void OnButtonPress()
- {
- win.CurrentView = DrawPool.ViewModes.Options;
- win.Show();
- }
+ public void OnButtonPress() => SettingsView.Flyout.IsOpen = true;
- ///
- /// Called when [load].
- ///
public void OnLoad()
{
- win = new DrawPoolWindow();
- win.InitializeDrawPool();
+ drawPoolInstance = new DrawPool();
AddMenuItem();
}
@@ -112,14 +103,16 @@ public void OnLoad()
///
public void OnUnload()
{
- win.Close();
+ Settings.Default.Save();
+
+ drawPoolInstance?.CleanUp();
+ drawPoolInstance = null;
}
///
/// Called when [update].
///
public void OnUpdate()
- {
- }
+ { }
}
}
\ No newline at end of file
diff --git a/DrawPool/DrawPoolWindow.cs b/DrawPool/DrawPoolWindow.cs
deleted file mode 100644
index c3d8dd9..0000000
--- a/DrawPool/DrawPoolWindow.cs
+++ /dev/null
@@ -1,176 +0,0 @@
-namespace DrawPool
-{
- using DrawPool.Models;
- using Hearthstone_Deck_Tracker.API;
- using MahApps.Metro.Controls;
- using System;
- using System.Linq;
- using System.Reflection;
- using System.Windows;
- using Settings = DrawPool.Properties.Settings;
-
- ///
- /// Logic related to the DrawPoolWindow data processing
- ///
- ///
- ///
- ///
- public partial class DrawPoolWindow : MetroWindow
- {
- ///
- /// Gets or sets the current display view.
- ///
- /// The current display view.
- private ViewModes currentView;
-
- ///
- /// Gets or sets the currently displayed view.
- ///
- /// The currently displayed view.
- public ViewModes CurrentView
- {
- get { return currentView; }
- set
- {
- DisplayBox.FindChild(currentView.ToString()).Visibility = Visibility.Collapsed;
- currentView = value;
- DisplayBox.FindChild(currentView.ToString()).Visibility = Visibility.Visible;
- }
- }
-
- ///
- /// Initializes the window options, to resolve control transparency.
- ///
- private void InitializeWinOpts()
- {
- this.WindowStyle = WindowStyle.None;
- this.AllowsTransparency = true;
- this.Background = System.Windows.Media.Brushes.Transparent;
- }
-
- ///
- /// Called when the mouse focus moves off the card.
- ///
- private void OnMouseOff()
- {
- Visibility = Visibility.Collapsed;
- }
-
- ///
- /// Helper event for the Display control.
- ///
- /// The source of the event.
- /// The instance containing the event data.
- protected void Display_Helper(object sender, EventArgs e)
- {
- CurtainCall cc = (CurtainCall)sender;
- if (cc != null && cc.ShouldShow)
- {
- CurrentView = cc.CallingView;
- Visibility = Visibility.Visible;
- }
- else
- {
- Visibility = Visibility.Collapsed;
- }
- }
-
- ///
- /// Initializes the ElvenMinstrel Control.
- ///
- internal void InitializeMinstrel()
- {
- if (Settings.Default.IsMinstrelEnabled)
- {
- var dc = new ElvenMinstrelControl()
- {
- Name = "ElvenMinstrel"
- };
- dc.RaiseCurtain += new EventHandler(Display_Helper);
- DisplayBox.Children.Add(dc);
- }
- }
-
- ///
- /// Initializes the WitchWoodPiper Control.
- ///
- internal void InitializePiper()
- {
- if (Settings.Default.IsPiperEnabled)
- {
- var dc = new WitchWoodPiperControl()
- {
- Name = "WitchWoodPiper"
- };
- dc.RaiseCurtain += new EventHandler(Display_Helper);
- DisplayBox.Children.Add(dc);
- }
- }
-
- ///
- /// Initializes the By Card modules.
- ///
- public void InitializeByCardModules()
- {
- InitializeMinstrel();
- InitializePiper();
- }
-
- ///
- /// Initializes the window.
- ///
- public void InitializeDrawPool()
- {
- InitializeWinOpts();
- InitializeOpts();
- InitializeByCardModules();
-
- // Game Triggers
- GameEvents.OnGameStart.Add(Reset);
- GameEvents.OnGameEnd.Add(Reset);
- // User Triggers
- GameEvents.OnMouseOverOff.Add(OnMouseOff);
- }
-
- ///
- /// Initializes the Options.
- ///
- public void InitializeOpts()
- {
- UserOptionsControl uc = (UserOptionsControl)DisplayBox.FindChild(ViewModes.Options.ToString());
- if (uc != null)
- {
- uc.btnToggle.Checked += (sender, args) =>
- {
- uc.btnToggle.Content = "Lock";
- IsWindowDraggable = true;
- };
- uc.btnToggle.Unchecked += (sender, args) =>
- {
- uc.btnToggle.Content = "Unlock";
- IsWindowDraggable = false;
- };
- uc.btnDone.Click += (sender, args) =>
- {
- uc.btnToggle.IsChecked = false;
- uc.Visibility = Visibility.Hidden;
- Visibility = Visibility.Collapsed;
- };
- uc.lblVersionValue.Content = Assembly.GetExecutingAssembly().GetName().Version.ToString();
- }
- }
-
- ///
- /// Resets this window instance.
- ///
- public void Reset()
- {
- // ToDo : see how this loop needs to evolve with mechanics for recruit
- foreach (IDraw dc in DisplayBox.Children.OfType())
- {
- dc.Reset();
- }
- Visibility = Visibility.Collapsed;
- }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DrawPoolWindow.xaml b/DrawPool/DrawPoolWindow.xaml
deleted file mode 100644
index 3cff25c..0000000
--- a/DrawPool/DrawPoolWindow.xaml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/DrawPool/DrawPoolWindow.xaml.cs b/DrawPool/DrawPoolWindow.xaml.cs
deleted file mode 100644
index 7e973c3..0000000
--- a/DrawPool/DrawPoolWindow.xaml.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace DrawPool
-{
- using MahApps.Metro.Controls;
-
- ///
- /// Interaction logic for DrawPoolWindow.xaml
- ///
- public partial class DrawPoolWindow : MetroWindow
- {
- ///
- /// Initializes a new instance of the class.
- ///
- public DrawPoolWindow()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/DrawViews/MinstrelPool.cs b/DrawPool/DrawViews/MinstrelPool.cs
new file mode 100644
index 0000000..d7c0930
--- /dev/null
+++ b/DrawPool/DrawViews/MinstrelPool.cs
@@ -0,0 +1,123 @@
+namespace DrawPool.DrawLogic
+{
+ using Controls;
+ using Hearthstone_Deck_Tracker.API;
+ using Hearthstone_Deck_Tracker.Controls;
+ using Logic;
+ using System.Collections.Generic;
+ using System.Linq;
+ using Card = Hearthstone_Deck_Tracker.Hearthstone.Card;
+ using Core = Hearthstone_Deck_Tracker.API.Core;
+
+ ///
+ /// The Minstrel DrawPool View
+ ///
+ ///
+ ///
+ public class MinstrelPool : PoolView, ICommonView
+ {
+ public MinstrelPool()
+ {
+ SetTitle();
+ LoadCards();
+ PoolRules();
+ }
+
+ ///
+ /// Does the math.
+ ///
+ public void DoMath()
+ {
+ this.Chance1.Text = "";
+ this.Chance2.Text = "";
+ if (MinionCount() >= 1)
+ {
+ var gm = GroupedMinion();
+ // Next, figure out our odds
+ this.Chance1.Text = WriteDrawProbability(
+ gm.First>().
+ First().Count,
+ MinionCount(),
+ 2
+ );
+ if (gm.Count >= 2)
+ {
+ this.Chance2.Text = WriteDrawProbability(
+ gm[1].First().Count,
+ MinionCount(),
+ 2);
+ }
+ }
+ }
+
+ ///
+ /// Determines whether the player jas the required trigger card or not. In this case the Elven Minstrel
+ ///
+ ///
+ /// true If the player the required trigger card; otherwise, false.
+ ///
+ public bool HasTriggerCard() => Core.Game.Player.PlayerCardList.FindIndex(c => c.Id.Contains(HearthDb.CardIds.Collectible.Rogue.ElvenMinstrel)) > -1;
+
+ ///
+ /// Loads the cards from to , then sorts and filters as needed.
+ ///
+ public void LoadCards()
+ {
+ Cards = DrawPoolHelpers.BuildQueryDeck();
+ DoMath();
+ AnimatedCardLister.Update(Cards, true);
+ }
+
+ ///
+ /// When the Player mouses over a in his hand.
+ ///
+ /// The .
+ public void PlayerHandMouseOver(Card card)
+ {
+ if (!card.Id.Contains(TriggerCardId()))
+ {
+ Visibility = System.Windows.Visibility.Collapsed;
+ }
+ else
+ {
+ if (CheckDeckChanged())
+ {
+ LoadCards();
+ }
+ Visibility = System.Windows.Visibility.Visible;
+ }
+ }
+
+ public string PoolName() => "MinstrelPoolView";
+
+ public void PoolRules()
+ {
+ GameEvents.OnGameStart.Add(Reset);
+ GameEvents.OnGameEnd.Add(Reset);
+ GameEvents.OnPlayerHandMouseOver.Add(PlayerHandMouseOver);
+ GameEvents.OnMouseOverOff.Add(OnMouseOff);
+ }
+
+ public void Reset()
+ {
+ List Cards = new List();
+ AnimatedCardLister.Update(Cards, true);
+ this.Chance1.Text = "0%";
+ this.Chance2.Text = "0%";
+ Visibility = System.Windows.Visibility.Collapsed;
+ }
+
+ ///
+ /// Gets the unique card identifier.
+ ///
+ /// The card identifier.
+ public string TriggerCardId() => "LOOT_211";
+
+ public new bool Update(Card card)
+ {
+ return card.Type == "Minion" &&
+ card.Count > card.InHandCount &&
+ base.Update(card);
+ }
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/InfoControl.xaml b/DrawPool/InfoControl.xaml
deleted file mode 100644
index 45ee8c8..0000000
--- a/DrawPool/InfoControl.xaml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/DrawPool/InfoControl.xaml.cs b/DrawPool/InfoControl.xaml.cs
deleted file mode 100644
index c4b6711..0000000
--- a/DrawPool/InfoControl.xaml.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-namespace DrawPool
-{
- using System.Windows.Controls;
- ///
- /// Interaction logic for InfoControl.xaml
- ///
- public partial class InfoControl : UserControl
- {
- public InfoControl()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/DrawPool/Core/DrawPoolHelpers.cs b/DrawPool/Logic/DrawPoolHelpers.cs
similarity index 85%
rename from DrawPool/Core/DrawPoolHelpers.cs
rename to DrawPool/Logic/DrawPoolHelpers.cs
index e21cc64..1486157 100644
--- a/DrawPool/Core/DrawPoolHelpers.cs
+++ b/DrawPool/Logic/DrawPoolHelpers.cs
@@ -1,4 +1,4 @@
-namespace DrawPool
+namespace DrawPool.Logic
{
using System.Collections.Generic;
using System.Linq;
@@ -15,20 +15,21 @@ public static class DrawPoolHelpers
/// The scoped list of Cards
public static List BuildQueryDeck()
{
- var playerDeck = Hearthstone_Deck_Tracker.API.Core.Game.Player
- .PlayerCardList
- .Where(c =>
+
+ var pd = Hearthstone_Deck_Tracker.API.Core.Game.Player.PlayerCardList.ToList();
+
+ pd = pd.FixCreatedCards();
+ pd = pd.FixDuplicateCards();
+ pd = pd.Where(c =>
c.Type == "Minion" &&
- (c.Count - c.InHandCount) > 0
+ (c.InHandCount <= c.Count) &&
+ (c.Count - c.InHandCount > 0)
)
.OrderBy(c => c.Cost)
.ThenBy(c => c.Count)
.ThenBy(c => c.Name)
- .ToList()
- .FixCreatedCards()
- .FixDuplicateCards();
-
- return playerDeck;
+ .ToList();
+ return pd;
}
///
diff --git a/DrawPool/Core/IDraw.cs b/DrawPool/Logic/ICommonView.cs
similarity index 62%
rename from DrawPool/Core/IDraw.cs
rename to DrawPool/Logic/ICommonView.cs
index 5aa8524..e73de23 100644
--- a/DrawPool/Core/IDraw.cs
+++ b/DrawPool/Logic/ICommonView.cs
@@ -1,29 +1,21 @@
-namespace DrawPool
+namespace DrawPool.DrawLogic
{
- using System.Collections.Generic;
using Card = Hearthstone_Deck_Tracker.Hearthstone.Card;
- ///
- /// Interface for a card that invokes a draw, as opposed to a mechanic
- ///
- public interface IDraw
+ public interface ICommonView
{
///
- /// The Deck object reference for the Cards data.
- ///
- /// The list of current Cards
- List QueryDeck { get; set; }
-
- ///
- /// Gets the unique card identifier.
+ /// Does the math.
///
- /// The card identifier.
- string CardId();
+ void DoMath();
///
- /// Does the math.
+ /// Determines whether the player the required trigger card or not.
///
- void DoMath();
+ ///
+ /// true If the player the required trigger card; otherwise, false.
+ ///
+ bool HasTriggerCard();
///
/// Loads the cards, sorts and filters as needed.
@@ -36,9 +28,23 @@ public interface IDraw
/// The .
void PlayerHandMouseOver(Card card);
+ ///
+ /// The name og the pool view.
+ ///
+ ///
+ string PoolName();
+
+ void PoolRules();
+
///
/// Resets this instance's lists.
///
void Reset();
+
+ ///
+ /// Gets the unique card identifier.
+ ///
+ /// The card identifier.
+ string TriggerCardId();
}
}
\ No newline at end of file
diff --git a/DrawPool/Logic/InputMoveManager.cs b/DrawPool/Logic/InputMoveManager.cs
new file mode 100644
index 0000000..c62e025
--- /dev/null
+++ b/DrawPool/Logic/InputMoveManager.cs
@@ -0,0 +1,100 @@
+using DrawPool.Properties;
+using Hearthstone_Deck_Tracker;
+using System;
+using System.Windows;
+using System.Windows.Controls;
+using Core = Hearthstone_Deck_Tracker.API.Core;
+
+namespace DrawPool.Logic
+{
+ public class InputMoveManager
+ {
+ private User32.MouseInput _mouseInput;
+ private bool _selected = false;
+ private StackPanel _StackPanel;
+
+ public InputMoveManager(StackPanel panel)
+ {
+ _StackPanel = panel;
+ }
+
+ private void MouseInputOnLmbDown(object sender, EventArgs eventArgs)
+ {
+ var pos = User32.GetMousePos();
+ var _mousePos = new Point(pos.X, pos.Y);
+ if (PointInsideControl(_mousePos, _StackPanel))
+ {
+ _selected = true;
+ }
+ else
+ {
+ _selected = false;
+ }
+ }
+
+ private void MouseInputOnLmbUp(object sender, EventArgs eventArgs)
+ {
+ var pos = User32.GetMousePos();
+ var _mousePos = new Point(pos.X, pos.Y);
+ if (_selected)
+ {
+ var p = Core.OverlayCanvas.PointFromScreen(new Point(pos.X, pos.Y));
+ if (pos.X > Core.OverlayCanvas.Width)
+ {
+ Settings.Default.DrawPoolLeft = p.X;
+ }
+ if (pos.Y > Core.OverlayCanvas.Height)
+ {
+ Settings.Default.DrawPoolTop = p.Y;
+ }
+ }
+
+ _selected = false;
+ }
+
+ private void MouseInputOnMouseMoved(object sender, EventArgs eventArgs)
+ {
+ if (_selected == false)
+ {
+ return;
+ }
+
+ var pos = User32.GetMousePos();
+ var p = Core.OverlayCanvas.PointFromScreen(new Point(pos.X, pos.Y));
+ if (pos.X > Core.OverlayCanvas.Width)
+ {
+ Canvas.SetLeft(_StackPanel, p.X);
+ }
+ if (pos.Y > Core.OverlayCanvas.Height)
+ {
+ Canvas.SetTop(_StackPanel, p.Y);
+ }
+ }
+
+ private bool PointInsideControl(Point p, FrameworkElement control)
+ {
+ var pos = control.PointFromScreen(p);
+ return pos.X > 0 && pos.X < control.ActualWidth && pos.Y > 0 && pos.Y < control.ActualHeight;
+ }
+
+ public void Dispose()
+ {
+ _mouseInput?.Dispose();
+ _mouseInput = null;
+ }
+
+ public bool Toggle()
+ {
+ if (Hearthstone_Deck_Tracker.Core.Game.IsRunning && _mouseInput == null)
+ {
+ _mouseInput = new User32.MouseInput();
+ _mouseInput.LmbDown += MouseInputOnLmbDown;
+ _mouseInput.LmbUp += MouseInputOnLmbUp;
+ _mouseInput.MouseMoved += MouseInputOnMouseMoved;
+ return true;
+ }
+ Dispose();
+ return false;
+ }
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/Logic/StringTools.cs b/DrawPool/Logic/StringTools.cs
new file mode 100644
index 0000000..33aac7c
--- /dev/null
+++ b/DrawPool/Logic/StringTools.cs
@@ -0,0 +1,17 @@
+using WPFLocalizeExtension.Engine;
+
+namespace DrawPool.Logic
+{
+ ///
+ /// General String manipulation Tools
+ ///
+ public class StringTools
+ {
+ ///
+ /// Gets the localized version of the given string.
+ ///
+ /// The key.
+ /// The localized string
+ public static string GetLocalized(string key) => LocalizeDictionary.Instance.GetLocalizedObject("DrawPool", "DrawPoolStrings", key, LocalizeDictionary.Instance.Culture)?.ToString();
+ }
+}
\ No newline at end of file
diff --git a/DrawPool/Models/CurtainCall.cs b/DrawPool/Models/CurtainCall.cs
deleted file mode 100644
index c0bc9f4..0000000
--- a/DrawPool/Models/CurtainCall.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace DrawPool.Models
-{
- ///
- /// Helper for Hiding and showing internal display controls
- ///
- public class CurtainCall
- {
- ///
- /// Gets or sets the calling view, that is sending the data.
- ///
- /// The calling view.
- public ViewModes CallingView { get; set; }
-
- ///
- /// Gets or sets a value indicating whether [should show] the window or hide it.
- ///
- /// true if [should show]; the window otherwise, false hide it.
- public bool ShouldShow { get; set; } = false;
- }
-}
\ No newline at end of file
diff --git a/DrawPool/Properties/AssemblyInfo.cs b/DrawPool/Properties/AssemblyInfo.cs
index 0e2da27..cbcdf83 100644
--- a/DrawPool/Properties/AssemblyInfo.cs
+++ b/DrawPool/Properties/AssemblyInfo.cs
@@ -1,5 +1,4 @@
using System.Reflection;
-using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
@@ -32,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.0.22.0")]
-[assembly: AssemblyFileVersion("2.0.22.0")]
+[assembly: AssemblyVersion("2.4.9.0")]
+[assembly: AssemblyFileVersion("2.4.9.0")]
\ No newline at end of file
diff --git a/DrawPool/Properties/Settings.Designer.cs b/DrawPool/Properties/Settings.Designer.cs
index 090ce05..01b60cc 100644
--- a/DrawPool/Properties/Settings.Designer.cs
+++ b/DrawPool/Properties/Settings.Designer.cs
@@ -12,7 +12,7 @@ namespace DrawPool.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.7.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
@@ -50,48 +50,48 @@ public bool IsPiperEnabled {
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("100")]
- public double Scale {
+ public double DrawPoolScale {
get {
- return ((double)(this["Scale"]));
+ return ((double)(this["DrawPoolScale"]));
}
set {
- this["Scale"] = value;
+ this["DrawPoolScale"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("100")]
- public double Opacity {
+ public double DrawPoolOpacity {
get {
- return ((double)(this["Opacity"]));
+ return ((double)(this["DrawPoolOpacity"]));
}
set {
- this["Opacity"] = value;
+ this["DrawPoolOpacity"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("400")]
- public double Top {
+ [global::System.Configuration.DefaultSettingValueAttribute("10")]
+ public double DrawPoolTop {
get {
- return ((double)(this["Top"]));
+ return ((double)(this["DrawPoolTop"]));
}
set {
- this["Top"] = value;
+ this["DrawPoolTop"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("300")]
- public double Left {
+ [global::System.Configuration.DefaultSettingValueAttribute("10")]
+ public double DrawPoolLeft {
get {
- return ((double)(this["Left"]));
+ return ((double)(this["DrawPoolLeft"]));
}
set {
- this["Left"] = value;
+ this["DrawPoolLeft"] = value;
}
}
}
diff --git a/DrawPool/Properties/Settings.settings b/DrawPool/Properties/Settings.settings
index 9adc2a6..6ba434f 100644
--- a/DrawPool/Properties/Settings.settings
+++ b/DrawPool/Properties/Settings.settings
@@ -8,17 +8,17 @@
False
-
+
100
-
+
100
-
- 400
+
+ 10
-
- 300
+
+ 10
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolDiagram.cd b/DrawPool/Resources/DrawPoolDiagram.cd
new file mode 100644
index 0000000..3ca09db
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolDiagram.cd
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+ AAQACAAEEQAAACACEAAiAAAIAgEEEAAAhAAECoAAgIA=
+ Controls\PoolView.cs
+
+
+
+
+
+
+ gAQAAAAAAAgABAAAAAAAgEAAAAAhAAAAABAAAAAEAAA=
+ DrawViews\MinstrelView.cs
+
+
+
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.Designer.cs b/DrawPool/Resources/DrawPoolStrings.Designer.cs
new file mode 100644
index 0000000..7d49aa4
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.Designer.cs
@@ -0,0 +1,171 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace DrawPool.Resources {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // 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 DrawPoolStrings {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal DrawPoolStrings() {
+ }
+
+ ///
+ /// 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 {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DrawPool.Resources.DrawPoolStrings", typeof(DrawPoolStrings).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// 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 {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hide.
+ ///
+ internal static string HideLabel {
+ get {
+ return ResourceManager.GetString("HideLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lock.
+ ///
+ internal static string LockLabel {
+ get {
+ return ResourceManager.GetString("LockLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Minstrel.
+ ///
+ internal static string MinstrelLabel {
+ get {
+ return ResourceManager.GetString("MinstrelLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lock.
+ ///
+ internal static string MoveLabel {
+ get {
+ return ResourceManager.GetString("MoveLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Opacity.
+ ///
+ internal static string OpacityLabel {
+ get {
+ return ResourceManager.GetString("OpacityLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Piper.
+ ///
+ internal static string PiperLabel {
+ get {
+ return ResourceManager.GetString("PiperLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Helps to see scoped draw pools from the current cards in your deck..
+ ///
+ internal static string PluginDescription {
+ get {
+ return ResourceManager.GetString("PluginDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DrawPool.
+ ///
+ internal static string PluginName {
+ get {
+ return ResourceManager.GetString("PluginName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Scale.
+ ///
+ internal static string ScaleLabel {
+ get {
+ return ResourceManager.GetString("ScaleLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Settings.
+ ///
+ internal static string SettingsLabel {
+ get {
+ return ResourceManager.GetString("SettingsLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show.
+ ///
+ internal static string ShowLabel {
+ get {
+ return ResourceManager.GetString("ShowLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unlock.
+ ///
+ internal static string UnlockLabel {
+ get {
+ return ResourceManager.GetString("UnlockLabel", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/DrawPool/Resources/DrawPoolStrings.af.resx b/DrawPool/Resources/DrawPoolStrings.af.resx
new file mode 100644
index 0000000..0fff76a
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.af.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Versteek
+
+
+ Sluit
+
+
+ Minstreel
+
+
+ Sluit
+
+
+ Ondeursigtigheid
+
+
+ Piper
+
+
+ Help om trekkings met 'n omvang te sien vanaf die huidige kaarte in jou dek.
+
+
+ DrawPool
+
+
+ Skaal
+
+
+ Instellings
+
+
+ Wys
+
+
+ Ontsluit
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ar.resx b/DrawPool/Resources/DrawPoolStrings.ar.resx
new file mode 100644
index 0000000..8f7aa38
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ar.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ يخفي
+
+
+ قفل
+
+
+ المنشد
+
+
+ قفل
+
+
+ العتامة
+
+
+ بايبر
+
+
+ يساعد على رؤية مجموعات السحب المحددة النطاق من البطاقات الحالية الموجودة في مجموعتك.
+
+
+ DrawPool
+
+
+ حجم
+
+
+ إعدادات
+
+
+ يعرض
+
+
+ الغاء القفل
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.az.resx b/DrawPool/Resources/DrawPoolStrings.az.resx
new file mode 100644
index 0000000..5eda18f
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.az.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Gizlət
+
+
+ Bağlamaq
+
+
+ ozan
+
+
+ Bağlamaq
+
+
+ Qeyri-şəffaflıq
+
+
+ Piper
+
+
+ Göyərtənizdəki cari kartlardan əhatəli çəkiliş hovuzlarını görməyə kömək edir.
+
+
+ DrawPool
+
+
+ Ölçək
+
+
+ Parametrlər
+
+
+ Göstər
+
+
+ Kilidi aç
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.be.resx b/DrawPool/Resources/DrawPoolStrings.be.resx
new file mode 100644
index 0000000..05c888e
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.be.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Схаваць
+
+
+ Замак
+
+
+ Менестрэль
+
+
+ Замак
+
+
+ Непразрыстасць
+
+
+ Дудар
+
+
+ Дапамагае ўбачыць пул разборак з бягучымі картамі ў вашай калодзе.
+
+
+ DrawPool
+
+
+ Маштаб
+
+
+ Налады
+
+
+ Паказаць
+
+
+ Разблакіраваць
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.bg.resx b/DrawPool/Resources/DrawPoolStrings.bg.resx
new file mode 100644
index 0000000..71a7fab
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.bg.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Крия
+
+
+ Ключалка
+
+
+ Менестрел
+
+
+ Ключалка
+
+
+ Непрозрачност
+
+
+ Пайпър
+
+
+ Помага да видите пулове за теглене с обхват от текущите карти в тестето ви.
+
+
+ DrawPool
+
+
+ Мащаб
+
+
+ Настройки
+
+
+ Покажи
+
+
+ Отключи
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.bn.resx b/DrawPool/Resources/DrawPoolStrings.bn.resx
new file mode 100644
index 0000000..245856f
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.bn.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ লুকান
+
+
+ তালা
+
+
+ মিনস্ট্রেল
+
+
+ তালা
+
+
+ অস্বচ্ছতা
+
+
+ পাইপার
+
+
+ আপনার ডেকের বর্তমান কার্ডগুলি থেকে স্কোপড ড্র পুল দেখতে সাহায্য করে।
+
+
+ ড্রপুল
+
+
+ স্কেল
+
+
+ সেটিংস
+
+
+ দেখান
+
+
+ আনলক
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ca.resx b/DrawPool/Resources/DrawPoolStrings.ca.resx
new file mode 100644
index 0000000..b0a03fb
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ca.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Amaga
+
+
+ Bloqueig
+
+
+ Joglar
+
+
+ Bloqueig
+
+
+ Opacitat
+
+
+ Piper
+
+
+ Ajuda a veure els grups de sorteig amb abast de les cartes actuals de la teva baralla.
+
+
+ Draw Pool
+
+
+ Escala
+
+
+ Configuració
+
+
+ Espectacle
+
+
+ Descobrir
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.cs.resx b/DrawPool/Resources/DrawPoolStrings.cs.resx
new file mode 100644
index 0000000..a3e02c4
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.cs.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Skrýt
+
+
+ Zámek
+
+
+ Potulný zpěvák
+
+
+ Zámek
+
+
+ Neprůhlednost
+
+
+ Dudák
+
+
+ Pomáhá vidět fondy losování z aktuálních karet ve vašem balíčku.
+
+
+ DrawPool
+
+
+ Měřítko
+
+
+ Nastavení
+
+
+ Ukázat
+
+
+ Odemknout
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.cy.resx b/DrawPool/Resources/DrawPoolStrings.cy.resx
new file mode 100644
index 0000000..f970434
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.cy.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Cuddio
+
+
+ Cloi
+
+
+ Minstrel
+
+
+ Cloi
+
+
+ Didreiddedd
+
+
+ Pibydd
+
+
+ Yn helpu i weld pyllau tynnu scoped o'r cardiau cyfredol yn eich dec.
+
+
+ DrawPwll
+
+
+ Graddfa
+
+
+ Gosodiadau
+
+
+ Sioe
+
+
+ Datgloi
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.da.resx b/DrawPool/Resources/DrawPoolStrings.da.resx
new file mode 100644
index 0000000..42ea094
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.da.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Skjule
+
+
+ Låse
+
+
+ Minstrel
+
+
+ Låse
+
+
+ Gennemsigtighed
+
+
+ Piper
+
+
+ Hjælper med at se rækkevidde draw-puljer fra de nuværende kort i dit bun.
+
+
+ DrawPool
+
+
+ vægt
+
+
+ Indstillinger
+
+
+ At vise
+
+
+ Lås op
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.de.resx b/DrawPool/Resources/DrawPoolStrings.de.resx
new file mode 100644
index 0000000..5cabefa
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.de.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Verstecken
+
+
+ Sperren
+
+
+ Minnesänger
+
+
+ Sperren
+
+
+ Opazität
+
+
+ Pfeifer
+
+
+ Hilft dabei, begrenzte Draw-Pools der aktuellen Karten in Ihrem Deck zu sehen.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ Einstellungen
+
+
+ Zeigen
+
+
+ Freischalten
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.el.resx b/DrawPool/Resources/DrawPoolStrings.el.resx
new file mode 100644
index 0000000..c36a242
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.el.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Κρύβω
+
+
+ Κλειδαριά
+
+
+ Αοιδός
+
+
+ Κλειδαριά
+
+
+ Αδιαφάνεια
+
+
+ Αυλητής
+
+
+ Βοηθά στο να δείτε ομαδικά τραβήγματα από τα τρέχοντα φύλλα στην τράπουλα σας.
+
+
+ DrawPool
+
+
+ Κλίμακα
+
+
+ Ρυθμίσεις
+
+
+ προβολή
+
+
+ Ξεκλείδωμα
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.en.resx b/DrawPool/Resources/DrawPoolStrings.en.resx
new file mode 100644
index 0000000..a2735f3
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.en.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Hide
+
+
+ Lock
+
+
+ Minstrel
+
+
+ Lock
+
+
+ Opacity
+
+
+ Piper
+
+
+ Helps to see scoped draw pools from the current cards in your deck.
+
+
+ DrawPool
+
+
+ Scale
+
+
+ Settings
+
+
+ Show
+
+
+ Unlock
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.eo.resx b/DrawPool/Resources/DrawPoolStrings.eo.resx
new file mode 100644
index 0000000..1a1ec7d
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.eo.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Kaŝi
+
+
+ Ŝlosu
+
+
+ Minstrel
+
+
+ Ŝlosu
+
+
+ Opakeco
+
+
+ Piper
+
+
+ Helpas vidi ampleksajn tirajn naĝejojn de la nunaj kartoj en via ferdeko.
+
+
+ Draw Pool
+
+
+ Skalo
+
+
+ Agordoj
+
+
+ Montru
+
+
+ Malŝlosu
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.es.resx b/DrawPool/Resources/DrawPoolStrings.es.resx
new file mode 100644
index 0000000..5909add
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.es.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Esconder
+
+
+ Cerrar
+
+
+ Juglar
+
+
+ Cerrar
+
+
+ Opacidad
+
+
+ Flautista
+
+
+ Ayuda a ver los grupos de robo con alcance de las cartas actuales en tu mazo.
+
+
+ Grupo de sorteo
+
+
+ Escala
+
+
+ Ajustes
+
+
+ Espectáculo
+
+
+ desbloquear
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.et.resx b/DrawPool/Resources/DrawPoolStrings.et.resx
new file mode 100644
index 0000000..b087190
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.et.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Peida
+
+
+ Lukk
+
+
+ Minstrel
+
+
+ Lukk
+
+
+ Läbipaistmatus
+
+
+ Piper
+
+
+ Aitab näha teie pakis olevate praeguste kaartide ulatusega tõmbamiskogumeid.
+
+
+ DrawPool
+
+
+ Kaal
+
+
+ Seaded
+
+
+ Näita
+
+
+ Avage lukustus
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.eu.resx b/DrawPool/Resources/DrawPoolStrings.eu.resx
new file mode 100644
index 0000000..4f9f2e7
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.eu.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Ezkutatu
+
+
+ Blokea
+
+
+ Juglala
+
+
+ Blokea
+
+
+ Opakotasuna
+
+
+ Gaiteroa
+
+
+ Zure sortako uneko txarteletako zozketa sortak ikusten laguntzen du.
+
+
+ DrawPool
+
+
+ Eskala
+
+
+ Ezarpenak
+
+
+ Erakutsi
+
+
+ Desblokeatu
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.fa.resx b/DrawPool/Resources/DrawPoolStrings.fa.resx
new file mode 100644
index 0000000..7d90303
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.fa.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ پنهان شدن
+
+
+ قفل کردن
+
+
+ مینسترل
+
+
+ قفل کردن
+
+
+ کدورت
+
+
+ پایپر
+
+
+ به دیدن استخرهای قرعه کشی با محدوده از کارت های فعلی در عرشه کمک می کند.
+
+
+ DrawPool
+
+
+ مقیاس
+
+
+ تنظیمات
+
+
+ نمایش دهید
+
+
+ باز کردن قفل
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.fi.resx b/DrawPool/Resources/DrawPoolStrings.fi.resx
new file mode 100644
index 0000000..b1d2f49
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.fi.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Piilottaa
+
+
+ Lukko
+
+
+ Minstrel
+
+
+ Lukko
+
+
+ Peittävyys
+
+
+ Piper
+
+
+ Auttaa näkemään laajennetut vetopoolit nykyisistä korteistasi.
+
+
+ DrawPool
+
+
+ Mittakaava
+
+
+ asetukset
+
+
+ Näytä
+
+
+ Avata
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.fr.resx b/DrawPool/Resources/DrawPoolStrings.fr.resx
new file mode 100644
index 0000000..17fd167
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.fr.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Cacher
+
+
+ Verrouillage
+
+
+ Ménestrel
+
+
+ Verrouillage
+
+
+ Opacité
+
+
+ Cornemuseur
+
+
+ Permet de voir les pools de tirages à partir des cartes actuelles de votre deck.
+
+
+ Dessiner un pool
+
+
+ Échelle
+
+
+ Paramètres
+
+
+ Montrer
+
+
+ Ouvrir
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ga.resx b/DrawPool/Resources/DrawPoolStrings.ga.resx
new file mode 100644
index 0000000..2614c84
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ga.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Folaigh
+
+
+ Glasáil
+
+
+ Minstrel
+
+
+ Glasáil
+
+
+ Teimhneacht
+
+
+ Píobaire
+
+
+ Cabhraíonn sé leat linnte tarraingthe scoped a fheiceáil ó na cártaí reatha i do dheic.
+
+
+ Tarraingt Snámha
+
+
+ Scála
+
+
+ Socruithe
+
+
+ Taispeáin
+
+
+ Díghlasáil
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.gl.resx b/DrawPool/Resources/DrawPoolStrings.gl.resx
new file mode 100644
index 0000000..05ed92e
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.gl.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Ocultar
+
+
+ Botarlle o ferrollo
+
+
+ Menstrel
+
+
+ Botarlle o ferrollo
+
+
+ Opacidade
+
+
+ Gaiteiro
+
+
+ Axuda a ver os grupos de sorteo con alcance das cartas actuais do teu mazo.
+
+
+ Draw Pool
+
+
+ Escala
+
+
+ Configuración
+
+
+ Mostrar
+
+
+ Desbloquear
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.gu.resx b/DrawPool/Resources/DrawPoolStrings.gu.resx
new file mode 100644
index 0000000..7e430a2
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.gu.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ છુપાવો
+
+
+ તાળું
+
+
+ મિન્સ્ટ્રેલ
+
+
+ તાળું
+
+
+ અસ્પષ્ટતા
+
+
+ પાઇપર
+
+
+ તમારા ડેકમાં વર્તમાન કાર્ડ્સમાંથી સ્કોપ્ડ ડ્રો પૂલ જોવામાં મદદ કરે છે.
+
+
+ ડ્રોપૂલ
+
+
+ સ્કેલ
+
+
+ સેટિંગ્સ
+
+
+ બતાવો
+
+
+ અનલોક કરો
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.hi.resx b/DrawPool/Resources/DrawPoolStrings.hi.resx
new file mode 100644
index 0000000..6d4eba1
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.hi.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ छिपाना
+
+
+ ताला
+
+
+ भाट
+
+
+ ताला
+
+
+ अस्पष्टता
+
+
+ PIPER
+
+
+ आपके डेक में मौजूदा कार्डों से स्कोप्ड ड्रा पूल देखने में मदद करता है।
+
+
+ ड्रापूल
+
+
+ पैमाना
+
+
+ समायोजन
+
+
+ दिखाओ
+
+
+ अनलॉक
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.hr.resx b/DrawPool/Resources/DrawPoolStrings.hr.resx
new file mode 100644
index 0000000..922edd2
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.hr.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Sakriti
+
+
+ brava
+
+
+ Minstrel
+
+
+ brava
+
+
+ Neprozirnost
+
+
+ Gajdaš
+
+
+ Pomaže vidjeti skup izvlačenja iz trenutnih karata u vašem špilu.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ postavke
+
+
+ Pokazati
+
+
+ Otključati
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ht.resx b/DrawPool/Resources/DrawPoolStrings.ht.resx
new file mode 100644
index 0000000..2a15e1d
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ht.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Kache
+
+
+ Fèmen
+
+
+ Menstrel
+
+
+ Fèmen
+
+
+ Opakite
+
+
+ Piper
+
+
+ Ede w wè pisin trase ki soti nan kat aktyèl yo nan pil ou a.
+
+
+ DrawPool
+
+
+ Echèl
+
+
+ Anviwònman
+
+
+ Montre
+
+
+ Debloke
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.hu.resx b/DrawPool/Resources/DrawPoolStrings.hu.resx
new file mode 100644
index 0000000..e914247
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.hu.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Elrejt
+
+
+ Zár
+
+
+ Vándorénekes
+
+
+ Zár
+
+
+ Átlátszatlanság
+
+
+ Dudás
+
+
+ Segít meglátni a körben lévő húzókészleteket a pakliban lévő aktuális kártyák közül.
+
+
+ DrawPool
+
+
+ Skála
+
+
+ Beállítások
+
+
+ Előadás
+
+
+ Kinyit
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.hy.resx b/DrawPool/Resources/DrawPoolStrings.hy.resx
new file mode 100644
index 0000000..d15e231
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.hy.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Թաքցնել
+
+
+ Կողպեք
+
+
+ Մինստրել
+
+
+ Կողպեք
+
+
+ Անթափանցիկություն
+
+
+ Պայպեր
+
+
+ Օգնում է տեսնել ձեր տախտակամածի ընթացիկ խաղաքարտերի ծավալային խաղարկության լողավազանները:
+
+
+ DrawPool
+
+
+ Սանդղակ
+
+
+ Կարգավորումներ
+
+
+ Ցուցադրում
+
+
+ Ապակողպել
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.id.resx b/DrawPool/Resources/DrawPoolStrings.id.resx
new file mode 100644
index 0000000..ba75594
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.id.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Bersembunyi
+
+
+ Kunci
+
+
+ Penyanyi
+
+
+ Kunci
+
+
+ Kegelapan
+
+
+ Peniup seruling
+
+
+ Membantu melihat kumpulan undian terbatas dari kartu saat ini di dek Anda.
+
+
+ Kolam Gambar
+
+
+ Skala
+
+
+ Pengaturan
+
+
+ Menunjukkan
+
+
+ Membuka kunci
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.is.resx b/DrawPool/Resources/DrawPoolStrings.is.resx
new file mode 100644
index 0000000..c11acd7
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.is.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Fela
+
+
+ Læsa
+
+
+ Minstrel
+
+
+ Læsa
+
+
+ Ógegnsæi
+
+
+ Piper
+
+
+ Hjálpar til við að sjá umfangsmikla dráttarpotta frá núverandi spilum í stokknum þínum.
+
+
+ DrawPool
+
+
+ Mælikvarði
+
+
+ Stillingar
+
+
+ Sýna
+
+
+ Opnaðu
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.it.resx b/DrawPool/Resources/DrawPoolStrings.it.resx
new file mode 100644
index 0000000..87ce725
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.it.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Nascondere
+
+
+ Serratura
+
+
+ Menestrello
+
+
+ Serratura
+
+
+ Opacità
+
+
+ Pifferaio
+
+
+ Aiuta a vedere i pool di pesca mirati dalle carte attuali nel tuo mazzo.
+
+
+ DrawPool
+
+
+ Scala
+
+
+ Impostazioni
+
+
+ Spettacolo
+
+
+ Sbloccare
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.iw.resx b/DrawPool/Resources/DrawPoolStrings.iw.resx
new file mode 100644
index 0000000..fac80e0
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.iw.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ להתחבא
+
+
+ לנעול
+
+
+ זַמָר
+
+
+ לנעול
+
+
+ אֲטִימוּת
+
+
+ חֲלִילָן
+
+
+ עוזר לראות בריכות משיכה בהיקף מהקלפים הנוכחיים בחפיסה שלך.
+
+
+ DrawPool
+
+
+ סוּלָם
+
+
+ הגדרות
+
+
+ הופעה
+
+
+ לבטל נעילה
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ja.resx b/DrawPool/Resources/DrawPoolStrings.ja.resx
new file mode 100644
index 0000000..c1735e6
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ja.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 隠れる
+
+
+ ロック
+
+
+ 吟遊詩人
+
+
+ ロック
+
+
+ 不透明度
+
+
+ パイパー
+
+
+ デッキ内の現在のカードから範囲指定されたドロープールを確認するのに役立ちます。
+
+
+ ドロープール
+
+
+ 規模
+
+
+ 設定
+
+
+ 見せる
+
+
+ ロックを解除する
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ka.resx b/DrawPool/Resources/DrawPoolStrings.ka.resx
new file mode 100644
index 0000000..f34c5b2
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ka.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ დამალვა
+
+
+ ჩაკეტვა
+
+
+ მინსტრული
+
+
+ ჩაკეტვა
+
+
+ გამჭვირვალობა
+
+
+ პაიპერი
+
+
+ გეხმარებათ დაინახოთ თქვენი გემბანის მიმდინარე ბარათებიდან მოცულობითი გათამაშების აუზები.
+
+
+ DrawPool
+
+
+ მასშტაბი
+
+
+ პარამეტრები
+
+
+ ჩვენება
+
+
+ განბლოკვა
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.km.resx b/DrawPool/Resources/DrawPoolStrings.km.resx
new file mode 100644
index 0000000..b61aa4f
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.km.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ លាក់
+
+
+ ចាក់សោ
+
+
+ មីនស្ត្រេល។
+
+
+ ចាក់សោ
+
+
+ ភាពស្រអាប់
+
+
+ Piper
+
+
+ ជួយមើលការគូរដែលមានវិសាលភាពពីសន្លឹកបៀបច្ចុប្បន្ននៅក្នុងតុរបស់អ្នក។
+
+
+ DrawPool
+
+
+ មាត្រដ្ឋាន
+
+
+ ការកំណត់
+
+
+ បង្ហាញ
+
+
+ ដោះសោ
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.kn.resx b/DrawPool/Resources/DrawPoolStrings.kn.resx
new file mode 100644
index 0000000..296ec8c
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.kn.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ಮರೆಮಾಡಿ
+
+
+ ಲಾಕ್ ಮಾಡಿ
+
+
+ ಮಿನ್ಸ್ಟ್ರೆಲ್
+
+
+ ಲಾಕ್ ಮಾಡಿ
+
+
+ ಅಪಾರದರ್ಶಕತೆ
+
+
+ ಪೈಪರ್
+
+
+ ನಿಮ್ಮ ಡೆಕ್ನಲ್ಲಿರುವ ಪ್ರಸ್ತುತ ಕಾರ್ಡ್ಗಳಿಂದ ಸ್ಕೋಪ್ಡ್ ಡ್ರಾ ಪೂಲ್ಗಳನ್ನು ನೋಡಲು ಸಹಾಯ ಮಾಡುತ್ತದೆ.
+
+
+ ಡ್ರಾಪೂಲ್
+
+
+ ಸ್ಕೇಲ್
+
+
+ ಸಂಯೋಜನೆಗಳು
+
+
+ ತೋರಿಸು
+
+
+ ಅನ್ಲಾಕ್ ಮಾಡಿ
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ko.resx b/DrawPool/Resources/DrawPoolStrings.ko.resx
new file mode 100644
index 0000000..e006c4e
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ko.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 숨다
+
+
+ 잠그다
+
+
+ 시인
+
+
+ 잠그다
+
+
+ 불투명
+
+
+ 피리 부는 사람
+
+
+ 덱에 있는 현재 카드에서 범위가 지정된 드로우 풀을 확인하는 데 도움이 됩니다.
+
+
+ DrawPool
+
+
+ 규모
+
+
+ 설정
+
+
+ 보여주다
+
+
+ 터놓다
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.la.resx b/DrawPool/Resources/DrawPoolStrings.la.resx
new file mode 100644
index 0000000..b64c2da
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.la.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Celare
+
+
+ cincinno
+
+
+ Minstrel
+
+
+ cincinno
+
+
+ Opacitas
+
+
+ Piper
+
+
+ Iuvat videre lacunas ductas e chartis currentibus in navi.
+
+
+ DrawPool
+
+
+ Scale
+
+
+ Occasus
+
+
+ Ostendere
+
+
+ Basem
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.lo.resx b/DrawPool/Resources/DrawPoolStrings.lo.resx
new file mode 100644
index 0000000..9d0eaaf
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.lo.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ເຊື່ອງ
+
+
+ ລັອກ
+
+
+ Minstrel
+
+
+ ລັອກ
+
+
+ ຄວາມມືດ
+
+
+ Piper
+
+
+ ຊ່ວຍໃຫ້ເບິ່ງການແຕ້ມຮູບທີ່ມີຂອບເຂດຈາກບັດປະຈຸບັນຢູ່ໃນແຖບຂອງທ່ານ.
+
+
+ DrawPool
+
+
+ ຂະໜາດ
+
+
+ ການຕັ້ງຄ່າ
+
+
+ ສະແດງ
+
+
+ ປົດລັອກ
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.lt.resx b/DrawPool/Resources/DrawPoolStrings.lt.resx
new file mode 100644
index 0000000..233a4ab
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.lt.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Slėpti
+
+
+ Užraktas
+
+
+ Minstrel
+
+
+ Užraktas
+
+
+ Neskaidrumas
+
+
+ Piper
+
+
+ Padeda matyti traukimo telkinius iš esamų kortų kaladėje.
+
+
+ DrawPool
+
+
+ Skalė
+
+
+ Nustatymai
+
+
+ Rodyti
+
+
+ Atrakinti
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.lv.resx b/DrawPool/Resources/DrawPoolStrings.lv.resx
new file mode 100644
index 0000000..31328d4
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.lv.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Slēpt
+
+
+ Slēdzene
+
+
+ Minstrel
+
+
+ Slēdzene
+
+
+ Necaurredzamība
+
+
+ Piper
+
+
+ Palīdz redzēt aptvertos izlozes fondus no pašreizējām kārtīm jūsu klājā.
+
+
+ DrawPool
+
+
+ Mērogs
+
+
+ Iestatījumi
+
+
+ Rādīt
+
+
+ Atbloķēt
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.mk.resx b/DrawPool/Resources/DrawPoolStrings.mk.resx
new file mode 100644
index 0000000..f738e5e
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.mk.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Крие
+
+
+ Заклучување
+
+
+ Минстрал
+
+
+ Заклучување
+
+
+ Непроѕирност
+
+
+ Пајпер
+
+
+ Помага да се видат базени за извлекување со опсег од тековните картички во вашата палуба.
+
+
+ DrawPool
+
+
+ Скала
+
+
+ Поставки
+
+
+ Прикажи
+
+
+ Отклучи
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ms.resx b/DrawPool/Resources/DrawPoolStrings.ms.resx
new file mode 100644
index 0000000..52aa244
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ms.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Sembunyi
+
+
+ Kunci
+
+
+ Minstrel
+
+
+ Kunci
+
+
+ Kelegapan
+
+
+ Piper
+
+
+ Membantu melihat kumpulan cabutan berskop daripada kad semasa dalam dek anda.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ tetapan
+
+
+ Tunjukkan
+
+
+ Buka kunci
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.mt.resx b/DrawPool/Resources/DrawPoolStrings.mt.resx
new file mode 100644
index 0000000..c586d1f
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.mt.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Aħbi
+
+
+ Lock
+
+
+ Minstrel
+
+
+ Lock
+
+
+ Opaċità
+
+
+ Piper
+
+
+ Jgħin biex tara skoped draw pools mill-karti kurrenti fil-gverta tiegħek.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ Settings
+
+
+ Uri
+
+
+ Nisfruttaw
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.nl.resx b/DrawPool/Resources/DrawPoolStrings.nl.resx
new file mode 100644
index 0000000..d8fad05
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.nl.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Verbergen
+
+
+ Slot
+
+
+ Minstreel
+
+
+ Slot
+
+
+ Dekking
+
+
+ Pijper
+
+
+ Helpt bij het bekijken van de trekkingspools van de huidige kaarten in je stapel.
+
+
+ Tekenpool
+
+
+ Schaal
+
+
+ Instellingen
+
+
+ Show
+
+
+ Ontgrendelen
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.no.resx b/DrawPool/Resources/DrawPoolStrings.no.resx
new file mode 100644
index 0000000..1178bb3
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.no.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Gjemme seg
+
+
+ Låse
+
+
+ Minstrel
+
+
+ Låse
+
+
+ Opasitet
+
+
+ Piper
+
+
+ Hjelper å se scoped draw pools fra gjeldende kort i kortstokken din.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ Innstillinger
+
+
+ Forestilling
+
+
+ Låse opp
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.pl.resx b/DrawPool/Resources/DrawPoolStrings.pl.resx
new file mode 100644
index 0000000..2aa8581
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.pl.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Ukrywać
+
+
+ Zamek
+
+
+ Minstrel
+
+
+ Zamek
+
+
+ Nieprzezroczystość
+
+
+ Dudziarz
+
+
+ Pomaga zobaczyć ograniczone pule dobierania z bieżących kart w talii.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ Ustawienia
+
+
+ Pokazywać
+
+
+ Odblokować
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.pt-BR.resx b/DrawPool/Resources/DrawPoolStrings.pt-BR.resx
new file mode 100644
index 0000000..433e8ca
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.pt-BR.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Esconder
+
+
+ Trancar
+
+
+ Menestrel
+
+
+ Trancar
+
+
+ Opacidade
+
+
+ Flautista
+
+
+ Ajuda a ver os conjuntos de compras com escopo definido das cartas atuais do seu deck.
+
+
+ DrawPool
+
+
+ Escala
+
+
+ Configurações
+
+
+ Mostrar
+
+
+ Desbloquear
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.pt-PT.resx b/DrawPool/Resources/DrawPoolStrings.pt-PT.resx
new file mode 100644
index 0000000..433e8ca
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.pt-PT.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Esconder
+
+
+ Trancar
+
+
+ Menestrel
+
+
+ Trancar
+
+
+ Opacidade
+
+
+ Flautista
+
+
+ Ajuda a ver os conjuntos de compras com escopo definido das cartas atuais do seu deck.
+
+
+ DrawPool
+
+
+ Escala
+
+
+ Configurações
+
+
+ Mostrar
+
+
+ Desbloquear
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.resx b/DrawPool/Resources/DrawPoolStrings.resx
new file mode 100644
index 0000000..a2735f3
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Hide
+
+
+ Lock
+
+
+ Minstrel
+
+
+ Lock
+
+
+ Opacity
+
+
+ Piper
+
+
+ Helps to see scoped draw pools from the current cards in your deck.
+
+
+ DrawPool
+
+
+ Scale
+
+
+ Settings
+
+
+ Show
+
+
+ Unlock
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ro.resx b/DrawPool/Resources/DrawPoolStrings.ro.resx
new file mode 100644
index 0000000..e181574
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ro.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Ascunde
+
+
+ Lacăt
+
+
+ Menestrel
+
+
+ Lacăt
+
+
+ Opacitate
+
+
+ Piper
+
+
+ Ajută să vedeți fondurile de extragere din cărțile curente din pachetul dvs.
+
+
+ Draw Pool
+
+
+ Scară
+
+
+ Setări
+
+
+ Spectacol
+
+
+ Deblocați
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ru.resx b/DrawPool/Resources/DrawPoolStrings.ru.resx
new file mode 100644
index 0000000..fb891f7
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ru.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Скрывать
+
+
+ Замок
+
+
+ Менестрель
+
+
+ Замок
+
+
+ Непрозрачность
+
+
+ Пайпер
+
+
+ Помогает увидеть ограниченные пулы добора из текущих карт в вашей колоде.
+
+
+ DrawPool
+
+
+ Шкала
+
+
+ Настройки
+
+
+ Показывать
+
+
+ Разблокировать
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.sk.resx b/DrawPool/Resources/DrawPoolStrings.sk.resx
new file mode 100644
index 0000000..b196f60
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.sk.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Skryť
+
+
+ Zámok
+
+
+ Minstrel
+
+
+ Zámok
+
+
+ Nepriehľadnosť
+
+
+ Piper
+
+
+ Pomáha vidieť rozsahy žrebov z aktuálnych kariet vo vašom balíčku.
+
+
+ DrawPool
+
+
+ Mierka
+
+
+ nastavenie
+
+
+ Šou
+
+
+ Odomknúť
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.sl.resx b/DrawPool/Resources/DrawPoolStrings.sl.resx
new file mode 100644
index 0000000..fa357bf
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.sl.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Skrij se
+
+
+ Zaklepanje
+
+
+ Minstrel
+
+
+ Zaklepanje
+
+
+ Motnost
+
+
+ Piper
+
+
+ Pomaga pri ogledu obsega žrebanja iz trenutnih kart v vašem kompletu.
+
+
+ DrawPool
+
+
+ Lestvica
+
+
+ nastavitve
+
+
+ Prikaži
+
+
+ Odkleni
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.sq.resx b/DrawPool/Resources/DrawPoolStrings.sq.resx
new file mode 100644
index 0000000..b448250
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.sq.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Fshih
+
+
+ Kyç
+
+
+ Minstrel
+
+
+ Kyç
+
+
+ Opaciteti
+
+
+ Piper
+
+
+ Ndihmon për të parë grupet e tërheqjes me shtrirje nga kartat aktuale në kuvertën tuaj.
+
+
+ DrawPool
+
+
+ Shkalla
+
+
+ Cilësimet
+
+
+ Shfaqje
+
+
+ Hap
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.sr.resx b/DrawPool/Resources/DrawPoolStrings.sr.resx
new file mode 100644
index 0000000..7ebdf21
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.sr.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Сакрити
+
+
+ закључати
+
+
+ Минстрел
+
+
+ закључати
+
+
+ Непрозирност
+
+
+ Пајпер
+
+
+ Помаже да видите скупове извлачења са тренутним картама у вашем шпилу.
+
+
+ ДравПоол
+
+
+ Скала
+
+
+ Подешавања
+
+
+ Прикажи
+
+
+ Откључај
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.sv.resx b/DrawPool/Resources/DrawPoolStrings.sv.resx
new file mode 100644
index 0000000..0668eb0
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.sv.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Dölj
+
+
+ Låsa
+
+
+ Sångare
+
+
+ Låsa
+
+
+ Opacitet
+
+
+ Piper
+
+
+ Hjälper till att se omfångade dragpooler från de aktuella korten i din kortlek.
+
+
+ DrawPool
+
+
+ Skala
+
+
+ inställningar
+
+
+ Show
+
+
+ Låsa upp
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.sw.resx b/DrawPool/Resources/DrawPoolStrings.sw.resx
new file mode 100644
index 0000000..b9dd325
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.sw.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Ficha
+
+
+ Funga
+
+
+ Mwanamuziki
+
+
+ Funga
+
+
+ Uwazi
+
+
+ Piper
+
+
+ Husaidia kuona vidimbwi vya kuchora vilivyopangwa kutoka kwa kadi za sasa kwenye sitaha yako.
+
+
+ DrawPool
+
+
+ Mizani
+
+
+ Mipangilio
+
+
+ Onyesha
+
+
+ Fungua
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ta.resx b/DrawPool/Resources/DrawPoolStrings.ta.resx
new file mode 100644
index 0000000..0932ae9
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ta.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ மறை
+
+
+ பூட்டு
+
+
+ மினிஸ்ட்ரல்
+
+
+ பூட்டு
+
+
+ ஒளிபுகாநிலை
+
+
+ பைபர்
+
+
+ உங்கள் டெக்கில் உள்ள தற்போதைய கார்டுகளிலிருந்து ஸ்கோப்டு டிரா பூல்களைப் பார்க்க உதவுகிறது.
+
+
+ DrawPool
+
+
+ அளவுகோல்
+
+
+ அமைப்புகள்
+
+
+ காட்டு
+
+
+ திறக்கவும்
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.te.resx b/DrawPool/Resources/DrawPoolStrings.te.resx
new file mode 100644
index 0000000..cb78079
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.te.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ దాచు
+
+
+ తాళం వేయండి
+
+
+ మినిస్ట్రెల్
+
+
+ తాళం వేయండి
+
+
+ అస్పష్టత
+
+
+ పైపర్
+
+
+ మీ డెక్లోని ప్రస్తుత కార్డ్ల నుండి స్కోప్డ్ డ్రా పూల్లను చూడటానికి సహాయపడుతుంది.
+
+
+ డ్రాపూల్
+
+
+ స్కేల్
+
+
+ సెట్టింగ్లు
+
+
+ చూపించు
+
+
+ అన్లాక్ చేయండి
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.th.resx b/DrawPool/Resources/DrawPoolStrings.th.resx
new file mode 100644
index 0000000..d81b1d2
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.th.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ซ่อน
+
+
+ ล็อค
+
+
+ นักดนตรี
+
+
+ ล็อค
+
+
+ ความทึบ
+
+
+ ไพเพอร์
+
+
+ ช่วยดูพูลการจับฉลากที่กำหนดขอบเขตจากการ์ดปัจจุบันในสำรับของคุณ
+
+
+ DrawPool
+
+
+ มาตราส่วน
+
+
+ การตั้งค่า
+
+
+ แสดง
+
+
+ ปลดล็อค
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.tl.resx b/DrawPool/Resources/DrawPoolStrings.tl.resx
new file mode 100644
index 0000000..12dd560
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.tl.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Tago
+
+
+ Lock
+
+
+ Minstrel
+
+
+ Lock
+
+
+ Opacity
+
+
+ Piper
+
+
+ Tumutulong na makita ang mga saklaw na draw pool mula sa mga kasalukuyang card sa iyong deck.
+
+
+ DrawPool
+
+
+ Iskala
+
+
+ Mga setting
+
+
+ Ipakita
+
+
+ I-unlock
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.tr.resx b/DrawPool/Resources/DrawPoolStrings.tr.resx
new file mode 100644
index 0000000..98b3c68
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.tr.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Saklamak
+
+
+ Kilit
+
+
+ Ozan
+
+
+ Kilit
+
+
+ Opaklık
+
+
+ Piper
+
+
+ Destenizdeki mevcut kartlardan kapsamlı çekiliş havuzlarını görmenize yardımcı olur.
+
+
+ Çizim Havuzu
+
+
+ Ölçek
+
+
+ Ayarlar
+
+
+ Göstermek
+
+
+ Kilidini aç
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.uk.resx b/DrawPool/Resources/DrawPoolStrings.uk.resx
new file mode 100644
index 0000000..7ab4723
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.uk.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Сховати
+
+
+ Замок
+
+
+ Менестрель
+
+
+ Замок
+
+
+ Непрозорість
+
+
+ Пайпер
+
+
+ Допомагає побачити обсяг розіграшу з поточних карт у вашій колоді.
+
+
+ DrawPool
+
+
+ масштаб
+
+
+ Налаштування
+
+
+ Показати
+
+
+ Розблокувати
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.ur.resx b/DrawPool/Resources/DrawPoolStrings.ur.resx
new file mode 100644
index 0000000..136f8a0
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.ur.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ چھپائیں
+
+
+ تالا
+
+
+ منسٹریل
+
+
+ تالا
+
+
+ دھندلاپن
+
+
+ پائپر
+
+
+ آپ کے ڈیک میں موجودہ کارڈز سے اسکوپڈ ڈرا پول دیکھنے میں مدد کرتا ہے۔
+
+
+ ڈرا پول
+
+
+ پیمانہ
+
+
+ ترتیبات
+
+
+ دکھائیں۔
+
+
+ غیر مقفل کریں۔
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.vi.resx b/DrawPool/Resources/DrawPoolStrings.vi.resx
new file mode 100644
index 0000000..b587882
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.vi.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Trốn
+
+
+ Khóa
+
+
+ Cây hát rong
+
+
+ Khóa
+
+
+ Độ mờ
+
+
+ Piper
+
+
+ Giúp xem các nhóm rút bài có phạm vi từ các lá bài hiện tại trong bộ bài của bạn.
+
+
+ DrawPool
+
+
+ Tỉ lệ
+
+
+ Cài đặt
+
+
+ Trình diễn
+
+
+ Mở khóa
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.yi.resx b/DrawPool/Resources/DrawPoolStrings.yi.resx
new file mode 100644
index 0000000..962eed2
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.yi.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ באַהאַלטן
+
+
+ שלאָס
+
+
+ מינסטרעל
+
+
+ שלאָס
+
+
+ אָופּאַסאַטי
+
+
+ פּיפּער
+
+
+ העלפּס צו זען סקאָמעד ציען פּאָאָלס פון די קראַנט קאַרדס אין דיין דעק.
+
+
+ DrawPool
+
+
+ וואָג
+
+
+ סעטטינגס
+
+
+ ווייַזן
+
+
+ ופשליסן
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.zh-CN.resx b/DrawPool/Resources/DrawPoolStrings.zh-CN.resx
new file mode 100644
index 0000000..595f059
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.zh-CN.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 隐藏
+
+
+ 锁
+
+
+ 吟游诗人
+
+
+ 锁
+
+
+ 不透明度
+
+
+ 派珀
+
+
+ 帮助您查看套牌中当前卡牌的范围抽奖池。
+
+
+ 绘图池
+
+
+ 规模
+
+
+ 设置
+
+
+ 展示
+
+
+ 开锁
+
+
\ No newline at end of file
diff --git a/DrawPool/Resources/DrawPoolStrings.zh-TW.resx b/DrawPool/Resources/DrawPoolStrings.zh-TW.resx
new file mode 100644
index 0000000..8c4275e
--- /dev/null
+++ b/DrawPool/Resources/DrawPoolStrings.zh-TW.resx
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 隱藏
+
+
+ 鎖
+
+
+ 吟遊詩人
+
+
+ 鎖
+
+
+ 不透明度
+
+
+ 派珀
+
+
+ 幫助您查看牌組中目前卡牌的範圍抽獎池。
+
+
+ 繪圖池
+
+
+ 規模
+
+
+ 設定
+
+
+ 展示
+
+
+ 開鎖
+
+
\ No newline at end of file
diff --git a/DrawPool/UserOptionsControl.xaml b/DrawPool/UserOptionsControl.xaml
deleted file mode 100644
index f1cfc7d..0000000
--- a/DrawPool/UserOptionsControl.xaml
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/DrawPool/UserOptionsControl.xaml.cs b/DrawPool/UserOptionsControl.xaml.cs
deleted file mode 100644
index 317bdaa..0000000
--- a/DrawPool/UserOptionsControl.xaml.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-namespace DrawPool
-{
- using System.Windows.Controls;
-
- ///
- /// Interaction logic for UserOptionsControl.xaml
- ///
- public partial class UserOptionsControl : UserControl
- {
- public UserOptionsControl()
- {
- InitializeComponent();
- }
- public void Reset() { }
- }
-}
\ No newline at end of file
diff --git a/DrawPool/app.config b/DrawPool/app.config
index 9e857df..8469c38 100644
--- a/DrawPool/app.config
+++ b/DrawPool/app.config
@@ -13,21 +13,22 @@
False
-
+
100
-
+
100
-
- 400
+
+ 10
-
- 300
+
+ 30
-
+
+
diff --git a/DrawPool/lib/HearthDb.dll b/DrawPool/lib/HearthDb.dll
index b354a1e..7b01d16 100644
Binary files a/DrawPool/lib/HearthDb.dll and b/DrawPool/lib/HearthDb.dll differ
diff --git a/DrawPool/lib/HearthstoneDeckTracker.exe b/DrawPool/lib/HearthstoneDeckTracker.exe
index a51487d..3c041b6 100644
Binary files a/DrawPool/lib/HearthstoneDeckTracker.exe and b/DrawPool/lib/HearthstoneDeckTracker.exe differ
diff --git a/DrawPool/packages.config b/DrawPool/packages.config
deleted file mode 100644
index 5bf26ec..0000000
--- a/DrawPool/packages.config
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/images/LibVersioning.jpg b/images/LibVersioning.jpg
new file mode 100644
index 0000000..5aee5fe
Binary files /dev/null and b/images/LibVersioning.jpg differ
diff --git a/images/attachToProcess.jpg b/images/attachToProcess.jpg
new file mode 100644
index 0000000..7a9b6f2
Binary files /dev/null and b/images/attachToProcess.jpg differ