CatalystMoon/commands/Info/ping.js

16 lines
676 B
JavaScript
Raw Normal View History

2022-07-23 13:09:42 +00:00
const { EmbedBuilder } = require("discord.js");
2022-07-22 22:09:13 +00:00
module.exports = {
2022-07-23 13:09:42 +00:00
name: "hello",
2022-08-21 03:04:26 +00:00
description: "Say hi to Tiffany!",
2022-07-22 22:09:13 +00:00
run: async (client, interaction) => {
2022-07-23 12:04:10 +00:00
const embed = new EmbedBuilder()
2022-07-23 13:09:42 +00:00
.setColor("#0CE2FA")
.setTitle("🌼 Hi friend!")
2022-08-21 03:04:26 +00:00
.setDescription(`I'm Tiffany Lynch, 16 year old from Jakarta. Likes ponies, flowers, and tech.\nMy source code: https://git.codingvm.codes/LauraOrchid/CatalystMoon\nDonate to me: https://saweria.co/TiffanyLynch`)
2022-07-22 22:09:13 +00:00
.setTimestamp()
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
interaction.followUp({ embeds: [embed] });
},
2022-07-23 13:09:42 +00:00
};