mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-07 14:55:40 +02:00
60 lines
3.0 KiB
JavaScript
60 lines
3.0 KiB
JavaScript
const commando = require('discord.js-commando');
|
|
const Discord = require('discord.js');
|
|
const request = require('superagent');
|
|
|
|
module.exports = class YuGiOhCommand extends commando.Command {
|
|
constructor(Client) {
|
|
super(Client, {
|
|
name: 'yugioh',
|
|
group: 'search',
|
|
memberName: 'yugioh',
|
|
description: 'Gets info on a Yu-Gi-Oh! Card. (;yugioh Blue-Eyes White Dragon)',
|
|
examples: [';yugioh Blue-Eyes White Dragon']
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
if (message.channel.type !== 'dm') {
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES', 'EMBED_LINKS'])) return;
|
|
}
|
|
console.log(`[Command] ${message.content}`);
|
|
let cardName = encodeURI(message.content.split(" ").slice(1).join(" "));
|
|
request
|
|
.get(`http://yugiohprices.com/api/card_data/${cardName}`)
|
|
.then(function(response) {
|
|
if (response.body.data.card_type === 'monster') {
|
|
const embed = new Discord.RichEmbed()
|
|
.setColor(0xBE5F1F)
|
|
.setTitle(response.body.data.name)
|
|
.setDescription(response.body.data.text)
|
|
.setAuthor('Yu-Gi-Oh!', 'http://vignette3.wikia.nocookie.net/yugioh/images/1/10/Back-TF-EN-VG.png/revision/latest?cb=20120824043558')
|
|
.addField('**Card Type:**',
|
|
response.body.data.card_type, true)
|
|
.addField('**Species:**',
|
|
response.body.data.type, true)
|
|
.addField('**Attribute:**',
|
|
response.body.data.family, true)
|
|
.addField('**ATK:**',
|
|
response.body.data.atk, true)
|
|
.addField('**DEF:**',
|
|
response.body.data.def, true)
|
|
.addField('**Level:**',
|
|
response.body.data.level, true);
|
|
message.channel.sendEmbed(embed).catch(console.error);
|
|
}
|
|
else {
|
|
const embed = new Discord.RichEmbed()
|
|
.setColor(0xBE5F1F)
|
|
.setTitle(response.body.data.name)
|
|
.setDescription(response.body.data.text)
|
|
.setAuthor('Yu-Gi-Oh!', 'http://vignette3.wikia.nocookie.net/yugioh/images/1/10/Back-TF-EN-VG.png/revision/latest?cb=20120824043558')
|
|
.addField('**Card Type:**',
|
|
response.body.data.card_type, true);
|
|
message.channel.sendEmbed(embed).catch(console.error);
|
|
}
|
|
}).catch(function(err) {
|
|
message.channel.send(":x: Error! Card not Found!\n:notepad_spiral: Note: This command is **extremely** sensitive to casing and dashes and whatnot. Type the *exact* card name to get data!");
|
|
});
|
|
}
|
|
};
|