mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 06:42:50 +02:00
Jellyneo can have , in prices
This commit is contained in:
@@ -51,10 +51,10 @@ module.exports = class WhosThatPokemonCommand extends Command {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fetchPokemon(pokemon, peek = false) {
|
async fetchPokemon(pokemon) {
|
||||||
if (this.cache.has(pokemon)) return this.cache.get(pokemon);
|
if (this.cache.has(pokemon)) return this.cache.get(pokemon);
|
||||||
const { body } = await snekfetch.get(`https://pokeapi.co/api/v2/pokemon-species/${pokemon}/`);
|
const { body } = await snekfetch.get(`https://pokeapi.co/api/v2/pokemon-species/${pokemon}/`);
|
||||||
if (!peek) this.cache.set(body.id, body);
|
this.cache.set(body.id, body);
|
||||||
return body;
|
return body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ module.exports = class NeopetItemCommand extends Command {
|
|||||||
const id = search.text.match(/\/item\/([0-9]+)/);
|
const id = search.text.match(/\/item\/([0-9]+)/);
|
||||||
if (!id) return msg.say('Could not find any results.');
|
if (!id) return msg.say('Could not find any results.');
|
||||||
const { text } = await snekfetch.get(`https://items.jellyneo.net/item/${id[1]}/`);
|
const { text } = await snekfetch.get(`https://items.jellyneo.net/item/${id[1]}/`);
|
||||||
const price = search.text.match(/[0-9]+ (NP|NC)/);
|
const price = search.text.match(/[0-9,]+ (NP|NC)/);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
.setColor(0xFFCE31)
|
.setColor(0xFFCE31)
|
||||||
.setAuthor('Neopets', 'https://i.imgur.com/BP8qxJH.png')
|
.setAuthor('Neopets', 'https://i.imgur.com/BP8qxJH.png')
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "65.2.2",
|
"version": "65.2.3",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user