• Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

EV Counter

Full Metal

C(++) Developer.
  • 808
    Posts
    17
    Years
    I'm sure there's a better one out there, but I was unable to find it.
    Anyways, a python utility that keeps track of ev's.


    Use it like such:
    pktrain.py pokemon_name stat_name target_value

    stat_name = "hp", "atk", "def", "spatk", "spdef", or "speed"

    target_value = how many ev's do you want to have?

    pokemon_name = Not a number, or stat name. Also, for sanity's sake, I would not advise using spaces in your name. Remembering to escape spaces, or quote things is annoying.

    Notes:
    * Saves ev information in ./pokemon_name.TrainingTarget.json
    * Tested in python 3.3, but I don't believe anything was incompatible with python2.7.

    ToDo:
    * Battle support - Rather than only accepting new EV values, pass along a species name, and the program will find the appropriate EV yield from a database, report it, and continue.
    * Super Training support - Tell it which training regiment / level you successfully completed OR what training bag you just used.

    * GUI???

    Links:
    * [Github]
    * [Script]
     
    Back
    Top