because nilllzz got the pokemon data system going it needed some data, so i got working on a parser for the big csv db trangar linked. it took too long so he's made a bunch for the already working pokemon but i'm nearly done with the parser.
i got it to a point where i can read every stat except moves, which will take an edit to the csv for that to make it compatible with my program (i need key values to check against columns with the same n-dex number, the moves csv have a line per move) evolutions because i havent figured out how the csv stores that yet. and the way they've written pokedex entries messes my thing up too (again, multi line, but this time they have line breaks inside the same 'entry' but theres no comma between it so every other csv thing reads it fine. i need to make all those newlines disappear somehow, if anyone has any ideas i'd love to head them.
species_id,version_id,language_id,flavor_text
1,1,9,"A strange seed was
planted on its
back at birth.The plant sprouts
and grows with
this POKéMON."
i want them like
species_id,version_id,language_id,flavor_text
1,1,9,"A strange seed was planted on its back at birth.The plant sprouts and grows with this POKéMON."
but do that for like 10 entries per pokemon (for each version and language) for 648 pokemon and thats a job no one can get done without a program doing it in a batch.
the other edit will be easy, i'll open it in open office's excel clone which seems to take and save it fine, and add a new column and auto fill numbers 1-n with the select then drag down thing you can do to continue patterns

shouldn't take too long to do to 1-251. im only doing data for gen 1 and 2 at this point because the pokemon in gen 3-5 have stuff the current system doesnt know how to handle yet like forms and evolutions by gender and stuff
the good thing about this program is once its done if the format for pokemon data changes the program can be changed to suit and the new files regenerated in 1 go.