Hello, I have a small amount of experience creating commands but am having some trouble trying to figure out the proper syntax for what I need. I'd like to be able to fetch info about specific Pokémon with a !dex command, I've decided to take on the task of creating a pastebin to draw info from so that it fits the character limit for twitch while also being informative about each Pokémon. I'm using JSON format with the entries as such:
{"Pokémon1":"Info about Pokémon 1",
"Pokémon2":"Info about Pokémon 2",
"Pokémon3":"Info about Pokémon 3"
}
What would be the best way for me to target each specific entry, for example, if I want to know about Pokémon 1, I can do !dex Pokémon1 and retrieve the appropriate information?