diff --git a/info.json b/info.json new file mode 100644 index 0000000..6f267f6 --- /dev/null +++ b/info.json @@ -0,0 +1,6 @@ +{ + "NAME": "JuniTeeVee Cogs", + "AUTHOR" : "Juni (juniteevee)", + "SHORT": "Some Cogs for my personal use", + "DESCRIPTION" : "Hello. Install at your own risk" +} \ No newline at end of file diff --git a/reactquote/__init__.py b/reactquote/__init__.py new file mode 100644 index 0000000..daeaa1f --- /dev/null +++ b/reactquote/__init__.py @@ -0,0 +1,5 @@ +from .reactquote import ReactQuote + + +def setup(bot): + bot.add_cog(ReactQuote(bot)) \ No newline at end of file diff --git a/reactquote/info.json b/reactquote/info.json new file mode 100644 index 0000000..6ef4798 --- /dev/null +++ b/reactquote/info.json @@ -0,0 +1,8 @@ +{ + "AUTHOR" : "Juni (juniteevee)", + "DESCRIPTION" : "Save quotes by reacting to them and bring them up later", + "DISABLED" : false, + "SHORT" : "Save quotes by reacting to them and bring them up later", + "NAME" : "React Quotes", + "INSTALL_CMD" : "React Quotes. Install at own risk" +} \ No newline at end of file diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py new file mode 100644 index 0000000..acf05b4 --- /dev/null +++ b/reactquote/reactquote.py @@ -0,0 +1,13 @@ +from redbot.core import commands + +class ReactQuote(commands.Cog): + """Cog to store quotes by reacting with speech bubble""" + + def __init__(self, bot): + self.bot = bot + + @commands.command() + async def reactquote(self, ctx): + """This does stuff!""" + # Your code will go here + await ctx.send("I can do stuff!") \ No newline at end of file