Note: This was built using Chrome, so it may not work in other browsers.
This is a tool for listing and analyzing different moves for your creatures in Pokemon Go (more info at bottom).
If you are from the area, feel free to join the Southern Illinois Pokemon Go Discord Chat Group.
Database of Moves not found! PokeDB.txt file must be in the same location as this editor if ran locally. You must update the Database before continuing, or load your file from an alternate source.
If you have a database file with an alternate location or name, you can load it here:
Or, to update your Database of Moves (or create a new one), you can get the preferred data from pvpoke.
Just click the button to "Copy raw contents," or press the "Raw" button and copy the contents from there (CTRL+A then CRL+C),
or you can save the raw JSON file to your device and load it using the "Choose File" button above.
The old source for data was Bulbapedia, but they are slow to update. You can still use it by copying the text from that entire page.
(Note that some attack names vary slightly, which will require inputting pokemon again if you change data sources.)
- Once you have the data copied, select the following text area and press CTRL+V (or Right-Click > Paste) to paste all the text here:
- Finally, just press this button to read and parse the text into the Database:
If base move stats have changed in game, you can either re-edit the affected pokemon after updating the Database,
Or click here to recalculate all entries in the table (can be slow if you have many entires):
Input New Pokemon
- Use Tab to jump to the next input field.
- For drop-down lists, you can start typing the name of the attack, then press TAB or ENTER.
- Hover over most fields for more info.
Name
Type Shadow
CP
note
Fast Move
DPS
EPS
Total
Duration
Damage / Energy per Attack
/
Charge Move(s)
Dam
Cost
Efficiency
Speed
Special Effect Chance
Click Headers to Sort Table
(values shown are for Player or Team Rocket Battles.)
Showing CP Ranges:
up to 500 501-15001501-2500Over 2500
Name
Type
CP
note
Fast Move
DPS
Charge Move
Dam
Speed
Special Effect
chance
Ed/Del
Sel
All changes made are temporary unless you
- Be absolutely sure to verify that the file was created, especially if you are overwriting the same file.
- One way to do this is to click to Save again, and check for the file in the Save As window, then Cancel or save an extra copy with a different name.
Save the PokeDB.txt file in the same location as this editor (if ran locally), or somewhere easy to find.
If the file alredy exists, be sure to select and overwrite it with the same file name.
Or you can save differnt file names for different lists of Pokemon, such as ones under 1500CP.txt, etc.
Tip: Click the appropriate header to select your preferred sort order before saving.
(If you've done a lot of editing, be safe and keep a backup copy of your file --
unforseen things might go wrong with my jankey coding and corrupt your Database.)
App Version: 2.01 (tinyvast.com)
I just wanted an easy way to look at and compare various stats of my Pokemon, to help select teams for GO Battle League and Team Rocket battles in Pokemon Go. It was too tedious to write out stats in a text file while having to keep checking various web sites to get the numbers for various moves and then do calculations... so I thought I should just create something to do all the calculations for me. Javascript & HTML may be an odd choice to create a local editor application, but it's free and can run on pretty much any computer. Though, I built this in Chrome, so I have no idea about compatibility with other browsers! Also, it will look ugly as crap on mobile screens, I'm sure.
But I did try to make it user-friendly, since I thought other people may find this useful too. It's pretty handy to check move stats by selecting them from the drop-down lists, rather than referencing different web pages.
More technical info: Basically I just read in all the text copied from the Bulbapedia page (which may contain its own errors), then parse through it to make databases of all the moves, which I can then access to grab whichever stats I want to calculate. If the Bulbapedia page ever dramatically changes format, then my scripts will likely choke when trying to read the text. And of course, I focused on the PVP stats, since it's almost pointless to crunch numbers for raids and gyms.... (NOTE: I now prefer to read the data from pvpoke, because Bulbapedia is slow to update, and contains omissions. This tool can now read from either source, but there are small compatibility issues with some moves due to slight differences in the attack names on each source.)
The databases are saved to a local .txt file to make it easy to read them back into this editor. If you are running this locally by a saved copy, just be sure this "PokeTracker.html" file and the "PokeDB.txt" file are in the same location on your computer. I also use some images from Bulbapedia, so make sure the "PokeImg" folder is also in that location. Of course, that's only if you want to download a copy to use offline (in which case you will need to browse this directory to see and grab all the files). On the other hand, this should work fine from here (online) without having to download anything unless you want to save your lists of pokemon and reload them later.