mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
39 lines
984 B
JavaScript
39 lines
984 B
JavaScript
const { Command } = require('discord.js-commando');
|
|
const snekfetch = require('snekfetch');
|
|
|
|
module.exports = class NeopetCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'neopet',
|
|
aliases: ['neopet-image', 'neopet-image-finder'],
|
|
group: 'search',
|
|
memberName: 'neopet',
|
|
description: 'Searches for Neopets with the username of your query.',
|
|
args: [
|
|
{
|
|
key: 'query',
|
|
prompt: 'What pet would you like to get an image of?',
|
|
type: 'string'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, { query }) {
|
|
try {
|
|
const { text } = await snekfetch
|
|
.get('http://www.sunnyneo.com/petimagefinder.php')
|
|
.query({
|
|
name: query,
|
|
size: 5,
|
|
mood: 1
|
|
});
|
|
const link = text.match(/http:\/\/pets\.neopets\.com\/cp\/.+\.png/);
|
|
if (!link) return msg.say('Could not find any results.');
|
|
return msg.say(link[0]);
|
|
} catch (err) {
|
|
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|