diff options
author | 2020-04-02 14:39:24 +0200 | |
---|---|---|
committer | 2020-04-02 14:39:24 +0200 | |
commit | d77a2bbc50305d05371197f4cfe3354cfca4c627 (patch) | |
tree | be1eed54972d9843f66114311f93b68b579046ac /bot/exts/evergreen/magic_8ball.py | |
parent | Merge pull request #382 from ks129/game-fuzzy (diff) | |
parent | Merge master: adjust `Space` cog location (diff) |
Merge pull request #329 from python-discord/seasonal-purge
Deseasonify: Make all cogs available year-round, and manage only branding by season.
Diffstat (limited to 'bot/exts/evergreen/magic_8ball.py')
-rw-r--r-- | bot/exts/evergreen/magic_8ball.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/bot/exts/evergreen/magic_8ball.py b/bot/exts/evergreen/magic_8ball.py new file mode 100644 index 00000000..c10f1f51 --- /dev/null +++ b/bot/exts/evergreen/magic_8ball.py @@ -0,0 +1,31 @@ +import json +import logging +import random +from pathlib import Path + +from discord.ext import commands + +log = logging.getLogger(__name__) + + +class Magic8ball(commands.Cog): + """A Magic 8ball command to respond to a user's question.""" + + def __init__(self, bot: commands.Bot): + self.bot = bot + with open(Path("bot/resources/evergreen/magic8ball.json"), "r") as file: + self.answers = json.load(file) + + @commands.command(name="8ball") + async def output_answer(self, ctx: commands.Context, *, question: str) -> None: + """Return a Magic 8ball answer from answers list.""" + if len(question.split()) >= 3: + answer = random.choice(self.answers) + await ctx.send(answer) + else: + await ctx.send("Usage: .8ball <question> (minimum length of 3 eg: `will I win?`)") + + +def setup(bot: commands.Bot) -> None: + """Magic 8ball Cog load.""" + bot.add_cog(Magic8ball(bot)) |