Pokémon Box Link: Difference between revisions

→‎Search queries: updating with age and buddy queries
(→‎Search queries: updating with age and buddy queries)
Line 128: Line 128:
* Numeric
* Numeric
** <code>[number]</code> — Pokémon whose Pokédex number matches the searched number (e.g. <code>3</code> returns all Venusaur)
** <code>[number]</code> — Pokémon whose Pokédex number matches the searched number (e.g. <code>3</code> returns all Venusaur)
** <code>[number]-[number]</code> — Pokémon whose Pokédex number falls between the two searched numbers, inclusively (e.g. <code>1-151</code> returns all Kanto Pokémon)
** Ranges
** <code>[number]-</code> — Pokémon whose Pokédex index is at least the searched number (e.g. <code>151-</code> returns all Pokémon starting from Mew)
*** <code>[number]-[number]</code> — Pokémon whose Pokédex number falls between the two searched numbers, inclusively (e.g. <code>1-151</code> returns all Kanto Pokémon)
** <code>-[number]</code> — Pokémon whose Pokédex index is at most the searched number (e.g. <code>-9</code> returns all Pokémon up to Blastoise)
*** <code>[number]-</code> — Pokémon whose Pokédex index is at least the searched number (e.g. <code>151-</code> returns all Pokémon starting from Mew)
*** <code>-[number]</code> — Pokémon whose Pokédex index is at most the searched number (e.g. <code>-9</code> returns all Pokémon up to Blastoise)
** Prepending <code>cp</code> or <code>hp</code> to a number instead searches for Pokémon based on CP or maximum HP (respectively) instead of Pokédex index (e.g. <code>cp1000-</code> returns all Pokémon with a CP of at least 1000)
** Prepending <code>cp</code> or <code>hp</code> to a number instead searches for Pokémon based on CP or maximum HP (respectively) instead of Pokédex index (e.g. <code>cp1000-</code> returns all Pokémon with a CP of at least 1000)
** Prepending <code>distance</code> to a number instead searches for Pokémon based on distance (in km) from where it was obtained to the player's current location (e.g. <code>distance100-</code> returns all Pokémon obtained at least 100 km away from the player's current location)
** Prepending <code>distance</code> to a number instead searches for Pokémon based on distance (in km) from where it was obtained to the player's current location (e.g. <code>distance100-</code> returns all Pokémon obtained at least 100 km away from the player's current location)
** Prepending <code>age</code> to a number instead searches for Pokémon based on how many days ago they were caught (e.g. <code>age-7</code> returns all Pokémon caught within the last 7 days, and <code>age0</code> returns all Pokémon caught today)
** Prepending <code>year</code> to a number instead searches for Pokémon based on which year they were caught in (e.g. <code>year2016</code> returns all Pokémon caught in the year 2016, and <code>year2017-2018</code> returns all Pokémon caught from the years 2017 to 2018)
** Prepending <code>buddy</code> to a number (0 to 5) instead searches for Pokémon based on their [[Buddy Pokémon|Buddy levels]] (e.g. <code>buddy5</code> returns all Best Buddies, and <code>buddy2-4</code> returns all Good to Ultra Buddies)
*** <code>buddy0</code> — Pokémon that have never been walked as a buddy
*** <code>buddy1</code> — Pokémon that have been walked as a buddy, but never reached a Good Buddy level
*** <code>buddy2</code> — Good Buddies
*** <code>buddy3</code> — Great Buddies
*** <code>buddy4</code> — Ultra Buddies
*** <code>buddy5</code> — Best Buddies
* <code>[type]</code> — Pokémon of that [[type]]
* <code>[type]</code> — Pokémon of that [[type]]
* All [[move]] set searches begin with <code>@</code>
* All [[move]] set searches begin with <code>@</code>
Line 174: Line 184:
* <code>shadow</code> — {{OBP|Shadow Pokémon|GO}}
* <code>shadow</code> — {{OBP|Shadow Pokémon|GO}}
* <code>purified</code> — Purified Pokémon
* <code>purified</code> — Purified Pokémon
;Operands
;Operands
* <code>,</code>, <code>:</code>, <code>;</code> — union of conditions (e.g. <code>fire,evolve</code> returns all Pokémon that are Fire-type or can evolve)
* <code>,</code>, <code>:</code>, <code>;</code> — union of conditions (e.g. <code>fire,evolve</code> returns all Pokémon that are Fire-type or can evolve)