aboutsummaryrefslogtreecommitdiff
path: root/src/commands/fun/dice.ts
blob: 2f96e1cf9e2319104731fd8db8ef25aff0f4cc93 (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 EightBallCommand 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}**.`);
	}
}