22 lines
1.2 KiB
TypeScript
22 lines
1.2 KiB
TypeScript
import { Commands, CommandsMeta } from 'commands';
|
|
import { AttachmentBuilder, EmbedBuilder } from 'discord.js';
|
|
|
|
export default function createEmbed() { // ({ embeds: [exampleEmbed] })
|
|
console.log("createEmbed()");
|
|
|
|
const exampleEmbed = new EmbedBuilder()
|
|
.setColor(0x004400)
|
|
//.setTitle("/hilfe")
|
|
//.setURL("")
|
|
.setAuthor({ name: "avocadi - befehle", iconURL: "https://media.discordapp.net/attachments/1321933410188656693/1323447010380222474/mo_Avocadi_Avatar_Closeup_2.png?ex=67748b93&is=67733a13&hm=f48efb3523bca5f50e79144c7b41a127c94670e693e3da3dc2e6ffe62ad8a769&=&format=webp&quality=lossless&width=1524&height=1524", url: 'https://git.unom.io/moriese/avocadi-bot' })
|
|
.setDescription(" ")
|
|
.addFields(
|
|
{ name: "/" + Commands.Enum.giessen, value: CommandsMeta.giessen.description },
|
|
{ name: "/" + Commands.Enum.medikamente, value: CommandsMeta.medikamente.description },
|
|
{ name: "/" + Commands.Enum.hilfe, value: CommandsMeta.hilfe.description },
|
|
)
|
|
.setTimestamp()
|
|
//.setFooter({ text: 'Some footer text here', iconURL: 'https://i.imgur.com/AfFp7pu.png' });
|
|
;
|
|
return exampleEmbed;
|
|
} |