diff --git a/riot/riot.py b/riot/riot.py new file mode 100644 index 0000000..3c748c9 --- /dev/null +++ b/riot/riot.py @@ -0,0 +1,17 @@ +import discord +from discord.ext import commands + + +class Riot: + + def __init__(self, bot): + self.bot = bot + + @commands.command(pass_context=True, no_pm=True) + async def riot(self, ctx, *, text: str): + """RIOT!""" + await self.bot.say('ヽ༼ຈل͜ຈ༽ノ **' + str(text) + '** ヽ༼ຈل͜ຈ༽ノ') + + +def setup(bot): + bot.add_cog(Riot(bot))