From b5e5c37208723d0170776006a5ab3d1c01984bbc Mon Sep 17 00:00:00 2001 From: phixxy Date: Sat, 6 Jan 2024 09:20:46 -0800 Subject: [PATCH] started pokemon function --- sparkytron3000.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sparkytron3000.py b/sparkytron3000.py index 180c5d3..51de8eb 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -1659,6 +1659,16 @@ async def roll(ctx, dice_string): await ctx.send(f'{dice_str} + {modifier} = {total}' if modifier != 0 else f'{dice_str} = {total}') + +@bot.command( + description="Pokemon", + help="Pokemon game", + brief="Pokemon Game", + hidden=True + ) +async def pkmn(ctx, pokemon): + pass + @bot.command( description="Pokedex", help="Get information on pokemon",