Add ball sprite indication

Closes #505
Not gonna do shiny sprites, as they are fan-colored and not ripped from
the game data.
This commit is contained in:
Kurt 2016-11-26 19:41:17 -08:00
parent 930eb0ba96
commit 488455e268
33 changed files with 1240 additions and 11 deletions

View File

@ -127,7 +127,9 @@ public void InitializeComponent()
this.Label_MetLocation = new System.Windows.Forms.Label();
this.CB_MetLocation = new System.Windows.Forms.ComboBox();
this.FLP_Ball = new System.Windows.Forms.FlowLayoutPanel();
this.FLP_BallLeft = new System.Windows.Forms.FlowLayoutPanel();
this.Label_Ball = new System.Windows.Forms.Label();
this.PB_Ball = new System.Windows.Forms.PictureBox();
this.CB_Ball = new System.Windows.Forms.ComboBox();
this.FLP_MetLevel = new System.Windows.Forms.FlowLayoutPanel();
this.Label_MetLevel = new System.Windows.Forms.Label();
@ -479,6 +481,8 @@ public void InitializeComponent()
this.FLP_OriginGame.SuspendLayout();
this.FLP_MetLocation.SuspendLayout();
this.FLP_Ball.SuspendLayout();
this.FLP_BallLeft.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.PB_Ball)).BeginInit();
this.FLP_MetLevel.SuspendLayout();
this.FLP_MetDate.SuspendLayout();
this.FLP_Fateful.SuspendLayout();
@ -1774,7 +1778,7 @@ public void InitializeComponent()
// FLP_Ball
//
this.FLP_Ball.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.FLP_Ball.Controls.Add(this.Label_Ball);
this.FLP_Ball.Controls.Add(this.FLP_BallLeft);
this.FLP_Ball.Controls.Add(this.CB_Ball);
this.FLP_Ball.Location = new System.Drawing.Point(0, 42);
this.FLP_Ball.Margin = new System.Windows.Forms.Padding(0);
@ -1782,16 +1786,40 @@ public void InitializeComponent()
this.FLP_Ball.Size = new System.Drawing.Size(272, 21);
this.FLP_Ball.TabIndex = 114;
//
// FLP_BallLeft
//
this.FLP_BallLeft.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.FLP_BallLeft.Controls.Add(this.Label_Ball);
this.FLP_BallLeft.Controls.Add(this.PB_Ball);
this.FLP_BallLeft.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.FLP_BallLeft.Location = new System.Drawing.Point(0, 0);
this.FLP_BallLeft.Margin = new System.Windows.Forms.Padding(0);
this.FLP_BallLeft.Name = "FLP_BallLeft";
this.FLP_BallLeft.Size = new System.Drawing.Size(110, 21);
this.FLP_BallLeft.TabIndex = 4;
//
// Label_Ball
//
this.Label_Ball.Location = new System.Drawing.Point(0, 0);
this.Label_Ball.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.Label_Ball.AutoSize = true;
this.Label_Ball.Location = new System.Drawing.Point(83, 0);
this.Label_Ball.Margin = new System.Windows.Forms.Padding(0);
this.Label_Ball.Name = "Label_Ball";
this.Label_Ball.Size = new System.Drawing.Size(110, 21);
this.Label_Ball.Padding = new System.Windows.Forms.Padding(0, 3, 0, 3);
this.Label_Ball.Size = new System.Drawing.Size(27, 19);
this.Label_Ball.TabIndex = 2;
this.Label_Ball.Text = "Ball:";
this.Label_Ball.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// PB_Ball
//
this.PB_Ball.Location = new System.Drawing.Point(60, 0);
this.PB_Ball.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
this.PB_Ball.Name = "PB_Ball";
this.PB_Ball.Size = new System.Drawing.Size(20, 20);
this.PB_Ball.TabIndex = 3;
this.PB_Ball.TabStop = false;
//
// CB_Ball
//
this.CB_Ball.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
@ -1803,6 +1831,7 @@ public void InitializeComponent()
this.CB_Ball.Size = new System.Drawing.Size(126, 21);
this.CB_Ball.TabIndex = 3;
this.CB_Ball.SelectedIndexChanged += new System.EventHandler(this.validateComboBox2);
this.CB_Ball.SelectedValueChanged += new System.EventHandler(this.updateBall);
this.CB_Ball.KeyDown += new System.Windows.Forms.KeyEventHandler(this.removedropCB);
this.CB_Ball.Validating += new System.ComponentModel.CancelEventHandler(this.validateComboBox);
//
@ -5735,6 +5764,9 @@ public void InitializeComponent()
this.FLP_OriginGame.ResumeLayout(false);
this.FLP_MetLocation.ResumeLayout(false);
this.FLP_Ball.ResumeLayout(false);
this.FLP_BallLeft.ResumeLayout(false);
this.FLP_BallLeft.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.PB_Ball)).EndInit();
this.FLP_MetLevel.ResumeLayout(false);
this.FLP_MetLevel.PerformLayout();
this.FLP_MetDate.ResumeLayout(false);
@ -6302,6 +6334,8 @@ public void InitializeComponent()
private System.Windows.Forms.ToolStripMenuItem Menu_Redo;
private System.Windows.Forms.PictureBox PB_MarkAlola;
private System.Windows.Forms.Button B_OpenPokeBeans;
private System.Windows.Forms.FlowLayoutPanel FLP_BallLeft;
private System.Windows.Forms.PictureBox PB_Ball;
}
}

View File

@ -1843,6 +1843,10 @@ private void clickMoves(object sender, EventArgs e)
}
// Prompted Updates of PKX Functions //
private bool changingFields;
private void updateBall(object sender, EventArgs e)
{
PB_Ball.Image = PKX.getBallSprite(Util.getIndex(CB_Ball));
}
private void updateEXPLevel(object sender, EventArgs e)
{
if (changingFields || !fieldsInitialized) return;

File diff suppressed because it is too large Load Diff

View File

@ -3688,6 +3688,84 @@
<ItemGroup>
<None Include="Resources\text\zh\text_Species_zh2_alt.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball16.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball17.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball18.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball19.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball20.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball21.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball22.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball23.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball24.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball25.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball26.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball1.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball2.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball3.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball4.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball5.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball6.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball7.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball8.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball9.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball10.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball11.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball12.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball13.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball14.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\img\ball\_ball15.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.

View File

@ -512,6 +512,10 @@ public static uint getRandomPID(int species, int cg, int origin, int nature, int
}
// Data Requests
public static Image getBallSprite(int ball)
{
return (Image)Resources.ResourceManager.GetObject("_ball" + ball) ?? Resources._ball4; // Poké Ball (default)
}
public static Image getSprite(int species, int form, int gender, int item, bool isegg, bool shiny, int generation = -1)
{
if (species == 0)

View File

@ -10360,6 +10360,266 @@ internal class Resources {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball1 {
get {
object obj = ResourceManager.GetObject("_ball1", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball10 {
get {
object obj = ResourceManager.GetObject("_ball10", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball11 {
get {
object obj = ResourceManager.GetObject("_ball11", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball12 {
get {
object obj = ResourceManager.GetObject("_ball12", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball13 {
get {
object obj = ResourceManager.GetObject("_ball13", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball14 {
get {
object obj = ResourceManager.GetObject("_ball14", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball15 {
get {
object obj = ResourceManager.GetObject("_ball15", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball16 {
get {
object obj = ResourceManager.GetObject("_ball16", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball17 {
get {
object obj = ResourceManager.GetObject("_ball17", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball18 {
get {
object obj = ResourceManager.GetObject("_ball18", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball19 {
get {
object obj = ResourceManager.GetObject("_ball19", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball2 {
get {
object obj = ResourceManager.GetObject("_ball2", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball20 {
get {
object obj = ResourceManager.GetObject("_ball20", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball21 {
get {
object obj = ResourceManager.GetObject("_ball21", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball22 {
get {
object obj = ResourceManager.GetObject("_ball22", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball23 {
get {
object obj = ResourceManager.GetObject("_ball23", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball24 {
get {
object obj = ResourceManager.GetObject("_ball24", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball25 {
get {
object obj = ResourceManager.GetObject("_ball25", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball26 {
get {
object obj = ResourceManager.GetObject("_ball26", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball3 {
get {
object obj = ResourceManager.GetObject("_ball3", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball4 {
get {
object obj = ResourceManager.GetObject("_ball4", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball5 {
get {
object obj = ResourceManager.GetObject("_ball5", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball6 {
get {
object obj = ResourceManager.GetObject("_ball6", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball7 {
get {
object obj = ResourceManager.GetObject("_ball7", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball8 {
get {
object obj = ResourceManager.GetObject("_ball8", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _ball9 {
get {
object obj = ResourceManager.GetObject("_ball9", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>

View File

@ -7291,4 +7291,82 @@
<data name="fashion_m_sm" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\byte\fashion_m_sm;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="_ball1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball10" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball11" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball12" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball12.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball13" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball13.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball14" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball14.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball15" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball15.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball16" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball17" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball17.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball18" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball18.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball19" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball19.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball20" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball20.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball21" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball21.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball22" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball22.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball23" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball23.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball24" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball25" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball25.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball26" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball26.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball5.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball6" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball6.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball7" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball7.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball8" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="_ball9" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\img\ball\_ball9.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 385 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 389 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 397 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 381 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 409 B