blob: 8f644259453a7c9c528056e5433ae651cbe87017 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import json
from pathlib import Path
from discord import Embed
from discord.ext import commands
from bot.utils.randomization import RandomCycle
with Path("bot/resources/easter/save_the_planet.json").open('r', encoding='utf8') as f:
EMBED_DATA = RandomCycle(json.load(f))
class SaveThePlanet(commands.Cog):
"""A cog that teaches users how they can help our planet."""
def __init__(self, bot: commands.Bot) -> None:
self.bot = bot
@commands.command(aliases=('savetheearth', 'saveplanet', 'saveearth'))
async def savetheplanet(self, ctx: commands.Context) -> None:
"""Responds with a random tip on how to be eco-friendly and help our planet."""
return_embed = Embed.from_dict(next(EMBED_DATA))
await ctx.send(embed=return_embed)
def setup(bot: commands.Bot) -> None:
"""Save the Planet Cog load."""
bot.add_cog(SaveThePlanet(bot))
|