Files
xiao/commands/response/roll.js
T
2017-04-20 13:48:12 +00:00

32 lines
992 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class RollCommand extends Command {
constructor(client) {
super(client, {
name: 'roll',
aliases: [
'randomnumber',
'dice'
],
group: 'response',
memberName: 'roll',
description: 'Rolls a Dice of your choice. (x;roll 6)',
examples: ['x;roll 6'],
args: [{
key: 'value',
prompt: 'What is the maximum number you wish to appear?',
type: 'integer'
}]
});
}
run(message, args) {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
const { value } = args;
const roll = Math.floor(Math.random() * value) + 1;
return message.say(`You rolled a ${roll}.`);
}
};