mirror of
https://github.com/MrUnknownDE/redbot-assets.git
synced 2026-04-06 00:31:57 +02:00
23 lines
1006 B
Python
23 lines
1006 B
Python
import discord
|
|
from redbot.core import commands
|
|
|
|
class MrUnknownDE(commands.Cog):
|
|
"""Mein persönliches Info-Cog."""
|
|
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.hybrid_command()
|
|
async def mrunknown(self, ctx: commands.Context):
|
|
"""Zeigt Informationen über MrUnknownDE."""
|
|
embed = discord.Embed(
|
|
title="MrUnknownDE",
|
|
description="Hey! I'm Unknown, a somewhat chaotic digital creature based in Germany. This site is the central hub for my VRChat experiments, IoT drink scales, and other side projects. Feel free to look around and poke at things!",
|
|
color=discord.Color.purple(), # Ein schönes Lila als Akzentfarbe
|
|
url="https://mrunk.de"
|
|
)
|
|
embed.set_thumbnail(url="https://mrunk.de/pic/profil_pic.webp") # Optionales Thumbnail, falls vorhanden
|
|
embed.add_field(name="🌐 Webseite", value="[https://mrunk.de](https://mrunk.de)", inline=False)
|
|
|
|
await ctx.send(embed=embed)
|