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