Compare commits
3 Commits
master
...
secrethitl
Author | SHA1 | Date |
---|---|---|
bobloy | 773864950e | 6 years ago |
bobloy | 8c87a540e8 | 6 years ago |
bobloy | c783395a6d | 6 years ago |
@ -0,0 +1,6 @@
|
||||
from .secrethitler import SecretHitler
|
||||
|
||||
|
||||
def setup(bot):
|
||||
hitler = SecretHitler(bot)
|
||||
bot.add_cog(hitler)
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"author": [
|
||||
"Bobloy"
|
||||
],
|
||||
"bot_version": [
|
||||
3,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"description": "Secret Hitler Game",
|
||||
"hidden": true,
|
||||
"install_msg": "Thank you for installing SecretHitler! Get started with `[p]load secrethitler`",
|
||||
"requirements": [],
|
||||
"short": "Secret Hitler Game",
|
||||
"tags": [
|
||||
"hitler",
|
||||
"secret",
|
||||
"party",
|
||||
"fun",
|
||||
"game",
|
||||
"bobloy"
|
||||
]
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
from redbot.core import commands
|
||||
|
||||
|
||||
class SecretHitler:
|
||||
"""
|
||||
Base to host Secret Hitler on a guild
|
||||
"""
|
||||
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
@commands.group()
|
||||
async def secrethitler(self, ctx: commands.Context):
|
||||
"""
|
||||
Base command for this cog. Check help for the commands list.
|
||||
"""
|
||||
if ctx.invoked_subcommand is None:
|
||||
pass
|
Loading…
Reference in new issue