CatalystMoon/commands/Info/ping.js

16 lines
706 B
JavaScript

const { EmbedBuilder } = require("discord.js");
module.exports = {
name: "hello",
description: "Say hi to Laura!",
run: async (client, interaction) => {
const embed = new EmbedBuilder()
.setColor("#0CE2FA")
.setTitle("🌼 Hi friend!")
.setDescription(`I'm Laura Orchid, 17 year old from Ponyville. Working as florist, likes tech and photography!\nMy source code: https://git.codingvm.codes/LauraOrchid/LauraXD\nDonate to me: https://saweria.co/TiffanyLynch\nHave fun! -Laura <3`)
.setTimestamp()
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
interaction.followUp({ embeds: [embed] });
},
};