const discord = require("discord.js"); module.exports = { name: "gorb", aliases: [''], /** * * @param {Client} client * @param {Message} message * @param {String[]} args */ run: async (client, message, args) => { if(!args[0]){ message.channel.send({ files: ['./images/gorb.jpg'] }) } if(args[0] === 'cs'){ message.channel.send({ files: ['./images/gorbcs.jpg'] }) } if(args[0] === 'party'){ message.channel.send({ files: ['./images/gorbcelebration.png'] }) } if(args[0] === 'christmas'){ message.channel.send({ files: ['./images/gorbchristmas.png'] }) } if(args[0] === 'storm'){ message.channel.send({ files: ['./images/gorbstorm.png'] }) } }, };