qrm2/exts/fun.py

37 lines
1011 B
Python
Raw Normal View History

2019-10-04 20:19:31 -04:00
"""
Fun extension for qrm
2019-10-04 20:19:31 -04:00
---
2019-10-05 02:23:11 -04:00
Copyright (C) 2019 Abigail Gold, 0x5c
2019-10-04 20:19:31 -04:00
This file is part of discord-qrm2 and is released under the terms of the GNU
2019-10-05 02:23:11 -04:00
General Public License, version 2.
2019-10-04 20:19:31 -04:00
"""
import discord.ext.commands as commands
import common as cmn
2019-10-04 20:19:31 -04:00
class FunCog(commands.Cog):
def __init__(self, bot: commands.Bot):
2019-10-04 20:19:31 -04:00
self.bot = bot
@commands.command(name="xkcd", aliases=['x'], category=cmn.cat.fun)
async def _xkcd(self, ctx: commands.Context, number: str):
2019-10-04 20:19:31 -04:00
'''Look up an xkcd by number.'''
await ctx.send('http://xkcd.com/' + number)
2019-10-04 20:19:31 -04:00
@commands.command(name="tar", category=cmn.cat.fun)
async def _tar(self, ctx: commands.Context):
2019-10-04 20:19:31 -04:00
'''Returns an xkcd about tar.'''
await ctx.send('http://xkcd.com/1168')
@commands.command(name="xd", hidden=True, category=cmn.cat.fun)
async def _xd(self, ctx: commands.Context):
2019-10-04 20:19:31 -04:00
'''ecks dee'''
await ctx.send('ECKS DEE :smirk:')
def setup(bot: commands.Bot):
2019-10-04 20:19:31 -04:00
bot.add_cog(FunCog(bot))