diff --git a/src/routes/api.js b/src/routes/api.js
index ed14e92e..05f60237 100644
--- a/src/routes/api.js
+++ b/src/routes/api.js
@@ -256,11 +256,11 @@ const getData = async (perms, filter) => {
const size = ``;
pokemonData.push({
'id': {
- 'formatted': andOrString,
+ 'formatted': utils.zeroPad(i, 3),
'sort': i
},
'name': globalIVString,
- 'image': `IV-${andOrString}`,
+ 'image': `${andOrString}`,
'filter': filter,
'size': size,
'type': globalFiltersString,
@@ -278,8 +278,8 @@ const getData = async (perms, filter) => {
const size = generateSizeButtons(id, 'pokemon-size');
pokemonData.push({
'id': {
- 'formatted': utils.zeroPad(i, 3),
- 'sort': i + 5
+ 'formatted': utils.zeroPad(i+2, 3),
+ 'sort': i + 3
},
'name': sizeString,
'image': {
diff --git a/src/views/index.mustache b/src/views/index.mustache
index dd7e5d85..f94eb754 100644
--- a/src/views/index.mustache
+++ b/src/views/index.mustache
@@ -345,7 +345,8 @@
Level Range: L30-35 - Level 30 to 35 Pokemon
Stats: A0-1 & D14 & S15 - Pokemon with 0-1 Attack, 14 Defense & 15 Stamina
CP: CP2000-3000 - All Pokemon with CP of 2000-3000
- NOT: !0-100 - All Pokemon that do not have their IVs scanned
+ NOT: !0-100 - All Pokemon that do not have their IVs scanned
+ PVP: GL1-3 | UL1-3 - Pokemon that are rank 1-3 for either Great League or Ultra League
- Example: (A0-1 & D15 & S15 & (CP1400-1500 | CP2400-2500)) | L34-35 | 90-100
- Returns all Pokemon that have either CP1400-1500 OR CP2400-2500 AND have 0-1 Attack, 15 Defense, 15 Stamina, OR level 34-35 OR 90-100% IVs.
+ Example: (A0-1 & D15 & S15 & (CP1400-1500 | CP2400-2500)) | L34-35 | 90-100 | GL1-3 | UL1-3
+ Returns all Pokemon that have either CP1400-1500 OR CP2400-2500 AND have 0-1 Attack, 15 Defense, 15 Stamina, OR level 34-35 OR 90-100% IVs OR PVP Great or Ultra league rank betwen 1-3.