tuxbot-bot/cogs/Useless.py

34 lines
3.7 KiB
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import logging
from discord.ext import commands
from app import TuxBot
from utils.functions.extra import ContextPlus, command_extra
log = logging.getLogger(__name__)
class Useless(commands.Cog, name="Useless"):
def __init__(self, bot):
self.bot = bot
@command_extra(name="space")
@commands.cooldown(1, 5, commands.BucketType.user)
async def _space(self, ctx: ContextPlus):
await ctx.send("""
> ˚              *                      .              .                                        ,   
>
> .             .   ゚      .             .
>
>       ,       .                             :sunny:                                      .           .             .                                                             ,           :rocket:        ,                  .           .                                             ˚          ,                            .                .             .               *                                    .                  .       .       .     :new_moon:           .           .            
>
>  ˚                     ゚     .               .     :earth_americas: ,                * .                   .                    ˚                                     .              . .                    ˚                                     .              .                                        ,   
>
> .             .   ゚      .             .
""")
def setup(bot: TuxBot):
cog = Useless(bot)
bot.add_cog(cog)