module.exports = { name: "info", aliases: ["i"], syntax: '`info`', category: 'Misc', info: "Provides information about Senko.", help: null, guildOnly: false, async run(client, message, args, cmd) { message.channel.send({embeds: [client.embeds.base() .setTitle("Senko the Helpful Sserver Mascot!") .setThumbnail(message.guild ? message.guild.iconURL({dynamic: true, size: 2048}) : client.user.avatarURL()) .setDescription("My name is Senko! I was developed by Kitsuu to help the LHTranslation team do their work more efficiently. " + "I notify TLs when new chapters of their current series have been released, and may eventually track chapter status more precisely for users to see.") ]}); } };