rsdex

A little command line tool written in rust that acts like the pokedex
Thank you to PokeAPI for providing the data for this project
rsdex 1 which will return bulbasaur's pokedex entry or
rsdex bulbasaur witch will also return bulbasaur pokedex info
if the pokemon has a space in the name replace it with a -
rsdex fire to get all fire type pokemon or
rsdex blue to get all the blue pokemon
To filter by stat you append the stat you want to the end such as
rsdex 20hp for Health
rsdex 20a for Attack
rsdex 20d for Defence
rsdex 20sa for Special Attack
rsdex 20sd for Special Defence
rsdex 20s for Speed
you can also do get stats with ≤ or ≥ the stat value by adding l or g to the begaining
rsdex g100hp returns all pokemon with ≥ 100 hp
rsdex l50s returns all pokemon with ≤ 50 speed
filtering by egg group is posible and for the egg groups that share a name with types add egg to the end
rsdex field for pokemon in the field egg group
rsdex fairyegg for the fairy egg group
when you do rsdex red --fp "red_pokemon.json" it will save the reasults to the specified file path
you can also add the --write_mode write mode to the end of it to change the write mode to another type
it also takes into acount the level of detail set
the pretty flag is set the write will be pretty if available
currently json,jsonl,and csv is supported