From dfcda099ee22c2570c4b6d2af2715484ae6d4e29 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 8 Nov 2020 17:45:37 -0500 Subject: [PATCH] Use official artwork for Pokedex rather than sprites --- package.json | 2 +- structures/pokemon/Pokemon.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index bdd635d1..4f35e492 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.39.4", + "version": "119.39.5", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/structures/pokemon/Pokemon.js b/structures/pokemon/Pokemon.js index a433c312..4d54ea6e 100644 --- a/structures/pokemon/Pokemon.js +++ b/structures/pokemon/Pokemon.js @@ -52,7 +52,7 @@ module.exports = class Pokemon { get spriteImageURL() { if (this.missingno) return missingno.sprite; - return `https://www.serebii.net/swordshield/pokemon/${this.displayID}.png`; + return `https://serebii.net/pokemon/art/${this.displayID}.png`; } get boxImageURL() {