24 lines
903 B
Python
24 lines
903 B
Python
import discord
|
|
from discord import app_commands
|
|
from discord.ext import commands
|
|
import os
|
|
import util
|
|
|
|
class Victimization(commands.Cog):
|
|
def __init__(self, bot: commands.Bot) -> None:
|
|
self.bot = bot
|
|
|
|
@app_commands.command(name="cook", description="Cooking show magic :meowlien:")
|
|
@app_commands.allowed_installs(guilds=False, users=True)
|
|
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
|
|
async def cook(self, interaction: discord.Interaction, victim: discord.User) -> None:
|
|
embed = discord.Embed()
|
|
embed.title = "My token"
|
|
embed.description = os.getenv("TOKEN") if util.is_owner(interaction.user.id) else "[object Object]"
|
|
embed.color = 0x00EAFF
|
|
await interaction.response.send_message(embed=embed, ephemeral=True)
|
|
|
|
|
|
|
|
async def setup(bot: commands.Bot) -> None:
|
|
await bot.add_cog(Victimization(bot)) |