The helper bot for LHT https://lhtranslation.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
805 B

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.")
]});
}
};