diff --git a/commands/misc/birthday.js b/commands/misc/birthday.js new file mode 100644 index 0000000..969b71b --- /dev/null +++ b/commands/misc/birthday.js @@ -0,0 +1,23 @@ +const Discord = require('discord.js'); + +module.exports = { + name: "birthday", + aliases: ["bd"], + meta: { + category: 'Misc', + description: "Shows what Luno's birthday is", + syntax: '`birthday`', + extra: null + }, + help: "Shows what Luno's birthday is", + async execute(message, msg, args, cmd, prefix, mention, client) { + return message.channel.send(new Discord.MessageEmbed() + .setTitle("Luno's Birthday") + .setDescription(`${["I blessed this world with my presence on", "I was born on", "I was created by Wubzy on"][Math.floor(Math.random() * 3)]} 6/9/2021.`) + .setThumbnail(client.user.avatarURL({size: 2048})) + .setColor('328ba8') + .setFooter("Luno") + .setTimestamp() + ); + } +}; \ No newline at end of file