1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { BotCommand, clientSendAndPermCheck, type CommandMessage, type SlashMessage } from '#lib';
export default class DiceCommand extends BotCommand {
public constructor() {
super('dice', {
aliases: ['dice', 'die'],
category: 'fun',
description: 'Roll virtual dice.',
usage: ['dice'],
examples: ['dice'],
clientPermissions: (m) => clientSendAndPermCheck(m),
userPermissions: [],
slash: true
});
}
public override async exec(message: CommandMessage | SlashMessage) {
const responses = ['1', '2', '3', '4', '5', '6'];
const answer = responses[Math.floor(Math.random() * responses.length)];
return await message.util.reply(`You rolled a **${answer}**.`);
}
}
|