You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
829 B
23 lines
829 B
3 years ago
|
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()
|
||
|
);
|
||
|
}
|
||
|
};
|