add help and list of talents

This commit is contained in:
Marcus Netz
2020-11-25 12:17:48 +01:00
parent 31e7e9e9b0
commit fe698e58e6
3 changed files with 59 additions and 8 deletions

13
src/commands/talents.js Normal file
View File

@ -0,0 +1,13 @@
const globals = require('../globals')
module.exports = async (message, args, db) => {
let reply = 'Diese Talentnamen kenne ich:\n```';
for (let i in globals.Talente) {
reply += '+ ' +globals.Talente[i].id + '\n'
}
reply += '```'
message.author.send(
reply
);
};