import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando'; module.exports = class UglyCatFun extends Command { constructor(client: CommandoClient) { super(client, { name: 'uglycat', aliases: ['ugycat'], group: 'fun', memberName: 'uglycat', description: 'Sends an ugly cat.', userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY', 'EMBED_LINKS'], clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY', 'EMBED_LINKS'], examples: ['uwu!uglycat'], throttling: { usages: 5, duration: 30 }, }); } run(msg: CommandoMessage) { return msg.say({ files: ['https://i.pinimg.com/originals/4d/19/0f/4d190f1307b35e7155bb4b898e19d545.jpg'] }) } };