mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
feat(rr): make new rickroll cmd
This commit is contained in:
4
TODO.md
4
TODO.md
@@ -20,9 +20,9 @@
|
|||||||
|
|
||||||
- [ ] Add git log to info
|
- [ ] Add git log to info
|
||||||
|
|
||||||
- [ ] Add try it and see command
|
- [x] Add try it and see command
|
||||||
|
|
||||||
- [ ] ~~Add rickroll command~~
|
- [x] ~~Add rickroll command~~
|
||||||
|
|
||||||
- [ ] Add sending code (regular and from github)
|
- [ ] Add sending code (regular and from github)
|
||||||
|
|
||||||
|
|||||||
@@ -94,6 +94,7 @@ class Help(commands.Cog, name="help"):
|
|||||||
"labubu": "miscellaneous",
|
"labubu": "miscellaneous",
|
||||||
"piracy": "miscellaneous",
|
"piracy": "miscellaneous",
|
||||||
"tryitandsee": "miscellaneous",
|
"tryitandsee": "miscellaneous",
|
||||||
|
"rr": "miscellaneous",
|
||||||
}
|
}
|
||||||
|
|
||||||
category_descriptions = {
|
category_descriptions = {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ class Labubu(commands.Cog, name="labubu"):
|
|||||||
|
|
||||||
@commands.hybrid_command(
|
@commands.hybrid_command(
|
||||||
name="labubu",
|
name="labubu",
|
||||||
description="Shows Labubu ASCII art",
|
description="Labubu ASCII art",
|
||||||
)
|
)
|
||||||
async def labubu(self, context: Context) -> None:
|
async def labubu(self, context: Context) -> None:
|
||||||
labubu_art = """⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠀⠙⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
|
labubu_art = """⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠀⠙⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
|
||||||
|
|||||||
34
cogs/miscellaneous/rr.py
Normal file
34
cogs/miscellaneous/rr.py
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
import discord
|
||||||
|
from discord.ext import commands
|
||||||
|
from discord.ext.commands import Context
|
||||||
|
|
||||||
|
|
||||||
|
class Rr(commands.Cog, name="rr"):
|
||||||
|
def __init__(self, bot) -> None:
|
||||||
|
self.bot = bot
|
||||||
|
|
||||||
|
@commands.hybrid_command(
|
||||||
|
name="rr",
|
||||||
|
description="Rickroll",
|
||||||
|
)
|
||||||
|
async def rr(self, context: Context) -> None:
|
||||||
|
gif_url = "https://yes.nighty.works/raw/JzjMcs.gif"
|
||||||
|
|
||||||
|
embed = discord.Embed(
|
||||||
|
color=0x7289DA,
|
||||||
|
)
|
||||||
|
embed.set_author(name="Rickroll", icon_url="https://yes.nighty.works/raw/YxMC0r.png")
|
||||||
|
embed.set_image(url=gif_url)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
|
||||||
|
async def setup(bot) -> None:
|
||||||
|
await bot.add_cog(Rr(bot))
|
||||||
Reference in New Issue
Block a user