You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/general/randomizer.js

34 lines
687 B
JavaScript

const { Command } = require('discord-akairo');
class randomizerCommand extends Command {
constructor() {
super('randomizer', {
aliases: ['randomizer'],
category: 'general',
clientPermissions: ['SEND_MESSAGES'],
args: [
{
id: 'text',
type: 'string',
prompt: {
start: 'Need words to randomize',
},
match: 'rest'
}
],
description: {
content: 'Choose one random word',
usage: '[multiples words]',
examples: ['Hello bye']
}
});
}
async exec(message, args) {
let words = args.text.split(' ');
return message.reply(words[Math.floor((Math.random() * words.length))]);
}
}
module.exports = randomizerCommand;