aboutsummaryrefslogtreecommitdiff
path: root/src/commands/fun/dice.ts
blob: 53fc9e217f4ed0761061b9a9a91e25e66c09e7b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { BushCommand, type BushMessage, type BushSlashMessage } from '#lib';

export default class DiceCommand extends BushCommand {
	public constructor() {
		super('dice', {
			aliases: ['dice', 'die'],
			category: 'fun',
			description: 'Roll virtual dice.',
			usage: ['dice'],
			examples: ['dice'],
			clientPermissions: (m) => util.clientSendAndPermCheck(m),
			userPermissions: [],
			slash: true
		});
	}

	public override async exec(message: BushMessage | BushSlashMessage) {
		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}**.`);
	}
}