diff --git a/lynxie/__init__.py b/lynxie/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lynxie/__main__.py b/lynxie/__main__.py index 572e24f..b00f89b 100644 --- a/lynxie/__main__.py +++ b/lynxie/__main__.py @@ -53,11 +53,6 @@ async def on_message_edit(before, after): ): return - # await before.channel.send( - # f"@{before.author} edited their message!!!\n" - # f'"{before.content}" --> "{after.content}"' - # ) - async def run(): async with lynxie: diff --git a/lynxie/commands/e621.py b/lynxie/commands/e621.py new file mode 100644 index 0000000..2a262f4 --- /dev/null +++ b/lynxie/commands/e621.py @@ -0,0 +1,12 @@ +import requests + +from discord.ext import commands + + +class E621(commands.Cog): + def __init__(self, bot): + self.bot = bot + + @commands.command() + async def e621(self, ctx): + await ctx.reply(f":3") diff --git a/lynxie/commands/hello.py b/lynxie/commands/hello.py index 7ec0e08..598524e 100644 --- a/lynxie/commands/hello.py +++ b/lynxie/commands/hello.py @@ -1,3 +1,4 @@ +import discord from discord.ext import commands @@ -7,4 +8,10 @@ class Hello(commands.Cog): @commands.command() async def hello(self, ctx): - await ctx.send(f"Hello from England, {ctx.author.mention}!") + embed = discord.Embed( + title="Hello!", + description="I'm Lynxie, a multipurpose Discord bot written in Python!", + color=discord.Color.orange(), + ) + + await ctx.reply(embed=embed) diff --git a/lynxie/commands/help.py b/lynxie/commands/help.py index 4b654cd..43409fd 100644 --- a/lynxie/commands/help.py +++ b/lynxie/commands/help.py @@ -14,7 +14,8 @@ class Help(commands.Cog): "play ": "Play a song from YouTube, SoundCloud, etc.", "stop": "Stop the current song and leave the voice channel", "animal ": "Get a random image of an animal!", - "overlay