mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-09 09:12:07 +02:00
58 lines
2.7 KiB
JavaScript
58 lines
2.7 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 = message.content.split(" ").slice(1).join("%20");
|
|
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!");
|
|
});
|
|
}
|
|
}; |