discord.js Rich Embed в командном обработчике - PullRequest
0 голосов
/ 20 октября 2019

Я создаю несколько команд для моего Discord Bot, но я не могу разбогатеть встраивать для работы. Я использую следующее:

exports.run = (client, message, args) => {
const embed = new Discord.RichEmbed()

    .setTitle("Bulbasaur")
    .setColor("#43A6DF")
    .setDescription("Seed Pokémon")
    .setThumbnail("image.png")
    .setURL("URL")
    .addField("Type", "Grass, Poison")
    .addField("Abilities", "Overgrow, Chlorophyll*")
    .addField("Pokédex", "Link")
message.channel.send("{embed}").catch(console.error);
}

Если я просто использую это, у меня нет проблем:

exports.run = (client, message, args) => {
message.channel.send("pong!").catch(console.error);
}

Что я делаю не так? Это мой файл message.js в папке событий:

  // Ignore all bots
  if (message.author.bot) return;

  // Ignore messages not starting with the prefix (in config.json)
  if (message.content.indexOf(client.config.prefix) !== 0) return;

  // Our standard argument/command name definition.
  const args = message.content.slice(client.config.prefix.length).trim().split(/ +/g);
  const command = args.shift().toLowerCase();

  // Grab the command data from the client.commands Enmap
  const cmd = client.commands.get(command);

  // If that command doesn't exist, silently exit and do nothing
  if (!cmd) return;

  // Run the command
  cmd.run(client, message, args);
  };
...