1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import { BotCommand, clientSendAndPermCheck, colors, mappings, type ArgType, type CommandMessage, type SlashMessage } from '#lib';
import assert from 'assert/strict';
import { ApplicationCommandOptionType, EmbedBuilder, PermissionFlagsBits } from 'discord.js';
export default class MoulHammerCommand extends BotCommand {
public constructor() {
super('moulHammer', {
aliases: ['moul-hammer'],
category: "Moulberry's Bush",
description: 'A command to moul hammer members.',
usage: ['moul-hammer <user>'],
examples: ['moul-hammer @IRONM00N'],
args: [
{
id: 'user',
description: 'The user to moul hammer.',
type: 'user',
prompt: 'What user would you like to moul hammer?',
retry: '{error} Choose a valid user to moul hammer',
slashType: ApplicationCommandOptionType.User
}
],
slash: true,
channel: 'guild',
slashGuilds: [mappings.guilds["Moulberry's Bush"]],
restrictedGuilds: [mappings.guilds["Moulberry's Bush"]],
clientPermissions: (m) => clientSendAndPermCheck(m, [PermissionFlagsBits.EmbedLinks], true),
userPermissions: []
});
}
public override async exec(message: CommandMessage | SlashMessage, { user }: { user: ArgType<'user'> }) {
assert(message.inGuild());
if (message.channel?.permissionsFor(message.guild.members.me!).has('ManageMessages')) await message.delete().catch(() => {});
const embed = new EmbedBuilder()
.setTitle('L')
.setDescription(`${user.username} got moul'ed <:wideberry1:756223352598691942><:wideberry2:756223336832303154>`)
.setColor(colors.purple);
await message.util.send({ embeds: [embed] });
}
}
|