const { MessageEmbed } = require('discord.js');
// The following code will need to be placed within your message create
// event handler. This will send the embed to the channel within the
const exampleEmbed = new MessageEmbed()
.setTitle('Steve\'s Skin')
.setImage('https://api.mineatar.io/body/MHF_Steve?scale=4');
channel.send({ embeds: [exampleEmbed] });