master
Crescent 3 years ago
parent 9bb5f3b311
commit dec0fa6444
  1. 23
      commands/misc/birthday.js
  2. 1668
      package-lock.json

@ -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()
);
}
};

1668
package-lock.json generated

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save