Initial
22
.gitattributes
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
|
||||
# Custom for Visual Studio
|
||||
*.cs diff=csharp
|
||||
*.sln merge=union
|
||||
*.csproj merge=union
|
||||
*.vbproj merge=union
|
||||
*.fsproj merge=union
|
||||
*.dbproj merge=union
|
||||
|
||||
# Standard to msysgit
|
||||
*.doc diff=astextplain
|
||||
*.DOC diff=astextplain
|
||||
*.docx diff=astextplain
|
||||
*.DOCX diff=astextplain
|
||||
*.dot diff=astextplain
|
||||
*.DOT diff=astextplain
|
||||
*.pdf diff=astextplain
|
||||
*.PDF diff=astextplain
|
||||
*.rtf diff=astextplain
|
||||
*.RTF diff=astextplain
|
215
.gitignore
vendored
Normal file
|
@ -0,0 +1,215 @@
|
|||
#################
|
||||
## Eclipse
|
||||
#################
|
||||
|
||||
*.pydevproject
|
||||
.project
|
||||
.metadata
|
||||
bin/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*~.nib
|
||||
local.properties
|
||||
.classpath
|
||||
.settings/
|
||||
.loadpath
|
||||
|
||||
# External tool builders
|
||||
.externalToolBuilders/
|
||||
|
||||
# Locally stored "Eclipse launch configurations"
|
||||
*.launch
|
||||
|
||||
# CDT-specific
|
||||
.cproject
|
||||
|
||||
# PDT-specific
|
||||
.buildpath
|
||||
|
||||
|
||||
#################
|
||||
## Visual Studio
|
||||
#################
|
||||
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
*.sln.docstates
|
||||
|
||||
# Build results
|
||||
|
||||
[Dd]ebug/
|
||||
[Rr]elease/
|
||||
x64/
|
||||
build/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
*_i.c
|
||||
*_p.c
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.log
|
||||
*.scc
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# NCrunch
|
||||
*.ncrunch*
|
||||
.*crunch*.local.xml
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress/
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish/
|
||||
|
||||
# Publish Web Output
|
||||
*.Publish.xml
|
||||
*.pubxml
|
||||
|
||||
# NuGet Packages Directory
|
||||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
|
||||
#packages/
|
||||
|
||||
# Windows Azure Build Output
|
||||
csx
|
||||
*.build.csdef
|
||||
|
||||
# Windows Store app package directory
|
||||
AppPackages/
|
||||
|
||||
# Others
|
||||
sql/
|
||||
*.Cache
|
||||
ClientBin/
|
||||
[Ss]tyle[Cc]op.*
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.[Pp]ublish.xml
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# Backup & report files from converting an old project file to a newer
|
||||
# Visual Studio version. Backup files are not needed, because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
UpgradeLog*.htm
|
||||
|
||||
# SQL Server files
|
||||
App_Data/*.mdf
|
||||
App_Data/*.ldf
|
||||
|
||||
#############
|
||||
## Windows detritus
|
||||
#############
|
||||
|
||||
# Windows image file caches
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
|
||||
# Folder config file
|
||||
Desktop.ini
|
||||
|
||||
# Recycle Bin used on file shares
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Mac crap
|
||||
.DS_Store
|
||||
|
||||
|
||||
#############
|
||||
## Python
|
||||
#############
|
||||
|
||||
*.py[co]
|
||||
|
||||
# Packages
|
||||
*.egg
|
||||
*.egg-info
|
||||
dist/
|
||||
build/
|
||||
eggs/
|
||||
parts/
|
||||
var/
|
||||
sdist/
|
||||
develop-eggs/
|
||||
.installed.cfg
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
.coverage
|
||||
.tox
|
||||
|
||||
#Translations
|
||||
*.mo
|
||||
|
||||
#Mr Developer
|
||||
.mr.developer.cfg
|
1494
PKHeX.csproj
Normal file
20
PKHeX.sln
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual C# Express 2010
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PKHeX", "PKHeX.csproj", "{B4EFF030-C75A-49F9-A4BC-738D1B61C4AF}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{B4EFF030-C75A-49F9-A4BC-738D1B61C4AF}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{B4EFF030-C75A-49F9-A4BC-738D1B61C4AF}.Debug|x86.Build.0 = Debug|x86
|
||||
{B4EFF030-C75A-49F9-A4BC-738D1B61C4AF}.Release|x86.ActiveCfg = Release|x86
|
||||
{B4EFF030-C75A-49F9-A4BC-738D1B61C4AF}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
21
Program.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
38
Properties/AssemblyInfo.cs
Normal file
|
@ -0,0 +1,38 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Resources;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("PKHeX")]
|
||||
[assembly: AssemblyDescription("Pokémon Editor for Pokémon X/Y")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("ProjectPokémon")]
|
||||
[assembly: AssemblyProduct("PKHeX")]
|
||||
[assembly: AssemblyCopyright("Kaphotics")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("fda550dc-8ad4-4b1c-9fee-1375b810cde1")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// 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("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: NeutralResourcesLanguageAttribute("en")]
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is automatically generated by Visual Studio .Net. It is
|
||||
used to store generic object data source configuration information.
|
||||
Renaming the file extension or editing the content of this file may
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Resources" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Editor.Properties.Resources, Properties.Resources.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
10
Properties/DataSources/Editor.Properties.Settings.datasource
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is automatically generated by Visual Studio .Net. It is
|
||||
used to store generic object data source configuration information.
|
||||
Renaming the file extension or editing the content of this file may
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Settings" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Editor.Properties.Settings, Properties.Resources.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is automatically generated by Visual Studio .Net. It is
|
||||
used to store generic object data source configuration information.
|
||||
Renaming the file extension or editing the content of this file may
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Form1" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>WindowsFormsApplication1.Form1, Editor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is automatically generated by Visual Studio .Net. It is
|
||||
used to store generic object data source configuration information.
|
||||
Renaming the file extension or editing the content of this file may
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Program" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>WindowsFormsApplication1.Program, Editor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
16770
Properties/Resources.Designer.cs
generated
Normal file
3574
Properties/Resources.resx
Normal file
26
Properties/Settings.Designer.cs
generated
Normal file
|
@ -0,0 +1,26 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.296
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace PKHeX.Properties {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default {
|
||||
get {
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
5
Properties/Settings.settings
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles />
|
||||
<Settings />
|
||||
</SettingsFile>
|
BIN
Resources/img/Pokemon Sprites/0.png
Normal file
After Width: | Height: | Size: 151 B |
BIN
Resources/img/Pokemon Sprites/1.png
Normal file
After Width: | Height: | Size: 407 B |
BIN
Resources/img/Pokemon Sprites/10.png
Normal file
After Width: | Height: | Size: 351 B |
BIN
Resources/img/Pokemon Sprites/100.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
Resources/img/Pokemon Sprites/101.png
Normal file
After Width: | Height: | Size: 327 B |
BIN
Resources/img/Pokemon Sprites/102.png
Normal file
After Width: | Height: | Size: 434 B |
BIN
Resources/img/Pokemon Sprites/103.png
Normal file
After Width: | Height: | Size: 474 B |
BIN
Resources/img/Pokemon Sprites/104.png
Normal file
After Width: | Height: | Size: 402 B |
BIN
Resources/img/Pokemon Sprites/105.png
Normal file
After Width: | Height: | Size: 448 B |
BIN
Resources/img/Pokemon Sprites/106.png
Normal file
After Width: | Height: | Size: 424 B |
BIN
Resources/img/Pokemon Sprites/107.png
Normal file
After Width: | Height: | Size: 406 B |
BIN
Resources/img/Pokemon Sprites/108.png
Normal file
After Width: | Height: | Size: 430 B |
BIN
Resources/img/Pokemon Sprites/109.png
Normal file
After Width: | Height: | Size: 537 B |
BIN
Resources/img/Pokemon Sprites/11.png
Normal file
After Width: | Height: | Size: 278 B |
BIN
Resources/img/Pokemon Sprites/110.png
Normal file
After Width: | Height: | Size: 606 B |
BIN
Resources/img/Pokemon Sprites/111.png
Normal file
After Width: | Height: | Size: 410 B |
BIN
Resources/img/Pokemon Sprites/112.png
Normal file
After Width: | Height: | Size: 510 B |
BIN
Resources/img/Pokemon Sprites/113.png
Normal file
After Width: | Height: | Size: 412 B |
BIN
Resources/img/Pokemon Sprites/114.png
Normal file
After Width: | Height: | Size: 409 B |
BIN
Resources/img/Pokemon Sprites/115-1.png
Normal file
After Width: | Height: | Size: 530 B |
BIN
Resources/img/Pokemon Sprites/115.png
Normal file
After Width: | Height: | Size: 456 B |
BIN
Resources/img/Pokemon Sprites/116.png
Normal file
After Width: | Height: | Size: 369 B |
BIN
Resources/img/Pokemon Sprites/117.png
Normal file
After Width: | Height: | Size: 444 B |
BIN
Resources/img/Pokemon Sprites/118.png
Normal file
After Width: | Height: | Size: 458 B |
BIN
Resources/img/Pokemon Sprites/119.png
Normal file
After Width: | Height: | Size: 470 B |
BIN
Resources/img/Pokemon Sprites/12.png
Normal file
After Width: | Height: | Size: 447 B |
BIN
Resources/img/Pokemon Sprites/120.png
Normal file
After Width: | Height: | Size: 375 B |
BIN
Resources/img/Pokemon Sprites/121.png
Normal file
After Width: | Height: | Size: 417 B |
BIN
Resources/img/Pokemon Sprites/122.png
Normal file
After Width: | Height: | Size: 426 B |
BIN
Resources/img/Pokemon Sprites/123.png
Normal file
After Width: | Height: | Size: 425 B |
BIN
Resources/img/Pokemon Sprites/124.png
Normal file
After Width: | Height: | Size: 471 B |
BIN
Resources/img/Pokemon Sprites/125.png
Normal file
After Width: | Height: | Size: 436 B |
BIN
Resources/img/Pokemon Sprites/126.png
Normal file
After Width: | Height: | Size: 476 B |
BIN
Resources/img/Pokemon Sprites/127-1.png
Normal file
After Width: | Height: | Size: 664 B |
BIN
Resources/img/Pokemon Sprites/127.png
Normal file
After Width: | Height: | Size: 447 B |
BIN
Resources/img/Pokemon Sprites/128.png
Normal file
After Width: | Height: | Size: 462 B |
BIN
Resources/img/Pokemon Sprites/129.png
Normal file
After Width: | Height: | Size: 500 B |
BIN
Resources/img/Pokemon Sprites/13.png
Normal file
After Width: | Height: | Size: 348 B |
BIN
Resources/img/Pokemon Sprites/130-1.png
Normal file
After Width: | Height: | Size: 673 B |
BIN
Resources/img/Pokemon Sprites/130.png
Normal file
After Width: | Height: | Size: 621 B |
BIN
Resources/img/Pokemon Sprites/131.png
Normal file
After Width: | Height: | Size: 471 B |
BIN
Resources/img/Pokemon Sprites/132.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
Resources/img/Pokemon Sprites/133.png
Normal file
After Width: | Height: | Size: 394 B |
BIN
Resources/img/Pokemon Sprites/134.png
Normal file
After Width: | Height: | Size: 496 B |
BIN
Resources/img/Pokemon Sprites/135.png
Normal file
After Width: | Height: | Size: 441 B |
BIN
Resources/img/Pokemon Sprites/136.png
Normal file
After Width: | Height: | Size: 453 B |
BIN
Resources/img/Pokemon Sprites/137.png
Normal file
After Width: | Height: | Size: 418 B |
BIN
Resources/img/Pokemon Sprites/138.png
Normal file
After Width: | Height: | Size: 370 B |
BIN
Resources/img/Pokemon Sprites/139.png
Normal file
After Width: | Height: | Size: 423 B |
BIN
Resources/img/Pokemon Sprites/14.png
Normal file
After Width: | Height: | Size: 321 B |
BIN
Resources/img/Pokemon Sprites/140.png
Normal file
After Width: | Height: | Size: 326 B |
BIN
Resources/img/Pokemon Sprites/141.png
Normal file
After Width: | Height: | Size: 394 B |
BIN
Resources/img/Pokemon Sprites/142-1.png
Normal file
After Width: | Height: | Size: 563 B |
BIN
Resources/img/Pokemon Sprites/142.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
Resources/img/Pokemon Sprites/143.png
Normal file
After Width: | Height: | Size: 499 B |
BIN
Resources/img/Pokemon Sprites/144.png
Normal file
After Width: | Height: | Size: 441 B |
BIN
Resources/img/Pokemon Sprites/145.png
Normal file
After Width: | Height: | Size: 466 B |
BIN
Resources/img/Pokemon Sprites/146.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
Resources/img/Pokemon Sprites/147.png
Normal file
After Width: | Height: | Size: 376 B |
BIN
Resources/img/Pokemon Sprites/148.png
Normal file
After Width: | Height: | Size: 451 B |
BIN
Resources/img/Pokemon Sprites/149.png
Normal file
After Width: | Height: | Size: 500 B |
BIN
Resources/img/Pokemon Sprites/15.png
Normal file
After Width: | Height: | Size: 470 B |
BIN
Resources/img/Pokemon Sprites/150-1.png
Normal file
After Width: | Height: | Size: 518 B |
BIN
Resources/img/Pokemon Sprites/150-2.png
Normal file
After Width: | Height: | Size: 524 B |
BIN
Resources/img/Pokemon Sprites/150.png
Normal file
After Width: | Height: | Size: 460 B |
BIN
Resources/img/Pokemon Sprites/151.png
Normal file
After Width: | Height: | Size: 423 B |
BIN
Resources/img/Pokemon Sprites/152.png
Normal file
After Width: | Height: | Size: 385 B |
BIN
Resources/img/Pokemon Sprites/153.png
Normal file
After Width: | Height: | Size: 462 B |
BIN
Resources/img/Pokemon Sprites/154.png
Normal file
After Width: | Height: | Size: 533 B |
BIN
Resources/img/Pokemon Sprites/155.png
Normal file
After Width: | Height: | Size: 418 B |
BIN
Resources/img/Pokemon Sprites/156.png
Normal file
After Width: | Height: | Size: 468 B |
BIN
Resources/img/Pokemon Sprites/157.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
Resources/img/Pokemon Sprites/158.png
Normal file
After Width: | Height: | Size: 403 B |
BIN
Resources/img/Pokemon Sprites/159.png
Normal file
After Width: | Height: | Size: 480 B |
BIN
Resources/img/Pokemon Sprites/159b.png
Normal file
After Width: | Height: | Size: 468 B |
BIN
Resources/img/Pokemon Sprites/16.png
Normal file
After Width: | Height: | Size: 409 B |
BIN
Resources/img/Pokemon Sprites/160.png
Normal file
After Width: | Height: | Size: 605 B |
BIN
Resources/img/Pokemon Sprites/161.png
Normal file
After Width: | Height: | Size: 404 B |
BIN
Resources/img/Pokemon Sprites/162.png
Normal file
After Width: | Height: | Size: 434 B |
BIN
Resources/img/Pokemon Sprites/163.png
Normal file
After Width: | Height: | Size: 374 B |
BIN
Resources/img/Pokemon Sprites/164.png
Normal file
After Width: | Height: | Size: 469 B |
BIN
Resources/img/Pokemon Sprites/165.png
Normal file
After Width: | Height: | Size: 382 B |
BIN
Resources/img/Pokemon Sprites/166.png
Normal file
After Width: | Height: | Size: 438 B |
BIN
Resources/img/Pokemon Sprites/167.png
Normal file
After Width: | Height: | Size: 392 B |
BIN
Resources/img/Pokemon Sprites/168.png
Normal file
After Width: | Height: | Size: 485 B |
BIN
Resources/img/Pokemon Sprites/169.png
Normal file
After Width: | Height: | Size: 452 B |