mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
const Command = require('../../structures/Command');
|
|
const { RichEmbed } = require('discord.js');
|
|
const snekfetch = require('snekfetch');
|
|
|
|
module.exports = class TodayCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'today',
|
|
group: 'random',
|
|
memberName: 'today',
|
|
description: 'Responds with a random event that occurred today sometime in history.',
|
|
clientPermissions: ['EMBED_LINKS']
|
|
});
|
|
}
|
|
|
|
async run(msg) {
|
|
const { text } = await snekfetch
|
|
.get('http://history.muffinlabs.com/date');
|
|
const body = JSON.parse(text);
|
|
const events = body.data.Events;
|
|
const event = events[Math.floor(Math.random() * events.length)];
|
|
const embed = new RichEmbed()
|
|
.setColor(0x9797FF)
|
|
.setURL(body.url)
|
|
.setTitle(`On this day (${body.date})...`)
|
|
.setTimestamp()
|
|
.setDescription(`${event.year}: ${event.text}`);
|
|
return msg.embed(embed);
|
|
}
|
|
};
|