Files
Syntrel/cogs/miscellaneous/labubu.py

65 lines
5.0 KiB
Python
Raw Permalink Normal View History

import discord
from discord.ext import commands
from discord.ext.commands import Context
def labubu_command():
@commands.hybrid_command(
name="labubu",
2025-09-28 11:02:19 -04:00
description="Labubu ASCII art",
)
async def labubu(self, context):
labubu_art = """⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠀⠙⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
"""
embed = discord.Embed(
description=f"```ansi\n{labubu_art}\n```",
color=0x7289DA,
)
embed.set_author(name="Labubu", icon_url="https://yes.nighty.works/raw/YxMC0r.png")
embed.set_footer(text=f"May look broken on mobile")
if getattr(context, "interaction", None):
inter = context.interaction
if not inter.response.is_done():
await inter.response.send_message(embed=embed, ephemeral=False)
else:
await inter.followup.send(embed=embed, ephemeral=True)
else:
await context.send(embed=embed)
return labubu