Discord-Raid-bot/cogs/pbchimera.py

16 lines
520 B
Python
Raw Normal View History

2025-08-22 13:25:34 +00:00
import discord
from discord.ext import commands
from config import AUTHORIZED_CHANNEL_ID
from utils.pb_handler import handle_pb_command
class Pbchimera(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command(name="pbchimera")
async def pbchimera(self, ctx, arg1: str = None, arg2: str = None):
"""Commande !pbchimera avec gestion des difficultés"""
await handle_pb_command(ctx, 'chimera', arg1, arg2)
def setup(bot):
bot.add_cog(Pbchimera(bot))