bot: yes (#96)

This commit is contained in:
Bella | Nightshade 2019-05-10 17:18:44 +00:00 committed by Astrid
parent e3d4bf17c2
commit 5124d263d5
2 changed files with 5 additions and 0 deletions

View File

@ -205,6 +205,8 @@ async def command_root(ctx: CommandContext):
await misc_commands.pkfreeze(ctx) await misc_commands.pkfreeze(ctx)
elif ctx.match("starstorm"): elif ctx.match("starstorm"):
await misc_commands.pkstarstorm(ctx) await misc_commands.pkstarstorm(ctx)
elif ctx.match("mn"):
await misc_commands.pkmn(ctx)
elif ctx.match("commands"): elif ctx.match("commands"):
await misc_commands.command_list(ctx) await misc_commands.command_list(ctx)
else: else:

View File

@ -192,3 +192,6 @@ async def pkfreeze(ctx: CommandContext):
async def pkstarstorm(ctx: CommandContext): async def pkstarstorm(ctx: CommandContext):
await ctx.message.channel.send("*Vibrant colours burst forth from the sky as meteors rain down upon your opponent.*") await ctx.message.channel.send("*Vibrant colours burst forth from the sky as meteors rain down upon your opponent.*")
async def pkmn(ctx: CommandContext):
await ctx.message.channel.send("Gotta catch 'em all!")