We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80c37e commit 827889bCopy full SHA for 827889b
commands/fun/nice.ts
@@ -0,0 +1,18 @@
1
+import { EmbedBuilder, Message } from 'discord.js'
2
+import { DiscordClient } from '../../types/customTypes'
3
+
4
+exports.name = 'nice'
5
6
+exports.description = 'nice'
7
8
+exports.usage = 'nice'
9
10
+exports.run = (client: DiscordClient, message: Message) =>
11
+ client.reply(message, {
12
+ embeds: [
13
+ new EmbedBuilder().setImage('https://c.tenor.com/8mxM9CqBbqMAAAAd/wii-bowling.gif').setFooter({
14
+ text: message.author.tag,
15
+ iconURL: message.author.avatarURL(),
16
+ }),
17
+ ],
18
+ })
0 commit comments