Pokémon Box Link: Difference between revisions

no edit summary
No edit summary
Line 11: Line 11:
|}
|}


The '''Pokémon Box''' (Japanese: '''ポケモンボックス''' ''Pokémon Box'') is a Pokémon storage system in [[Pokémon: Let's Go, Pikachu! and Let's Go, Eevee!]] and [[Pokémon GO]].
The '''Pokémon Box''' (Japanese: '''ポケモンボックス''' ''Pokémon Box'') is a Pokémon storage system in [[Pokémon: Let's Go, Pikachu! and Let's Go, Eevee!]] and {{g|GO}}.


Unlike the [[Pokémon Storage System]] in other [[core series]] games, which is divided into individual boxes, the Pokémon Box functions as a single gigantic box.
Unlike the [[Pokémon Storage System]] in other [[core series]] games, which is divided into individual boxes, the Pokémon Box functions as a single gigantic box. It can also be accessed by the {{player}} at any time, without the need to be at a [[PC]]. However, depositing a Pokémon into the Pokémon Box will not restore its health, status, and PP.  


==In the core series games==
==In the core series games==
Line 90: Line 90:
* <code>[string]</code> — Pokémon whose species name or nickname begins with the text
* <code>[string]</code> — Pokémon whose species name or nickname begins with the text
** <code>+[string]</code> — the above and any Pokémon in the same evolutionary family (e.g. <code>+Meowth</code> returns all instances of Meowth and Persian)
** <code>+[string]</code> — the above and any Pokémon in the same evolutionary family (e.g. <code>+Meowth</code> returns all instances of Meowth and Persian)
*** The player must have a Pokémon that matches [string] to work, including nicknames; if the player only has Persian and no Meowth, <code>+Meowth</code> will not return any results, but <code>+Persian</code> will. This can be performed with nicknames as well as species names; if the player has a Pikachu nicknamed "Sparky", <code>+Sparky</code> will return all Pichu, Pikachu, and Raichu in the player's possession.
*** The player must have a Pokémon that matches <code>[string]</code> to work, including nicknames; if the player only has Persian and no Meowth, <code>+Meowth</code> will not return any results, but <code>+Persian</code> will. This can be performed with nicknames as well as species names; if the player has a Pikachu nicknamed "Sparky", <code>+Sparky</code> will return all Pichu, Pikachu, and Raichu in the player's possession.
** The search term will only be interpreted as a literal string if it does not match any key term. For example, searching <code>evolve</code> will not return a Ditto nicknamed "Evolve", due to the term being interpreted as a key term instead of a literal string.
** The search term will only be interpreted as a literal string if it does not match any key term. For example, searching <code>evolve</code> will not return a Ditto nicknamed "Evolve", due to the term being interpreted as a key term instead of a literal string.
* 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")
** <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 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 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)
** <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 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)
* <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>