const { Command } = require('discord.js-commando'); module.exports = class LatlmesCommand extends Command { constructor(client) { super(client, { name: 'latlmes', group: 'text-edit', memberName: 'latlmes', description: 'Creates a Latlmes fake link that redirects to a rickroll.', args: [ { key: 'section', prompt: 'What section of the news should the link display?', type: 'string', max: 100, parse: query => encodeURIComponent(query.replace(/ /g, '-').toLowerCase()) }, { key: 'query', prompt: 'What would you like the link to display as?', type: 'string', max: 1000, parse: query => encodeURIComponent(query.replace(/ /g, '-').toLowerCase()) } ] }); } run(msg, { section, query }) { return msg.say(`http://www.latlmes.com/${section}/${query}-1`); } };