From f060896333a8a4426a7e6e277dfda1e47cc3556e Mon Sep 17 00:00:00 2001 From: Juni Date: Sat, 9 Apr 2022 13:32:53 -0400 Subject: [PATCH] Basic files --- info.json | 6 ++++++ reactquote/__init__.py | 5 +++++ reactquote/info.json | 8 ++++++++ reactquote/reactquote.py | 13 +++++++++++++ 4 files changed, 32 insertions(+) create mode 100644 info.json create mode 100644 reactquote/__init__.py create mode 100644 reactquote/info.json create mode 100644 reactquote/reactquote.py 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