Files

66 lines
4.9 KiB
Python
Raw Permalink Normal View History

import discord
from discord.ext import commands
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,
)
2025-11-02 23:32:52 -05:00
embed.set_author(
name="Labubu", icon_url="https://yes.nighty.works/raw/YxMC0r.png"
)
2025-11-22 19:51:46 -05:00
embed.set_footer(text="May look broken on mobile")
2025-11-02 23:32:52 -05:00
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)
2025-11-02 23:32:52 -05:00
return labubu