CatalystMoon/commands/Info/ping.js
LauraOrchid ed608d52b8 Update 'commands/Info/ping.js'
Coming soon, a fully static website for my second My Little Pony Original Character. No MySQL, no PHP, not even JavaScript!
2022-07-27 10:32:56 +00:00

16 lines
714 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\nMy website: https://lunastarshine.epizy.com\nLatency : ${client.ws.ping}ms`)
.setTimestamp()
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
interaction.followUp({ embeds: [embed] });
},
};