diff --git a/conquest/__init__.py b/conquest/__init__.py new file mode 100644 index 0000000..5c4846a --- /dev/null +++ b/conquest/__init__.py @@ -0,0 +1,5 @@ +from .conquest import Conquest + + +def setup(bot): + bot.add_cog(Conquest(bot)) diff --git a/conquest/assets/ck2_blank.png b/conquest/assets/ck2_blank.png new file mode 100644 index 0000000..058abe7 Binary files /dev/null and b/conquest/assets/ck2_blank.png differ diff --git a/conquest/assets/ck2_numbered.png b/conquest/assets/ck2_numbered.png new file mode 100644 index 0000000..91a4c76 Binary files /dev/null and b/conquest/assets/ck2_numbered.png differ diff --git a/conquest/conquest.py b/conquest/conquest.py new file mode 100644 index 0000000..eab2b71 --- /dev/null +++ b/conquest/conquest.py @@ -0,0 +1,32 @@ +from redbot.core import Config, commands +from redbot.core.bot import Red + +import numpy as np +from skimage.color import rgb2lab, rgb2gray, lab2rgb +from skimage.io import imread, imshow +import matplotlib.pyplot as plt + + +class Conquest(commands.Cog): + """ + Cog Description + + Less important information about the cog + """ + + def __init__(self, bot: Red): + super().__init__() + self.bot = bot + self.config = Config.get_conf(self, identifier=0, force_registration=True) + + default_guild = {} + + self.config.register_guild(**default_guild) + + async def red_delete_data_for_user(self, **kwargs): + """Nothing to delete""" + return + + @commands.command() + async def conquest(self, ctx: commands.Context): + await ctx.send("Hello world")