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/clap.js

37 lines
817 B
JavaScript

const { Command } = require('discord-akairo');
const rand = require('../../rand.js');
class ClapCommand extends Command {
constructor() {
super('clap', {
aliases: ['clap'],
category: 'general',
clientPermissions: ['SEND_MESSAGES'],
args: [
{
id: 'text',
type: 'string',
prompt: {
start: 'Write something so i can replace the space with 👏',
},
match: 'rest'
}
],
description: {
content: 'replace 👏 the 👏 spaces 👏 with 👏 clap 👏',
usage: '[text]',
examples: ['replace the spaces with clap']
}
});
}
async exec(message, args) {
if (!args.text)
return;
args.text = rand.random(args.text, message);
let clap = args.text.replace(/ /g, ' 👏 ');
message.reply(`${clap} 👏`);
}
}
module.exports = ClapCommand;