<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://bulbapedia.bulbagarden.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Map233224</id>
	<title>Bulbapedia - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://bulbapedia.bulbagarden.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Map233224"/>
	<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/wiki/Special:Contributions/Map233224"/>
	<updated>2026-06-29T23:01:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3869078</id>
		<title>Pokémon data structure (Generation IV)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3869078"/>
		<updated>2023-11-30T19:15:28Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Encryption */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boxed Pokémon in the games {{v2|Diamond and Pearl|s}} are stored in a 136-byte structure. All unencrypted values are stored in little-endian format. The game encrypts the data when it is stored into the {{OBP|Save data structure|Generation IV|save data}}. In-party Pokémon have additional values appended to them to hold calculated stats. The information below describes the boxed Pokémon data format.&lt;br /&gt;
&lt;br /&gt;
==Checksum==&lt;br /&gt;
&lt;br /&gt;
The checksum serves two purposes:&lt;br /&gt;
# It validates the data after decryption, and&lt;br /&gt;
# It serves as the encryption key for the data.&lt;br /&gt;
&lt;br /&gt;
The checksum is calculated in three steps:&lt;br /&gt;
# Split the unencrypted data from offsets 0x08 to 0x87 into two-byte words,&lt;br /&gt;
# Take the sum of the words, and&lt;br /&gt;
# Truncate the sum to sixteen bits.&lt;br /&gt;
&lt;br /&gt;
==Block shuffling==&lt;br /&gt;
&lt;br /&gt;
The 128 bytes of Pokémon data are split into four 32-byte blocks for shuffling. The blocks are shuffled according to a shift value derived from the [[personality value]]. Given the personality value &#039;&#039;pv&#039;&#039;, the expression yielding the shift value is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;((pv &amp;amp; 0x3E000) &amp;gt;&amp;gt; 0xD) % 24&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The right shifting (&amp;gt;&amp;gt; 0xD) is equivalent to a division of 8192.&lt;br /&gt;
&lt;br /&gt;
To shuffle the blocks, take the four blocks of unencrypted data, &#039;&#039;A&#039;&#039;, &#039;&#039;B&#039;&#039;, &#039;&#039;C&#039;&#039;, and &#039;&#039;D&#039;&#039;. The blocks shall be rearranged in the encrypted data according to the Block Order column of the following table. (To unshuffle, use the Inverse column.)&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Shift Value (decimal)&lt;br /&gt;
! Block Order&lt;br /&gt;
! Inverse&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 00&lt;br /&gt;
| ABCD&lt;br /&gt;
| ABCD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 01&lt;br /&gt;
| ABDC&lt;br /&gt;
| ABDC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 02&lt;br /&gt;
| ACBD&lt;br /&gt;
| ACBD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 03&lt;br /&gt;
| ACDB&lt;br /&gt;
| ADBC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 04&lt;br /&gt;
| ADBC&lt;br /&gt;
| ACDB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 05&lt;br /&gt;
| ADCB&lt;br /&gt;
| ADCB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 06&lt;br /&gt;
| BACD&lt;br /&gt;
| BACD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 07&lt;br /&gt;
| BADC&lt;br /&gt;
| BADC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 08&lt;br /&gt;
| BCAD&lt;br /&gt;
| CABD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 09&lt;br /&gt;
| BCDA&lt;br /&gt;
| DABC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 10&lt;br /&gt;
| BDAC&lt;br /&gt;
| CADB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 11&lt;br /&gt;
| BDCA&lt;br /&gt;
| DACB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 12&lt;br /&gt;
| CABD&lt;br /&gt;
| BCAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 13&lt;br /&gt;
| CADB&lt;br /&gt;
| BDAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 14&lt;br /&gt;
| CBAD&lt;br /&gt;
| CBAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 15&lt;br /&gt;
| CBDA&lt;br /&gt;
| DBAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 16&lt;br /&gt;
| CDAB&lt;br /&gt;
| CDAB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 17&lt;br /&gt;
| CDBA&lt;br /&gt;
| DCAB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 18&lt;br /&gt;
| DABC&lt;br /&gt;
| BCDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 19&lt;br /&gt;
| DACB&lt;br /&gt;
| BDCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 20&lt;br /&gt;
| DBAC&lt;br /&gt;
| CBDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 21&lt;br /&gt;
| DBCA&lt;br /&gt;
| DBCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 22&lt;br /&gt;
| DCAB&lt;br /&gt;
| CDBA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 23&lt;br /&gt;
| DCBA&lt;br /&gt;
| DCBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encryption==&lt;br /&gt;
The encryption uses a [[Pseudorandom number generation in Pokémon|pseudorandom number generator (PRNG)]], a 32-bit linear congruential generator to be exact.&lt;br /&gt;
&lt;br /&gt;
The order of the ABCD blocks is irrelevant when encrypting or decrypting, because the data is treated as a bit stream, so the algorithm is the same in both cases.&lt;br /&gt;
&lt;br /&gt;
First, the PRNG is seeded with the checksum of the Pokémon:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;X[0] = checksum&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, we loop over the 64 2-byte words of ABCD block data by advancing the PRNG and XORing the top 16 bits of each new state with each 16 bits of data:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;X[n+1] = 0x41C64E6D * X[n] + 0x6073&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;D[n] = D[n] XOR (X[n+1] &amp;gt;&amp;gt; 16)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To read from or write to an encrypted Pokémon&#039;s ABCD block data, the game first decrypts the data as a whole, then determines what the block order is from the personality value and figures out the offset it needs to use to read from or write to either block.&lt;br /&gt;
&lt;br /&gt;
==Unencrypted bytes==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x00-0x03&lt;br /&gt;
| [[Personality value]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x04-0x05&lt;br /&gt;
| Bit 0-1: If set, skip checksum checks&amp;lt;br/&amp;gt;Bit 2: Bad egg flag&amp;lt;br/&amp;gt;Bit 3-7: &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x06-0x07&lt;br /&gt;
| Checksum&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encrypted bytes==&lt;br /&gt;
===Block A===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x08-0x09&lt;br /&gt;
| Species ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0A-0x0B&lt;br /&gt;
| Held Item&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0C-0x0D&lt;br /&gt;
| OT ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0E-0x0F&lt;br /&gt;
| OT Secret ID&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10-0x13&lt;br /&gt;
| [[Experience|Experience points]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x14&lt;br /&gt;
| Friendship/Egg Steps to Hatch&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x15&lt;br /&gt;
| [[Ability]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x16&lt;br /&gt;
| [[Marking]]s&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x17&lt;br /&gt;
| [[Language of origin]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x18&lt;br /&gt;
| HP EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x19&lt;br /&gt;
| Attack EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1A&lt;br /&gt;
| Defense EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1B&lt;br /&gt;
| Speed EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1C&lt;br /&gt;
| Sp. Atk EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1D&lt;br /&gt;
| Sp. Def. EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1E&lt;br /&gt;
| Cool Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1F&lt;br /&gt;
| Beauty Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Cute Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x21&lt;br /&gt;
| Smart Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x22&lt;br /&gt;
| Tough Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x23&lt;br /&gt;
| [[Sheen]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24-0x27&lt;br /&gt;
| Sinnoh Ribbons Set 1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block B===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x28-0x2F&lt;br /&gt;
| Moveset&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x30-0x33&lt;br /&gt;
| Move PP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x34-0x37&lt;br /&gt;
| Move PP Ups&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x38-0x3B&lt;br /&gt;
| Bits 0-29 - [[Individual values]]&amp;lt;br/&amp;gt;HP ( [0-31] &amp;lt;&amp;lt; 0 )&amp;lt;br&amp;gt;Attack ( [0-31] &amp;lt;&amp;lt; 5 )&amp;lt;br&amp;gt;Defense ( [0-31] &amp;lt;&amp;lt; 10 )&amp;lt;br&amp;gt;Speed ( [0-31] &amp;lt;&amp;lt; 15 )&amp;lt;br&amp;gt;Sp. Atk. ( [0-31] &amp;lt;&amp;lt; 20 )&amp;lt;br&amp;gt;Sp. Def. ( [0-31] &amp;lt;&amp;lt; 25 )&amp;lt;br&amp;gt;Bit 30 - IsEgg Flag&amp;lt;br&amp;gt;Bit 31 - IsNicknamed Flag&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C-0x3F&lt;br /&gt;
| Hoenn Ribbon Set&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x40&lt;br /&gt;
| Bit 0 - [[Fateful encounter]] Flag&amp;lt;br&amp;gt;Bit 1 - Female&amp;lt;br&amp;gt;Bit 2 - Gender unknown&amp;lt;br&amp;gt;Bit 3-7 - Alternate Forms (Form Index &amp;lt;&amp;lt; 3)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x41&lt;br /&gt;
| Shiny Leaves (HGSS)&amp;lt;br&amp;gt;Bit 5 - Leaf Crown&amp;lt;br&amp;gt;Bits 0–4 - Leaves A–E (bit 0 is leftmost)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x42-0x43&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x44-0x45&lt;br /&gt;
| Platinum Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x46-0x47&lt;br /&gt;
| Platinum Met at Location&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block C===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x48-0x5D&lt;br /&gt;
| Nickname&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5E&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5F&lt;br /&gt;
| [[Game of origin]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60-0x63&lt;br /&gt;
| Sinnoh Ribbons Set 2&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x64-0x67&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block D===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x68-0x77&lt;br /&gt;
| OT Name&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x78-0x7A&lt;br /&gt;
| Date Egg Received&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7B-0x7D&lt;br /&gt;
| Date Met&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7E-0x7F&lt;br /&gt;
| Diamond/Pearl Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x80-0x81&lt;br /&gt;
| Diamond/Pearl Met At Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x82&lt;br /&gt;
| [[Pokérus]]&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x83&lt;br /&gt;
| Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x84&lt;br /&gt;
| Bit 0-6 - Met At Level&amp;lt;br&amp;gt;Bit 7 - Female OT Gender&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x85&lt;br /&gt;
| Encounter Type&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x86&lt;br /&gt;
| HG/SS Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x87&lt;br /&gt;
| [[Performance]] (unused in DPPt)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Battle stats==&lt;br /&gt;
The battle stats are encrypted in the same manner, however the seed is not the checksum, it is the [[personality value]], and the bytes are not shuffled.&lt;br /&gt;
&lt;br /&gt;
===Encrypted bytes===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x88&lt;br /&gt;
| Bits 0-2 - Asleep (0-7 rounds)&amp;lt;br&amp;gt;Bit 3 - Poisoned&amp;lt;br&amp;gt;Bit 4 - Burned&amp;lt;br&amp;gt;Bit 5 - Frozen&amp;lt;br&amp;gt;Bit 6 - Paralyzed&amp;lt;br&amp;gt;Bit 7 - Toxic&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x89&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039; - Flags - Max Value 0xF0&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8A-0x8B&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8C&lt;br /&gt;
| Level&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8D&lt;br /&gt;
| Capsule Index (Seals)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8E-0x8F&lt;br /&gt;
| Current HP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x90-0x91&lt;br /&gt;
| Max HP&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x92-0x93&lt;br /&gt;
| Attack&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x94-0x95&lt;br /&gt;
| Defense&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x96-0x97&lt;br /&gt;
| Speed&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x98-0x99&lt;br /&gt;
| Special Attack&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9A-0x9B&lt;br /&gt;
| Special Defense&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x9C-0xD3&lt;br /&gt;
| Mail data&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xD4-0xEB&lt;br /&gt;
| Seal Coordinates&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Language of origin==&lt;br /&gt;
{{main|Language of origin}}&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Language&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1&lt;br /&gt;
| 日本語 (Japanese)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| English&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3&lt;br /&gt;
| Français (French)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Italiano (Italian)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Deutsch (German)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Español (Spanish)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8&lt;br /&gt;
| 한국어 (Korean)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Markings==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Marking&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x01&lt;br /&gt;
| Circle&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x02&lt;br /&gt;
| Triangle&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x04&lt;br /&gt;
| Square&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x08&lt;br /&gt;
| Heart&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10&lt;br /&gt;
| Star&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Diamond&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Alternate forms==&lt;br /&gt;
[[List of Pokémon with form differences|Alternate forms]] are stored at offset 0x40 of the Pokémon structure. Each form follows the pattern of &amp;lt;code&amp;gt;index &amp;lt;&amp;lt; 3&amp;lt;/code&amp;gt; where index starts at zero for the main form.&lt;br /&gt;
&lt;br /&gt;
{{p|Rotom}}&#039;s alternate forms, {{p|Giratina}}&#039;s Origin Forme, and {{p|Shaymin}}&#039;s Sky Forme will only be displayed in Pokémon Platinum, HeartGold and SoulSilver. Rotom may be traded among Pokémon Diamond, Pearl, and Platinum without losing its alternate form.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align: center&amp;quot;&lt;br /&gt;
! Byte || Unown || Deoxys || Burmy/Wormadam || Shellos/Gastrodon || Rotom || Giratina || Shaymin || Arceus || Pichu (HGSS only)&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x00 || A || Normal || Plant || West || Normal || Altered || Land || Normal || Normal&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x08 || B || Attack || Sandy || East || Heat || Origin || Sky || Fighting || Spiky-eared&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x10 || C || Defense || Trash || || Wash || || || Flying ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x18 || D || Speed || || || Frost || || || Poison ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x20 || E || || || || Fan || || || Ground ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x28 || F || || || || Mow || || || Rock ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x30 || G || || || || || || || Bug ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x38 || H || || || || || || || Ghost ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x40 || I || || || || || || || Steel ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x48 || J || || || || || || || ??? ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x50 || K || || || || || || || Fire ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x58 || L || || || || || || || Water ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x60 || M || || || || || || || Grass ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x68 || N || || || || || || || Electric ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x70 || O || || || || || || || Psychic ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x78 || P || || || || || || || Ice ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x80 || Q || || || || || || || Dragon ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x88 || R || || || || || || || Dark ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x90 || S || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x98 || T || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xA0 || U || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xA8 || V || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xB0 || W || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xB8 || X || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xC0 || Y || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xC8 || Z || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xD0 || ! || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xD8 || ? || || || || || || || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encounter types==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Encounter&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0&lt;br /&gt;
| Pal Park, Egg, Hatched, Special Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| Tall Grass&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Dialga/Palkia In-Game Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Cave, Hall of Origin&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Surfing, Fishing&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9&lt;br /&gt;
| Building&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0xA&lt;br /&gt;
| Great Marsh (Safari Zone)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xC&lt;br /&gt;
| Starter, Fossil, Gift (Eevee)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Ribbons==&lt;br /&gt;
Pokémon Diamond, Pearl, and Platinum store the [[Ribbon]] data as bitfields in 16-bit words. Given below are the bytewise representations of the ribbon bitfields:&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 1===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x01&lt;br /&gt;
| Sinnoh Champ Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x02&lt;br /&gt;
| Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x04&lt;br /&gt;
| Great Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x08&lt;br /&gt;
| Double Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x10&lt;br /&gt;
| Multi Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x20&lt;br /&gt;
| Pair Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x40&lt;br /&gt;
| World Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x80&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x01&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x02&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x04&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x08&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x10&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x20&lt;br /&gt;
| Smile Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x40&lt;br /&gt;
| Gorgeous Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x80&lt;br /&gt;
| Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x01&lt;br /&gt;
| Gorgeous Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x02&lt;br /&gt;
| Footprint Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x04&lt;br /&gt;
| Record Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x08&lt;br /&gt;
| History Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x10&lt;br /&gt;
| Legend Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x20&lt;br /&gt;
| Red Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x40&lt;br /&gt;
| Green Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x80&lt;br /&gt;
| Blue Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x01&lt;br /&gt;
| Festival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x02&lt;br /&gt;
| Carnival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x04&lt;br /&gt;
| Classic Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x08&lt;br /&gt;
| Premier Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 2===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Hoenn Ribbon Set===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x10&lt;br /&gt;
| Champion Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x20&lt;br /&gt;
| Winning Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x40&lt;br /&gt;
| Victory Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x80&lt;br /&gt;
| Artist Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x01&lt;br /&gt;
| Effort Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x02&lt;br /&gt;
| Marine Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x04&lt;br /&gt;
| Land Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x08&lt;br /&gt;
| Sky Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x10&lt;br /&gt;
| Country Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x20&lt;br /&gt;
| National Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x40&lt;br /&gt;
| Earth Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x80&lt;br /&gt;
| World Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In Memory, the Player and Enemy Party Pokémon can be accessed using different pointers depending on the game.  These pointers are stored as 32-bit addresses in little endian format.&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Game&lt;br /&gt;
! Pointer&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Diamond &amp;amp; Pearl&lt;br /&gt;
| 0x02106FAC&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| Platinum&lt;br /&gt;
| 0x02101D2C&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Heartgold &amp;amp; Soulsilver&lt;br /&gt;
| 0x0211186C&lt;br /&gt;
|}&lt;br /&gt;
In addition to this pointer, the order in which they store the Pokémon changes slightly.  The following addresses when added to the pointer result in their respective locations&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Game&lt;br /&gt;
! Player Party&lt;br /&gt;
! Enemy Party&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Diamond &amp;amp; Pearl&lt;br /&gt;
| 0xD2AC&lt;br /&gt;
| 0x364C8&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| Platinum&lt;br /&gt;
| 0xD088&lt;br /&gt;
| 0x37970&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Heartgold &amp;amp; Soulsilver&lt;br /&gt;
| 0xD094&lt;br /&gt;
| 0x352F4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
The party Pokémon are stored in the {{OBP|Save data structure|Generation IV|save file}} beginning at offset 0x00098 for the first block pair, and 0x40098 for the second block pair. Each party Pokémon is 236 bytes in size.&lt;br /&gt;
&lt;br /&gt;
The PC storage Pokémon are stored in the save file from Box 1 to Box 18. They start at 0x0C104 in the first block pair, and at 0x4C104 in the second block pair. Each PC stored Pokémon is 136 bytes in size.&lt;br /&gt;
&lt;br /&gt;
{{data structure}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|data structure}}&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3869076</id>
		<title>Pokémon data structure (Generation IV)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3869076"/>
		<updated>2023-11-30T19:13:35Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Encryption */ Clarification of the algorithm used and the agnostic attitude towards the block order&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boxed Pokémon in the games {{v2|Diamond and Pearl|s}} are stored in a 136-byte structure. All unencrypted values are stored in little-endian format. The game encrypts the data when it is stored into the {{OBP|Save data structure|Generation IV|save data}}. In-party Pokémon have additional values appended to them to hold calculated stats. The information below describes the boxed Pokémon data format.&lt;br /&gt;
&lt;br /&gt;
==Checksum==&lt;br /&gt;
&lt;br /&gt;
The checksum serves two purposes:&lt;br /&gt;
# It validates the data after decryption, and&lt;br /&gt;
# It serves as the encryption key for the data.&lt;br /&gt;
&lt;br /&gt;
The checksum is calculated in three steps:&lt;br /&gt;
# Split the unencrypted data from offsets 0x08 to 0x87 into two-byte words,&lt;br /&gt;
# Take the sum of the words, and&lt;br /&gt;
# Truncate the sum to sixteen bits.&lt;br /&gt;
&lt;br /&gt;
==Block shuffling==&lt;br /&gt;
&lt;br /&gt;
The 128 bytes of Pokémon data are split into four 32-byte blocks for shuffling. The blocks are shuffled according to a shift value derived from the [[personality value]]. Given the personality value &#039;&#039;pv&#039;&#039;, the expression yielding the shift value is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;((pv &amp;amp; 0x3E000) &amp;gt;&amp;gt; 0xD) % 24&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The right shifting (&amp;gt;&amp;gt; 0xD) is equivalent to a division of 8192.&lt;br /&gt;
&lt;br /&gt;
To shuffle the blocks, take the four blocks of unencrypted data, &#039;&#039;A&#039;&#039;, &#039;&#039;B&#039;&#039;, &#039;&#039;C&#039;&#039;, and &#039;&#039;D&#039;&#039;. The blocks shall be rearranged in the encrypted data according to the Block Order column of the following table. (To unshuffle, use the Inverse column.)&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Shift Value (decimal)&lt;br /&gt;
! Block Order&lt;br /&gt;
! Inverse&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 00&lt;br /&gt;
| ABCD&lt;br /&gt;
| ABCD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 01&lt;br /&gt;
| ABDC&lt;br /&gt;
| ABDC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 02&lt;br /&gt;
| ACBD&lt;br /&gt;
| ACBD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 03&lt;br /&gt;
| ACDB&lt;br /&gt;
| ADBC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 04&lt;br /&gt;
| ADBC&lt;br /&gt;
| ACDB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 05&lt;br /&gt;
| ADCB&lt;br /&gt;
| ADCB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 06&lt;br /&gt;
| BACD&lt;br /&gt;
| BACD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 07&lt;br /&gt;
| BADC&lt;br /&gt;
| BADC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 08&lt;br /&gt;
| BCAD&lt;br /&gt;
| CABD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 09&lt;br /&gt;
| BCDA&lt;br /&gt;
| DABC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 10&lt;br /&gt;
| BDAC&lt;br /&gt;
| CADB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 11&lt;br /&gt;
| BDCA&lt;br /&gt;
| DACB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 12&lt;br /&gt;
| CABD&lt;br /&gt;
| BCAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 13&lt;br /&gt;
| CADB&lt;br /&gt;
| BDAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 14&lt;br /&gt;
| CBAD&lt;br /&gt;
| CBAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 15&lt;br /&gt;
| CBDA&lt;br /&gt;
| DBAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 16&lt;br /&gt;
| CDAB&lt;br /&gt;
| CDAB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 17&lt;br /&gt;
| CDBA&lt;br /&gt;
| DCAB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 18&lt;br /&gt;
| DABC&lt;br /&gt;
| BCDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 19&lt;br /&gt;
| DACB&lt;br /&gt;
| BDCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 20&lt;br /&gt;
| DBAC&lt;br /&gt;
| CBDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 21&lt;br /&gt;
| DBCA&lt;br /&gt;
| DBCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 22&lt;br /&gt;
| DCAB&lt;br /&gt;
| CDBA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 23&lt;br /&gt;
| DCBA&lt;br /&gt;
| DCBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encryption==&lt;br /&gt;
The encryption uses a [[Pseudorandom number generation in Pokémon|pseudorandom number generator (PRNG)]], a 32-bit linear congruential generator to be exact.&lt;br /&gt;
&lt;br /&gt;
The order of the ABCD blocks is irrelevant when encrypting or decrypting, because the data is treated as a bit stream, so the algorithm is the same in both cases.&lt;br /&gt;
&lt;br /&gt;
First, the PRNG is seeded with the checksum of the Pokémon:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;X[0] = checksum&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, we loop over the 64 2-byte words of ABCD block data by advancing the PRNG and XORing the top 16 bits of each new state with each 16 bits of data:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;X[n+1] = 0x41C64E6D * X[n] + 0x6073&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;D[n] = D[n] XOR (X[n+1] &amp;gt;&amp;gt; 16)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To read from or write to an encrypted Pokémon&#039;s ABCD block data, the game first decrypts the data as a whole, then determines what the block order is from the personality value and figures out the offset it needs to use to read from either block.&lt;br /&gt;
&lt;br /&gt;
==Unencrypted bytes==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x00-0x03&lt;br /&gt;
| [[Personality value]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x04-0x05&lt;br /&gt;
| Bit 0-1: If set, skip checksum checks&amp;lt;br/&amp;gt;Bit 2: Bad egg flag&amp;lt;br/&amp;gt;Bit 3-7: &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x06-0x07&lt;br /&gt;
| Checksum&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encrypted bytes==&lt;br /&gt;
===Block A===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x08-0x09&lt;br /&gt;
| Species ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0A-0x0B&lt;br /&gt;
| Held Item&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0C-0x0D&lt;br /&gt;
| OT ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0E-0x0F&lt;br /&gt;
| OT Secret ID&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10-0x13&lt;br /&gt;
| [[Experience|Experience points]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x14&lt;br /&gt;
| Friendship/Egg Steps to Hatch&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x15&lt;br /&gt;
| [[Ability]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x16&lt;br /&gt;
| [[Marking]]s&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x17&lt;br /&gt;
| [[Language of origin]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x18&lt;br /&gt;
| HP EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x19&lt;br /&gt;
| Attack EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1A&lt;br /&gt;
| Defense EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1B&lt;br /&gt;
| Speed EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1C&lt;br /&gt;
| Sp. Atk EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1D&lt;br /&gt;
| Sp. Def. EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1E&lt;br /&gt;
| Cool Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1F&lt;br /&gt;
| Beauty Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Cute Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x21&lt;br /&gt;
| Smart Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x22&lt;br /&gt;
| Tough Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x23&lt;br /&gt;
| [[Sheen]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24-0x27&lt;br /&gt;
| Sinnoh Ribbons Set 1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block B===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x28-0x2F&lt;br /&gt;
| Moveset&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x30-0x33&lt;br /&gt;
| Move PP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x34-0x37&lt;br /&gt;
| Move PP Ups&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x38-0x3B&lt;br /&gt;
| Bits 0-29 - [[Individual values]]&amp;lt;br/&amp;gt;HP ( [0-31] &amp;lt;&amp;lt; 0 )&amp;lt;br&amp;gt;Attack ( [0-31] &amp;lt;&amp;lt; 5 )&amp;lt;br&amp;gt;Defense ( [0-31] &amp;lt;&amp;lt; 10 )&amp;lt;br&amp;gt;Speed ( [0-31] &amp;lt;&amp;lt; 15 )&amp;lt;br&amp;gt;Sp. Atk. ( [0-31] &amp;lt;&amp;lt; 20 )&amp;lt;br&amp;gt;Sp. Def. ( [0-31] &amp;lt;&amp;lt; 25 )&amp;lt;br&amp;gt;Bit 30 - IsEgg Flag&amp;lt;br&amp;gt;Bit 31 - IsNicknamed Flag&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C-0x3F&lt;br /&gt;
| Hoenn Ribbon Set&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x40&lt;br /&gt;
| Bit 0 - [[Fateful encounter]] Flag&amp;lt;br&amp;gt;Bit 1 - Female&amp;lt;br&amp;gt;Bit 2 - Gender unknown&amp;lt;br&amp;gt;Bit 3-7 - Alternate Forms (Form Index &amp;lt;&amp;lt; 3)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x41&lt;br /&gt;
| Shiny Leaves (HGSS)&amp;lt;br&amp;gt;Bit 5 - Leaf Crown&amp;lt;br&amp;gt;Bits 0–4 - Leaves A–E (bit 0 is leftmost)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x42-0x43&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x44-0x45&lt;br /&gt;
| Platinum Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x46-0x47&lt;br /&gt;
| Platinum Met at Location&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block C===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x48-0x5D&lt;br /&gt;
| Nickname&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5E&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5F&lt;br /&gt;
| [[Game of origin]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60-0x63&lt;br /&gt;
| Sinnoh Ribbons Set 2&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x64-0x67&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block D===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x68-0x77&lt;br /&gt;
| OT Name&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x78-0x7A&lt;br /&gt;
| Date Egg Received&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7B-0x7D&lt;br /&gt;
| Date Met&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7E-0x7F&lt;br /&gt;
| Diamond/Pearl Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x80-0x81&lt;br /&gt;
| Diamond/Pearl Met At Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x82&lt;br /&gt;
| [[Pokérus]]&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x83&lt;br /&gt;
| Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x84&lt;br /&gt;
| Bit 0-6 - Met At Level&amp;lt;br&amp;gt;Bit 7 - Female OT Gender&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x85&lt;br /&gt;
| Encounter Type&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x86&lt;br /&gt;
| HG/SS Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x87&lt;br /&gt;
| [[Performance]] (unused in DPPt)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Battle stats==&lt;br /&gt;
The battle stats are encrypted in the same manner, however the seed is not the checksum, it is the [[personality value]], and the bytes are not shuffled.&lt;br /&gt;
&lt;br /&gt;
===Encrypted bytes===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x88&lt;br /&gt;
| Bits 0-2 - Asleep (0-7 rounds)&amp;lt;br&amp;gt;Bit 3 - Poisoned&amp;lt;br&amp;gt;Bit 4 - Burned&amp;lt;br&amp;gt;Bit 5 - Frozen&amp;lt;br&amp;gt;Bit 6 - Paralyzed&amp;lt;br&amp;gt;Bit 7 - Toxic&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x89&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039; - Flags - Max Value 0xF0&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8A-0x8B&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8C&lt;br /&gt;
| Level&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8D&lt;br /&gt;
| Capsule Index (Seals)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8E-0x8F&lt;br /&gt;
| Current HP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x90-0x91&lt;br /&gt;
| Max HP&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x92-0x93&lt;br /&gt;
| Attack&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x94-0x95&lt;br /&gt;
| Defense&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x96-0x97&lt;br /&gt;
| Speed&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x98-0x99&lt;br /&gt;
| Special Attack&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9A-0x9B&lt;br /&gt;
| Special Defense&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x9C-0xD3&lt;br /&gt;
| Mail data&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xD4-0xEB&lt;br /&gt;
| Seal Coordinates&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Language of origin==&lt;br /&gt;
{{main|Language of origin}}&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Language&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1&lt;br /&gt;
| 日本語 (Japanese)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| English&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3&lt;br /&gt;
| Français (French)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Italiano (Italian)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Deutsch (German)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Español (Spanish)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8&lt;br /&gt;
| 한국어 (Korean)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Markings==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Marking&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x01&lt;br /&gt;
| Circle&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x02&lt;br /&gt;
| Triangle&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x04&lt;br /&gt;
| Square&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x08&lt;br /&gt;
| Heart&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10&lt;br /&gt;
| Star&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Diamond&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Alternate forms==&lt;br /&gt;
[[List of Pokémon with form differences|Alternate forms]] are stored at offset 0x40 of the Pokémon structure. Each form follows the pattern of &amp;lt;code&amp;gt;index &amp;lt;&amp;lt; 3&amp;lt;/code&amp;gt; where index starts at zero for the main form.&lt;br /&gt;
&lt;br /&gt;
{{p|Rotom}}&#039;s alternate forms, {{p|Giratina}}&#039;s Origin Forme, and {{p|Shaymin}}&#039;s Sky Forme will only be displayed in Pokémon Platinum, HeartGold and SoulSilver. Rotom may be traded among Pokémon Diamond, Pearl, and Platinum without losing its alternate form.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align: center&amp;quot;&lt;br /&gt;
! Byte || Unown || Deoxys || Burmy/Wormadam || Shellos/Gastrodon || Rotom || Giratina || Shaymin || Arceus || Pichu (HGSS only)&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x00 || A || Normal || Plant || West || Normal || Altered || Land || Normal || Normal&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x08 || B || Attack || Sandy || East || Heat || Origin || Sky || Fighting || Spiky-eared&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x10 || C || Defense || Trash || || Wash || || || Flying ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x18 || D || Speed || || || Frost || || || Poison ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x20 || E || || || || Fan || || || Ground ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x28 || F || || || || Mow || || || Rock ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x30 || G || || || || || || || Bug ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x38 || H || || || || || || || Ghost ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x40 || I || || || || || || || Steel ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x48 || J || || || || || || || ??? ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x50 || K || || || || || || || Fire ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x58 || L || || || || || || || Water ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x60 || M || || || || || || || Grass ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x68 || N || || || || || || || Electric ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x70 || O || || || || || || || Psychic ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x78 || P || || || || || || || Ice ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x80 || Q || || || || || || || Dragon ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x88 || R || || || || || || || Dark ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x90 || S || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x98 || T || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xA0 || U || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xA8 || V || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xB0 || W || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xB8 || X || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xC0 || Y || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xC8 || Z || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xD0 || ! || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xD8 || ? || || || || || || || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encounter types==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Encounter&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0&lt;br /&gt;
| Pal Park, Egg, Hatched, Special Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| Tall Grass&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Dialga/Palkia In-Game Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Cave, Hall of Origin&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Surfing, Fishing&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9&lt;br /&gt;
| Building&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0xA&lt;br /&gt;
| Great Marsh (Safari Zone)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xC&lt;br /&gt;
| Starter, Fossil, Gift (Eevee)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Ribbons==&lt;br /&gt;
Pokémon Diamond, Pearl, and Platinum store the [[Ribbon]] data as bitfields in 16-bit words. Given below are the bytewise representations of the ribbon bitfields:&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 1===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x01&lt;br /&gt;
| Sinnoh Champ Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x02&lt;br /&gt;
| Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x04&lt;br /&gt;
| Great Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x08&lt;br /&gt;
| Double Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x10&lt;br /&gt;
| Multi Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x20&lt;br /&gt;
| Pair Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x40&lt;br /&gt;
| World Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x80&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x01&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x02&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x04&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x08&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x10&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x20&lt;br /&gt;
| Smile Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x40&lt;br /&gt;
| Gorgeous Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x80&lt;br /&gt;
| Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x01&lt;br /&gt;
| Gorgeous Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x02&lt;br /&gt;
| Footprint Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x04&lt;br /&gt;
| Record Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x08&lt;br /&gt;
| History Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x10&lt;br /&gt;
| Legend Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x20&lt;br /&gt;
| Red Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x40&lt;br /&gt;
| Green Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x80&lt;br /&gt;
| Blue Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x01&lt;br /&gt;
| Festival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x02&lt;br /&gt;
| Carnival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x04&lt;br /&gt;
| Classic Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x08&lt;br /&gt;
| Premier Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 2===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Hoenn Ribbon Set===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x10&lt;br /&gt;
| Champion Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x20&lt;br /&gt;
| Winning Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x40&lt;br /&gt;
| Victory Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x80&lt;br /&gt;
| Artist Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x01&lt;br /&gt;
| Effort Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x02&lt;br /&gt;
| Marine Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x04&lt;br /&gt;
| Land Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x08&lt;br /&gt;
| Sky Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x10&lt;br /&gt;
| Country Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x20&lt;br /&gt;
| National Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x40&lt;br /&gt;
| Earth Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x80&lt;br /&gt;
| World Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In Memory, the Player and Enemy Party Pokémon can be accessed using different pointers depending on the game.  These pointers are stored as 32-bit addresses in little endian format.&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Game&lt;br /&gt;
! Pointer&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Diamond &amp;amp; Pearl&lt;br /&gt;
| 0x02106FAC&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| Platinum&lt;br /&gt;
| 0x02101D2C&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Heartgold &amp;amp; Soulsilver&lt;br /&gt;
| 0x0211186C&lt;br /&gt;
|}&lt;br /&gt;
In addition to this pointer, the order in which they store the Pokémon changes slightly.  The following addresses when added to the pointer result in their respective locations&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Game&lt;br /&gt;
! Player Party&lt;br /&gt;
! Enemy Party&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Diamond &amp;amp; Pearl&lt;br /&gt;
| 0xD2AC&lt;br /&gt;
| 0x364C8&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| Platinum&lt;br /&gt;
| 0xD088&lt;br /&gt;
| 0x37970&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| Heartgold &amp;amp; Soulsilver&lt;br /&gt;
| 0xD094&lt;br /&gt;
| 0x352F4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
The party Pokémon are stored in the {{OBP|Save data structure|Generation IV|save file}} beginning at offset 0x00098 for the first block pair, and 0x40098 for the second block pair. Each party Pokémon is 236 bytes in size.&lt;br /&gt;
&lt;br /&gt;
The PC storage Pokémon are stored in the save file from Box 1 to Box 18. They start at 0x0C104 in the first block pair, and at 0x4C104 in the second block pair. Each PC stored Pokémon is 136 bytes in size.&lt;br /&gt;
&lt;br /&gt;
{{data structure}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|data structure}}&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3518683</id>
		<title>Pokémon data structure (Generation IV)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3518683"/>
		<updated>2022-05-08T18:00:11Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Encrypted bytes */ Changed &amp;quot;unknown&amp;quot; to mail data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boxed Pokémon in the games {{v2|Diamond and Pearl|s}} are stored in a 136-byte structure. All unencrypted values are stored in little-endian format. The game encrypts the data when it is stored into the {{OBP|Save data structure|Generation IV|save data}}. In-party Pokémon have additional values appended to them to hold calculated stats. The information below describes the boxed Pokémon data format.&lt;br /&gt;
&lt;br /&gt;
==Checksum==&lt;br /&gt;
&lt;br /&gt;
The checksum serves two purposes:&lt;br /&gt;
# It validates the data after decryption, and&lt;br /&gt;
# It serves as the encryption key for the data.&lt;br /&gt;
&lt;br /&gt;
The checksum is calculated in three steps:&lt;br /&gt;
# Split the unencrypted data from offsets 0x08 to 0x87 into two-byte words,&lt;br /&gt;
# Take the sum of the words, and&lt;br /&gt;
# Truncate the sum to sixteen bits.&lt;br /&gt;
&lt;br /&gt;
==Block shuffling==&lt;br /&gt;
&lt;br /&gt;
The 128 bytes of Pokémon data are split into four 32-byte blocks for shuffling. The blocks are shuffled according to a shift value derived from the [[personality value]]. Given the personality value &#039;&#039;pv&#039;&#039;, the expression yielding the shift value is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;((pv &amp;amp; 0x3E000) &amp;gt;&amp;gt; 0xD) % 24&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The right shifting (&amp;gt;&amp;gt; 0xD) is equivalent to a division of 8192.&lt;br /&gt;
&lt;br /&gt;
To shuffle the blocks, take the four blocks of unencrypted data, &#039;&#039;A&#039;&#039;, &#039;&#039;B&#039;&#039;, &#039;&#039;C&#039;&#039;, and &#039;&#039;D&#039;&#039;. The blocks shall be rearranged in the encrypted data according to the Block Order column of the following table. (To unshuffle, use the Inverse column.)&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Shift Value (decimal)&lt;br /&gt;
! Block Order&lt;br /&gt;
! Inverse&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 00&lt;br /&gt;
| ABCD&lt;br /&gt;
| ABCD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 01&lt;br /&gt;
| ABDC&lt;br /&gt;
| ABDC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 02&lt;br /&gt;
| ACBD&lt;br /&gt;
| ACBD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 03&lt;br /&gt;
| ACDB&lt;br /&gt;
| ADBC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 04&lt;br /&gt;
| ADBC&lt;br /&gt;
| ACDB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 05&lt;br /&gt;
| ADCB&lt;br /&gt;
| ADCB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 06&lt;br /&gt;
| BACD&lt;br /&gt;
| BACD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 07&lt;br /&gt;
| BADC&lt;br /&gt;
| BADC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 08&lt;br /&gt;
| BCAD&lt;br /&gt;
| CABD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 09&lt;br /&gt;
| BCDA&lt;br /&gt;
| DABC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 10&lt;br /&gt;
| BDAC&lt;br /&gt;
| CADB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 11&lt;br /&gt;
| BDCA&lt;br /&gt;
| DACB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 12&lt;br /&gt;
| CABD&lt;br /&gt;
| BCAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 13&lt;br /&gt;
| CADB&lt;br /&gt;
| BDAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 14&lt;br /&gt;
| CBAD&lt;br /&gt;
| CBAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 15&lt;br /&gt;
| CBDA&lt;br /&gt;
| DBAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 16&lt;br /&gt;
| CDAB&lt;br /&gt;
| CDAB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 17&lt;br /&gt;
| CDBA&lt;br /&gt;
| DCAB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 18&lt;br /&gt;
| DABC&lt;br /&gt;
| BCDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 19&lt;br /&gt;
| DACB&lt;br /&gt;
| BDCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 20&lt;br /&gt;
| DBAC&lt;br /&gt;
| CBDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 21&lt;br /&gt;
| DBCA&lt;br /&gt;
| DBCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 22&lt;br /&gt;
| DCAB&lt;br /&gt;
| CDBA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 23&lt;br /&gt;
| DCBA&lt;br /&gt;
| DCBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encryption==&lt;br /&gt;
The encryption uses the [[Pseudorandom number generation in Pokémon|pseudorandom number generator (PRNG)]], a linear congruential generator. Elements of the PRNG can be described with the recursive function:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;X[n+1] = (0x41C64E6D * X[n] + 0x6073)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To decrypt the data, given a function &amp;lt;code&amp;gt;rand()&amp;lt;/code&amp;gt; which returns the upper 16 bits of consecutive results of the above given function:&lt;br /&gt;
# Seed the PRNG with the checksum (let &amp;lt;code&amp;gt;X[n]&amp;lt;/code&amp;gt; be the checksum).&lt;br /&gt;
# Sequentially, for each 2-byte word &amp;lt;code&amp;gt;Y&amp;lt;/code&amp;gt; from 0x08 to 0x87, apply the transformation: &amp;lt;code&amp;gt;unencryptedByte = Y xor rand()&amp;lt;/code&amp;gt;&lt;br /&gt;
# Unshuffle the blocks using the block shuffling algorithm above.&lt;br /&gt;
&lt;br /&gt;
To encrypt the data:&lt;br /&gt;
# Shuffle the blocks using the block shuffling algorithm above.&lt;br /&gt;
# Seed the PRNG with the checksum (let &amp;lt;code&amp;gt;X[n]&amp;lt;/code&amp;gt; be the checksum),&lt;br /&gt;
# Sequentially, for each 2-byte word &amp;lt;code&amp;gt;Y&amp;lt;/code&amp;gt; from 0x08 to 0x87, apply the transformation: &amp;lt;code&amp;gt;unencryptedByte = Y xor rand()&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Unencrypted bytes==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x00-0x03&lt;br /&gt;
| [[Personality value]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x04-0x05&lt;br /&gt;
| Bit 0-1: If set, skip checksum checks&amp;lt;br/&amp;gt;Bit 2: Bad egg flag&amp;lt;br/&amp;gt;Bit 3-7: &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x06-0x07&lt;br /&gt;
| Checksum&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encrypted bytes==&lt;br /&gt;
===Block A===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x08-0x09&lt;br /&gt;
| Species ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0A-0x0B&lt;br /&gt;
| Held Item&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0C-0x0D&lt;br /&gt;
| OT ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0E-0x0F&lt;br /&gt;
| OT Secret ID&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10-0x13&lt;br /&gt;
| [[Experience|Experience points]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x14&lt;br /&gt;
| Friendship/Egg Steps to Hatch&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x15&lt;br /&gt;
| [[Ability]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x16&lt;br /&gt;
| [[Marking]]s&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x17&lt;br /&gt;
| Language of origin&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x18&lt;br /&gt;
| HP EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x19&lt;br /&gt;
| Attack EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1A&lt;br /&gt;
| Defense EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1B&lt;br /&gt;
| Speed EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1C&lt;br /&gt;
| Sp. Atk EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1D&lt;br /&gt;
| Sp. Def. EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1E&lt;br /&gt;
| Cool Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1F&lt;br /&gt;
| Beauty Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Cute Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x21&lt;br /&gt;
| Smart Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x22&lt;br /&gt;
| Tough Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x23&lt;br /&gt;
| [[Sheen]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24-0x27&lt;br /&gt;
| Sinnoh Ribbons Set 1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block B===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x28-0x2F&lt;br /&gt;
| Moveset&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x30-0x33&lt;br /&gt;
| Move PP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x34-0x37&lt;br /&gt;
| Move PP Ups&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x38-0x3B&lt;br /&gt;
| Bits 0-29 - [[Individual values]]&amp;lt;br/&amp;gt;HP ( [0-31] &amp;lt;&amp;lt; 0 )&amp;lt;br&amp;gt;Attack ( [0-31] &amp;lt;&amp;lt; 5 )&amp;lt;br&amp;gt;Defense ( [0-31] &amp;lt;&amp;lt; 10 )&amp;lt;br&amp;gt;Speed ( [0-31] &amp;lt;&amp;lt; 15 )&amp;lt;br&amp;gt;Sp. Atk. ( [0-31] &amp;lt;&amp;lt; 20 )&amp;lt;br&amp;gt;Sp. Def. ( [0-31] &amp;lt;&amp;lt; 25 )&amp;lt;br&amp;gt;Bit 30 - IsEgg Flag&amp;lt;br&amp;gt;Bit 31 - IsNicknamed Flag&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C-0x3F&lt;br /&gt;
| Hoenn Ribbon Set&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x40&lt;br /&gt;
| Bit 0 - [[Fateful encounter]] Flag&amp;lt;br&amp;gt;Bit 1 - Female&amp;lt;br&amp;gt;Bit 2 - Gender unknown&amp;lt;br&amp;gt;Bit 3-7 - Alternate Forms (Form Index &amp;lt;&amp;lt; 3)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x41&lt;br /&gt;
| Shiny Leaves (HGSS)&amp;lt;br&amp;gt;Bit 5 - Leaf Crown&amp;lt;br&amp;gt;Bits 0–4 - Leaves A–E (bit 0 is leftmost)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x42-0x43&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x44-0x45&lt;br /&gt;
| Platinum Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x46-0x47&lt;br /&gt;
| Platinum Met at Location&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block C===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x48-0x5D&lt;br /&gt;
| Nickname&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5E&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5F&lt;br /&gt;
| [[Game of origin]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60-0x63&lt;br /&gt;
| Sinnoh Ribbons Set 2&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x64-0x67&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block D===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x68-0x77&lt;br /&gt;
| OT Name&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x78-0x7A&lt;br /&gt;
| Date Egg Received&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7B-0x7D&lt;br /&gt;
| Date Met&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7E-0x7F&lt;br /&gt;
| Diamond/Pearl Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x80-0x81&lt;br /&gt;
| Diamond/Pearl Met At Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x82&lt;br /&gt;
| [[Pokérus]]&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x83&lt;br /&gt;
| Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x84&lt;br /&gt;
| Bit 0-6 - Met At Level&amp;lt;br&amp;gt;Bit 7 - Female OT Gender&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x85&lt;br /&gt;
| Encounter Type&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x86&lt;br /&gt;
| HG/SS Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x87&lt;br /&gt;
| [[Performance]] (unused in DPPt)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Battle stats==&lt;br /&gt;
The battle stats are encrypted in the same manner, however the seed is not the checksum, it is the [[personality value]], and the bytes are not shuffled.&lt;br /&gt;
&lt;br /&gt;
===Encrypted bytes===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x88&lt;br /&gt;
| Bits 0-2 - Asleep (0-7 rounds)&amp;lt;br&amp;gt;Bit 3 - Poisoned&amp;lt;br&amp;gt;Bit 4 - Burned&amp;lt;br&amp;gt;Bit 5 - Frozen&amp;lt;br&amp;gt;Bit 6 - Paralyzed&amp;lt;br&amp;gt;Bit 7 - Toxic&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x89&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039; - Flags - Max Value 0xF0&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8A-0x8B&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8C&lt;br /&gt;
| Level&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8D&lt;br /&gt;
| Capsule Index (Seals)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8E-0x8F&lt;br /&gt;
| Current HP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x90-0x91&lt;br /&gt;
| Max HP&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x92-0x93&lt;br /&gt;
| Attack&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x94-0x95&lt;br /&gt;
| Defense&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x96-0x97&lt;br /&gt;
| Speed&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x98-0x99&lt;br /&gt;
| Special Attack&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9A-0x9B&lt;br /&gt;
| Special Defense&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x9C-0xD3&lt;br /&gt;
| Mail data&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xD4-0xEB&lt;br /&gt;
| Seal Coordinates&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Language of origin==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Language&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1&lt;br /&gt;
| 日本語 (Japanese)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| English&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3&lt;br /&gt;
| Français (French)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Italiano (Italian)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Deutsch (German)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Español (Spanish)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8&lt;br /&gt;
| 한국어 (Korean)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Markings==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Marking&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x01&lt;br /&gt;
| Circle&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x02&lt;br /&gt;
| Triangle&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x04&lt;br /&gt;
| Square&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x08&lt;br /&gt;
| Heart&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10&lt;br /&gt;
| Star&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Diamond&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Alternate forms==&lt;br /&gt;
[[List of Pokémon with form differences|Alternate forms]] are stored at offset 0x40 of the Pokémon structure. Each form follows the pattern of &amp;lt;code&amp;gt;index &amp;lt;&amp;lt; 3&amp;lt;/code&amp;gt; where index starts at zero for the main form.&lt;br /&gt;
&lt;br /&gt;
{{p|Rotom}}&#039;s alternate forms, {{p|Giratina}}&#039;s Origin Forme, and {{p|Shaymin}}&#039;s Sky Forme will only be displayed in Pokémon Platinum, HeartGold and SoulSilver. Rotom may be traded among Pokémon Diamond, Pearl, and Platinum without losing its alternate form.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align: center&amp;quot;&lt;br /&gt;
! Byte || Unown || Deoxys || Burmy/Wormadam || Shellos/Gastrodon || Rotom || Giratina || Shaymin || Arceus || Pichu (HGSS only)&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x00 || A || Normal || Plant || West || Normal || Altered || Land || Normal || Normal&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x08 || B || Attack || Sandy || East || Heat || Origin || Sky || Fighting || Spiky-eared&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x10 || C || Defense || Trash || || Wash || || || Flying ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x18 || D || Speed || || || Frost || || || Poison ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x20 || E || || || || Fan || || || Ground ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x28 || F || || || || Mow || || || Rock ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x30 || G || || || || || || || Bug ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x38 || H || || || || || || || Ghost ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x40 || I || || || || || || || Steel ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x48 || J || || || || || || || ??? ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x50 || K || || || || || || || Fire ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x58 || L || || || || || || || Water ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x60 || M || || || || || || || Grass ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x68 || N || || || || || || || Electric ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x70 || O || || || || || || || Psychic ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x78 || P || || || || || || || Ice ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x80 || Q || || || || || || || Dragon ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x88 || R || || || || || || || Dark ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x90 || S || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x98 || T || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xA0 || U || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xA8 || V || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xB0 || W || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xB8 || X || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xC0 || Y || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xC8 || Z || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xD0 || ! || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xD8 || ? || || || || || || || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encounter types==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Encounter&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0&lt;br /&gt;
| Pal Park, Egg, Hatched, Special Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| Tall Grass&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Dialga/Palkia In-Game Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Cave, Hall of Origin&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Surfing, Fishing&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9&lt;br /&gt;
| Building&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0xA&lt;br /&gt;
| Great Marsh (Safari Zone)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xC&lt;br /&gt;
| Starter, Fossil, Gift (Eevee)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Ribbons==&lt;br /&gt;
Pokémon Diamond, Pearl, and Platinum store the [[Ribbon]] data as bitfields in 16-bit words. Given below are the bytewise representations of the ribbon bitfields:&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 1===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x01&lt;br /&gt;
| Sinnoh Champ Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x02&lt;br /&gt;
| Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x04&lt;br /&gt;
| Great Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x08&lt;br /&gt;
| Double Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x10&lt;br /&gt;
| Multi Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x20&lt;br /&gt;
| Pair Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x40&lt;br /&gt;
| World Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x80&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x01&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x02&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x04&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x08&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x10&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x20&lt;br /&gt;
| Smile Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x40&lt;br /&gt;
| Gorgeous Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x80&lt;br /&gt;
| Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x01&lt;br /&gt;
| Gorgeous Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x02&lt;br /&gt;
| Footprint Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x04&lt;br /&gt;
| Record Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x08&lt;br /&gt;
| History Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x10&lt;br /&gt;
| Legend Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x20&lt;br /&gt;
| Red Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x40&lt;br /&gt;
| Green Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x80&lt;br /&gt;
| Blue Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x01&lt;br /&gt;
| Festival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x02&lt;br /&gt;
| Carnival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x04&lt;br /&gt;
| Classic Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x08&lt;br /&gt;
| Premier Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 2===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Hoenn Ribbon Set===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x10&lt;br /&gt;
| Champion Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x20&lt;br /&gt;
| Winning Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x40&lt;br /&gt;
| Victory Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x80&lt;br /&gt;
| Artist Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x01&lt;br /&gt;
| Effort Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x02&lt;br /&gt;
| Marine Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x04&lt;br /&gt;
| Land Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x08&lt;br /&gt;
| Sky Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x10&lt;br /&gt;
| Country Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x20&lt;br /&gt;
| National Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x40&lt;br /&gt;
| Earth Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x80&lt;br /&gt;
| World Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
The party Pokémon are stored in the {{OBP|Save data structure|Generation IV|save file}} beginning at offset 0x00098 for the first block pair, and 0x40098 for the second block pair. Each party Pokémon is 236 bytes in size.&lt;br /&gt;
&lt;br /&gt;
The PC storage Pokémon are stored in the save file from Box 1 to Box 18. They start at 0x0C104 in the first block pair, and at 0x4C104 in the second block pair. Each PC stored Pokémon is 136 bytes in size.&lt;br /&gt;
&lt;br /&gt;
{{data structure}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|data structure}}&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3499998</id>
		<title>Pokémon data structure (Generation IV)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_data_structure_(Generation_IV)&amp;diff=3499998"/>
		<updated>2022-03-27T19:36:25Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Alternate forms */ Corrected Arceus&amp;#039;s form IDs and corresponding types&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Boxed Pokémon in the games {{v2|Diamond and Pearl|s}} are stored in a 136-byte structure. All unencrypted values are stored in little-endian format. The game encrypts the data when it is stored into the {{OBP|Save data structure|Generation IV|save data}}. In-party Pokémon have additional values appended to them to hold calculated stats. The information below describes the boxed Pokémon data format.&lt;br /&gt;
&lt;br /&gt;
==Checksum==&lt;br /&gt;
&lt;br /&gt;
The checksum serves two purposes:&lt;br /&gt;
# It validates the data after decryption, and&lt;br /&gt;
# It serves as the encryption key for the data.&lt;br /&gt;
&lt;br /&gt;
The checksum is calculated in three steps:&lt;br /&gt;
# Split the unencrypted data from offsets 0x08 to 0x87 into two-byte words,&lt;br /&gt;
# Take the sum of the words, and&lt;br /&gt;
# Truncate the sum to sixteen bits.&lt;br /&gt;
&lt;br /&gt;
==Block shuffling==&lt;br /&gt;
&lt;br /&gt;
The 128 bytes of Pokémon data are split into four 32-byte blocks for shuffling. The blocks are shuffled according to a shift value derived from the [[personality value]]. Given the personality value &#039;&#039;pv&#039;&#039;, the expression yielding the shift value is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;((pv &amp;amp; 0x3E000) &amp;gt;&amp;gt; 0xD) % 24&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The right shifting (&amp;gt;&amp;gt; 0xD) is equivalent to a division of 8192.&lt;br /&gt;
&lt;br /&gt;
To shuffle the blocks, take the four blocks of unencrypted data, &#039;&#039;A&#039;&#039;, &#039;&#039;B&#039;&#039;, &#039;&#039;C&#039;&#039;, and &#039;&#039;D&#039;&#039;. The blocks shall be rearranged in the encrypted data according to the Block Order column of the following table. (To unshuffle, use the Inverse column.)&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Shift Value (decimal)&lt;br /&gt;
! Block Order&lt;br /&gt;
! Inverse&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 00&lt;br /&gt;
| ABCD&lt;br /&gt;
| ABCD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 01&lt;br /&gt;
| ABDC&lt;br /&gt;
| ABDC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 02&lt;br /&gt;
| ACBD&lt;br /&gt;
| ACBD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 03&lt;br /&gt;
| ACDB&lt;br /&gt;
| ADBC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 04&lt;br /&gt;
| ADBC&lt;br /&gt;
| ACDB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 05&lt;br /&gt;
| ADCB&lt;br /&gt;
| ADCB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 06&lt;br /&gt;
| BACD&lt;br /&gt;
| BACD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 07&lt;br /&gt;
| BADC&lt;br /&gt;
| BADC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 08&lt;br /&gt;
| BCAD&lt;br /&gt;
| CABD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 09&lt;br /&gt;
| BCDA&lt;br /&gt;
| DABC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 10&lt;br /&gt;
| BDAC&lt;br /&gt;
| CADB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 11&lt;br /&gt;
| BDCA&lt;br /&gt;
| DACB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 12&lt;br /&gt;
| CABD&lt;br /&gt;
| BCAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 13&lt;br /&gt;
| CADB&lt;br /&gt;
| BDAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 14&lt;br /&gt;
| CBAD&lt;br /&gt;
| CBAD&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 15&lt;br /&gt;
| CBDA&lt;br /&gt;
| DBAC&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 16&lt;br /&gt;
| CDAB&lt;br /&gt;
| CDAB&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 17&lt;br /&gt;
| CDBA&lt;br /&gt;
| DCAB&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 18&lt;br /&gt;
| DABC&lt;br /&gt;
| BCDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 19&lt;br /&gt;
| DACB&lt;br /&gt;
| BDCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 20&lt;br /&gt;
| DBAC&lt;br /&gt;
| CBDA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 21&lt;br /&gt;
| DBCA&lt;br /&gt;
| DBCA&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 22&lt;br /&gt;
| DCAB&lt;br /&gt;
| CDBA&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 23&lt;br /&gt;
| DCBA&lt;br /&gt;
| DCBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encryption==&lt;br /&gt;
The encryption uses the [[Pseudorandom number generation in Pokémon|pseudorandom number generator (PRNG)]], a linear congruential generator. Elements of the PRNG can be described with the recursive function:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;X[n+1] = (0x41C64E6D * X[n] + 0x6073)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To decrypt the data, given a function &amp;lt;code&amp;gt;rand()&amp;lt;/code&amp;gt; which returns the upper 16 bits of consecutive results of the above given function:&lt;br /&gt;
# Seed the PRNG with the checksum (let &amp;lt;code&amp;gt;X[n]&amp;lt;/code&amp;gt; be the checksum).&lt;br /&gt;
# Sequentially, for each 2-byte word &amp;lt;code&amp;gt;Y&amp;lt;/code&amp;gt; from 0x08 to 0x87, apply the transformation: &amp;lt;code&amp;gt;unencryptedByte = Y xor rand()&amp;lt;/code&amp;gt;&lt;br /&gt;
# Unshuffle the blocks using the block shuffling algorithm above.&lt;br /&gt;
&lt;br /&gt;
To encrypt the data:&lt;br /&gt;
# Shuffle the blocks using the block shuffling algorithm above.&lt;br /&gt;
# Seed the PRNG with the checksum (let &amp;lt;code&amp;gt;X[n]&amp;lt;/code&amp;gt; be the checksum),&lt;br /&gt;
# Sequentially, for each 2-byte word &amp;lt;code&amp;gt;Y&amp;lt;/code&amp;gt; from 0x08 to 0x87, apply the transformation: &amp;lt;code&amp;gt;unencryptedByte = Y xor rand()&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Unencrypted bytes==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x00-0x03&lt;br /&gt;
| [[Personality value]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x04-0x05&lt;br /&gt;
| Bit 0-1: If set, skip checksum checks&amp;lt;br/&amp;gt;Bit 2: Bad egg flag&amp;lt;br/&amp;gt;Bit 3-7: &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x06-0x07&lt;br /&gt;
| Checksum&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encrypted bytes==&lt;br /&gt;
===Block A===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x08-0x09&lt;br /&gt;
| Species ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0A-0x0B&lt;br /&gt;
| Held Item&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0C-0x0D&lt;br /&gt;
| OT ID&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x0E-0x0F&lt;br /&gt;
| OT Secret ID&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10-0x13&lt;br /&gt;
| [[Experience|Experience points]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x14&lt;br /&gt;
| Friendship/Egg Steps to Hatch&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x15&lt;br /&gt;
| [[Ability]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x16&lt;br /&gt;
| [[Marking]]s&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x17&lt;br /&gt;
| Language of origin&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x18&lt;br /&gt;
| HP EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x19&lt;br /&gt;
| Attack EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1A&lt;br /&gt;
| Defense EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1B&lt;br /&gt;
| Speed EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1C&lt;br /&gt;
| Sp. Atk EVs&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1D&lt;br /&gt;
| Sp. Def. EVs&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x1E&lt;br /&gt;
| Cool Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1F&lt;br /&gt;
| Beauty Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Cute Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x21&lt;br /&gt;
| Smart Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x22&lt;br /&gt;
| Tough Contest stat&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x23&lt;br /&gt;
| [[Sheen]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24-0x27&lt;br /&gt;
| Sinnoh Ribbons Set 1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block B===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x28-0x2F&lt;br /&gt;
| Moveset&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x30-0x33&lt;br /&gt;
| Move PP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x34-0x37&lt;br /&gt;
| Move PP Ups&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x38-0x3B&lt;br /&gt;
| Bits 0-29 - [[Individual values]]&amp;lt;br/&amp;gt;HP ( [0-31] &amp;lt;&amp;lt; 0 )&amp;lt;br&amp;gt;Attack ( [0-31] &amp;lt;&amp;lt; 5 )&amp;lt;br&amp;gt;Defense ( [0-31] &amp;lt;&amp;lt; 10 )&amp;lt;br&amp;gt;Speed ( [0-31] &amp;lt;&amp;lt; 15 )&amp;lt;br&amp;gt;Sp. Atk. ( [0-31] &amp;lt;&amp;lt; 20 )&amp;lt;br&amp;gt;Sp. Def. ( [0-31] &amp;lt;&amp;lt; 25 )&amp;lt;br&amp;gt;Bit 30 - IsEgg Flag&amp;lt;br&amp;gt;Bit 31 - IsNicknamed Flag&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C-0x3F&lt;br /&gt;
| Hoenn Ribbon Set&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x40&lt;br /&gt;
| Bit 0 - [[Fateful encounter]] Flag&amp;lt;br&amp;gt;Bit 1 - Female&amp;lt;br&amp;gt;Bit 2 - Gender unknown&amp;lt;br&amp;gt;Bit 3-7 - Alternate Forms (Form Index &amp;lt;&amp;lt; 3)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x41&lt;br /&gt;
| Shiny Leaves (HGSS)&amp;lt;br&amp;gt;Bit 5 - Leaf Crown&amp;lt;br&amp;gt;Bits 0–4 - Leaves A–E (bit 0 is leftmost)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x42-0x43&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x44-0x45&lt;br /&gt;
| Platinum Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x46-0x47&lt;br /&gt;
| Platinum Met at Location&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block C===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x48-0x5D&lt;br /&gt;
| Nickname&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5E&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5F&lt;br /&gt;
| [[Game of origin]]&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60-0x63&lt;br /&gt;
| Sinnoh Ribbons Set 2&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x64-0x67&lt;br /&gt;
| &#039;&#039;Unused&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Block D===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x68-0x77&lt;br /&gt;
| OT Name&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x78-0x7A&lt;br /&gt;
| Date Egg Received&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7B-0x7D&lt;br /&gt;
| Date Met&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7E-0x7F&lt;br /&gt;
| Diamond/Pearl Egg Location&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x80-0x81&lt;br /&gt;
| Diamond/Pearl Met At Location&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x82&lt;br /&gt;
| [[Pokérus]]&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x83&lt;br /&gt;
| Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x84&lt;br /&gt;
| Bit 0-6 - Met At Level&amp;lt;br&amp;gt;Bit 7 - Female OT Gender&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x85&lt;br /&gt;
| Encounter Type&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x86&lt;br /&gt;
| HG/SS Poké Ball&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x87&lt;br /&gt;
| [[Performance]] (unused in DPPt)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Battle stats==&lt;br /&gt;
The battle stats are encrypted in the same manner, however the seed is not the checksum, it is the [[personality value]], and the bytes are not shuffled.&lt;br /&gt;
&lt;br /&gt;
===Encrypted bytes===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #ccc;&amp;quot;&lt;br /&gt;
! Offset&lt;br /&gt;
! Contents&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x88&lt;br /&gt;
| Bits 0-2 - Asleep (0-7 rounds)&amp;lt;br&amp;gt;Bit 3 - Poisoned&amp;lt;br&amp;gt;Bit 4 - Burned&amp;lt;br&amp;gt;Bit 5 - Frozen&amp;lt;br&amp;gt;Bit 6 - Paralyzed&amp;lt;br&amp;gt;Bit 7 - Toxic&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x89&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039; - Flags - Max Value 0xF0&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8A-0x8B&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8C&lt;br /&gt;
| Level&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8D&lt;br /&gt;
| Capsule Index (Seals)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x8E-0x8F&lt;br /&gt;
| Current HP&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x90-0x91&lt;br /&gt;
| Max HP&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x92-0x93&lt;br /&gt;
| Attack&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x94-0x95&lt;br /&gt;
| Defense&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x96-0x97&lt;br /&gt;
| Speed&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x98-0x99&lt;br /&gt;
| Special Attack&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9A-0x9B&lt;br /&gt;
| Special Defense&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x9C-0xD3&lt;br /&gt;
| &#039;&#039;Unknown&#039;&#039; - Contains Trash Data&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xD4-0xEB&lt;br /&gt;
| Seal Coordinates&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Language of origin==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Language&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x1&lt;br /&gt;
| 日本語 (Japanese)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| English&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3&lt;br /&gt;
| Français (French)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Italiano (Italian)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Deutsch (German)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Español (Spanish)&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x8&lt;br /&gt;
| 한국어 (Korean)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Markings==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Marking&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x01&lt;br /&gt;
| Circle&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x02&lt;br /&gt;
| Triangle&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x04&lt;br /&gt;
| Square&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x08&lt;br /&gt;
| Heart&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x10&lt;br /&gt;
| Star&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x20&lt;br /&gt;
| Diamond&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Alternate forms==&lt;br /&gt;
[[List of Pokémon with form differences|Alternate forms]] are stored at offset 0x40 of the Pokémon structure. Each form follows the pattern of &amp;lt;code&amp;gt;index &amp;lt;&amp;lt; 3&amp;lt;/code&amp;gt; where index starts at zero for the main form.&lt;br /&gt;
&lt;br /&gt;
{{p|Rotom}}&#039;s alternate forms, {{p|Giratina}}&#039;s Origin Forme, and {{p|Shaymin}}&#039;s Sky Forme will only be displayed in Pokémon Platinum, HeartGold and SoulSilver. Rotom may be traded among Pokémon Diamond, Pearl, and Platinum without losing its alternate form.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align: center&amp;quot;&lt;br /&gt;
! Byte || Unown || Deoxys || Burmy/Wormadam || Shellos/Gastrodon || Rotom || Giratina || Shaymin || Arceus || Pichu (HGSS only)&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x00 || A || Normal || Plant || West || Normal || Altered || Land || Normal || Normal&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x08 || B || Attack || Sandy || East || Heat || Origin || Sky || Fighting || Spiky-eared&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x10 || C || Defense || Trash || || Wash || || || Flying ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x18 || D || Speed || || || Frost || || || Poison ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x20 || E || || || || Fan || || || Ground ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x28 || F || || || || Mow || || || Rock ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x30 || G || || || || || || || Bug ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x38 || H || || || || || || || Ghost ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x40 || I || || || || || || || Steel ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x48 || J || || || || || || || ??? ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x50 || K || || || || || || || Fire ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x58 || L || || || || || || || Water ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x60 || M || || || || || || || Grass ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x68 || N || || || || || || || Electric ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x70 || O || || || || || || || Psychic ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x78 || P || || || || || || || Ice ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x80 || Q || || || || || || || Dragon ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x88 || R || || || || || || || Dark ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0x90 || S || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0x98 || T || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xA0 || U || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xA8 || V || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xB0 || W || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xB8 || X || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xC0 || Y || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xC8 || Z || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #eee&amp;quot;&lt;br /&gt;
| 0xD0 || ! || || || || || || || ||&lt;br /&gt;
|- style=&amp;quot;background: #ddd&amp;quot;&lt;br /&gt;
| 0xD8 || ? || || || || || || || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Encounter types==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Value&lt;br /&gt;
! Encounter&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x0&lt;br /&gt;
| Pal Park, Egg, Hatched, Special Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x2&lt;br /&gt;
| Tall Grass&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x4&lt;br /&gt;
| Dialga/Palkia In-Game Event&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x5&lt;br /&gt;
| Cave, Hall of Origin&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x7&lt;br /&gt;
| Surfing, Fishing&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x9&lt;br /&gt;
| Building&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0xA&lt;br /&gt;
| Great Marsh (Safari Zone)&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0xC&lt;br /&gt;
| Starter, Fossil, Gift (Eevee)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Ribbons==&lt;br /&gt;
Pokémon Diamond, Pearl, and Platinum store the [[Ribbon]] data as bitfields in 16-bit words. Given below are the bytewise representations of the ribbon bitfields:&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 1===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x01&lt;br /&gt;
| Sinnoh Champ Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x02&lt;br /&gt;
| Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x04&lt;br /&gt;
| Great Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x08&lt;br /&gt;
| Double Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x10&lt;br /&gt;
| Multi Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x20&lt;br /&gt;
| Pair Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x40&lt;br /&gt;
| World Ability Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x24 &amp;amp; 0x80&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x01&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x02&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x04&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x08&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x10&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x20&lt;br /&gt;
| Smile Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x40&lt;br /&gt;
| Gorgeous Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x25 &amp;amp; 0x80&lt;br /&gt;
| Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x01&lt;br /&gt;
| Gorgeous Royal Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x02&lt;br /&gt;
| Footprint Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x04&lt;br /&gt;
| Record Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x08&lt;br /&gt;
| History Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x10&lt;br /&gt;
| Legend Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x20&lt;br /&gt;
| Red Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x40&lt;br /&gt;
| Green Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x26 &amp;amp; 0x80&lt;br /&gt;
| Blue Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x01&lt;br /&gt;
| Festival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x02&lt;br /&gt;
| Carnival Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x04&lt;br /&gt;
| Classic Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x27 &amp;amp; 0x08&lt;br /&gt;
| Premier Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sinnoh Ribbon Set 2===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x60 &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x61 &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Great&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Ultra&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x62 &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Hoenn Ribbon Set===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border: 1px solid #999; border-collapse: collapse; text-align:center&amp;quot;&lt;br /&gt;
! Bit&lt;br /&gt;
! Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x01&lt;br /&gt;
| Cool Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x02&lt;br /&gt;
| Cool Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x04&lt;br /&gt;
| Cool Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x08&lt;br /&gt;
| Cool Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x10&lt;br /&gt;
| Beauty Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x20&lt;br /&gt;
| Beauty Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x40&lt;br /&gt;
| Beauty Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3C &amp;amp; 0x80&lt;br /&gt;
| Beauty Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x01&lt;br /&gt;
| Cute Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x02&lt;br /&gt;
| Cute Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x04&lt;br /&gt;
| Cute Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x08&lt;br /&gt;
| Cute Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x10&lt;br /&gt;
| Smart Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x20&lt;br /&gt;
| Smart Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x40&lt;br /&gt;
| Smart Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3D &amp;amp; 0x80&lt;br /&gt;
| Smart Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x01&lt;br /&gt;
| Tough Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x02&lt;br /&gt;
| Tough Ribbon Super&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x04&lt;br /&gt;
| Tough Ribbon Hyper&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x08&lt;br /&gt;
| Tough Ribbon Master&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x10&lt;br /&gt;
| Champion Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x20&lt;br /&gt;
| Winning Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x40&lt;br /&gt;
| Victory Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3E &amp;amp; 0x80&lt;br /&gt;
| Artist Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x01&lt;br /&gt;
| Effort Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x02&lt;br /&gt;
| Marine Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x04&lt;br /&gt;
| Land Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x08&lt;br /&gt;
| Sky Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x10&lt;br /&gt;
| Country Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x20&lt;br /&gt;
| National Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #eee;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x40&lt;br /&gt;
| Earth Ribbon&lt;br /&gt;
|- style=&amp;quot;background: #ddd;&amp;quot;&lt;br /&gt;
| 0x3F &amp;amp; 0x80&lt;br /&gt;
| World Ribbon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
The party Pokémon are stored in the {{OBP|Save data structure|Generation IV|save file}} beginning at offset 0x00098 for the first block pair, and 0x40098 for the second block pair. Each party Pokémon is 236 bytes in size.&lt;br /&gt;
&lt;br /&gt;
The PC storage Pokémon are stored in the save file from Box 1 to Box 18. They start at 0x0C104 in the first block pair, and at 0x4C104 in the second block pair. Each PC stored Pokémon is 136 bytes in size.&lt;br /&gt;
&lt;br /&gt;
{{data structure}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|data structure}}&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Tall_grass&amp;diff=3449997</id>
		<title>Tall grass</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Tall_grass&amp;diff=3449997"/>
		<updated>2021-12-30T07:10:02Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Long grass */ Added trivia about Long Grass encounter probability in Generation 4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{incomplete|needs=Generation section}}&lt;br /&gt;
[[File:Gold explores Route 29.png|thumb|200px|{{ga|Ethan}} and {{p|Cyndaquil}} explore the tall grass on {{rt|29|Johto}}]]&lt;br /&gt;
&#039;&#039;&#039;Tall grass&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{tt|草|くさ}}むら&#039;&#039;&#039; &#039;&#039;tall grass&#039;&#039;) is a mechanic in the [[core series]] [[Pokémon games]], and the habitat for many species of [[wild Pokémon]]. By moving around in patches of tall grass, a wild Pokémon may appear and begin to battle the {{player}}.&lt;br /&gt;
&lt;br /&gt;
Tall grass is found on most [[route]]s of the [[Pokémon world]], with some routes containing more tall grass patches than others. If the player enters a patch of tall grass, they may randomly enter a wild Pokémon battle. People are warned to stay out of tall grass if they don&#039;t have a {{OBP|Pokémon|species}}, due to the possibility of being attacked by wild Pokémon.&lt;br /&gt;
&lt;br /&gt;
In [[Generation I]] and [[Generation II]], using {{m|Cut}} causes the tall grass tile directly in front of the player to be cut down. In [[Generation III]], this instead cuts down a 3 by 3 area around the player; in {{game|Emerald}} only, a Pokémon with {{a|Hyper Cutter}} will cut down a 5 by 5 area by using Cut. In [[Generation II]], {{DL|Tall grass|long grass}}, such as that in the [[National Park]], requires multiple uses to be cut down; in [[Generation III]], it is instantaneous. From [[Generation IV]] onward, Cut has no effect on tall grass.&lt;br /&gt;
&lt;br /&gt;
==Differences between games==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; background: #{{locationcolor/dark|land}}; border: 1px solid #{{locationcolor/dark|land}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{locationcolor/dark|land}}; border: #{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{kanto color light}}; border: 1px solid #{{kanto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev1|RBY}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:RBY Grass.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{kanto color light}}; border: 1px solid #{{kanto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev2|GSC}}{{tt|*|Kanto}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:GSC Grass Kanto.png|32px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{johto color light}}; border: 1px solid #{{johto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev2|GSC}}{{tt|*|Johto}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |[[File:GSC Grass Johto.png|32px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{hoenn color light}}; border: 1px solid #{{hoenn color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev3|RSE}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:RSE Grass.png|32px]] [[File:RSE Grass ash.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{kanto color light}}; border: 1px solid #{{kanto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev3|FRLG}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |[[File:FRLG Grass.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{sinnoh color light}}; border: 1px solid #{{sinnoh color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev4|DP}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |[[File:DP Grass.png|40px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{sinnoh color light}}; border: 1px solid #{{sinnoh color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev4|Pt}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:Pt Grass.png|32px]] [[File:Pt Grass Shiny.png|40px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{johto color light}}; border: 1px solid #{{johto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev4|HGSS}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:HGSS Grass.png|38px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{unova color light}}; border: 1px solid #{{unova color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev5|BWB2W2}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:BW Grass Sp.png|32px]] [[File:BW Grass Su.png|32px]] [[File:BW Grass Au.png|32px]] [[File:BW Grass Wi.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{Kalos color light}}; border: 1px solid #{{Kalos color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev6|XYORAS}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:XYORAS Grass.png|48px]] [[File:ORAS Grass ash.png|48px|]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{Alola color light}}; border: 1px solid #{{Alola color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev7|SMUSUM}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:SMUSUM Grass.png|32px]] [[File:SMUSUM Grass jungle.png|32px]] [[File:SMUSUM Grass Akala.png|32px]] [[File:SMUSUM Grass Poni.png|32px]] [[File:SMUSUM Grass brown.png|32px]] [[File:SMUSUM Grass Route 1.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{Kanto color light}}; border: 1px solid #{{Kanto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev7|PE}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:PE Grass.png|40px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Technical mechanics==&lt;br /&gt;
===Poké Radar===&lt;br /&gt;
{{incomplete|section|needs=Generation VI}}&lt;br /&gt;
{{main|Poké Radar}}&lt;br /&gt;
The Poké Radar is a device introduced in [[Generation IV]] that is used to seek out [[wild Pokémon]] hiding in long grass. If the Pokémon that is found is [[fainting|knocked out]] or {{pkmn2|caught|captured}} in a [[Poké Ball]], a &#039;&#039;chain&#039;&#039; will begin. These chains consist of multiple members of the same [[Pokémon]] species encountered one after another. The only catch is this: a player must not encounter any Pokémon just by walking through non-wiggling grass, only by walking into the grass that shakes.  Therefore, it is recommended that [[Repel]] is used in order to ensure this and achieve a higher chain.  Entering the same type of grassy patch the chain was started in that is the farthest away increases the chances of meeting the same kind of Pokémon consecutively.  Long chains increase the chance of finding a {{Shiny}} Pokémon, which is indicated by the patch of grass glowing white twice rather than shaking.  In [[Generation IV]], long grass does not shake when the Poké Radar is used.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Alternative areas==&lt;br /&gt;
{{incomplete|section|Long rustling grass; tall flowers}}&lt;br /&gt;
{{bad picture|section|Check dark long grass images in B2W2}}&lt;br /&gt;
===Long grass===&lt;br /&gt;
[[File:Long grass.png|thumb|200px|Long grass on Route 119]]&lt;br /&gt;
&#039;&#039;&#039;Long grass&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{tt|長|なが}}い{{tt|草|くさ}}むら&#039;&#039;&#039; &#039;&#039;long grass&#039;&#039;) is a type of tall grass that is taller than usual. These patches of grass have grown longer than the usual grass patches, containing different species of Pokémon. Prior to [[Generation VI]], it was impossible to ride a [[bicycle]] through this type of grass (and impossible to run through it in [[Generation III]]). Some Trainers hide in the long grass patches, concealing themselves from view and surprising the player to a battle. Long grass was introduced in [[Generation II]]. In [[Generation IV]], Long Grass raises the relative encounter probability per step by the same amount a Bike would in regular Tall Grass.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It appears in the following locations.&lt;br /&gt;
*[[Johto]]: [[National Park]]&lt;br /&gt;
*[[Hoenn]]: {{rt|119|Hoenn}}, {{rt|120|Hoenn}}, {{rt|121|Hoenn}}{{sup/6|ORAS}}, and the [[Hoenn Safari Zone]]{{sup/6|ORAS}}&lt;br /&gt;
**It also appears on [[Faraway Island]].&lt;br /&gt;
*[[Sinnoh]]: {{rt|210|Sinnoh}} and {{rt|214|Sinnoh}}&lt;br /&gt;
*[[Unova]]: {{rt|7|Unova}}&lt;br /&gt;
*[[Kalos]]: {{rt|6|Kalos}} and {{rt|16|Kalos}}&lt;br /&gt;
*[[Alola]]: [[Lush Jungle]] and [[Ula&#039;ula Meadow]]&lt;br /&gt;
&lt;br /&gt;
In Generation V, long grass can be normal or dark, functioning just like tall grass: [[Phenomenon#Rustling grass|phenomena]] can occur in normal long grass, while [[Double Battle]]s can occur in dark long grass.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; background: #{{locationcolor/dark|land}}; border: 1px solid #{{locationcolor/dark|land}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{locationcolor/dark|land}}; border: #{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{johto color light}}; border: 1px solid #{{johto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev2|GSC}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |[[File:GSC Long Grass.png|32px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{hoenn color light}}; border: 1px solid #{{hoenn color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev3|RSE}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:RSE Long Grass.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{sinnoh color light}}; border: 1px solid #{{sinnoh color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev4|DPPt}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |[[File:DPPt Long Grass.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{johto color light}}; border: 1px solid #{{johto color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev4|HGSS}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |[[File:HGSS Long Grass.png|32px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{unova color light}}; border: 1px solid #{{unova color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev5|BW}}{{tt|*|Normal long grass}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:BW Long Grass Sp.png|32px]] [[File:BW Long Grass Su.png|32px]] [[File:BW Long Grass Au.png|32px]] [[File:BW Long Grass Wi.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{unova color light}}; border: 1px solid #{{unova color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev5|BW}}{{tt|*|Dark long grass}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:BW Dark Long Grass Sp.png|32px]] [[File:BW Dark Long Grass Su.png|32px]] [[File:BW Dark Long Grass Au.png|32px]] [[File:BW Dark Long Grass Wi.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{alola color light}}; border: 1px solid #{{kalos color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev6|XYORAS}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:XYORAS Long Grass.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{alola color light}}; border: 1px solid #{{alola color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev7|SMUSUM}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:SMUSUM Long Grass.png|32px]] [[File:SMUSUM Long Grass jungle.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seaweed===&lt;br /&gt;
[[File:Dive III OW.png|thumb|200px|Patch of seaweed]]&lt;br /&gt;
&#039;&#039;&#039;Seaweed&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{tt|海草|かいそう}}&#039;&#039;&#039; &#039;&#039;sea grass&#039;&#039;) is located [[underwater]] in [[Hoenn]] as an underwater equivalent to tall grass on land. In {{game2|Ruby|Sapphire|Emerald}}, seaweed can be found underwater on [[Route]]s {{rtn|124|Hoenn}} and {{rtn|126|Hoenn}}. In {{g|Omega Ruby and Alpha Sapphire}}, it appears underwater on [[Route]]s {{rtn|107|Hoenn}}, {{rtn|124|Hoenn}}, {{rtn|126|Hoenn}}, {{rtn|128|Hoenn}}, {{rtn|129|Hoenn}}, and {{rtn|130|Hoenn}}. The chance of encountering Pokémon in seaweed is lower than that of tall grass.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; background: #{{locationcolor/dark|underwater}}; border: 1px solid #{{locationcolor/dark|underwater}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{locationcolor/dark|underwater}}; border: #{{locationcolor/med|underwater}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{hoenn color light}}; border: 1px solid #{{hoenn color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev3|RSE}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:RSE Seaweed.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{kalos color light}}; border: 1px solid #{{kalos color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; |{{gameabbrev6|ORAS}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:ORAS Seaweed.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Dark grass===&lt;br /&gt;
&#039;&#039;&#039;Dark tall grass&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{tt|濃|こ}}い{{tt|色|いろ}}の{{tt|草|くさ}}むら&#039;&#039;&#039; &#039;&#039;dark tall grass&#039;&#039;) is exclusive to [[Generation V]]. In dark grass, not only are Pokémon found usually at much higher levels than those in regular grass, but there is a chance of encountering two wild Pokémon at a time, in a [[Double Battle]]. Pokémon encountered in dark grass are often similar to those found in normal grass areas of the route, but not identical (in particular, Pokémon encountered in dark grass may be slightly [[catch rate|more difficult to catch]]). Often, Pokémon which are rare in normal grass are more common in dark grass. Pokémon encountered in dark grass may also have a 1% chance of [[List of Pokémon by wild held item|holding a special item]].&lt;br /&gt;
&lt;br /&gt;
Patches of dark grass are typically separated from patches of normal grass. Dark grass does not rustle. There is also long dark grass, which behaves like both types of grass simultaneously.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; background: #{{locationcolor/dark|land}}; border: 1px solid #{{locationcolor/dark|land}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{locationcolor/dark|land}}; border: #{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{unova color light}}; border: 1px solid #{{unova color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev5|BW}}{{tt|*|Normal dark grass}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:BW Dark Grass Sp.png|32px]] [[File:BW Dark Grass Su.png|32px]] [[File:BW Dark Grass Au.png|32px]] [[File:BW Dark Grass Wi.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{unova color light}}; border: 1px solid #{{unova color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev5|BW}}{{tt|*|Long dark grass}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:BW Dark Long Grass Sp.png|32px]] [[File:BW Dark Long Grass Su.png|32px]] [[File:BW Dark Long Grass Au.png|32px]] [[File:BW Dark Long Grass Wi.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Rustling grass===&lt;br /&gt;
{{main|Phenomenon#Rustling grass|Phenomenon}}&lt;br /&gt;
&#039;&#039;&#039;Rustling grass&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{tt|揺|ゆ}}れる{{tt|草|くさ}}むら&#039;&#039;&#039; &#039;&#039;rustling tall grass&#039;&#039;) is found in [[Generation V]], in virtually any area with patches of tall grass. Occasionally, a patch of grass can be seen shaking. Entering such a patch triggers a battle with a wild Pokémon. The Pokémon found in rustling grass differ from route to route, but all areas (except Route 19) contain {{p|Audino}}. In most areas, it is possible to encounter in rustling grass the evolved forms of Pokémon found in regular grass. Regular tall grass has a chance to start rustling for every step the player takes. Rustling grass will stop shaking if the player enters a battle, or if they leave the area (even if that specific grass patch remains on the screen). Dark grass does not rustle.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; background: #{{locationcolor/dark|land}}; border: 1px solid #{{locationcolor/dark|land}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{locationcolor/dark|land}}; border: #{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{unova color light}}; border: 1px solid #{{unova color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev5|BW}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:BW Rustling Grass Sp.png|32px]] [[File:BW Rustling Grass Su.png|32px]] [[File:BW Rustling Grass Au.png|32px]] [[File:BW Rustling Grass Wi.png|32px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Flowers===&lt;br /&gt;
&#039;&#039;&#039;Flowers&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{tt|花畑|はなばた}}&#039;&#039;&#039; &#039;&#039;flower bed&#039;&#039;) are a kind of overworld tile introduced in [[Generation VI]] that function like tall grass. The Pokémon that can be found in one color of flowers may be different than those found in another color or in tall grass; especially with {{p|Flabébé}} (whose flower generally matches which patch it is found in). In [[Kalos]], flowers can be yellow, red, or purple; in [[Alola]], they can only be yellow or red.&lt;br /&gt;
&lt;br /&gt;
Flowers that yield wild Pokémon appear in the following locations.&lt;br /&gt;
*[[Kalos]]: Routes {{rtn|4|Kalos}}, {{rtn|7|Kalos}}, {{rtn|8|Kalos}}, {{rtn|10|Kalos}}, {{rtn|12|Kalos}}, {{rtn|15|Kalos}}, {{rtn|16|Kalos}}, {{rtn|18|Kalos}}, {{rtn|19|Kalos}}, {{rtn|20|Kalos}}, {{rtn|21|Kalos}}, and {{rtn|22|Kalos}}, along with the [[Pokémon Village]]&lt;br /&gt;
*[[Alola]]: [[Melemele Meadow]] and [[Ula&#039;ula Meadow]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; background: #{{locationcolor/dark|land}}; border: 1px solid #{{locationcolor/dark|land}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{locationcolor/dark|land}}; border: #{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{kalos color light}}; border: 1px solid #{{kalos color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev6|XY}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:XY Yellow Flowers.png|64px]] [[File:XY Red Flowers.png|64px]] [[File:XY Purple Flowers.png|64px]]&lt;br /&gt;
|}&lt;br /&gt;
| style=&amp;quot;vertical-align:bottom&amp;quot; |&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{alola color light}}; border: 1px solid #{{alola color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | {{gameabbrev7|SMUSUM}}&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #eee&amp;quot; | [[File:SMUSUM Yellow Flowers.png|64px]] [[File:SMUSUM Red Flowers.png|64px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In battle==&lt;br /&gt;
Certain moves have special effects when used in a battle on a grass tile.&lt;br /&gt;
&lt;br /&gt;
*{{m|Secret Power}}&lt;br /&gt;
**In Generation III&lt;br /&gt;
***In tall grass: has a 30% chance of {{status|poison}}ing its target and the appearance of {{m|Needle Arm}}&lt;br /&gt;
***In long grass: has a 30% chance of putting its target to {{status|sleep}} and the appearance of {{m|Magical Leaf}}&lt;br /&gt;
***In seaweed: has a 30% chance of lowering its target&#039;s {{stat|Defense}} and the appearance of {{m|Waterfall}}&lt;br /&gt;
**In Generations IV and V: has a 30% chance of putting its target to {{status|sleep}} and the appearance of {{m|Needle Arm}}&lt;br /&gt;
**In Generations VI and VII: has a 30% chance of putting its target to sleep and the appearance of {{m|Vine Whip}}&lt;br /&gt;
*{{m|Nature Power}}&lt;br /&gt;
**In Generation III&lt;br /&gt;
***In tall or long grass: turns into {{m|Stun Spore}}&lt;br /&gt;
***In seaweed: turns into {{m|Hydro Pump}}&lt;br /&gt;
**In Generations IV and V: turns into {{m|Seed Bomb}}&lt;br /&gt;
**In Generations VI and VII: turns into {{m|Energy Ball}}&lt;br /&gt;
*{{m|Camouflage}}&lt;br /&gt;
**In grass: makes the user {{type|Grass}}&lt;br /&gt;
**In seaweed: makes the user {{type|Water}}&lt;br /&gt;
&lt;br /&gt;
==Cutting grass==&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=grass&lt;br /&gt;
|genI=Cut I OW grass&lt;br /&gt;
|genII=Cut II OW grass&lt;br /&gt;
|genIII=Cut RSE OW grass&lt;br /&gt;
|FRLG=Cut FRLG OW grass&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* The myth &amp;quot;{{DL|Sinnoh myths|Sinnoh Region&#039;s Mythology}}&amp;quot; detailed in the [[Canalave Library]] explains why Pokémon appear in tall grass. According to the myth, Pokémon appear in tall grass in order to help humans, due to a deal made long ago.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Tall grass&#039;&#039;&lt;br /&gt;
{{langtable|color={{locationcolor/light|land}}|bordercolor={{locationcolor/dark|land}}&lt;br /&gt;
|zh_yue=草叢 &#039;&#039;{{tt|Chóuchùhng|Tall grass}}&#039;&#039;&lt;br /&gt;
|zh_cmn=草叢 / 草丛 &#039;&#039;{{tt|Cǎocóng|Tall grass}}&#039;&#039;&lt;br /&gt;
|fr_ca=Herbe haute{{tt|*|Diamond manual}}&lt;br /&gt;
|fr_eu=Hautes herbes&lt;br /&gt;
|de=Hohes Gras&lt;br /&gt;
|it=Erba alta&lt;br /&gt;
|ko=풀숲 &#039;&#039;Pulsup&#039;&#039;&lt;br /&gt;
|pt_br=Grama alta{{tt|*|games, anime, TCG, manga}}&amp;lt;br&amp;gt;Mato cerrado{{tt|*|The Official Pokémon Handbook}}&lt;br /&gt;
|es=Hierba alta&lt;br /&gt;
|vi = Bụi cây&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Long grass&#039;&#039;&lt;br /&gt;
{{langtable|color={{locationcolor/light|land}}|bordercolor={{locationcolor/dark|land}}&lt;br /&gt;
|fr=Longues herbes&lt;br /&gt;
|de=Sehr hohes Gras&lt;br /&gt;
|it=Erba molto alta&lt;br /&gt;
|ko=긴 풀숲 &#039;&#039;Gin Pulsup&#039;&#039;&lt;br /&gt;
|es=Hierba muy alta&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Seaweed&#039;&#039;&lt;br /&gt;
{{langtable|color={{locationcolor/light|underwater}}|bordercolor={{locationcolor/dark|underwater}}&lt;br /&gt;
|fr=Algues&lt;br /&gt;
|de=Seegras&lt;br /&gt;
|it=Alghe&lt;br /&gt;
|ko=해초 &#039;&#039;Haecho&#039;&#039;&lt;br /&gt;
|es=Algas&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Dark tall grass&#039;&#039;&lt;br /&gt;
{{langtable|color={{locationcolor/light|land}}|bordercolor={{locationcolor/dark|land}}&lt;br /&gt;
|fr=Herbes sombres&lt;br /&gt;
|de=Dunkles hohes Gras&lt;br /&gt;
|it=Erba di colore scuro&lt;br /&gt;
|ko=색이 진한 풀숲 &#039;&#039;Saegi Jinhan Pulsup&#039;&#039;&lt;br /&gt;
|es=Hierba alta oscura&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Rustling grass&#039;&#039;&lt;br /&gt;
{{langtable|color={{locationcolor/light|land}}|bordercolor={{locationcolor/dark|land}}&lt;br /&gt;
|fr=Hautes herbes remuantes&lt;br /&gt;
|de=Raschelndes hohes Gras&lt;br /&gt;
|it=Erba alta che ondeggia&lt;br /&gt;
|ko=흔들리는 풀숲 &#039;&#039;Heundeullineun Pulsup&#039;&#039;&lt;br /&gt;
|es=Hierba alta que se mueve&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Flowers&#039;&#039;&lt;br /&gt;
{{langtable|color={{locationcolor/light|land}}|bordercolor={{locationcolor/dark|land}}&lt;br /&gt;
|fr=Fleurs&lt;br /&gt;
|de=Blumen&lt;br /&gt;
|it=Fiori&lt;br /&gt;
|ko=꽃밭 &#039;&#039;Kkotbat&#039;&#039;&lt;br /&gt;
|es=Flores&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Special tiles}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Special tiles]]&lt;br /&gt;
&lt;br /&gt;
[[de:Hohes Gras]]&lt;br /&gt;
[[es:Hierba alta]]&lt;br /&gt;
[[fr:Hautes herbes]]&lt;br /&gt;
[[it:Mattonelle#Erba alta]]&lt;br /&gt;
[[ja:草むら]]&lt;br /&gt;
[[zh:草丛]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Present_(move)&amp;diff=3411013</id>
		<title>Present (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Present_(move)&amp;diff=3411013"/>
		<updated>2021-10-15T17:58:08Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Effect */ Added Generation 4 exact probabilities&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=217&lt;br /&gt;
|name=Present&lt;br /&gt;
|jname=プレゼント&lt;br /&gt;
|jtrans=Present&lt;br /&gt;
|jtranslit=Purezento&lt;br /&gt;
|gameimage=Present VIII.png&lt;br /&gt;
|gameimage2=Present VIII 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Physical&lt;br /&gt;
|basepp=15&lt;br /&gt;
|maxpp=24&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=90&lt;br /&gt;
|gen=II&lt;br /&gt;
|category=Cute&lt;br /&gt;
|appeal=3&lt;br /&gt;
|jam=0&lt;br /&gt;
|cdesc=Can be repeatedly used without boring the judge.&lt;br /&gt;
|appealsc=0&lt;br /&gt;
|scdesc=Raises the score if the Voltage is low.&lt;br /&gt;
|appeal6=3&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=An appealing move that can be used repeatedly without boring the audience.&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=yes&lt;br /&gt;
|kingsrock=yes&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Present&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;プレゼント&#039;&#039;&#039; &#039;&#039;Present&#039;&#039;) is a damage-dealing {{type|Normal}} [[move]] introduced in [[Generation II]]. It is the [[signature move]] of {{p|Delibird}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===Generation II===&lt;br /&gt;
Present can either deal damage against the target or heal it for &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;/&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt; of its maximum HP. If Present deals damage, then the base power of Present is chosen at random from 40, 80, or 120.&lt;br /&gt;
&lt;br /&gt;
In the core series, Present will have a 20% chance of healing Pokémon with full HP, though the message afterwards slightly differs depending on the game.  In {{game|Gold and Silver|s}}, if it would heal the target but it has full HP, a message is displayed that says &#039;&#039;&amp;quot;&amp;lt;Enemy/Wild&amp;gt; &amp;lt;Pokémon&amp;gt; can&#039;t receive the gift!&amp;quot;&#039;&#039; In [[Pokémon Stadium 2]], the move is still performed but the message &#039;&#039;&amp;quot;It couldn&#039;t receive the gift!&amp;quot;&#039;&#039; is displayed.   In English {{game|Crystal}}, no message will be displayed.&lt;br /&gt;
&lt;br /&gt;
Present&#039;s effect is chosen randomly as shown below.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; background: #{{normal color light}}; {{roundy|1em}}; border: 5px solid #{{normal color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; style=&amp;quot;margin:auto; background: #FFF; border:1px solid #{{normal color light}}; border-collapse:collapse&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background: #{{normal color light}}&amp;quot;&lt;br /&gt;
!Effect&lt;br /&gt;
!Probability&lt;br /&gt;
|-&lt;br /&gt;
| Damage with 40 base power&lt;br /&gt;
| 40%&lt;br /&gt;
|-&lt;br /&gt;
| Damage with 80 base power&lt;br /&gt;
| 30%&lt;br /&gt;
|-&lt;br /&gt;
| Damage with 120 base power&lt;br /&gt;
| 10%&lt;br /&gt;
|-&lt;br /&gt;
| Heal &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;/&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt; of the target&#039;s max HP&lt;br /&gt;
| 20%&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Gold and Silver====&lt;br /&gt;
In Gold and Silver (and any link battle with either of them), a [[glitch]] causes the [[level]], {{stat|Attack}}, and {{stat|Defense}} variables of the [[damage calculation|damage formula]] to be replaced. The Attack will be replaced with 5 if the target is {{t|Rock}}- or {{type|Steel}}, or 10 otherwise. The level will be based on the index number of the defending Pokémon&#039;s type, and the Defense will be based on the index number of the attacking Pokémon&#039;s type (if a Pokémon has two types, its secondary type will be used).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; background: #{{normal color light}}; {{roundy|1em}}; border: 5px solid #{{normal color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; style=&amp;quot;margin:auto; background: #FFF; border:1px solid #{{normal color light}}; border-collapse:collapse&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background: #{{normal color light}}&amp;quot;&lt;br /&gt;
!Index Number&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|{{tt|0|If this is used for Defense, the damage formula changes it to 1}}&lt;br /&gt;
|{{t|Normal}}&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|{{t|Fighting}}&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|{{t|Flying}}&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|{{t|Poison}}&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|{{t|Ground}}&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|{{t|Rock}}&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|{{t|Bug}}&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|{{t|Ghost}}&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|{{t|Steel}}&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|{{t|Fire}}&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|{{t|Water}}&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|{{t|Grass}}&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|{{t|Electric}}&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|{{t|Psychic}}&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|{{t|Ice}}&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|{{t|Dragon}}&lt;br /&gt;
|-&lt;br /&gt;
|27&lt;br /&gt;
|{{t|Dark}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
In Crystal (except in link battles) and Pokémon Stadium 2, the glitch is fixed and Present&#039;s damage calculates normally.&lt;br /&gt;
&lt;br /&gt;
===Generations III onwards===&lt;br /&gt;
Present will now have no effect if it would heal a Pokémon with full HP.&lt;br /&gt;
&lt;br /&gt;
Present consumes a [[Normal Gem]] even if it heals the target (it does not increase HP restored).&lt;br /&gt;
&lt;br /&gt;
If a Pokémon with {{a|Parental Bond}} uses Present and heals the target, it will only hit once. However, if it damages the target, it will hit twice.&lt;br /&gt;
&lt;br /&gt;
Present can also be used as part of a [[Contest combination|Contest Spectacular combination]], with the user gaining an extra three appeal points if a certain move ({{m|Celebrate}}, {{m|Covet}}, {{m|Happy Hour}} or {{m|Wish}}) was used in the prior turn.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; background: #{{normal color light}}; {{roundy|1em}}; border: 5px solid #{{normal color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; style=&amp;quot;margin:auto; background: #FFF; border:1px solid #{{normal color light}}; border-collapse:collapse&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background: #{{normal color light}}&amp;quot;&lt;br /&gt;
!Effect&lt;br /&gt;
!Probability&lt;br /&gt;
|-&lt;br /&gt;
| Damage with 40 base power&lt;br /&gt;
| ~39.84% (102/256)&lt;br /&gt;
|-&lt;br /&gt;
| Damage with 80 base power&lt;br /&gt;
| ~29.69% (76/256)&lt;br /&gt;
|-&lt;br /&gt;
| Damage with 120 base power&lt;br /&gt;
| ~10.16% (26/256)&lt;br /&gt;
|-&lt;br /&gt;
| Heal &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;/&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt; of the target&#039;s max HP&lt;br /&gt;
| ~20.31% (52/256)&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Stad2}}|A move that inflicts major damage but may restore the target&#039;s HP.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev2|GSC}}|A bomb that may restore HP.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|A gift in the form of a bomb. May restore HP.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|The foe is given a booby-trapped gift. It restores HP sometimes, however.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user attacks by giving the foe a booby-trapped gift. It restores HP sometimes, however.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUM}}&amp;lt;br&amp;gt;{{gameabbrev8|SwSh}}|The user attacks by giving the target a gift with a hidden trap. It restores HP sometimes, however.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==Learnset==&lt;br /&gt;
===By [[Level|leveling up]]===&lt;br /&gt;
{{Movehead/Level|Normal|2}}&lt;br /&gt;
{{Moveentry/7|225|Delibird|type=Ice|type2=Flying|2|Water 1|Field|1|1|1|1|1|1|1}}&lt;br /&gt;
{{Movefoot|Normal|7}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Breed|Normal|2}}&lt;br /&gt;
{{Moveentry/7|113|Chansey|type=Normal|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|172|Pichu|type=Electric|2|Field|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|173|Cleffa|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔|✔|note=Chain breed; STAB prior to Gen VI}}&lt;br /&gt;
{{Moveentry/7|174|Igglybuff|type=Normal|type2=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|175|Togepi|type=Fairy|2|Flying|Fairy|✔|✔|✔|✔|✔|✔|✔|note=Chain breed; STAB prior to Gen VI}}&lt;br /&gt;
{{Moveentry/7|183|Marill|type=Water|type2=Fairy|2|Water 1|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|209|Snubbull|type=Fairy|2|Field|Fairy|✔|✔|✔|✔|✔|✔||note=STAB prior to Gen VI}}&lt;br /&gt;
{{Moveentry/7|241|Miltank|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|298|Azurill|type=Normal|type2=Fairy|2|Water 1|Fairy|||||||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|440|Happiny|type=Normal|1|Fairy|Fairy|||✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|777|Togedemaru|type=Electric|type2=Steel|2|Field|Fairy||||||✔|✔}}&lt;br /&gt;
{{Movefoot|Normal|7}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn2|event}}===&lt;br /&gt;
====[[Generation IV]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|025|Pikachu|type=Electric|2|Field|Fairy|{{DL|List of local Japanese event Pokémon distributions in Generation IV|McDonald&#039;s Pikachu}}&amp;lt;br&amp;gt;{{DL|List of local English event Pokémon distributions in Generation IV|Nintendo Zone Pikachu}}&amp;lt;br&amp;gt;[[List of local Japanese event Pokémon distributions in Generation IV#Kyoto Cross Media Experience 2009 Pikachu|Kyoto Cross Media Experience 2009]]&amp;lt;br&amp;gt;[[List of local Japanese event Pokémon distributions in Generation IV#Ario Pikachu|Ario Pikachu]]&amp;lt;br&amp;gt;[[List of local Japanese event Pokémon distributions in Generation IV#7-Eleven Pikachu|7-Eleven Pikachu]]}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
====[[Generation V]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|468|Togekiss|type=Normal|type2=Flying|2|Flying|Fairy|[[List of Pokémon Global Link promotions/Pokémon#Togekiss|Global Link Birthday Togekiss]]|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/1|531|Audino|type=Normal|1|Fairy|Fairy|{{DL|List of local Japanese event Pokémon distributions in Generation V|2011 Birthday Audino}}&amp;lt;br&amp;gt;{{DL|List of local Japanese event Pokémon distributions in Generation V|2012 Birthday Audino}}|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====[[Generation VIII]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|113|Chansey|type=Normal|1|Fairy|Fairy|{{DL|List of serial code event Pokémon distributions in Generation VIII|Mister Donut&#039;s Chansey}}|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|Red Rescue Team and Blue Rescue Team]], Present is a move with 19PP and 100% accuracy. The user attacks enemy in the front, cutting corners. The move will deal flat 40, 80 or 120 damage; but it might possibly heal the target instead by 25% of their max HP.&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers of Time,  Darkness]] and [[Pokémon Mystery Dungeon: Explorers of Sky|Sky]], the move&#039;s damage is now 25, 50 or 75.&lt;br /&gt;
&lt;br /&gt;
===[[Pokémon GO]]===&lt;br /&gt;
{{GoFastAttack&lt;br /&gt;
|move=Present&lt;br /&gt;
|type=Normal&lt;br /&gt;
|pow=5&lt;br /&gt;
|energy=20&lt;br /&gt;
|duration=1.3&lt;br /&gt;
|damage_window=1.1 - 1.3&lt;br /&gt;
|pow_trainer=3&lt;br /&gt;
|energy_trainer=12&lt;br /&gt;
|turns=3&lt;br /&gt;
|users={{MSP/GO|225|Delibird}}&lt;br /&gt;
|elite_users={{MSP/GO|025|Pikachu}}&lt;br /&gt;
|snapshot_users={{MSP/GO|235|Smeargle}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Either inflicts damage on the target or restores its HP.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Could either inflict damage on the target or restore its HP.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンに ダメージをあたえるか ＨＰを かいふくするか どちらかの こうかを あたえる|Could either inflict damage on the target or restore its HP}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The damage you inflict on a target varies. But be careful, because it could restore an enemy&#039;s HP as well as your teammate&#039;s HP.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|You give an enemy a gift of a random amount of damage! But be careful, because sometimes the gift could mistakenly help restore the enemy&#039;s HP, too. If you use this move on a teammate, it will always help restore their HP.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
{{moveanime|type=normal|exp=yes|gen=A luminous ball is thrown at the opponent. It then explodes and either damages or heals.|image1=Team Rocket Delibird Present.png|image1p=Delibird}}&lt;br /&gt;
{{movep|type=normal|ms=225|pkmn=Delibird|method=Delibird pulls out a shimmering rainbow colored orb from the bag it carries and throws or hands it to the opponent. The orb then explodes and either damages or heals the opponent. If the effect is healing, the opponent briefly glows white.}}&lt;br /&gt;
{{movebtm|type=normal|user=Delibird (Team Rocket)|user1=Team Rocket&#039;s Delibird|startcode=EP231|startname=Dues and Don&#039;ts|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=normal|exp=yes|gen=The user gives the opponent an exploding present.|image1=Masked Man Delibird Present.png|image1p=Delibird}}&lt;br /&gt;
{{movep|type=normal|ms=225|pkmn=Delibird|method=Delibird holds out its wings and a gift box appears in between them. It then hands the opponent the gift box and it explodes.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Masked Man|user1=The Masked Man&#039;s Delibird|startcode=PS104|startname=The Ariados up There|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
{{incomplete|section|2=Missing healing image from Gen VI on}}&lt;br /&gt;
===Core series games===&lt;br /&gt;
====Damaging====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genII=Present II&lt;br /&gt;
|genIII=Present III&lt;br /&gt;
|genIV=Present IV&lt;br /&gt;
|genV=Present V&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genVI=Present VI&lt;br /&gt;
|genVII=Present VII&lt;br /&gt;
}}&lt;br /&gt;
====Healing====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genII=Present II heal&lt;br /&gt;
|genIII=Present III heal&lt;br /&gt;
|genIV=Present IV heal&lt;br /&gt;
|genV=Present V heal&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
====Damaging====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Stad2=Present Stad2&lt;br /&gt;
|Colo=Present Colo&lt;br /&gt;
|XD=Present XD&lt;br /&gt;
|PBR=Present PBR&lt;br /&gt;
}}&lt;br /&gt;
====Healing====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Stad2=Present Stad2 heal&lt;br /&gt;
|Colo=Present Colo heal&lt;br /&gt;
|XD=Present XD heal&lt;br /&gt;
|PBR=Present PBR heal&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
====Damaging====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PMDRB=Present PMD RB&lt;br /&gt;
|PSMD=Present PSMD&lt;br /&gt;
}}&lt;br /&gt;
====Healing====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PMDRB=Present PMD RB heal&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color dark}}&lt;br /&gt;
|zh_yue=禮物 &#039;&#039;{{tt|Láihmaht|Present}}&#039;&#039;&lt;br /&gt;
|zh_cmn=禮物 / 礼物 &#039;&#039;{{tt|Lǐwù|Present}}&#039;&#039;&lt;br /&gt;
|nl=Cadeautje&lt;br /&gt;
|fr=Cadeau&lt;br /&gt;
|de=Geschenk&lt;br /&gt;
|el=Δώρο&lt;br /&gt;
|it=Regalino&lt;br /&gt;
|ko=프레젠트 &#039;&#039;Present&#039;&#039;&lt;br /&gt;
|pl=Prezent&lt;br /&gt;
|pt_br=Presentear&amp;lt;br&amp;gt;Presente (TCG)&lt;br /&gt;
|sr=Poklon&lt;br /&gt;
|es_eu=Presente&lt;br /&gt;
|es_la=Obsequio&lt;br /&gt;
|th=ของขวัญ&lt;br /&gt;
|vi=Quà Tặng}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Signature moves]]&lt;br /&gt;
[[Category:Moves that have variable power]]&lt;br /&gt;
[[Category:Moves that restore HP]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves in Pokémon Mystery Dungeon: Rescue Team DX]]&lt;br /&gt;
&lt;br /&gt;
[[de:Geschenk]]&lt;br /&gt;
[[es:Presente]]&lt;br /&gt;
[[fr:Cadeau]]&lt;br /&gt;
[[it:Regalino]]&lt;br /&gt;
[[ja:プレゼント]]&lt;br /&gt;
[[zh:礼物（招式）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410433</id>
		<title>Shed Skin (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410433"/>
		<updated>2021-10-13T18:58:42Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Shed Skin&lt;br /&gt;
|jpname=だっぴ&lt;br /&gt;
|jptranslit=Dappi&lt;br /&gt;
|jptrans=Molting&lt;br /&gt;
|colorscheme=Bug&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Heals the body by shedding.&lt;br /&gt;
|text4=The Pokémon may heal its own status problems.&lt;br /&gt;
|text5=The Pokémon may heal its own status problems.&lt;br /&gt;
|text6=The Pokémon may heal its own status conditions.&lt;br /&gt;
|text7=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
|text8=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Shed Skin&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;だっぴ&#039;&#039;&#039; &#039;&#039;Molting&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
At the end of each turn, Shed Skin has a 1/3 chance of curing the Pokémon of a [[Status condition#non-volatile status|non-volatile]] [[status condition]]. If it cures a status condition, it does so before {{status|burn}} or {{status|poison}} damage is dealt on that turn.&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl and Platinum, Shed Skin had a 30% chance of curing the Pokémon.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Shed Skin has no effect outside of battle. &lt;br /&gt;
&lt;br /&gt;
==Pokémon with Shed Skin==&lt;br /&gt;
{{Ability/head|Bug}}&lt;br /&gt;
{{ability/entry|011|Metapod|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|014|Kakuna|Bug|Poison|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|023|Ekans|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|024|Arbok|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|147|Dratini|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|148|Dragonair|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|247|Pupitar|Rock|Ground|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|266|Silcoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|268|Cascoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|336|Seviper|Poison|Poison|Shed Skin|None|Infiltrator}}&lt;br /&gt;
{{ability/entry|401|Kricketot|Bug|Bug|Shed Skin|None|Run Away}}&lt;br /&gt;
{{ability/entry|412|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Plant Cloak}}&lt;br /&gt;
{{ability/entry|412G|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Sandy Cloak}}&lt;br /&gt;
{{ability/entry|412S|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Trash Cloak}}&lt;br /&gt;
{{ability/entry|559|Scraggy|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|560|Scrafty|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|588|Karrablast|Bug|Bug|Swarm|Shed Skin|No Guard}}&lt;br /&gt;
{{Ability/entry|665|Spewpa|Bug|Bug|Shed Skin|None|Friend Guard}}&lt;br /&gt;
{{Ability/entry|843|Silicobra|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/entry|844|Sandaconda|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/foot|Bug}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Bug}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Recovers easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Helps the Pokémon recover more easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|じぶんが こうどう したあとに わるいじょうたいが なおることがある|Helps the Pokémon recover more easily from status problems.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Conq}}|The Pokémon may heal its own status ailments.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Sometimes heals the Pokémon&#039;s negative status conditions.{{tt|*|Ability description}}&amp;lt;br&amp;gt;Sometimes it cures every single bad status condition the Pokémon has!{{tt|*|Used in message log}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|Sometimes it cures every single bad status condition the Pokémon has!}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|DX}}|This Ability sometimes cures every bad status condition the Pokémon has.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=Bug|exp=yes|gen=When hit with a status condition, the user separates from its skin, leaving behind a white outer shell in its place.|image1=Lucy Seviper Shed Skin Adventures.png|image1p=Seviper}}&lt;br /&gt;
{{movep|type=bug|ms=336|pkmn=Seviper|method=When Seviper is hit with a status condition, it separates from its outer skin, leaving behind a white outer shell in its place.}}&lt;br /&gt;
{{movebtmManga|type=Bug|user=Lucy&#039;s Seviper|startcode=PS304|startname=Swanky Showdown with Swalot|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
* {{adv|Yellow}}&#039;s {{p|Metapod}}, [[Kitty]], was revealed to have Shed Skin as his Ability.&lt;br /&gt;
* [[Bugsy]]&#039;s {{p|Kakuna}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Lance]]&#039;s {{p|Dragonair}} and {{p|Pupitar}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Paka and Uji|Paka]]&#039;s Burmy was revealed to have Shed Skin as its Ability.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Prior to becoming an Ability, Shed Skin [[Dratini (Neo Destiny 63)|appeared]] as a TCG {{TCG|Attack}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{langtable|color={{Bug color}}|bordercolor={{Bug color dark}}&lt;br /&gt;
|zh_yue=蛻皮 &#039;&#039;{{tt|Teuipèih|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tyutpèih|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=蛻皮 / 蜕皮 &#039;&#039;{{tt|Tuìpí|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tuōpí|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Mue&lt;br /&gt;
|de=Expidermis&lt;br /&gt;
|it=Muta&lt;br /&gt;
|ko=탈피 &#039;&#039;Talpi&#039;&#039;&lt;br /&gt;
|pt_br=Pele Vertente&lt;br /&gt;
|pt_eu=Troca de Pele&lt;br /&gt;
|es=Mudar&lt;br /&gt;
|vi=Lột da&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that can heal non-volatile status conditions]]&lt;br /&gt;
[[Category:Abilities that activate at the end of the turn]]&lt;br /&gt;
&lt;br /&gt;
[[de:Expidermis]]&lt;br /&gt;
[[es:Mudar]]&lt;br /&gt;
[[fr:Mue]]&lt;br /&gt;
[[it:Muta]]&lt;br /&gt;
[[ja:だっぴ]]&lt;br /&gt;
[[zh:蜕皮（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410429</id>
		<title>Shed Skin (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410429"/>
		<updated>2021-10-13T18:39:44Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Shed Skin&lt;br /&gt;
|jpname=だっぴ&lt;br /&gt;
|jptranslit=Dappi&lt;br /&gt;
|jptrans=Molting&lt;br /&gt;
|colorscheme=Bug&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Heals the body by shedding.&lt;br /&gt;
|text4=The Pokémon may heal its own status problems.&lt;br /&gt;
|text5=The Pokémon may heal its own status problems.&lt;br /&gt;
|text6=The Pokémon may heal its own status conditions.&lt;br /&gt;
|text7=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
|text8=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Shed Skin&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;だっぴ&#039;&#039;&#039; &#039;&#039;Molting&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
At the end of each turn, Shed Skin has a 1/3 chance of curing the Pokémon of a [[Status condition#non-volatile status|non-volatile]] [[status condition]]. If it cures a status condition, it does so before {{status|burn}} or {{status|poison}} damage is dealt on that turn.&lt;br /&gt;
&lt;br /&gt;
In Diamond and Pearl, Shed Skin had a 30% chance of curing the Pokémon.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Shed Skin has no effect outside of battle. &lt;br /&gt;
&lt;br /&gt;
==Pokémon with Shed Skin==&lt;br /&gt;
{{Ability/head|Bug}}&lt;br /&gt;
{{ability/entry|011|Metapod|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|014|Kakuna|Bug|Poison|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|023|Ekans|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|024|Arbok|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|147|Dratini|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|148|Dragonair|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|247|Pupitar|Rock|Ground|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|266|Silcoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|268|Cascoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|336|Seviper|Poison|Poison|Shed Skin|None|Infiltrator}}&lt;br /&gt;
{{ability/entry|401|Kricketot|Bug|Bug|Shed Skin|None|Run Away}}&lt;br /&gt;
{{ability/entry|412|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Plant Cloak}}&lt;br /&gt;
{{ability/entry|412G|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Sandy Cloak}}&lt;br /&gt;
{{ability/entry|412S|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Trash Cloak}}&lt;br /&gt;
{{ability/entry|559|Scraggy|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|560|Scrafty|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|588|Karrablast|Bug|Bug|Swarm|Shed Skin|No Guard}}&lt;br /&gt;
{{Ability/entry|665|Spewpa|Bug|Bug|Shed Skin|None|Friend Guard}}&lt;br /&gt;
{{Ability/entry|843|Silicobra|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/entry|844|Sandaconda|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/foot|Bug}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Bug}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Recovers easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Helps the Pokémon recover more easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|じぶんが こうどう したあとに わるいじょうたいが なおることがある|Helps the Pokémon recover more easily from status problems.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Conq}}|The Pokémon may heal its own status ailments.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Sometimes heals the Pokémon&#039;s negative status conditions.{{tt|*|Ability description}}&amp;lt;br&amp;gt;Sometimes it cures every single bad status condition the Pokémon has!{{tt|*|Used in message log}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|Sometimes it cures every single bad status condition the Pokémon has!}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|DX}}|This Ability sometimes cures every bad status condition the Pokémon has.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=Bug|exp=yes|gen=When hit with a status condition, the user separates from its skin, leaving behind a white outer shell in its place.|image1=Lucy Seviper Shed Skin Adventures.png|image1p=Seviper}}&lt;br /&gt;
{{movep|type=bug|ms=336|pkmn=Seviper|method=When Seviper is hit with a status condition, it separates from its outer skin, leaving behind a white outer shell in its place.}}&lt;br /&gt;
{{movebtmManga|type=Bug|user=Lucy&#039;s Seviper|startcode=PS304|startname=Swanky Showdown with Swalot|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
* {{adv|Yellow}}&#039;s {{p|Metapod}}, [[Kitty]], was revealed to have Shed Skin as his Ability.&lt;br /&gt;
* [[Bugsy]]&#039;s {{p|Kakuna}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Lance]]&#039;s {{p|Dragonair}} and {{p|Pupitar}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Paka and Uji|Paka]]&#039;s Burmy was revealed to have Shed Skin as its Ability.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Prior to becoming an Ability, Shed Skin [[Dratini (Neo Destiny 63)|appeared]] as a TCG {{TCG|Attack}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{langtable|color={{Bug color}}|bordercolor={{Bug color dark}}&lt;br /&gt;
|zh_yue=蛻皮 &#039;&#039;{{tt|Teuipèih|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tyutpèih|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=蛻皮 / 蜕皮 &#039;&#039;{{tt|Tuìpí|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tuōpí|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Mue&lt;br /&gt;
|de=Expidermis&lt;br /&gt;
|it=Muta&lt;br /&gt;
|ko=탈피 &#039;&#039;Talpi&#039;&#039;&lt;br /&gt;
|pt_br=Pele Vertente&lt;br /&gt;
|pt_eu=Troca de Pele&lt;br /&gt;
|es=Mudar&lt;br /&gt;
|vi=Lột da&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that can heal non-volatile status conditions]]&lt;br /&gt;
[[Category:Abilities that activate at the end of the turn]]&lt;br /&gt;
&lt;br /&gt;
[[de:Expidermis]]&lt;br /&gt;
[[es:Mudar]]&lt;br /&gt;
[[fr:Mue]]&lt;br /&gt;
[[it:Muta]]&lt;br /&gt;
[[ja:だっぴ]]&lt;br /&gt;
[[zh:蜕皮（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410427</id>
		<title>Shed Skin (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410427"/>
		<updated>2021-10-13T18:39:23Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Shed Skin&lt;br /&gt;
|jpname=だっぴ&lt;br /&gt;
|jptranslit=Dappi&lt;br /&gt;
|jptrans=Molting&lt;br /&gt;
|colorscheme=Bug&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Heals the body by shedding.&lt;br /&gt;
|text4=The Pokémon may heal its own status problems.&lt;br /&gt;
|text5=The Pokémon may heal its own status problems.&lt;br /&gt;
|text6=The Pokémon may heal its own status conditions.&lt;br /&gt;
|text7=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
|text8=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Shed Skin&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;だっぴ&#039;&#039;&#039; &#039;&#039;Molting&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
At the end of each turn, Shed Skin has a 1/3 chance of curing the Pokémon of a [[Status condition#non-volatile status|non-volatile]] [[status condition]]. If it cures a status condition, it does so before {{status|burn}} or {{status|poison}} damage is dealt on that turn.&lt;br /&gt;
In Diamond and Pearl, Shed Skin had a 30% chance of curing the Pokémon.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Shed Skin has no effect outside of battle. &lt;br /&gt;
&lt;br /&gt;
==Pokémon with Shed Skin==&lt;br /&gt;
{{Ability/head|Bug}}&lt;br /&gt;
{{ability/entry|011|Metapod|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|014|Kakuna|Bug|Poison|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|023|Ekans|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|024|Arbok|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|147|Dratini|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|148|Dragonair|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|247|Pupitar|Rock|Ground|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|266|Silcoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|268|Cascoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|336|Seviper|Poison|Poison|Shed Skin|None|Infiltrator}}&lt;br /&gt;
{{ability/entry|401|Kricketot|Bug|Bug|Shed Skin|None|Run Away}}&lt;br /&gt;
{{ability/entry|412|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Plant Cloak}}&lt;br /&gt;
{{ability/entry|412G|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Sandy Cloak}}&lt;br /&gt;
{{ability/entry|412S|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Trash Cloak}}&lt;br /&gt;
{{ability/entry|559|Scraggy|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|560|Scrafty|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|588|Karrablast|Bug|Bug|Swarm|Shed Skin|No Guard}}&lt;br /&gt;
{{Ability/entry|665|Spewpa|Bug|Bug|Shed Skin|None|Friend Guard}}&lt;br /&gt;
{{Ability/entry|843|Silicobra|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/entry|844|Sandaconda|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/foot|Bug}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Bug}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Recovers easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Helps the Pokémon recover more easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|じぶんが こうどう したあとに わるいじょうたいが なおることがある|Helps the Pokémon recover more easily from status problems.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Conq}}|The Pokémon may heal its own status ailments.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Sometimes heals the Pokémon&#039;s negative status conditions.{{tt|*|Ability description}}&amp;lt;br&amp;gt;Sometimes it cures every single bad status condition the Pokémon has!{{tt|*|Used in message log}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|Sometimes it cures every single bad status condition the Pokémon has!}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|DX}}|This Ability sometimes cures every bad status condition the Pokémon has.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=Bug|exp=yes|gen=When hit with a status condition, the user separates from its skin, leaving behind a white outer shell in its place.|image1=Lucy Seviper Shed Skin Adventures.png|image1p=Seviper}}&lt;br /&gt;
{{movep|type=bug|ms=336|pkmn=Seviper|method=When Seviper is hit with a status condition, it separates from its outer skin, leaving behind a white outer shell in its place.}}&lt;br /&gt;
{{movebtmManga|type=Bug|user=Lucy&#039;s Seviper|startcode=PS304|startname=Swanky Showdown with Swalot|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
* {{adv|Yellow}}&#039;s {{p|Metapod}}, [[Kitty]], was revealed to have Shed Skin as his Ability.&lt;br /&gt;
* [[Bugsy]]&#039;s {{p|Kakuna}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Lance]]&#039;s {{p|Dragonair}} and {{p|Pupitar}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Paka and Uji|Paka]]&#039;s Burmy was revealed to have Shed Skin as its Ability.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Prior to becoming an Ability, Shed Skin [[Dratini (Neo Destiny 63)|appeared]] as a TCG {{TCG|Attack}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{langtable|color={{Bug color}}|bordercolor={{Bug color dark}}&lt;br /&gt;
|zh_yue=蛻皮 &#039;&#039;{{tt|Teuipèih|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tyutpèih|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=蛻皮 / 蜕皮 &#039;&#039;{{tt|Tuìpí|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tuōpí|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Mue&lt;br /&gt;
|de=Expidermis&lt;br /&gt;
|it=Muta&lt;br /&gt;
|ko=탈피 &#039;&#039;Talpi&#039;&#039;&lt;br /&gt;
|pt_br=Pele Vertente&lt;br /&gt;
|pt_eu=Troca de Pele&lt;br /&gt;
|es=Mudar&lt;br /&gt;
|vi=Lột da&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that can heal non-volatile status conditions]]&lt;br /&gt;
[[Category:Abilities that activate at the end of the turn]]&lt;br /&gt;
&lt;br /&gt;
[[de:Expidermis]]&lt;br /&gt;
[[es:Mudar]]&lt;br /&gt;
[[fr:Mue]]&lt;br /&gt;
[[it:Muta]]&lt;br /&gt;
[[ja:だっぴ]]&lt;br /&gt;
[[zh:蜕皮（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410426</id>
		<title>Shed Skin (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Shed_Skin_(Ability)&amp;diff=3410426"/>
		<updated>2021-10-13T18:29:15Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In battle */ Curing probability is 30%, not 1/3. The real formula is: rnd(0, 65535) % 10 &amp;lt; 3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Shed Skin&lt;br /&gt;
|jpname=だっぴ&lt;br /&gt;
|jptranslit=Dappi&lt;br /&gt;
|jptrans=Molting&lt;br /&gt;
|colorscheme=Bug&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Heals the body by shedding.&lt;br /&gt;
|text4=The Pokémon may heal its own status problems.&lt;br /&gt;
|text5=The Pokémon may heal its own status problems.&lt;br /&gt;
|text6=The Pokémon may heal its own status conditions.&lt;br /&gt;
|text7=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
|text8=The Pokémon may heal its own status conditions by shedding its skin.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Shed Skin&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;だっぴ&#039;&#039;&#039; &#039;&#039;Molting&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
At the end of each turn, Shed Skin has a 30% chance of curing the Pokémon of a [[Status condition#non-volatile status|non-volatile]] [[status condition]]. If it cures a status condition, it does so before {{status|burn}} or {{status|poison}} damage is dealt on that turn.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Shed Skin has no effect outside of battle. &lt;br /&gt;
&lt;br /&gt;
==Pokémon with Shed Skin==&lt;br /&gt;
{{Ability/head|Bug}}&lt;br /&gt;
{{ability/entry|011|Metapod|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|014|Kakuna|Bug|Poison|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|023|Ekans|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|024|Arbok|Poison|Poison|Intimidate|Shed Skin|Unnerve}}&lt;br /&gt;
{{ability/entry|147|Dratini|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|148|Dragonair|Dragon|Dragon|Shed Skin|None|Marvel Scale}}&lt;br /&gt;
{{ability/entry|247|Pupitar|Rock|Ground|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|266|Silcoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|268|Cascoon|Bug|Bug|Shed Skin|None|None}}&lt;br /&gt;
{{ability/entry|336|Seviper|Poison|Poison|Shed Skin|None|Infiltrator}}&lt;br /&gt;
{{ability/entry|401|Kricketot|Bug|Bug|Shed Skin|None|Run Away}}&lt;br /&gt;
{{ability/entry|412|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Plant Cloak}}&lt;br /&gt;
{{ability/entry|412G|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Sandy Cloak}}&lt;br /&gt;
{{ability/entry|412S|Burmy|Bug|Bug|Shed Skin|None|Overcoat|Trash Cloak}}&lt;br /&gt;
{{ability/entry|559|Scraggy|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|560|Scrafty|Dark|Fighting|Shed Skin|Moxie|Intimidate}}&lt;br /&gt;
{{ability/entry|588|Karrablast|Bug|Bug|Swarm|Shed Skin|No Guard}}&lt;br /&gt;
{{Ability/entry|665|Spewpa|Bug|Bug|Shed Skin|None|Friend Guard}}&lt;br /&gt;
{{Ability/entry|843|Silicobra|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/entry|844|Sandaconda|Ground|Ground|Sand Spit|Shed Skin|Sand Veil}}&lt;br /&gt;
{{Ability/foot|Bug}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Bug}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Recovers easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Helps the Pokémon recover more easily from status problems.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|じぶんが こうどう したあとに わるいじょうたいが なおることがある|Helps the Pokémon recover more easily from status problems.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Conq}}|The Pokémon may heal its own status ailments.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Sometimes heals the Pokémon&#039;s negative status conditions.{{tt|*|Ability description}}&amp;lt;br&amp;gt;Sometimes it cures every single bad status condition the Pokémon has!{{tt|*|Used in message log}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|Sometimes it cures every single bad status condition the Pokémon has!}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|DX}}|This Ability sometimes cures every bad status condition the Pokémon has.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=Bug|exp=yes|gen=When hit with a status condition, the user separates from its skin, leaving behind a white outer shell in its place.|image1=Lucy Seviper Shed Skin Adventures.png|image1p=Seviper}}&lt;br /&gt;
{{movep|type=bug|ms=336|pkmn=Seviper|method=When Seviper is hit with a status condition, it separates from its outer skin, leaving behind a white outer shell in its place.}}&lt;br /&gt;
{{movebtmManga|type=Bug|user=Lucy&#039;s Seviper|startcode=PS304|startname=Swanky Showdown with Swalot|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
* {{adv|Yellow}}&#039;s {{p|Metapod}}, [[Kitty]], was revealed to have Shed Skin as his Ability.&lt;br /&gt;
* [[Bugsy]]&#039;s {{p|Kakuna}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Lance]]&#039;s {{p|Dragonair}} and {{p|Pupitar}} are revealed to have Shed Skin as their Ability.&lt;br /&gt;
* [[Paka and Uji|Paka]]&#039;s Burmy was revealed to have Shed Skin as its Ability.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Prior to becoming an Ability, Shed Skin [[Dratini (Neo Destiny 63)|appeared]] as a TCG {{TCG|Attack}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{langtable|color={{Bug color}}|bordercolor={{Bug color dark}}&lt;br /&gt;
|zh_yue=蛻皮 &#039;&#039;{{tt|Teuipèih|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tyutpèih|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=蛻皮 / 蜕皮 &#039;&#039;{{tt|Tuìpí|Molt}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;脫皮 &#039;&#039;{{tt|Tuōpí|Shed}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Mue&lt;br /&gt;
|de=Expidermis&lt;br /&gt;
|it=Muta&lt;br /&gt;
|ko=탈피 &#039;&#039;Talpi&#039;&#039;&lt;br /&gt;
|pt_br=Pele Vertente&lt;br /&gt;
|pt_eu=Troca de Pele&lt;br /&gt;
|es=Mudar&lt;br /&gt;
|vi=Lột da&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that can heal non-volatile status conditions]]&lt;br /&gt;
[[Category:Abilities that activate at the end of the turn]]&lt;br /&gt;
&lt;br /&gt;
[[de:Expidermis]]&lt;br /&gt;
[[es:Mudar]]&lt;br /&gt;
[[fr:Mue]]&lt;br /&gt;
[[it:Muta]]&lt;br /&gt;
[[ja:だっぴ]]&lt;br /&gt;
[[zh:蜕皮（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3407335</id>
		<title>Friendship</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3407335"/>
		<updated>2021-10-02T20:59:27Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Generation IV */ Linked demo of original video for the Friendship Underflow glitch, with better visualization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{samename|Friendship features in {{g|GO}}|Friends (GO)}}&lt;br /&gt;
{{redirect|Happiness|the &amp;quot;Happiness Pokémon&amp;quot; category|Blissey (Pokémon)}}&lt;br /&gt;
{{spading|comment=Still needs research overall, especially regarding values.}}&lt;br /&gt;
{{incomplete|needs=Generation VIII information, manga section}}&lt;br /&gt;
&#039;&#039;&#039;Friendship&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;なつき{{tt|度|ど}}&#039;&#039;&#039; &#039;&#039;degree of emotional attachment&#039;&#039;), also referred to as &#039;&#039;&#039;loyalty&#039;&#039;&#039; in [[Generation II]] core series games, &#039;&#039;&#039;tame&#039;&#039;&#039; in [[Pokémon Stadium 2]], and &#039;&#039;&#039;friendliness&#039;&#039;&#039; in [[Pokémon XD: Gale of Darkness]], and commonly referred to by fans as &#039;&#039;&#039;happiness&#039;&#039;&#039;, is a measurement of how much a {{OBP|Pokémon|species}} is attached to its {{pkmn|Trainer}} and enjoys being in their care.&lt;br /&gt;
&lt;br /&gt;
It affects the [[evolution]] of {{cat|Pokémon that evolve by friendship|certain Pokémon}}, the power of {{m|Return}} and {{m|Frustration}}, and the availability of a few in-game [[item]]s and [[Ribbon]]s. Certain events increase a Pokémon&#039;s friendship (gaining a [[level]], walking a certain amount of steps) or decrease it ([[fainting]], using [[herbal medicine]]).&lt;br /&gt;
&lt;br /&gt;
Friendship was introduced in Pokémon Yellow for the {{player}}&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}} only, and expanded to cover all Pokémon in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
In [[Generation VI]], [[Affection]], a separate mechanic, was introduced. However, from [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]] onward, Affection no longer exists and friendship has all of its effects instead.&lt;br /&gt;
&lt;br /&gt;
==In the core and side series games==&lt;br /&gt;
Friendship debuted in [[Generation I]] as a mechanic that applied only to the {{player}}&#039;s {{p|Pikachu}} in {{game|Yellow}}. In [[Generation II]], it was expanded to cover all Pokémon. In all games, friendship is a value that ranges from 0 to 255 (stored as a single byte). In Pokémon Yellow, Pikachu&#039;s friendship is indicated by the expression it shows when the player talks to it, but in later games, [[#Raters|certain NPCs]] in the games will evaluate the friendship of a Pokémon in the player&#039;s [[party]].&lt;br /&gt;
&lt;br /&gt;
A Pokémon&#039;s friendship is generally set when the player first obtains it. When a Pokémon is first caught from the wild, its friendship starts at its [[List of Pokémon by base friendship|base friendship]] value. Trading a Pokémon also resets its friendship to its base value, unless it is being traded back to its [[original Trainer]] in [[Generation VI]] or later, in which case it regains the friendship it had before being traded away. A Pokémon caught in a [[Friend Ball]] starts with 200 friendship instead of its base friendship, while a Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
Friendship is generally increased by taking good care of a Pokémon. Keeping a Pokémon in the player&#039;s party, raising it, using items on it, and getting it [[Pokémon groomer|groomed]] will all increase a Pokémon&#039;s friendship. Letting it faint and using bitter [[herbal medicine]]s on it will decrease a Pokémon&#039;s friendship.&lt;br /&gt;
&lt;br /&gt;
===Boosting friendship===&lt;br /&gt;
{{incomplete|section|needs=Check whether friendship is boosted at the met location in Colosseum}}&lt;br /&gt;
In {{game|Crystal}}, if a Pokémon is leveled up at its met location, it will gain twice as much friendship from that level up as usual. Since only Pokémon caught in Pokémon Crystal have a defined met location, Pokémon caught in the [[Generation I]] games, {{game|Gold and Silver|s}}, and Pokémon from [[in-game trade]]s will not receive this bonus. If a Pokémon that has a defined met location is traded to a Generation I game, this data is permanently erased, so it can no longer receive this bonus.&lt;br /&gt;
&lt;br /&gt;
From Generation III onward, if a Pokémon was caught in a [[Luxury Ball]], any increase to its friendship is boosted by 1. In Generation III (except {{Pokémon XD}}) and from Generation V onward, if a Pokémon is currently at the same location where it was {{pkmn2|caught}} (its met location), any increase to its friendship is boosted by 1. If a Pokémon is holding a [[Soothe Bell]], increases to its friendship are boosted by 50% of the change—in Generation III, the increase is applied to the original change in friendship; in subsequent generations, it applies to the friendship change after including Luxury Ball and met location bonuses.&lt;br /&gt;
&lt;br /&gt;
In Generation V, the Befriending Power [[Pass Power]] boosts any increase to friendship by one to three points depending on the strength of the power used. In Generation VI, the Befriending Power [[O-Power]] has the same effect. Befriending Power does not exist in [[Generation VII]].&lt;br /&gt;
&lt;br /&gt;
None of these effects change the amount of friendship lost for negative changes or for changes of 0 (such as using an [[X Attack]] on a Pokémon with high friendship).&lt;br /&gt;
&lt;br /&gt;
===Mechanics using friendship===&lt;br /&gt;
In Pokémon Yellow, friendship affected very little beyond the reactions Pikachu would show when interacted with. A notable exception is the woman in [[Cerulean City]] who will only give the player a [[Bulbasaur]] if Pikachu has high friendship.&lt;br /&gt;
&lt;br /&gt;
Starting in [[Generation II]], there are {{cat|Pokémon that evolve by friendship}}, which can only evolve if they have 220 friendship or more. Additionally, the moves {{m|Return}} and {{m|Frustration}} vary in power depending on how high or low the user&#039;s friendship is.&lt;br /&gt;
&lt;br /&gt;
From [[Generation IV]] onward, there is a [[Ribbon]] for Pokémon with maximum friendship, the {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
Some NPCs also only give gifts or [[Move Tutor|teach moves]] when the player&#039;s Pokémon has a certain amount of friendship.&amp;lt;!--Maybe should be listed. I think the Soothe Bell and Lucky Egg are a couple (sometimes?).--&amp;gt; Specifically, a Pokémon must have maximized friendship to learn {{m|Draco Meteor}}, {{m|Frenzy Plant}}, {{m|Blast Burn}}, {{m|Hydro Cannon}}, {{m|Grass Pledge}}, {{m|Fire Pledge}}, or {{m|Water Pledge}} in any generation.&lt;br /&gt;
&lt;br /&gt;
In {{pkmn|Omega Ruby and Alpha Sapphire}}, [[Nameless Cavern]] becomes unlocked once the {{player}} has three Pokémon with maximum friendship on their team.&lt;br /&gt;
&lt;br /&gt;
=====Moves=====&lt;br /&gt;
Friendship affects the following moves.&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 5px solid #{{cute color light}};&amp;quot;&lt;br /&gt;
! Move&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Type]]&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Damage category|Category]]&lt;br /&gt;
! [[Power]]&lt;br /&gt;
! [[Accuracy]]&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; | Notes&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Frustration}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The lower the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Pika Papow}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
{{statustable|Special}}&lt;br /&gt;
| Varies&lt;br /&gt;
|  —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Return}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Veevee Volley}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====In-battle bonuses====&lt;br /&gt;
=====Pokémon Sword and Shield=====&lt;br /&gt;
In [[Pokémon Sword and Shield]], due to [[affection]] being merged with friendship, friendship has several in-battle effects. These effects do not occur in link battles, [[Battle Tower]] and [[Restricted Sparring]].&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}};&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | Friendship&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | {{color2|000|Pokémon Camp|Camp}} hearts&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | Effect&lt;br /&gt;
|-&lt;br /&gt;
| 0-179&lt;br /&gt;
| 0-2&lt;br /&gt;
| None&lt;br /&gt;
|-&lt;br /&gt;
| 180-219&lt;br /&gt;
| 3&lt;br /&gt;
| &lt;br /&gt;
* Pokémon moves a little when sent out in battle&lt;br /&gt;
* Very small chance of not fainting from a hit that would normally knock it out&lt;br /&gt;
|-&lt;br /&gt;
| 220-254&lt;br /&gt;
| 4&lt;br /&gt;
| &lt;br /&gt;
* Pokémon bounces up-and-down when sent out in battle&lt;br /&gt;
* Small chance of not fainting from a hit that would normally knock it out&lt;br /&gt;
* Boosted [[experience|Exp. Points]]&lt;br /&gt;
* Moderate chance of recovering from [[status condition]]s on its own&lt;br /&gt;
|-&lt;br /&gt;
| 255&lt;br /&gt;
| 5&lt;br /&gt;
| &lt;br /&gt;
* Pokémon bounces up-and-down when sent out in battle&lt;br /&gt;
* Moderate chance of not fainting from a hit that would normally knock it out&lt;br /&gt;
* Boosted [[experience|Exp. Points]]&lt;br /&gt;
* Moderate chance of recovering from [[status condition]]s on its own&lt;br /&gt;
* Very small chance of avoiding an opponent&#039;s move&lt;br /&gt;
* Increased [[critical hit]] ratio&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
In addition, Pokémon with at least 1 heart may find items after cooking together at [[Pokémon Camp]].&lt;br /&gt;
&lt;br /&gt;
===Generation I===&lt;br /&gt;
[[File:PikachuY-Happy.png|thumb|right|{{ga|Red&#039;s Pikachu|Pikachu}} with high friendship]]&lt;br /&gt;
In {{game|Yellow}}, there is a friendship system exclusively for the player&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}}. Any Pikachu that the player is the [[Original Trainer]] of (according to their Original Trainer name and [[Trainer ID number]]) is treated as the player&#039;s starter Pikachu. Raichu and {{pkmn2|Outsider}} Pikachu are not affected, even if the Raichu was the player&#039;s starter Pokémon but evolved (which can only be done by first [[trade|trading]] it to another game).&lt;br /&gt;
&lt;br /&gt;
The starter Pikachu [[Walking Pokémon|follows the player in the overworld]], if it is in the party and not [[fainting|fainted]] (if the player has multiple, Pikachu will follow if the first starter Pikachu in the party is not fainted). If the player interacts with Pikachu, a window will pop up showing Pikachu&#039;s face, and the expression is affected by Pikachu&#039;s current friendship (though certain special events may elicit special reactions unrelated to Pikachu&#039;s current friendship). At maximum friendship, Pikachu jumps up and down before the window appears.&lt;br /&gt;
&lt;br /&gt;
In [[Cerulean City]], [[Melanie]] gives the player a {{p|Bulbasaur}} if the starter Pikachu&#039;s friendship is 147 or higher. The player does not need to have Pikachu in the party or even in the game itself to receive this Bulbasaur. This is the only significance of friendship outside of interacting with Pikachu.&lt;br /&gt;
&lt;br /&gt;
Pikachu starts with a [[List of Pokémon by base friendship|base friendship]] of 90. Various actions can increase or decrease Pikachu&#039;s friendship level.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! colspan=2 rowspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Starter Pikachu [[level|levels]] up while in the party || rowspan=2 | +5 || rowspan=2 | +3 || rowspan=2 | +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Use [[medicine]] on starter Pikachu (even if unsuccessful),&amp;lt;br&amp;gt;other than [[PP Up]], [[Full Heal]], [[Revive]], [[Max Revive]], [[Ether]], [[Max Ether]], [[Elixir|Elixer]], [[Max Elixir|Max Elixer]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Challenge a [[Gym Leader]] with non-fainted starter Pikachu in the party&amp;lt;br&amp;gt;(if the player has multiple, the first Pikachu in the party must not be fainted)&lt;br /&gt;
|| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walk 255 steps with Pikachu following (50% chance)&lt;br /&gt;
| +2&lt;br /&gt;
| colspan=2 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Teach Pikachu a [[TM]] or [[HM]] move&lt;br /&gt;
| colspan=2 rowspan=2 | +1 || rowspan=2 | 0&lt;br /&gt;
|- style=&amp;quot;background:white&amp;quot;&lt;br /&gt;
| colspan=2 | Use a [[battle item]] on starter Pikachu (even if unsuccessful), other than [[X Accuracy]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | Starter Pikachu [[fainting|faints]]&amp;lt;br&amp;gt;(including during link battles)&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5&lt;br /&gt;
| -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Deposit starter Pikachu in the [[Pokémon Storage System]] from the party&lt;br /&gt;
| colspan=2 | -3 || -5&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Trade]] Pikachu away&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; colspan=2 | -10&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is a single friendship value per game, and it remains even if the starter Pikachu is traded away. Trading away Pikachu will decrease its friendship, but this decreased value will be remembered when it returns. If the player has multiple Pikachu which qualify as their starter Pikachu in a single game, all of these Pikachu share the same friendship value, so any friendship-modifying event applies to all of them.&lt;br /&gt;
&lt;br /&gt;
[[Vitamin]]s, [[battle item]]s and {{cat|HP-restoring items}} increase Pikachu&#039;s friendship even if they have no effect. For example, attempting to use a [[Potion]] on a Pikachu that has [[fainting|fainted]] or has full health, an [[Antidote]] when Pikachu is not {{status|poison}}ed, [[Calcium]] when Pikachu has already reached its maximum {{DL|Stat|Special}} [[stat experience]], or [[X Special]] when the Special stat has already been {{DL|Stat#Stat modifiers|raised 6 stages}} in battle. This does not consume the item, so the same item can repeatedly increase Pikachu&#039;s friendship. Waking Pikachu up with the [[Poké Flute]] (either in or out of battle) does not change its friendship.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
In [[Generation II]], friendship was expanded to cover all Pokémon. All Pokémon have a [[List of Pokémon by base friendship|base friendship]] of 70, but any Pokémon caught in a [[Friend Ball]] starts with 200 friendship and any Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Gold|Silver|Crystal}}, [[#Gold, Silver, and Crystal|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Goldenrod City]].&lt;br /&gt;
&lt;br /&gt;
The met location boost was first introduced in {{game|Crystal}}.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Pokémon groomer|Grooming]] ([[haircut brothers]])&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (younger brother: 10%)&lt;br /&gt;
| colspan=2 | +10 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (older brother: 20%)&lt;br /&gt;
| colspan=2 | +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot; (older brother: 50%, younger: 30%)&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot; (older brother: 30%, younger: 60%)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Level]] up || Always{{sup/2|GS}}/Anywhere except met location{{sup/2|C}} || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| At met location{{sup/2|C}} || +10 || +6 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, the [[Pokémon Champion|Champion]], or [[Red (game)|Red]] (whole party)&lt;br /&gt;
| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}})&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 512 steps (whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], and [[Carbos]]&lt;br /&gt;
††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], and [[X Sp. Atk|X Special]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Generation III===&lt;br /&gt;
In [[Generation III]], different [[Pokémon (species)|species]] of Pokémon were given individualized [[List of Pokémon by base friendship|base friendship]] values. The [[Luxury Ball]] and [[Soothe Bell]] boosts were also introduced.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Ruby|Sapphire|Emerald}}, an [[NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Verdanturf_Town#Friendship_rater|Verdanturf Town]]. &lt;br /&gt;
&lt;br /&gt;
In {{game|FireRed and LeafGreen|s}}, [[Daisy Oak]] in [[Pallet Town]] will perform the [[#FireRed and LeafGreen|same service]] of evaluating a Pokémon&#039;s friendship, and she will additionally offer [[Grooming|grooming]] to increase a Pokémon&#039;s friendship once every 512 steps the player takes. &lt;br /&gt;
&lt;br /&gt;
In addition, in Pokémon FireRed and LeafGreen, the degree to which a Pokémon moves towards the screen after an item is used on it will also indicate how high its friendship is.&lt;br /&gt;
&lt;br /&gt;
In the table below, fainting in battle will not alter a Pokémon&#039;s friendship if it fainted from {{status|poison}} at the end of a turn.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}†{{sup/3|E}}&lt;br /&gt;
| +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/3|FRLG}}&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance to occur, affects whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Colosseum and Pokémon XD: Gale of Darkness====&lt;br /&gt;
{{incomplete|section}}&lt;br /&gt;
In [[Pokémon Colosseum]] and [[Pokémon XD: Gale of Darkness]], [[purification|purifying]] a Pokémon increases its friendship by 70.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
{{incomplete|section|Figure out the probabilities for the variable massage/grooming events}}&lt;br /&gt;
[[File:Friendship Checker App.png|thumb|200px|right|The [[Pokétch]]&#039;s Friendship Checker app with a {{p|Drifblim}} at maximum friendship.]]&lt;br /&gt;
In Generation IV only, a Pokémon&#039;s met location does not affect the amount of friendship it gains. In Pokémon Diamond, Pearl, and Platinum, the massage at the [[Ribbon Syndicate]] is also not affected by any friendship boosts, and the Soothe Bell does not affect friendship gained when using a [[battle item]].&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl, and Platinum, [[#Diamond, Pearl, and Platinum|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found in [[Hearthome City]], or the player may use the {{DL|Pokétch|Friendship Checker}} app on the [[Pokétch]]. In {{game|HeartGold and SoulSilver|s}}, [[#HeartGold and SoulSilver|an NPC]] in [[Goldenrod City]] will also evaluate the friendship of the first Pokémon in the player&#039;s party, or a [[walking Pokémon]]&#039;s friendship may also be gauged by its reaction when speaking to it.&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond and Pearl, due to a glitch, if [[herbal medicine]] is used in battle on a Pokémon with low friendship, that Pokémon&#039;s friendship can underflow to a value near the maximum 255.&lt;br /&gt;
{{YouTubeVid|YXhSU09weII|Map233224|cute}}&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Ribbon Syndicate]]){{sup/4|DPPt}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;Our treatment has made your pampered baby [...] friendly to you.&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Grooming]] ([[haircut brothers]]){{sup/4|HGSS}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/4|HGSS}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ([[Veilstone City]] [[Massage Girl]]){{sup/4|DPPt}}&lt;br /&gt;
| colspan=3 | +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Winning a [[Contest]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Surviving {{status|poison}} with 1 HP outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Generation V===&lt;br /&gt;
{{incomplete|section|Effects of Makeups at the {{DL|Join Avenue|Beauty Salon}}; check whether boosts like Luxury Ball apply to Join Avenue events}}&lt;br /&gt;
Generation V introduced Befriending Power as a [[Pass Power]] to boost friendship gains.&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to the massage in [[Castelia City]].&lt;br /&gt;
&lt;br /&gt;
In the Generation V games, [[#Black and White|an NPC]] who will evaluate the friendship of the Pokémon in the player&#039;s [[party]] can be found in [[Icirrus City]], with a second NPC only found in [[Nacrene City]] during {{game|Black and White|s}} who checks the player&#039;s first Pokémon. In {{game|Black and White|s|Pokémon Black 2 and White 2|2}}, the player may also contact [[Bianca]] on the [[Xtransceiver]] to have their Pokémon&#039;s friendship rated.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Royal Cut{{sup/5|W2}}&lt;br /&gt;
| colspan=3 | +50&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Beauty Cut{{sup/5|B2}}&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Smile Cut{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ({{DL|Castelia City|Castelia Street}}{{sup/5|BW}}/{{DL|Castelia City|Medal Office}}{{sup/5|B2W2}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage has made your Pokémon [...] friendly to you!&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Shampoo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Combo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Brushing{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Lunch{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Drink{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Generation VI===&lt;br /&gt;
{{incomplete|section|Check if [[Pokéblock]]s add friendship and chance of increasing friendship every 128 steps}}&lt;br /&gt;
In Generation VI, Befriending Power becomes an [[O-Power]].&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to massages, drinks from the [[Juice Shoppe]], or the Soothing Bag in [[Super Training]].&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon X and Y]], [[#X and Y|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found early on in [[Santalune City]], or later in [[Laverre City]]. In [[Pokémon Omega Ruby and Alpha Sapphire]], [[#Omega Ruby and Alpha Sapphire|an NPC]] in [[Verdanturf Town]] will also evaluate the friendship of the first Pokémon in the player&#039;s party.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ({{DL|Secret Base|Secret Pals}}){{sup/6|ORAS}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Cyllage City]]{{sup/6|XY}}/[[Mauville City]]{{sup/6|ORAS&lt;br /&gt;
}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage made your Pokémon [...] friendly toward you&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Super Training]]: Soothing Bag&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Juice Shoppe]]: Colorful Shake&lt;br /&gt;
| Custom-made&lt;br /&gt;
| colspan=3 | +12 to 32 (depending on Berries used)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Pre-made&lt;br /&gt;
| colspan=3 | +1 per {{PDollar}}100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Juice Shoppe]]: Rare Soda, Ultra Rare Soda, Perilous Soup, or EV Juices&lt;br /&gt;
| colspan=3 | +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Generation VII===&lt;br /&gt;
====Pokémon Sun, Moon, Ultra Sun, and Ultra Moon====&lt;br /&gt;
{{incomplete|section|Check [[Festival Plaza]] events and walking mechanics}}&lt;br /&gt;
Friendship boosts do not apply to massages.&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Sun and Moon|Pokémon Sun, Moon]], {{pkmn|Ultra Sun and Ultra Moon}}, [[#Sun, Moon, Ultra Sun, and Ultra Moon|an NPC]] who will evaluate the friendship of a Pokémon in the player&#039;s [[party]] can be found in [[Konikoni City]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Konikoni City]])&lt;br /&gt;
| &amp;quot;&#039;&#039;I think you&#039;ll notice a lot of friendly feelings!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;[It] helped inspire some good, friendly feelings toward you.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;It&#039;s feeling a bit more friendly toward you already, I&#039;d say.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Combo&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Lunch&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Drink&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Poké Pelago|Isle Avue}} hot springs || colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against an [[Island Kahuna]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!====&lt;br /&gt;
{{incomplete|section|How to raise friendship (ie walking or feeding candy) and friendship benefits (ie those seen with affection)}}&lt;br /&gt;
In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], friendship is factored into all of a Pokémon&#039;s stats, except HP. At maximum friendship, a Pokémon will receive a 10% boost to its stats, before [[awakening values|AVs]] are added in. The friendship multiplier scales directly with the level of friendship, starting from a 0% boost at 0 friendship to receiving the full 10% at 255.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII===&lt;br /&gt;
{{incomplete|section|Chart for means to increase friendship}}&lt;br /&gt;
In [[Pokémon Sword and Shield]], friendship can only be increased to a maximum of 179 without using [[Pokémon Camp]] or {{Berries}}. While this is enough to evolve Pokémon that evolve with high friendship, it is not enough to receive any in-battle friendship bonuses. Pokémon Camp and {{cat|friendship-raising Berries}} are the only ways to reach the maximum friendship value of 255.&lt;br /&gt;
&lt;br /&gt;
The following methods can only increase Pokémon&#039;s friendship up to a maximum of 179. After 179 friendship, these methods no longer boost friendship.&lt;br /&gt;
* Leveling up (either in battle or from items).&lt;br /&gt;
* Walking with them in the party.&lt;br /&gt;
* Using [[battle item]]s on them.&lt;br /&gt;
* Using [[vitamin]]s or [[feather]]s on them.&lt;br /&gt;
* Battling with them against [[Gym Leader]]s or other &amp;quot;tough&amp;quot; Trainers.&amp;lt;!--check who counts as &amp;quot;tough&amp;quot; Trainers--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following methods can increase a Pokémon&#039;s friendship regardless of their current friendship (up to the maximum of 255).&lt;br /&gt;
* Using {{cat|friendship-raising Berries}}&lt;br /&gt;
* [[Pokémon Camp]]:&lt;br /&gt;
** Playing with them using toys, especially toy balls.&lt;br /&gt;
** Breaking up fights involving the Pokémon by calling it over to you.&lt;br /&gt;
** Cooking [[curry]] with the Pokémon, especially when using lots of rare Berries.&lt;br /&gt;
&lt;br /&gt;
The following methods can decrease a Pokémon friendship (down to a minimum of 0).&lt;br /&gt;
* Letting a Pokémon faint, especially when battling a much stronger opponent.&lt;br /&gt;
* Using [[herbal medicine]] on it.&lt;br /&gt;
&lt;br /&gt;
===Evolutions===&lt;br /&gt;
Several {{OBP|Pokémon|species}} [[Evolution|evolve]] after being [[level]]ed up when their friendship value is 220 or higher (before [[Generation VIII]]) or 160 or higher (Generation VIII).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{cute color}}; {{roundy|10px}}; border: 3px solid #{{cute color dark}}&amp;quot; cellpadding=2px&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytl|5px}}&amp;quot; | Previous evolution&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color light}}&amp;quot; | Friendship evolution&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytr|5px}}&amp;quot; | Later evolution&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|041|Zubat}}&amp;lt;br&amp;gt;{{pcolor|Zubat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 22+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|042|Golbat}}&amp;lt;br&amp;gt;{{pcolor|Golbat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|169|Crobat}}&amp;lt;br&amp;gt;{{pcolor|Crobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Crobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Meowth is the lowest in its line&lt;br /&gt;
| {{MSP|052A|Meowth}}&amp;lt;br&amp;gt;{{pcolor|Meowth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;ref name=alolanmeowth/&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|053A|Persian}}&amp;lt;br&amp;gt;{{pcolor|Persian|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Persian does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|440|Happiny}}&amp;lt;br&amp;gt;{{pcolor|Happiny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Oval Stone}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]]&amp;lt;br&amp;gt;holding [[Oval Stone]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|113|Chansey}}&amp;lt;br&amp;gt;{{pcolor|Chansey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|242|Blissey}}&amp;lt;br&amp;gt;{{pcolor|Blissey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Blissey does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;3&amp;quot; | Eevee is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | {{MSP|133|Eevee}}&amp;lt;br&amp;gt;{{pcolor|Eevee|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|196|Espeon}}&amp;lt;br&amp;gt;{{pcolor|Espeon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Espeon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|197|Umbreon}}&amp;lt;br&amp;gt;{{pcolor|Umbreon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Umbreon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|TM Fairy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship while knowing a Fairy-type move)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→{{sup/8|SwSh}}&lt;br /&gt;
| {{MSP|700|Sylveon}}&amp;lt;br&amp;gt;{{pcolor|Sylveon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Sylveon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;2&amp;quot; | Pichu is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|172|Pichu}}&amp;lt;br&amp;gt;{{pcolor|Pichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|025|Pikachu}}&amp;lt;br&amp;gt;{{pcolor|Pikachu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Thunder Stone}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Thunder Stone}} + {{bag|Z-Ring}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(in [[Alola]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026A|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Electric}}{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Cleffa is the lowest in its line&lt;br /&gt;
| {{MSP|173|Cleffa}}&amp;lt;br&amp;gt;{{pcolor|Cleffa|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|035|Clefairy}}&amp;lt;br&amp;gt;{{pcolor|Clefairy|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|036|Clefable}}&amp;lt;br&amp;gt;{{pcolor|Clefable|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Igglybuff is the lowest in its line&lt;br /&gt;
| {{MSP|174|Igglybuff}}&amp;lt;br&amp;gt;{{pcolor|Igglybuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|039|Jigglypuff}}&amp;lt;br&amp;gt;{{pcolor|Jigglypuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|040|Wigglytuff}}&amp;lt;br&amp;gt;{{pcolor|Wigglytuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Togepi is the lowest in its line&lt;br /&gt;
| {{MSP|175|Togepi}}&amp;lt;br&amp;gt;{{pcolor|Togepi|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|176|Togetic}}&amp;lt;br&amp;gt;{{pcolor|Togetic|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|468|Togekiss}}&amp;lt;br&amp;gt;{{pcolor|Togekiss|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Azurill is the lowest in its line&lt;br /&gt;
| {{MSP|298|Azurill}}&amp;lt;br&amp;gt;{{pcolor|Azurill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|183|Marill}}&amp;lt;br&amp;gt;{{pcolor|Marill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 18+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|184|Azumarill}}&amp;lt;br&amp;gt;{{pcolor|Azumarill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Budew is the lowest in its line&lt;br /&gt;
| {{MSP|406|Budew}}&amp;lt;br&amp;gt;{{pcolor|Budew|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the morning or [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|315|Roselia}}&amp;lt;br&amp;gt;{{pcolor|Roselia|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|407|Roserade}}&amp;lt;br&amp;gt;{{pcolor|Roserade|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Buneary is the lowest in its line&lt;br /&gt;
| {{MSP|427|Buneary}}&amp;lt;br&amp;gt;{{pcolor|Buneary|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|428|Lopunny}}&amp;lt;br&amp;gt;{{pcolor|Lopunny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lopunny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chingling is the lowest in its line&lt;br /&gt;
| {{MSP|433|Chingling}}&amp;lt;br&amp;gt;{{pcolor|Chingling|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|358|Chimecho}}&amp;lt;br&amp;gt;{{pcolor|Chimecho|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chimecho does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Munchlax is the lowest in its line&lt;br /&gt;
| {{MSP|446|Munchlax}}&amp;lt;br&amp;gt;{{pcolor|Munchlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|143|Snorlax}}&amp;lt;br&amp;gt;{{pcolor|Snorlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Snorlax does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Riolu is the lowest in its line&lt;br /&gt;
| {{MSP|447|Riolu}}&amp;lt;br&amp;gt;{{pcolor|Riolu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|448|Lucario}}&amp;lt;br&amp;gt;{{pcolor|Lucario|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}{{typecolor|Steel}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lucario does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Woobat is the lowest in its line&lt;br /&gt;
| {{MSP|527|Woobat}}&amp;lt;br&amp;gt;{{pcolor|Woobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|528|Swoobat}}&amp;lt;br&amp;gt;{{pcolor|Swoobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Swoobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|540|Sewaddle}}&amp;lt;br&amp;gt;{{pcolor|Sewaddle|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 20+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|541|Swadloon}}&amp;lt;br&amp;gt;{{pcolor|Swadloon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|542|Leavanny}}&amp;lt;br&amp;gt;{{pcolor|Leavanny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Leavanny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Type: Null is the lowest in its line&lt;br /&gt;
| {{MSP|772|Type: Null}}&amp;lt;br&amp;gt;{{pcolor|Type: Null|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|773|Silvally}}&amp;lt;br&amp;gt;{{pcolor|Silvally|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Silvally does not evolve&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybl|5px}}&amp;quot; | Snom is the lowest in its line&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|872|Snom}}&amp;lt;br&amp;gt;{{pcolor|Snom|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|873|Frosmoth}}&amp;lt;br&amp;gt;{{pcolor|Frosmoth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybr|5px}}&amp;quot; | Frosmoth does not evolve&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=alolanmeowth&amp;gt;In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], {{rf|Alolan}} {{p|Meowth}} evolves at [[level]] 28 regardless of friendship level.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Raters===&lt;br /&gt;
Friendship raters are [[Non-player character|NPC]]s that will indicate the friendship of the first {{OBP|Pokémon|species}} in the {{player}}&#039;s [[party]] when spoken to.&lt;br /&gt;
&lt;br /&gt;
====Locations====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Region&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | City&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | Location: NPC&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Distinct evaluations&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Kanto]] || [[Celadon City]]&amp;lt;small&amp;gt; ({{gameabbrev1|Y}})&amp;lt;/small&amp;gt; || [[Celadon Mansion]], first floor || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev3|FRLG}})&amp;lt;/small&amp;gt; || {{ga|Blue}}&#039;s house: {{Daisy}} || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev7|PE}})&amp;lt;/small&amp;gt; || {{ga|Trace}}&#039;s house: Trace&#039;s sister || ?&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Johto]] || [[Goldenrod City]] ||  House east of the Department Store: woman || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Goldenrod City]]{{dotw|Sunday}} || [[Goldenrod Department Store]], {{DL|Goldenrod Department Store|Fifth Floor: TM Corner|fifth floor}}: woman || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Hoenn]] || [[Verdanturf Town]] || Southwestern-most house: woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pacifidlog Town]] ||Southwestern-most house: {{tc|Gentleman}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Orre]]&amp;lt;small&amp;gt; ({{gameabbrevss|XD}} only)&amp;lt;/small&amp;gt; || [[Gateon Port]] || [[Krabby Club]], upper floor: the captain || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Sinnoh]] || [[Hearthome City]] || [[Pokémon Fan Club]] (east of the Poké Mart): {{tc|Beauty}} || 6{{sup/4|DP}} or 7{{sup/4|Pt}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| {{rt|213|Sinnoh}} || House south of the [[Pastoria City]] [[gate]]: [[Dr. Footstep]] || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Eterna City]] || Pokémon Center: {{tc|Aroma Lady}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokétch]]: {{DL|Pokétch|Friendship Checker}} app || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Unova]] || [[Icirrus City]] || [[Pokémon Fan Club]] (south of Gym): woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Nacrene City]] || Building east of the [[Pokémon Center]]: woman with a Pokémon&amp;lt;!--It is *not* worth saying what in which versions--&amp;gt; || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{gameabbrev5|B2W2}}: Call [[Bianca]] on the [[Xtransceiver]] || 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; rowspan=2 | [[Kalos]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Santalune City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | House west of the [[Pokémon Center]]: {{tc|Beauty}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Laverre City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Pokémon Fan Club]] (in the northwest): {{tc|Pokémon Breeder}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Alola]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Konikoni City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Female {{tc|Veteran}} next to the TM Shop&#039;s street sign&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Galar]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Hammerlocke]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | House east of the [[Pokémon Center]]: Young boy &lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
The [[Johto]] and [[Hoenn]] raters in the [[Goldenrod Department Store]] and [[Pacifidlog Town]] will give out {{TM|21|Frustration}} or {{TM|27|Return}} (or neither) depending on the friendship of the player&#039;s lead Pokémon.&lt;br /&gt;
&lt;br /&gt;
====Evaluation====&lt;br /&gt;
=====Pokémon Yellow=====&lt;br /&gt;
The woman will comment on the [[Red&#039;s Pikachu|starter Pikachu]]&#039;s friendship if it is following the player, which requires it to be in the party and not [[fainting|fainted]] (if the player has multiple starter Pikachu in the party, the first one must not be fainted).&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You look like a fantastic duo. You&#039;re making me jealous!&amp;quot;&lt;br /&gt;
| 201-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Your &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt; looks happy with you.&amp;quot;&lt;br /&gt;
| 161-200&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Your &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt; seems tamed.&amp;quot;&lt;br /&gt;
| 131-160&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must be happy to have a &amp;lt;sc&amp;gt;Pokemon&amp;lt;/sc&amp;gt; that cute.&amp;quot;&lt;br /&gt;
| 101-130&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Why don&#039;t you take more care with &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt;?&amp;quot;&lt;br /&gt;
| 51-100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems like it hasn&#039;t been tamed at all.&amp;quot;&lt;br /&gt;
| 0-50&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Gold, Silver, and Crystal=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 150-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 50-149&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Stadium 2=====&lt;br /&gt;
While there is no [[Non-player character|NPC]] that rates friendship, when viewing a table with {{OBP|Pokémon|species}}, its value is listed there (along other elements such as [[type]], [[Trainer ID number]] or [[item]]), in levels. Pokémon data read from a [[Generation I]] game will always be rated as &#039;&#039;Not quite&#039;&#039;, even for {{ga|Red&#039;s Pikachu}} in {{game|Yellow}}, which does have its friendship tracked.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Pretty good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | A little bit&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not quite&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Not at all&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Ruby, Sapphire, and Emerald=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It adores you. It can&#039;t possibly love you any more. I even feel happy seeing it.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It obviously likes you a whole lot.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a lot. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has scary viciousness in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say&amp;amp;hellip; Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It clearly likes you very much. A &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not bad, but it&#039;s also not good. You, as the &amp;lt;sc&amp;gt;Trainer&amp;lt;/sc&amp;gt;, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Box: Ruby and Sapphire=====&lt;br /&gt;
In [[Pokémon Box: Ruby and Sapphire]], when viewing a table of Pokémon, the Pokémon&#039;s friendship rating is listed, along with other properties (e.g. [[type]], [[level]], etc.).&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | So-so&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not good&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Meager &lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon FireRed and LeafGreen=====&lt;br /&gt;
{{main|Daisy Oak}}&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It couldn&#039;t possibly love you any more than it does now. Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; is happy beyond words.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks very happy. I wish {{ga|Blue|&amp;lt;rival&amp;gt;}} could see this and learn something from it.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly with you. Keep being good to it!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. Trust must be growing between you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not quite familiar with you yet. &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; are all quite wary when you first get them.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&amp;lt;Player&amp;gt;, I don&#039;t like the way it glares at you. Could you try being a little nicer to it?&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip;Um, it&#039;s not easy for me to say this, but&amp;amp;hellip; Is there some reason why your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; would hate you so much?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon XD: Gale of Darkness=====&lt;br /&gt;
The friendship rater is located inside the [[Krabby Club]] in [[Gateon Port]]. He is upstairs, straight to the rear of the club (not the ones backstage) and standing near the bartender. He looks like a boat captain. He is present after starting the events in [[Pyrite Town]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! It couldn&#039;t possibly get to like you more. This is wonderful!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you very much. Your Pokémon seems to be very happy that it&#039;s with you.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a bit. It wants to be pampered by you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s growing friendly toward you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to be used to you yet. You should treat it kindly.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not friendly toward you. The look in its eyes is frightening. You should treat it more kindly.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip; This is awful. It detests you to a degree I hardly ever see. Are you sure you&#039;ll be okay?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Diamond, Pearl, and Platinum=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{cute color light}}|Dr. Footstep}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center&amp;quot; | Refer to [[Dr. Footstep#Friendship levels|Dr. Footstep &amp;amp;rarr; Friendship levels]].&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Pokétch#Friendship Checker|Friendship Checker (Pokétch app)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two large hearts&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two small hearts&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| One small heart&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves towards stylus)&lt;br /&gt;
| 70-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves away from stylus)&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Eterna City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s becoming comfortable around you, I think.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It needs to get used to you more.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |  {{color2|{{sinnoh color light}}|Hearthome City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! Why, I feel like I am intruding!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you. I can tell you treat it kindly.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly to you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. That&#039;s my impression.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s feeling neutral toward you. It&#039;s up to you to change that.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It seems to dislike you a little.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;Oh, my&amp;amp;hellip; I think this one really hasn&#039;t taken too kindly to you.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon HeartGold and SoulSilver=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 149-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 51-148&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-50&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Black and White=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Nacrene City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you! It must be happy with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may still take some time.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Black 2 and White 2=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{white color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{white color light}}|Bianca}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What great friends you are! It&#039;s so nice how you trust each other! It makes me kinda jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You two sure get along great! It looks like you are having fun together! You seem bright and cheerful!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You seem really close! You look so, so happy! It&#039;s enough to make me happy too!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You&#039;re starting to get to be friends. Just maybe, walking along the same path has made you understand one another.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You still have room for improvement. How nice! I mean, you can become even better friends!&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You aren&#039;t getting along, are you? It&#039;s glaring at you with a look that&#039;s kinda scary.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;You aren&#039;t getting along, are you? It doesn&#039;t look like it&#039;s having fun even when you&#039;re together.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon X and Y=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Santalune City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Very connected to each other! That&#039;s what it looks like to me!&amp;quot;&lt;br /&gt;
|120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Just getting to know each other… Yes, I think that&#039;s how I&#039;d put it.&amp;quot;&lt;br /&gt;
|70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Capable of understanding each other much more than now. Look forward to that, OK?&amp;quot;&lt;br /&gt;
|0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Laverre City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s amazingly friendly toward you! It must be so happy spending every day with you!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must really like your &amp;lt;Pokémon&amp;gt; and always keep it by your side!&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Well, I think you and &amp;lt;Pokémon&amp;gt; will be an even greater combo someday!&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip;I think you have a lot of time ahead of you to get to know one another better.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Don&#039;t tell me! Are you just letting it get knocked out in Pokémon battles?!&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;What&#039;s this? Are you a disciplinarian? Or do you plan to use the move Frustration?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Omega Ruby and Alpha Sapphire=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s extremely friendly toward you. It couldn&#039;t possibly love you more. It&#039;s a pleasure to see!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It&#039;s obviously friendly toward you.&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly toward you. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has a scary look in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say… Your Pokémon simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
|0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s clearly very friendly toward you. A Pokémon that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It&#039;s not bad, but it’s also not good. You, as the Trainer, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening Pokémon like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Sun, Moon, Ultra Sun, and Ultra Moon=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;My! It feels incredibly close to you! Nothing makes it happier than being with you!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|-style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You clearly love your &amp;lt;Pokémon&amp;gt;, and you must spend a lot of time together.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hm. I&#039;d say that you and &amp;lt;Pokémon&amp;gt; have the potential to be an even greater combo.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm. I think…it feels friendly toward you. At least a little…&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm… I&#039;d say that you and your Pokémon still have a long way to go.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What is going on here? Do you let it get knocked out a lot in battles or something? This is bad.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Oh dear. You must be a merciless Trainer… Do you use Frustration or just not know better?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Pokémon Sword and Shield=====&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}};&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | Hammerlocke quote&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | {{color2|000|Pokémon Camp|Camp}} hearts&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | Battle visual effect&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}};&amp;quot; | Friendship&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;You&#039;re best buddies! That Best Friends Ribbon looks really good on you!&amp;quot;&lt;br /&gt;
| 5&lt;br /&gt;
| Hops and slightly turns&lt;br /&gt;
|255&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;You two are almost best friends! I can see you really care about each other!&amp;quot;&lt;br /&gt;
| 4&lt;br /&gt;
| Hops&lt;br /&gt;
|220-254&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;You two get along great! Together is always better—am I right?&amp;quot;&lt;br /&gt;
| 3&lt;br /&gt;
| Wiggles&lt;br /&gt;
|180-219&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;Seems like you&#039;re pretty good friends! Still, I bet you could become even closer!&amp;quot;&lt;br /&gt;
| 2&lt;br /&gt;
| rowspan=5 | &#039;&#039;none&#039;&#039;&lt;br /&gt;
|130-179&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;Wow, I think you&#039;re on your way to becoming real good friends!&amp;quot;&lt;br /&gt;
| 1&lt;br /&gt;
|80-129&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;Seems like it likes you an average amount! Don&#039;t worry—you two will get closer as time passes!&amp;quot;&lt;br /&gt;
| rowspan=3 | 0&lt;br /&gt;
|30-79&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;I guess you two just met? It&#039;s still getting used to things.&amp;quot;&lt;br /&gt;
|1-29&lt;br /&gt;
|-&lt;br /&gt;
| &amp;quot;Maybe you&#039;re a bit too strict? It doesn&#039;t seem like you&#039;re friends at all...&amp;quot;&lt;br /&gt;
|0&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Misconceptions===&lt;br /&gt;
Although frequently reported to the contrary, the following factors do &#039;&#039;not&#039;&#039; affect friendship&lt;br /&gt;
====Generation I====&lt;br /&gt;
* Trying to release the starter Pikachu&lt;br /&gt;
* Trying to evolve the starter Pikachu with a Thunder Stone&lt;br /&gt;
* Battling against an [[Elite Four]] member or the [[Pokémon Champion|Champion]]&lt;br /&gt;
&lt;br /&gt;
====Generation II onwards====&lt;br /&gt;
* Depositing a {{OBP|Pokémon|species}} in the [[Pokémon Storage System]]&lt;br /&gt;
* Healing a Pokémon with low [[HP]] or with a [[status condition]]&lt;br /&gt;
* Giving a Pokémon an [[Held item|item to hold]] (except the [[Soothe Bell]])&lt;br /&gt;
* [[Evolution|Evolving]] a Pokémon, regardless of method ([[level]] up, [[held item]], or [[Evolution stone]], with the exception of [[Methods of evolution#evolution via trading|trade evolutions]], which reset the Pokémon&#039;s friendship)&lt;br /&gt;
* Using a Pokémon in {{pkmn|battle}}&lt;br /&gt;
* Winning battles with a Pokémon&lt;br /&gt;
* Letting a Pokémon&#039;s HP fall to critical status&lt;br /&gt;
* Letting the {{player}}&#039;s Pokémon get a status condition like {{status|paralysis}}&lt;br /&gt;
* Walking when the player&#039;s Pokémon has a status condition&lt;br /&gt;
* Increasing [[Affection]]&lt;br /&gt;
&lt;br /&gt;
==In spin-off games==&lt;br /&gt;
{{incomplete|section|Pokémon Pikachu and Pokémon Pikachu 2 GS}}&lt;br /&gt;
===Pokémon Ranger: Shadows of Almia===&lt;br /&gt;
[[File:Happy Mood SoA.png|frame|Two {{OBP|Pokémon|species}} in a &#039;&#039;Happy Mood&#039;&#039;]]&lt;br /&gt;
Friendship also has an effect in the second game of the [[Pokémon Ranger]] series. {{ra|Partner Pokémon}} can have the condition of &#039;&#039;Fine&#039;&#039;, &#039;&#039;Happy&#039;&#039;, or &#039;&#039;Very Happy&#039;&#039;. When it is in a &#039;&#039;Happy Mood&#039;&#039;, black musical notes appear to come out of it. Multicolored musical notes come out when it is &#039;&#039;Very Happy&#039;&#039;. This may happen whether or not it is with the {{player}}. This state of mind increases the speed the Partner Gauge fills up due to more Partner Energy being provided.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Pinball: Ruby &amp;amp; Sapphire===&lt;br /&gt;
{{incomplete|section|How the player obtains heart symbols}}&lt;br /&gt;
In [[Pokémon Pinball: Ruby &amp;amp; Sapphire]], the player gets three friendship heart symbols in order to evolve any of the following Pokémon, which would normally evolve by friendship in the [[core series]] games.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;background:#{{cute color light}}; border:5px solid #{{cute color}}&amp;quot;&lt;br /&gt;
! Evolves from !! Evolves into&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Golbat}}&lt;br /&gt;
| {{p|Crobat}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Pichu}}&lt;br /&gt;
| {{p|Pikachu}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Igglybuff}}&lt;br /&gt;
| {{p|Jigglypuff}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Azurill}}&lt;br /&gt;
| {{p|Marill}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Gallery====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color light}}; width:80px; height:20px&amp;quot; | [[File:Pinball RS Friendship.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Friendship sprite&amp;lt;br/&amp;gt;from {{color2|000|Pokémon Pinball: Ruby &amp;amp; Sapphire|Pinball: Ruby &amp;amp; Sapphire}}&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Ash and Pikachu.png|thumb|250px|Ash and Pikachu]]&lt;br /&gt;
In the {{pkmn|anime}}, the bond between {{pkmn|Trainer}}s and their {{OBP|Pokémon|species}} has been a theme since [[EP001|the first episode]], in which {{Ash}} had trouble to form a friendship with his newly obtained {{AP|Pikachu}}. After risking his own safety to protect his [[starter Pokémon]] from a flock of angry {{p|Spearow}}, Ash earned Pikachu&#039;s trust, and the two have been inseparable ever since.&lt;br /&gt;
&lt;br /&gt;
Pokémon that have friendly relationships with their Trainers are said to perform better in {{pkmn|battle}}s. Ash believes that befriending a Pokémon will make it grow stronger, and he treats {{cat|Ash&#039;s Pokémon|all his Pokémon}} with utmost care and respect. However, over the course of the series, some Trainers have been shown to focus on raw strength alone, disregarding their Pokémon&#039;s feelings and well being. Examples include [[Paul]] and [[Cross]].&lt;br /&gt;
&lt;br /&gt;
Aside from regular battles, friendship is valued in [[Pokémon Contest]]s, since the level of cooperation between {{pkmn|Coordinator}} and Pokémon is observed by the [[Contest Judge|panel of judges]] during the [[Appeal|Performance Stage]]. Additionally, in the [[Contest Battle|Battle Stage]], Coordinators are expected to be in synchronicity with their Pokémon the entire time. In &#039;&#039;[[AG078|Cruisin&#039; for a Losin&#039;]]&#039;&#039;, the Director of the {{pkmn|Activities Committee|Contest Committee}}, [[Raoul Contesta|Mr. Contesta]], stated that a Pokémon&#039;s well being must be the number one priority of a Coordinator.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP075|Our Cup Runneth Over!]]&#039;&#039;, Contest Master [[Wallace]] stressed out the importance of kinship. He also said that playing with Pokémon can help Trainers and Coordinators in learning how to bring out the potential of their Pokémon. In addition to enhancing a Pokémon&#039;s appearance, {{pkmn|groomer|Pokémon grooming}} is said to make them happier. Trainers who devote themselves to the development of techniques that improve a Pokémon&#039;s health and happiness are known as {{tc|Pokémon Breeder}}s. There are also people who study to become [[Pokémon Connoisseur]]s in order to be able to identify the compatibility between Trainers and Pokémon, and then offer advice on how to strengthen their friendship.&lt;br /&gt;
&lt;br /&gt;
Just like in the {{pkmn|games}}, friendship affects the [[power]] of {{m|Frustration}}. This was shown in &#039;&#039;[[AG175|Going for Choke!]]&#039;&#039;, in which [[Harley]]&#039;s {{p|Banette}} received a boost while using the [[move]] under the command of [[Jessie]], a Trainer it does not like. Although the concept of {{cat|Pokémon that evolve by friendship|Evolution by friendship}} has not been addressed directly, the [[Soothe Bell]] has appeared in the anime. In &#039;&#039;[[Pokémon the Series: XY]]&#039;&#039;, the friendship between Ash and his {{AP|Greninja}} triggered a temporary transformation known as [[Bond Phenomenon]].&lt;br /&gt;
&lt;br /&gt;
In contrast with the games, where a Pokémon of a certain [[level]] will only obey its Trainer if the trainer possesses specific achievements, disobedient Pokémon in the anime will gain respect for their Trainers after realizing how far the Trainer is willing to go to befriend, protect, and care for the Pokémon.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{cute color light}}|bordercolor={{cute color dark}}&lt;br /&gt;
|zh_yue=親密度 &#039;&#039;{{tt|Chānmahtdouh|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|zh_cmn=親密度 / 亲密度 &#039;&#039;{{tt|Qīnmìdù|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|fi=Ystävyys&lt;br /&gt;
|fr=Amitié&lt;br /&gt;
|de=Zuneigung&amp;lt;br&amp;gt;Freundschaft&lt;br /&gt;
|it=Affetto&lt;br /&gt;
|ko=친밀도 &#039;&#039;Chinmildo&#039;&#039;&lt;br /&gt;
|pl=Przyjaźń&lt;br /&gt;
|pt_br=Amizade&lt;br /&gt;
|pt_eu=Amizade{{tt|*|Manuals}} &lt;br /&gt;
|es=Amistad&lt;br /&gt;
|vi = Độ thân thiết&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Pokémon by base friendship]]&lt;br /&gt;
*[[Affection]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://www.gamefaqs.com/gbc/198308-pokemon-gold-version/faqs/11568 GameFAQs: Pokemon Gold Version (GBC) Happiness Points FAQ by IDeLucas]&lt;br /&gt;
* [http://web.archive.org/web/20070830225419/http://www.gamefaqs.com/portable/ds/file/925601/48344 Generation IV Friendship FAQ by Ruimound]&lt;br /&gt;
* [http://www.psypokes.com/gsc/happiness.php Pokemon Gold, Silver and Crystal :: Happiness Guide]&lt;br /&gt;
{{Pokémon individuality|cute}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
[[Category:Terminology]]&lt;br /&gt;
&lt;br /&gt;
[[de:Freundschaft]]&lt;br /&gt;
[[es:Amistad]]&lt;br /&gt;
[[fr:Bonheur]]&lt;br /&gt;
[[it:Affetto]]&lt;br /&gt;
[[ja:なつき度]]&lt;br /&gt;
[[zh:亲密度]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342325</id>
		<title>Talk:List of Pokémon by wild held item</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342325"/>
		<updated>2021-03-20T17:56:26Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Electrizer and Magmarizer */ Urgent error correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Vulpix==&lt;br /&gt;
Vulpix hold a Ice Berry in gen 2 with 33% not with 5 or 50, and in FireRed &amp;amp; LeafGreen it holds a Rawst Berry with an other rate tenn in the other gen 3 games ... how do we make this? --[[User:Hanmac|Hanmac]] 07:32, 18 January 2010 (UTC)&lt;br /&gt;
:Thiiiiis is why I need a list off the bat. Urgh. &#039;&#039;&#039;[[User:TTEchidna|&amp;lt;span style=&amp;quot;color:#DAA520&amp;quot;&amp;gt;&#039;&#039;TTE&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:TTEchidna|&amp;lt;span style=&amp;quot;color:#C0C0C0&amp;quot;&amp;gt;chidna&amp;lt;/span&amp;gt;]]&#039;&#039;&#039; 07:52, 18 January 2010 (UTC)&lt;br /&gt;
::its possible that the infos are wrong, i think that the % in gen II is not only 5 or 50, some is it 8%, what sould we do?? --[[User:Hanmac|Hanmac]] 08:31, 18 January 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Electrizer and Magmarizer==&lt;br /&gt;
Can someone fix the percentages for the Electrizer and Magmarizer for the Elekid and Magby family lines in GEN 4? I checked and they are definitely 5%, not 50%. I can&#039;t edit this table properly it&#039;s a mess. --[[User:Map233224|Map233224]] 17:55, 20 March 2021 (UTC)&lt;br /&gt;
we need a diffrent note for gen IV for 5% and 50% for Electrizer and Magmarizer.  --[[User:Hanmac|Hanmac]] 08:31, 18 January 2010 (UTC)&lt;br /&gt;
:List me all the wild held items across all four gens, I&#039;ll fix the table... &#039;&#039;&#039;[[User:TTEchidna|&amp;lt;span style=&amp;quot;color:#DAA520&amp;quot;&amp;gt;&#039;&#039;TTE&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:TTEchidna|&amp;lt;span style=&amp;quot;color:#C0C0C0&amp;quot;&amp;gt;chidna&amp;lt;/span&amp;gt;]]&#039;&#039;&#039; 10:04, 21 January 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Generation I items==&lt;br /&gt;
Do we need to include Pokémon that only have a held item from Gen I to Gen II trading? If so, that&#039;s almost the entirety of the the original 151 right off the bat. - &lt;br /&gt;
&#039;&#039;[[User:Chosen|&amp;lt;span style=&amp;quot;color:#F85888&amp;quot;&amp;gt;Chosen&amp;lt;/span&amp;gt;]] &amp;lt;span style=&amp;quot;color:#6890F0&amp;quot;&amp;gt;of&amp;lt;/span&amp;gt; [[User talk:Chosen|&amp;lt;span style=&amp;quot;color:#F8D030&amp;quot;&amp;gt;Mana&amp;lt;/span&amp;gt;]]&#039;&#039; [[User:Chosen|-]] 19:58, 21 January 2010 (UTC)&lt;br /&gt;
:Correction. That IS the entirety of the original 151 right off the bat. [[User:Ht14|&amp;lt;span style=&amp;quot;color:#B69E00&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;&#039;&#039;&#039;&#039;&#039;ht&#039;&#039;&#039;&#039;&#039;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Ht14|&amp;lt;span style=&amp;quot;color:#E1E1E1&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&#039;&#039;14&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;]] 19:32, 28 January 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I did a spot check of Gen I/II Pokémon and found held rates at 5%, 8%, 25%, 33%, and 100%. There were a few Gen I held rates at 33% instead of 100% too. [[User:Dragoness|Dragoness]] 09:36, 9 February 2010 (UTC)&lt;br /&gt;
:Okay so Gen I/II has 5 different slots, III/IV has two different slots. That right? &#039;&#039;&#039;[[User:TTEchidna|&amp;lt;span style=&amp;quot;color:#80964B&amp;quot;&amp;gt;&#039;&#039;TTE&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:TTEchidna|&amp;lt;span style=&amp;quot;color:#C4E673&amp;quot;&amp;gt;chidna&amp;lt;/span&amp;gt;]]&#039;&#039;&#039; 22:23, 12 February 2010 (UTC)&lt;br /&gt;
::Not quite — Gen II also has only two slots. Items which appear when traded from RBY are a little trickier, and i don&#039;t fully understand how they work, but the item you receive is based on the catch rate of the Pokémon in RBY. UPC has a [http://upokecenter.com/games/gs/attachments.php handy list]. --[[User:A magical me|a_magical_me]] 22:48, 12 February 2010 (UTC)&lt;br /&gt;
:::So how should we handle this? This is very inaccurate now... [[User:Ht14|&amp;lt;span style=&amp;quot;color:#FF1111&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;&#039;&#039;&#039;&#039;&#039;ht&#039;&#039;&#039;&#039;&#039;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Ht14|&amp;lt;span style=&amp;quot;color:#DAA520&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&#039;&#039;14&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;]] 12:51, 26 February 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Berserk Gene==&lt;br /&gt;
I was fooling around with a gameshark and found that in generation 2 if a wild Mewtwo is made to appear it has a chance to be holding a berserk gene, which it uses immediately when encountered. It very rarely had this item so I would assume it is 5%... Does anyone know of a way to confirm this? [[User:Nokota|Nokota]] 14:57, 2 June 2011 (UTC)&lt;br /&gt;
:It seems it&#039;s actually already listed in the tables beneath. As such, it should be confirmed already as a held item, just somehow got forgotten...? [[User:Bluesun|Bluesun]] 16:30, 2 June 2011 (UTC) &lt;br /&gt;
&lt;br /&gt;
== Gen III Wild Held Items ==&lt;br /&gt;
&lt;br /&gt;
Here they are (for anyone interested):&lt;br /&gt;
&lt;br /&gt;
--[[User:A magical me|a_magical_me]] 19:11, 8 February 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== Ruby/Sapphire/Emerald ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;overflow: auto; height: 20em&amp;quot;&amp;gt;&lt;br /&gt;
#pokemon,item,chance&lt;br /&gt;
Butterfree,SilverPowder,5%&lt;br /&gt;
Beedrill,Poison Barb,5%&lt;br /&gt;
Fearow,Sharp Beak,5%&lt;br /&gt;
Pikachu,Oran Berry,50%&lt;br /&gt;
Pikachu,Light Ball,5%&lt;br /&gt;
Raichu,Oran Berry,5%&lt;br /&gt;
Sandshrew,Quick Claw,5%&lt;br /&gt;
Sandslash,Quick Claw,5%&lt;br /&gt;
Clefairy,Leppa Berry,50%&lt;br /&gt;
Clefairy,Moon Stone,5%&lt;br /&gt;
Clefable,Leppa Berry,50%&lt;br /&gt;
Clefable,Moon Stone,5%&lt;br /&gt;
Vulpix,Rawst Berry,100%&lt;br /&gt;
Ninetales,Rawst Berry,100%&lt;br /&gt;
Paras,TinyMushroom,50%&lt;br /&gt;
Paras,Big Mushroom,5%&lt;br /&gt;
Parasect,TinyMushroom,50%&lt;br /&gt;
Parasect,Big Mushroom,5%&lt;br /&gt;
Growlithe,Rawst Berry,100%&lt;br /&gt;
Arcanine,Rawst Berry,100%&lt;br /&gt;
Poliwhirl,King&#039;s Rock,5%&lt;br /&gt;
Poliwrath,King&#039;s Rock,5%&lt;br /&gt;
Abra,TwistedSpoon,5%&lt;br /&gt;
Kadabra,TwistedSpoon,5%&lt;br /&gt;
Alakazam,TwistedSpoon,5%&lt;br /&gt;
Geodude,Everstone,5%&lt;br /&gt;
Graveler,Everstone,5%&lt;br /&gt;
Golem,Everstone,5%&lt;br /&gt;
Slowpoke,King&#039;s Rock,5%&lt;br /&gt;
Slowbro,King&#039;s Rock,5%&lt;br /&gt;
Magnemite,Metal Coat,5%&lt;br /&gt;
Magneton,Metal Coat,5%&lt;br /&gt;
Farfetch&#039;d,Stick,5%&lt;br /&gt;
Doduo,Sharp Beak,5%&lt;br /&gt;
Dodrio,Sharp Beak,5%&lt;br /&gt;
Grimer,Nugget,5%&lt;br /&gt;
Muk,Nugget,5%&lt;br /&gt;
Shellder,Pearl,50%&lt;br /&gt;
Shellder,Big Pearl,5%&lt;br /&gt;
Cloyster,Pearl,50%&lt;br /&gt;
Cloyster,Big Pearl,5%&lt;br /&gt;
Cubone,Thick Club,5%&lt;br /&gt;
Marowak,Thick Club,5%&lt;br /&gt;
Koffing,Smoke Ball,5%&lt;br /&gt;
Weezing,Smoke Ball,5%&lt;br /&gt;
Chansey,Lucky Egg,5%&lt;br /&gt;
Horsea,Dragon Scale,5%&lt;br /&gt;
Seadra,Dragon Scale,5%&lt;br /&gt;
Staryu,Stardust,50%&lt;br /&gt;
Staryu,Star Piece,5%&lt;br /&gt;
Starmie,Stardust,50%&lt;br /&gt;
Starmie,Star Piece,5%&lt;br /&gt;
Mr.Mime,Leppa Berry,5%&lt;br /&gt;
Jynx,Aspear Berry,100%&lt;br /&gt;
Magmar,Rawst Berry,100%&lt;br /&gt;
Ditto,Metal Powder,5%&lt;br /&gt;
Snorlax,Leftovers,100%&lt;br /&gt;
Dratini,Dragon Scale,5%&lt;br /&gt;
Dragonair,Dragon Scale,5%&lt;br /&gt;
Dragonite,Dragon Scale,5%&lt;br /&gt;
Mew,Lum Berry,100%&lt;br /&gt;
Sentret,Oran Berry,5%&lt;br /&gt;
Furret,Oran Berry,50%&lt;br /&gt;
Furret,Sitrus Berry,5%&lt;br /&gt;
Chinchou,Yellow Shard,5%&lt;br /&gt;
Lanturn,Yellow Shard,5%&lt;br /&gt;
Pichu,Oran Berry,5%&lt;br /&gt;
Cleffa,Leppa Berry,50%&lt;br /&gt;
Cleffa,Moon Stone,5%&lt;br /&gt;
Politoed,King&#039;s Rock,5%&lt;br /&gt;
Slowking,King&#039;s Rock,5%&lt;br /&gt;
Misdreavus,Spell Tag,5%&lt;br /&gt;
Girafarig,Persim Berry,5%&lt;br /&gt;
Steelix,Metal Coat,5%&lt;br /&gt;
Shuckle,Oran Berry,100%&lt;br /&gt;
Sneasel,Quick Claw,5%&lt;br /&gt;
Corsola,Red Shard,5%&lt;br /&gt;
Kingdra,Dragon Scale,5%&lt;br /&gt;
Smoochum,Aspear Berry,100%&lt;br /&gt;
Magby,Rawst Berry,100%&lt;br /&gt;
Miltank,MooMoo Milk,100%&lt;br /&gt;
Blissey,Lucky Egg,5%&lt;br /&gt;
Ho-oh,Sacred Ash,100%&lt;br /&gt;
Celebi,Lum Berry,100%&lt;br /&gt;
Poochyena,Pecha Berry,5%&lt;br /&gt;
Mightyena,Pecha Berry,5%&lt;br /&gt;
Zigzagoon,Oran Berry,5%&lt;br /&gt;
Linoone,Oran Berry,50%&lt;br /&gt;
Linoone,Sitrus Berry,5%&lt;br /&gt;
Beautifly,SilverPowder,5%&lt;br /&gt;
Dustox,SilverPowder,5%&lt;br /&gt;
Spinda,Chesto Berry,5%&lt;br /&gt;
Masquerain,SilverPowder,5%&lt;br /&gt;
Skitty,Leppa Berry,5%&lt;br /&gt;
Delcatty,Leppa Berry,5%&lt;br /&gt;
Kecleon,Persim Berry,5%&lt;br /&gt;
Luvdisc,Heart Scale,50%&lt;br /&gt;
Trapinch,Soft Sand,5%&lt;br /&gt;
Hariyama,King&#039;s Rock,5%&lt;br /&gt;
Numel,Rawst Berry,100%&lt;br /&gt;
Camerupt,Rawst Berry,100%&lt;br /&gt;
Cacnea,Poison Barb,5%&lt;br /&gt;
Cacturne,Poison Barb,5%&lt;br /&gt;
Glalie,NeverMeltIce,5%&lt;br /&gt;
Lunatone,Moon Stone,5%&lt;br /&gt;
Solrock,Sun Stone,5%&lt;br /&gt;
Duskull,Spell Tag,5%&lt;br /&gt;
Dusclops,Spell Tag,5%&lt;br /&gt;
Roselia,Poison Barb,5%&lt;br /&gt;
Gulpin,Big Pearl,5%&lt;br /&gt;
Swalot,Big Pearl,5%&lt;br /&gt;
Whismur,Chesto Berry,5%&lt;br /&gt;
Loudred,Chesto Berry,5%&lt;br /&gt;
Exploud,Chesto Berry,5%&lt;br /&gt;
Clamperl,Blue Shard,5%&lt;br /&gt;
Shuppet,Spell Tag,5%&lt;br /&gt;
Banette,Spell Tag,5%&lt;br /&gt;
Relicanth,Green Shard,5%&lt;br /&gt;
Aron,Hard Stone,5%&lt;br /&gt;
Lairon,Hard Stone,5%&lt;br /&gt;
Aggron,Hard Stone,5%&lt;br /&gt;
Castform,Mystic Water,100%&lt;br /&gt;
Bagon,Dragon Scale,5%&lt;br /&gt;
Shelgon,Dragon Scale,5%&lt;br /&gt;
Salamence,Dragon Scale,5%&lt;br /&gt;
Beldum,Metal Coat,5%&lt;br /&gt;
Metang,Metal Coat,5%&lt;br /&gt;
Metagross,Metal Coat,5%&lt;br /&gt;
Jirachi,Star Piece,100%&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== FireRed/LeafGreen ===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;overflow: auto; height: 20em&amp;quot;&amp;gt;&lt;br /&gt;
#pokemon,item,chance&lt;br /&gt;
Butterfree,SilverPowder,5%&lt;br /&gt;
Beedrill,Poison Barb,5%&lt;br /&gt;
Raticate,Oran Berry,50%&lt;br /&gt;
Raticate,Sitrus Berry,5%&lt;br /&gt;
Fearow,Sharp Beak,5%&lt;br /&gt;
Arbok,Poison Barb,5%&lt;br /&gt;
Sandslash,Soft Sand,5%&lt;br /&gt;
Clefairy,Moon Stone,5%&lt;br /&gt;
Clefable,Moon Stone,5%&lt;br /&gt;
Vulpix,Rawst Berry,50%&lt;br /&gt;
Ninetales,Rawst Berry,50%&lt;br /&gt;
Jigglypuff,Oran Berry,50%&lt;br /&gt;
Wigglytuff,Oran Berry,50%&lt;br /&gt;
Paras,TinyMushroom,50%&lt;br /&gt;
Paras,Big Mushroom,5%&lt;br /&gt;
Parasect,TinyMushroom,50%&lt;br /&gt;
Parasect,Big Mushroom,5%&lt;br /&gt;
Venomoth,SilverPowder,5%&lt;br /&gt;
Meowth,Nugget,5%&lt;br /&gt;
Growlithe,Rawst Berry,50%&lt;br /&gt;
Arcanine,Rawst Berry,50%&lt;br /&gt;
Abra,TwistedSpoon,5%&lt;br /&gt;
Kadabra,TwistedSpoon,5%&lt;br /&gt;
Alakazam,TwistedSpoon,5%&lt;br /&gt;
Machoke,Focus Band,5%&lt;br /&gt;
Machamp,Focus Band,5%&lt;br /&gt;
Graveler,Hard Stone,5%&lt;br /&gt;
Golem,Hard Stone,5%&lt;br /&gt;
Magneton,Magnet,5%&lt;br /&gt;
Farfetch&#039;d,Stick,5%&lt;br /&gt;
Dodrio,Sharp Beak,5%&lt;br /&gt;
Seel,Aspear Berry,50%&lt;br /&gt;
Dewgong,Aspear Berry,50%&lt;br /&gt;
Dewgong,NeverMeltIce,5%&lt;br /&gt;
Shellder,Pearl,50%&lt;br /&gt;
Shellder,Big Pearl,5%&lt;br /&gt;
Cloyster,Pearl,50%&lt;br /&gt;
Cloyster,Big Pearl,5%&lt;br /&gt;
Haunter,Spell Tag,5%&lt;br /&gt;
Gengar,Spell Tag,5%&lt;br /&gt;
Onix,Hard Stone,5%&lt;br /&gt;
Cubone,Thick Club,5%&lt;br /&gt;
Marowak,Thick Club,5%&lt;br /&gt;
Chansey,Lucky Egg,5%&lt;br /&gt;
Staryu,Stardust,50%&lt;br /&gt;
Staryu,Star Piece,5%&lt;br /&gt;
Starmie,Stardust,50%&lt;br /&gt;
Starmie,Star Piece,5%&lt;br /&gt;
Ditto,Metal Powder,5%&lt;br /&gt;
Snorlax,Chesto Berry,100%&lt;br /&gt;
Dragonair,Dragon Fang,5%&lt;br /&gt;
Dragonite,Dragon Fang,5%&lt;br /&gt;
Chikorita,Lum Berry,100%&lt;br /&gt;
Sentret,Oran Berry,5%&lt;br /&gt;
Furret,Oran Berry,50%&lt;br /&gt;
Furret,Sitrus Berry,5%&lt;br /&gt;
Chinchou,Yellow Shard,5%&lt;br /&gt;
Lanturn,Yellow Shard,5%&lt;br /&gt;
Cleffa,Moon Stone,5%&lt;br /&gt;
Igglybuff,Oran Berry,50%&lt;br /&gt;
Politoed,King&#039;s Rock,5%&lt;br /&gt;
Slowking,King&#039;s Rock,5%&lt;br /&gt;
Misdreavus,Spell Tag,5%&lt;br /&gt;
Girafarig,Persim Berry,5%&lt;br /&gt;
Steelix,Metal Coat,5%&lt;br /&gt;
Shuckle,Berry Juice,100%&lt;br /&gt;
Teddiursa,Oran Berry,50%&lt;br /&gt;
Teddiursa,Sitrus Berry,5%&lt;br /&gt;
Ursaring,Oran Berry,50%&lt;br /&gt;
Ursaring,Sitrus Berry,5%&lt;br /&gt;
Swinub,Aspear Berry,50%&lt;br /&gt;
Piloswine,Aspear Berry,50%&lt;br /&gt;
Piloswine,NeverMeltIce,5%&lt;br /&gt;
Corsola,Red Shard,5%&lt;br /&gt;
Skarmory,Sharp Beak,5%&lt;br /&gt;
Kingdra,Dragon Scale,5%&lt;br /&gt;
Porygon2,Up-Grade,100%&lt;br /&gt;
Miltank,MooMoo Milk,100%&lt;br /&gt;
Blissey,Lucky Egg,5%&lt;br /&gt;
Celebi,Lum Berry,100%&lt;br /&gt;
Poochyena,Pecha Berry,5%&lt;br /&gt;
Mightyena,Pecha Berry,5%&lt;br /&gt;
Zigzagoon,Oran Berry,5%&lt;br /&gt;
Linoone,Oran Berry,50%&lt;br /&gt;
Linoone,Sitrus Berry,5%&lt;br /&gt;
Beautifly,SilverPowder,5%&lt;br /&gt;
Dustox,SilverPowder,5%&lt;br /&gt;
Spinda,Chesto Berry,5%&lt;br /&gt;
Masquerain,SilverPowder,5%&lt;br /&gt;
Skitty,Leppa Berry,5%&lt;br /&gt;
Delcatty,Leppa Berry,5%&lt;br /&gt;
Kecleon,Persim Berry,5%&lt;br /&gt;
Luvdisc,Heart Scale,50%&lt;br /&gt;
Trapinch,Soft Sand,5%&lt;br /&gt;
Hariyama,King&#039;s Rock,5%&lt;br /&gt;
Numel,Rawst Berry,100%&lt;br /&gt;
Camerupt,Rawst Berry,100%&lt;br /&gt;
Cacnea,Poison Barb,5%&lt;br /&gt;
Cacturne,Poison Barb,5%&lt;br /&gt;
Glalie,NeverMeltIce,5%&lt;br /&gt;
Lunatone,Moon Stone,5%&lt;br /&gt;
Solrock,Sun Stone,5%&lt;br /&gt;
Duskull,Spell Tag,5%&lt;br /&gt;
Dusclops,Spell Tag,5%&lt;br /&gt;
Roselia,Poison Barb,5%&lt;br /&gt;
Gulpin,Big Pearl,5%&lt;br /&gt;
Swalot,Big Pearl,5%&lt;br /&gt;
Whismur,Chesto Berry,5%&lt;br /&gt;
Loudred,Chesto Berry,5%&lt;br /&gt;
Exploud,Chesto Berry,5%&lt;br /&gt;
Clamperl,Blue Shard,5%&lt;br /&gt;
Shuppet,Spell Tag,5%&lt;br /&gt;
Banette,Spell Tag,5%&lt;br /&gt;
Relicanth,Green Shard,5%&lt;br /&gt;
Aron,Hard Stone,5%&lt;br /&gt;
Lairon,Hard Stone,5%&lt;br /&gt;
Aggron,Hard Stone,5%&lt;br /&gt;
Castform,Mystic Water,100%&lt;br /&gt;
Bagon,Dragon Scale,5%&lt;br /&gt;
Shelgon,Dragon Scale,5%&lt;br /&gt;
Salamence,Dragon Scale,5%&lt;br /&gt;
Beldum,Metal Coat,5%&lt;br /&gt;
Metang,Metal Coat,5%&lt;br /&gt;
Metagross,Metal Coat,5%&lt;br /&gt;
Jirachi,Star Piece,100%&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Gen II Wild Held Items ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;height: 15em; overflow: auto;&amp;quot;&amp;gt;&lt;br /&gt;
#pokemon,item 0,item 1&lt;br /&gt;
Butterfree,,SilverPowder&lt;br /&gt;
Beedrill,,Poison Barb&lt;br /&gt;
Fearow,,Sharp Beak&lt;br /&gt;
Pikachu,,Berry&lt;br /&gt;
Raichu,,Berry&lt;br /&gt;
Clefairy,MysteryBerry,Moon Stone&lt;br /&gt;
Clefable,MysteryBerry,Moon Stone&lt;br /&gt;
Vulpix,Burnt Berry,Burnt Berry&lt;br /&gt;
Ninetales,Burnt Berry,Burnt Berry&lt;br /&gt;
Paras,TinyMushroom,Big Mushroom&lt;br /&gt;
Parasect,TinyMushroom,Big Mushroom&lt;br /&gt;
Growlithe,Burnt Berry,Burnt Berry&lt;br /&gt;
Arcanine,Burnt Berry,Burnt Berry&lt;br /&gt;
Poliwhirl,,King&#039;s Rock&lt;br /&gt;
Poliwrath,,King&#039;s Rock&lt;br /&gt;
Geodude,,Everstone&lt;br /&gt;
Graveler,,Everstone&lt;br /&gt;
Golem,,Everstone&lt;br /&gt;
Slowpoke,,King&#039;s Rock&lt;br /&gt;
Slowbro,,King&#039;s Rock&lt;br /&gt;
Magnemite,,Metal Coat&lt;br /&gt;
Magneton,,Metal Coat&lt;br /&gt;
Farfetch&#039;d,,Stick&lt;br /&gt;
Dodrio,,Sharp Beak&lt;br /&gt;
Grimer,,Nugget&lt;br /&gt;
Muk,,Nugget&lt;br /&gt;
Shellder,Pearl,Big Pearl&lt;br /&gt;
Cloyster,Pearl,Big Pearl&lt;br /&gt;
Cubone,,Thick Club&lt;br /&gt;
Marowak,,Thick Club&lt;br /&gt;
Chansey,,Lucky Egg&lt;br /&gt;
Horsea,,Dragon Scale&lt;br /&gt;
Seadra,,Dragon Scale&lt;br /&gt;
Staryu,Stardust,Star Piece&lt;br /&gt;
Starmie,Stardust,Star Piece&lt;br /&gt;
Mr.Mime,,MysteryBerry&lt;br /&gt;
Jynx,Ice Berry,Ice Berry&lt;br /&gt;
Magmar,Burnt Berry,Burnt Berry&lt;br /&gt;
Snorlax,Leftovers,Leftovers&lt;br /&gt;
Dratini,,Dragon Scale&lt;br /&gt;
Dragonair,,Dragon Scale&lt;br /&gt;
Dragonite,,Dragon Scale&lt;br /&gt;
Mewtwo,,Berserk Gene&lt;br /&gt;
Mew,,MiracleBerry&lt;br /&gt;
Sentret,,Berry&lt;br /&gt;
Furret,Berry,Gold Berry&lt;br /&gt;
Pichu,,Berry&lt;br /&gt;
Cleffa,MysteryBerry,Moon Stone&lt;br /&gt;
Politoed,,King&#039;s Rock&lt;br /&gt;
Slowking,,King&#039;s Rock&lt;br /&gt;
Misdreavus,,Spell Tag&lt;br /&gt;
Steelix,,Metal Coat&lt;br /&gt;
Shuckle,Berry,Berry&lt;br /&gt;
Sneasel,,Quick Claw&lt;br /&gt;
Kingdra,,Dragon Scale&lt;br /&gt;
Smoochum,Ice Berry,Ice Berry&lt;br /&gt;
Magby,Burnt Berry,Burnt Berry&lt;br /&gt;
Miltank,Moomoo Milk,Moomoo Milk&lt;br /&gt;
Blissey,,Lucky Egg&lt;br /&gt;
Ho-oh,Sacred Ash,Sacred Ash&lt;br /&gt;
Celebi,,MiracleBerry&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;m not really sure what the exact chances are, so i&#039;m giving the raw item slots. --[[User:A magical me|a_magical_me]] 02:59, 16 February 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Page Revamp? ==&lt;br /&gt;
&lt;br /&gt;
This page has been bothering me for some time. Can we just break the Gen I and Gen II tables off from III, IV, and V (since Gen I and II need more columns and because their mechanics are different, it seems better to just give them their own table)? Then, we can also put a 100% drop chance column... Or something. Plus someone should add the Pokemon I left out from Gen V (they didn&#039;t have any drop items so I didn&#039;t include them). [[User:Gymnotide|Gymnotide]] 18:50, 19 January 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Dream World ==&lt;br /&gt;
Don&#039;t you get wild held items from Dream World? Shouldn&#039;t there be a section on it?--[[User:Wowy|Wowy]] 03:19, 9 February 2011 (UTC)&lt;br /&gt;
:No, that was faulty speculation by Serebii which then perpetrated through the fandom. [[User:Bluesun|Bluesun]] 16:30, 2 June 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wait... ==&lt;br /&gt;
&lt;br /&gt;
If all fields have items, do Pokémon always is holding an item? The article only says about case where is the &#039;&#039;same&#039;&#039; item in all fields. [[User:Marked +-+-+|Marked +-+-+]] 09:04, 10 August 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
PS.Never mind... figured out in-game.  [[User:Marked +-+-+|Marked +-+-+]] 09:11, 10 August 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gen II ==&lt;br /&gt;
&lt;br /&gt;
Well, I&#039;ve now updated the table to include many of the features it previously lacked. However, it seems that our Gen II data is still inaccurate, and at the moment it isn&#039;t even clear to me how many Gen II columns we need, or what the percentages are for each. At the moment, the only 100% item we have is the Sacred Ash for Ho-Oh, but some sources appear to say that Snorlax gets the Leftovers 100% of the time. It seems that the table above doesn&#039;t tell the whole story: the same item in both slots doesn&#039;t automatically mean 100%.&lt;br /&gt;
&lt;br /&gt;
Based on this data, and the linked page from upokecenter, the possible item frequencies would appear to be as follows: 2% (5/256, the slot 1 item), 23% (59/256, the slot 0 item), 25% (64/256, if the same item is in both slots) and 100% (if the same item is in both slots and some other parameter is set). However, this doesn&#039;t quite tally with some of the other evidence gathered above, so I think this needs some further investigation. [[User:Bikini Miltank|Bikini Miltank]] 11:14, 29 August 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== HGSS column ==&lt;br /&gt;
&lt;br /&gt;
Shouldnt HeartGold and SoulSilver have their own column like FRLG do? [[User:Vuvuzela2010|&amp;lt;span style=&amp;quot;color:yellow; background-color:purple&amp;quot;&amp;gt;&#039;&#039;&#039;Vuvuzela2010&#039;&#039;&#039;]]&amp;lt;/span&amp;gt;[[Koffing (Pokémon)|&amp;lt;span style=&amp;quot;color:yellow; background-color:purple&amp;quot;&amp;gt; ☠]]&amp;lt;/span&amp;gt; 12:54, 27 October 2011 (UTC)&lt;br /&gt;
:FRLG have a column because there are a lot of differences between FRLG and RSE; the only differences between DPPt and HGSS are the Magby and Elekid lines and Shuckle. --[[User:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#A70000&amp;quot;&amp;gt;&#039;&#039;&#039;Snorlax&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#0000A7&amp;quot;&amp;gt;&#039;&#039;&#039;Monster&#039;&#039;&#039;&amp;lt;/span&amp;gt;]] 13:02, 27 October 2011 (UTC)&lt;br /&gt;
:: What about Colosseum and XD? I&#039;d imagine they would probably just use the held item data from either RSE or FRLG, so thei could just be added to either the RSE or FRLG header. [[User:Vuvuzela2010|&amp;lt;span style=&amp;quot;color:yellow; background-color:purple&amp;quot;&amp;gt;&#039;&#039;&#039;Vuvuzela2010&#039;&#039;&#039;]]&amp;lt;/span&amp;gt;[[Koffing (Pokémon)|&amp;lt;span style=&amp;quot;color:yellow; background-color:purple&amp;quot;&amp;gt; ☠]]&amp;lt;/span&amp;gt; 13:07, 27 October 2011 (UTC)&lt;br /&gt;
:::If someone can get Colo or XD data, that should be added. --[[User:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#A70000&amp;quot;&amp;gt;&#039;&#039;&#039;Snorlax&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#0000A7&amp;quot;&amp;gt;&#039;&#039;&#039;Monster&#039;&#039;&#039;&amp;lt;/span&amp;gt;]] 13:10, 27 October 2011 (UTC)&lt;br /&gt;
::::According to [http://bulbapedia.bulbagarden.net/wiki/Magnet#Magnet here], Shadow Voltob holds a Magnet in XD, which it doesnt have in any other game. It could just be the Shadow one though. [[User:Vuvuzela2010|&amp;lt;span style=&amp;quot;color:yellow; background-color:purple&amp;quot;&amp;gt;&#039;&#039;&#039;Vuvuzela2010&#039;&#039;&#039;]]&amp;lt;/span&amp;gt;[[Koffing (Pokémon)|&amp;lt;span style=&amp;quot;color:yellow; background-color:purple&amp;quot;&amp;gt; ☠]]&amp;lt;/span&amp;gt; 13:12, 27 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 1% Item ==&lt;br /&gt;
&lt;br /&gt;
In this page there is a list of item that have a 1% of possibility to be found on some Pokémon, for example a Clefairy with a Comet Shard has. But I checked some articles of Pokémon that can be found with a 1% item and the item is never mentioned in the &amp;quot;Held Item table&amp;quot;. NEVER. I&#039;ve actually checked Clefairy, Paras, Lunatone, Dwebble, Garbodour pages (all of them can have a 1% item according to this page), but the item is never mentioned on their articles. So is this article wrong, and there aren&#039;t any 1% item that can be found, or are this item missing in every page of the Pokémon that can have them? --[[User:SamuStar|SamuStar]] 20:17, 21 November 2011 (UTC)&lt;br /&gt;
:I checked some other sites and it looks like the Pokémon pages are just missing the info. [[User:Pikiwyn|&amp;lt;font color=&amp;quot;#d0000d&amp;quot; face=&amp;quot;chiller&amp;quot;&amp;gt;&#039;&#039;&#039;Pikiwyn&#039;&#039;&#039;&amp;lt;/font&amp;gt;]] [[User talk:Pikiwyn|&amp;lt;tt&amp;gt;&amp;lt;sup&amp;gt;&#039;&#039;&#039;&#039;&#039;&amp;lt;font color=&amp;quot;black&amp;quot;&amp;gt;talk&amp;lt;/font&amp;gt;&#039;&#039;&#039;&#039;&#039;&amp;lt;/sup&amp;gt;&amp;lt;/tt&amp;gt;]] 20:26, 21 November 2011 (UTC)&lt;br /&gt;
::Then someone should add the missing info (Not me because I don&#039;t know how) --[[User:SamuStar|SamuStar]] 20:31, 21 November 2011 (UTC)&lt;br /&gt;
:::Yeah the thing is is that the pages already contain the item but it doesn&#039;t show because the Held item template needs to be updated to support 3 items in Black and White. The template uses coding that I don&#039;t know very well, but I&#039;ll try fix it. [[User:Pikiwyn|&amp;lt;font color=&amp;quot;#d0000d&amp;quot; face=&amp;quot;chiller&amp;quot;&amp;gt;&#039;&#039;&#039;Pikiwyn&#039;&#039;&#039;&amp;lt;/font&amp;gt;]] [[User talk:Pikiwyn|&amp;lt;tt&amp;gt;&amp;lt;sup&amp;gt;&#039;&#039;&#039;&#039;&#039;&amp;lt;font color=&amp;quot;black&amp;quot;&amp;gt;talk&amp;lt;/font&amp;gt;&#039;&#039;&#039;&#039;&#039;&amp;lt;/sup&amp;gt;&amp;lt;/tt&amp;gt;]] 20:35, 21 November 2011 (UTC)&lt;br /&gt;
::::on official Pokedex of pokémon Black &amp;amp; White, it&#039;s said that these kind of item can only be found by pokémon on double grass. I&#039;ve tested, and I could steal a rare bone on a crustle.[[User:Maverick Hunter|Maverick Hunter]] ([[User talk:Maverick Hunter|talk]]) 17:36, 21 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Jirachi Held Item ==&lt;br /&gt;
Why does the chart show [[Jirachi]] having a [[Star Piece]] at 100% as the held item? Shouldn&#039;t the item be a [[Ganlon Berry]] or [[Salac Berry]] at 50%?&lt;br /&gt;
--[[User:King901|King901]] 02:44, 27 April 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Difference between this article and others ==&lt;br /&gt;
&lt;br /&gt;
this article is extremely contradictory compared to what the Pokémon species and item articles say about held items, so I&#039;m just wondering, which one is an error? Is this one wrong or are the others wrong? --[[User:Maddiesapphire|Maddiesapphire]] ([[User talk:Maddiesapphire|talk]]) 20:38, 19 July 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I know what you&#039;re talking about. I believe that this table is generated from in-game-data so that the other pages are missing information. I&#039;m currently trying to verify that B2/W2 has the same held-item-information as BW. Afterwards, I&#039;ll try to correct the other pages.&lt;br /&gt;
[[User:TCCPhreak|TCCPhreak]] ([[User talk:TCCPhreak|talk]]) 10:34, 26 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yes, this table was taken from the data in-game, but so were the tables on the Pokémon pages. If there are any inconsistencies, you should probably check on other sites like [http://veekun.com veekun] &amp;lt;s&amp;gt;and [http://serebii.net Serebii]&amp;lt;/s&amp;gt; to see whether this table or the Pokémon page is right. &amp;lt;small&amp;gt;- &#039;&#039;signed comment from [[User:GoldenCelebi|&amp;lt;span style=&amp;quot;color:#DAA520;&amp;quot;&amp;gt;Golden&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#78C850;&amp;quot;&amp;gt;Celebi&amp;lt;/span&amp;gt;]] ([[User talk:GoldenCelebi|pedia talk]] • [[Bulbanews:User talk:GoldenCelebi|news talk]] • [[a:User talk:GoldenCelebi|archives talk]])&#039;&#039;&amp;lt;/small&amp;gt; &amp;lt;small&amp;gt;&#039;&#039;11:06, 26 October 2012 (UTC)&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
::Serebii is not a valid reference. &amp;lt;span class=&amp;quot;sc&amp;quot;&amp;gt;[[User:Werdnae|&amp;lt;span style=&amp;quot;color:#2D4B98;&amp;quot;&amp;gt;Werdnae&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; &amp;lt;small&amp;gt;[[User talk:Werdnae|&amp;lt;span style=&amp;quot;color:#009000;&amp;quot;&amp;gt;(talk)&amp;lt;/span&amp;gt;]]&amp;lt;/small&amp;gt; 20:41, 26 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::It was just an example... My point is that if there are inconsistencies between this page and the main Pokémon pages, and lots of other sources all agree with one of them, it&#039;s probably the accurate one. &amp;lt;small&amp;gt;- &#039;&#039;signed comment from [[User:GoldenCelebi|&amp;lt;span style=&amp;quot;color:#DAA520;&amp;quot;&amp;gt;Golden&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#78C850;&amp;quot;&amp;gt;Celebi&amp;lt;/span&amp;gt;]] ([[User talk:GoldenCelebi|pedia talk]] • [[Bulbanews:User talk:GoldenCelebi|news talk]] • [[a:User talk:GoldenCelebi|archives talk]])&#039;&#039;&amp;lt;/small&amp;gt; &amp;lt;small&amp;gt;&#039;&#039;18:38, 27 October 2012 (UTC)&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
::::There are no inconsistencies.  This is the &#039;&#039;&#039;full&#039;&#039;&#039; version. What you see on species&#039; pages is limited to Pokémon that are legitimately available in-wild in specified games (though I am sure that {{p|Rotom}}&#039;s page has Max Elixir for BW, as you get Rotom via trade in that game, and it has Max Elixir as held item, so there might be some other reasons). [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 20:19, 27 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== B2W2 ==&lt;br /&gt;
&lt;br /&gt;
Is it the same, or is it different? [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 18:22, 7 November 2012 (UTC)&lt;br /&gt;
:Some same, some different, which is gonna bugger up the table. -[[User:Spriteit|Spriteit]] ([[User talk:Spriteit|talk]]) 14:01, 9 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gen I starters. ==&lt;br /&gt;
&lt;br /&gt;
Do they hold items? And what about other gifted Pokémon? [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 14:12, 30 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Heatmor ==&lt;br /&gt;
Heatmor has a 1% chance to hold a Flame Orb in BW2, but not in BW. Is there someway to indicate this? Also, I changed the Solosis/Gothita thing and just simply removed my previous edit on this talk page. [[User:Cafeolay|Cafeolay]] ([[User talk:Cafeolay|talk]]) 14:50, 30 December 2012 (UTC)&lt;br /&gt;
:Similarly, Growlithe and Arcanine have a 100% chance to hold the Rawst Berry in BW, but only 50% in BW2. [[User:Cafeolay|Cafeolay]] ([[User talk:Cafeolay|talk]]) 18:06, 30 December 2012 (UTC)&lt;br /&gt;
::You could do the thing done with Shuckle, but this gonna likely mess up the table, depending on how big changes are. [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 19:40, 30 December 2012 (UTC) PS. Oh wait... is that even programmed into the table? [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 19:43, 30 December 2012 (UTC)&lt;br /&gt;
:::I thought that maybe we could do something like  Rawst Berry(this would be in the 100% column)BW, and then in the 50% chance column, another Rawst Berry indicating that this is only in BW2. [[User:Cafeolay|Cafeolay]] ([[User talk:Cafeolay|talk]]) 21:47, 30 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Spell Tag. ==&lt;br /&gt;
&lt;br /&gt;
Both {{p|Misdreavus}} and {{DL|Type-enhancing item|Spell Tag}} articles say that Misdreavus sometimes (5%) holds this item. This table has no mention of it whatsoever. Reason? [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 10:41, 12 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Veekun? ==&lt;br /&gt;
&lt;br /&gt;
So wait, Veekun is valid source? (I mean, whereas Serebii was crossed out, Veekun wasn&#039;t). It seems to have B2W2 items (like Heatmor&#039;s Flame Orb, or Rattata line &#039;&#039;not&#039;&#039; having Chilan Berry) and no idea what to do with that fact considering what happened few sections above. [[User:Marked +-+-+|Marked +-+-+]] ([[User talk:Marked +-+-+|talk]]) 08:28, 23 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Mankey/Primeape &amp;amp; Payapa in Gen VI==&lt;br /&gt;
I&#039;ve spent about an hour in the Friend Safari with the Compound Eye + Frisk Thief Combo looking for Payapa Berries. It doensn&#039;t seem like Mankeys carry any Payapa Berries. With Compound Eyes, it should have been 10% chance of it holding one. I&#039;ve stolen more Lucky Eggs off of Friend Safari Chanseys in 10 min. Can anyone confirm or refute this definitively? &lt;br /&gt;
-- [[User:Douchette|Douchette]] ([[User talk:Douchette|talk]]) 06:26, 9 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== XY items ==&lt;br /&gt;
&lt;br /&gt;
So I added all the XY items to this page from the Japanese XY guidebook a while ago; however, it only includes Pokémon available in the wild in Kalos that are in the Kalos Pokédex, and only considers their primary form (so it said Basculin can only hold the Deep Sea Tooth, but Blue-Striped Basculin can hold the Deep Sea Scale instead). What this means is that any Pokémon only found in the Friend Safari do not currently have their wild held items listed (unless someone else added it, like Sticky Barb on Ferroseed). Also, things like Pumpkaboo, which can only hold the Miracle Seed while Super Size, are only considered for their primary form (note that I have already checked and corrected Pumpkaboo and Basculin, which are probably the only two that will have different items for different forms). --[[User:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#A70000&amp;quot;&amp;gt;&#039;&#039;&#039;Snorlax&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#0000A7&amp;quot;&amp;gt;&#039;&#039;&#039;Monster&#039;&#039;&#039;&amp;lt;/span&amp;gt;]] 07:07, 12 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gen IV Compound Eyes %&#039;s with multiple items? ==&lt;br /&gt;
&lt;br /&gt;
*I kinda [[Talk:Compound_Eyes_%28Ability%29#Rare_items_.25_.2B_Compound_Eyes|asked this before]], but it wasn&#039;t really clarified to me yet.  Does the ability chance the chances of a 50% item to 100% or 55%? And for Pokémon with multiple items, how does that work with the 5% items? For example, {{p|Chansey}} and the Lucky Egg vs Oval Stone.  The articles say it is increased by 50%, just trying to clarify what that actually does to the percentages. Maybe I&#039;m just being slow, IDK. ----[[User:NateVirus|&amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;NateVirus&amp;lt;/span&amp;gt;]]&amp;lt;small&amp;gt;&#039;&#039;([[User talk:NateVirus|&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;Talk&amp;lt;/span&amp;gt;]]&#039;&#039;|&#039;&#039;[[Special:Contributions/NateVirus|&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Contributions&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/small&amp;gt;) 02:37, 28 September 2014 (UTC)&lt;br /&gt;
:Well, firstly you&#039;ve made a mathematical error in your two options. 55% would be for a 10% increase, whereas this is a 50% increase; the possibilities are 50% becomes 100% or 75%. We can eliminate the 100% option, because some Pokémon have both a 50% item and a 5% item, so that would total to over 100% (also, I have used Compoundeyes in Gen IV before, and the Pokémon aren&#039;t always holding items). As such, I believe it makes 50% items become 75% items, and 5% items become 7.5% items. --[[User:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#A70000&amp;quot;&amp;gt;&#039;&#039;&#039;Snorlax&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#0000A7&amp;quot;&amp;gt;&#039;&#039;&#039;Monster&#039;&#039;&#039;&amp;lt;/span&amp;gt;]] 06:25, 2 October 2014 (UTC)&lt;br /&gt;
::Ok, thanks for clearing that up. ----[[User:NateVirus|&amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;NateVirus&amp;lt;/span&amp;gt;]]&amp;lt;small&amp;gt;&#039;&#039;([[User talk:NateVirus|&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;Talk&amp;lt;/span&amp;gt;]]&#039;&#039;|&#039;&#039;[[Special:Contributions/NateVirus|&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Contributions&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/small&amp;gt;) 20:42, 19 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Two questions ==&lt;br /&gt;
&lt;br /&gt;
I wanted to update the page, but I wanna ask first just in case:&lt;br /&gt;
&lt;br /&gt;
1. Is this page up to date with XY and ORAS?&lt;br /&gt;
2. Should the Dexnav exclusive items be listed? If so, how should they be differentiated?[[User:TepiGreninja|TepiGreninja]] ([[User talk:TepiGreninja|talk]]) 19:56, 16 May 2015 (UTC)&lt;br /&gt;
# [[User:Tiddlywinks/ORAS items|You can check...]] (The problem with that list for now, though, is that we don&#039;t have any idea what the chances are for a given item/item &amp;quot;slot&amp;quot;.)&lt;br /&gt;
# [[Talk:DexNav#Zigzagoon Potion?|I know of]] no &amp;quot;DexNav exclusive&amp;quot; items. I know we made that claim before, and I wouldn&#039;t be surprised if other sites do, but I&#039;ve not seen actual evidence of any such. [[User:Tiddlywinks|Tiddlywinks]] ([[User talk:Tiddlywinks|talk]]) 13:28, 17 May 2015 (UTC)&lt;br /&gt;
:::Re: #1: I&#039;ve spent some time catching Pokemon and counting items, and (with close to 1000 data points) they seem to be the same as XY: 50% common and 5% rare (with 45% having no item). Sometime today, I&#039;ll try to add all the ORAS items to this page. If I ever try to add them to individual Pokemon pages too, I don&#039;t expect it&#039;ll be soon. [[User:Tiddlywinks|Tiddlywinks]] ([[User talk:Tiddlywinks|talk]]) 17:35, 23 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gen VI Wild Held Item on Fully-Evolved Pokemon? ==&lt;br /&gt;
&lt;br /&gt;
Will someone please kindly explain to me WHY some Pokemon are listed in the table under ORAS (Blissey, Slowking, Politoed, Steelix, Golem and Beedrill to name a few) that are NOT ABLE to be caught in the wild at all in those games!?  This *mostly* applies to Pokemon that are fully-evolved or require trade evolution, but perhaps not always, I need to check the whole rest of the list. Protectress of the Forest, ArtemiSerebii 05:26, 26 October 2015 (UTC)ArtemiSerebii&lt;br /&gt;
:It&#039;s not at all special to ORAS. You mentioned {{p|Golem}}. Golem is not available in the wild in any game. But it has an item listed for every generation.&lt;br /&gt;
:In short, it&#039;s not a question of if it can be caught and the item acquired; it&#039;s a question of how the games are programmed; if Golem were inserted somewhere in the wild in any game, it&#039;d have the specified held item. (Maybe it could be worth discussing if that&#039;s how the page &#039;&#039;should&#039;&#039; be, but for now, that&#039;s your answer.) [[User:Tiddlywinks|Tiddlywinks]] ([[User talk:Tiddlywinks|talk]]) 05:48, 26 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Does Marowak get Thick Club in X/Y? ==&lt;br /&gt;
&lt;br /&gt;
If it does, then shouldn&#039;t OR/AS notifier be removed? [[User:Trainer Yusuf|Trainer Yusuf]] ([[User talk:Trainer Yusuf|talk]]) 23:10, 5 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Roselia ==&lt;br /&gt;
&lt;br /&gt;
Roselia is listed as %5 and %100 for Sun and Moon, when it should be %5 for XY and %5 for Sun and Moon. [[User:Trainer Yusuf|Trainer Yusuf]] ([[User talk:Trainer Yusuf|talk]]) 17:40, 6 December 2016 (UTC)&lt;br /&gt;
:I believe I&#039;ve fixed the issue; somebody had added way too many cells to that row, causing the template to get confused. I also added the 5% Poison Barb that the {{p|Roselia}} page lists for B2W2. [[User:Pumpkinking0192|Pumpkinking0192]] ([[User talk:Pumpkinking0192|talk]]) 17:56, 6 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Blissey in US/UM ==&lt;br /&gt;
&lt;br /&gt;
So, I can&#039;t say for sure what the percentage for a Lucky Egg is, but I can say that it certainly isn&#039;t 100% for Ultra Sun and Ultra Moon. I&#039;ve been chaining Chansey for days to steal a lucky egg off of a Blissey. I&#039;ve run into at least 7 of them at this point and not a single one has had a lucky egg. Anyone have any idea what the actual percentage is and mind fixing the table? [[User:Shadowkat777|Shadowkat777]] ([[User talk:Shadowkat777|talk]]) 18:05, 19 February 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gen III Item chances &amp;amp; Compound Eyes==&lt;br /&gt;
&lt;br /&gt;
I was looking through the pokeemerald decompilation project and noticed that in line 6487 of the pokemon.c file there are two variables: 45 and 95. Those are the numbers used for the chance of getting a hold item. However, this contradicts what&#039;s stated in this page: The common item chance is not 50%, it&#039;s 55%. This also true for the rest of the Gen III games. Also, with Compound Eyes it&#039;s 80% instead of 60%.&lt;br /&gt;
&lt;br /&gt;
I don&#039;t know if this is true for Gen IV+, as there&#039;s no current decompilation project that I know of.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
&lt;br /&gt;
https://github.com/pret/pokeemerald/blob/master/src/pokemon.c (line 6487) [Emerald] &lt;br /&gt;
&lt;br /&gt;
https://github.com/pret/pokeruby/blob/master/src/pokemon_3.c (line 1320) [Ruby and Saphire]&lt;br /&gt;
&lt;br /&gt;
https://github.com/pret/pokefirered/blob/master/src/pokemon.c (line 5850) [FireRed and LeafGreen] &lt;br /&gt;
&lt;br /&gt;
[[User:AsparagusEduardo|AsparagusEduardo]] ([[User talk:AsparagusEduardo|talk]]) 16:36, 8 February 2020 (UTC)&lt;br /&gt;
:Thanks for providing sources, but as I mentioned in my edit summary of your original reversion, my reading of the &amp;lt;code&amp;gt;SetWildMonHeldItem&amp;lt;/code&amp;gt; function (which you also quoted) still contradicts that:&lt;br /&gt;
:The important part is in line 6528ff. of pokeemerald (and 6512ff.):&lt;br /&gt;
:*If a random value from 0-99 is less than the first variable (45 without Compoundeyes), then there is &#039;&#039;no&#039;&#039; item&lt;br /&gt;
:*Else, if that random value is less than the second variable, then it&#039;s item 1 (so that&#039;s anything between 45 and 95 without Compoundeyes - 50%)&lt;br /&gt;
:*Else (i.e. if the random value is not less than the second variable), it&#039;s item 2 (so without Compoundeyes, that&#039;s just 5%).&lt;br /&gt;
:All values should have been correct, so I&#039;ve reverted your edit (again). If you believe there&#039;s a mistake in the logic I just outlined, please specify precisely where &#039;&#039;before&#039;&#039; trying to reinstate your values again. [[User:Nescientist|Nescientist]] ([[User talk:Nescientist|talk]]) 17:05, 8 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
My bad, sorry for that. [[User:AsparagusEduardo|AsparagusEduardo]] ([[User talk:AsparagusEduardo|talk]]) 17:10, 8 February 2020 (UTC)&lt;br /&gt;
:No problem :) [[User:Nescientist|Nescientist]] ([[User talk:Nescientist|talk]]) 17:24, 8 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Which Generation VIII encounter types? ==&lt;br /&gt;
&lt;br /&gt;
The Snorlax at [[Motostoke Riverbank]] does not hold Leftovers, so I guess these percentages don&#039;t apply to wanderers. This needs fixing at potentially many species pages.&lt;br /&gt;
&lt;br /&gt;
Anyway, do the percentages here apply to [[symbol encounter]]s, or only to [[random encounter]]s? [[User:Nescientist|Nescientist]] ([[User talk:Nescientist|talk]]) 11:52, 27 June 2020 (UTC)&lt;br /&gt;
:Forgot [[Max Raid Battle]]s, does anyone know for certain? [[User:Nescientist|Nescientist]] ([[User talk:Nescientist|talk]]) 11:56, 27 June 2020 (UTC)&lt;br /&gt;
::Static encounters (a superset that includes wanderers) pre-define a bunch of things, including held item. At least in the base game (I don&#039;t have the static encounters for The Isle of Armor), no static encounters have held items other than Zacian and Zamazenta. --[[User:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#A70000&amp;quot;&amp;gt;&#039;&#039;&#039;Snorlax&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:SnorlaxMonster|&amp;lt;span style=&amp;quot;color:#0000A7&amp;quot;&amp;gt;&#039;&#039;&#039;Monster&#039;&#039;&#039;&amp;lt;/span&amp;gt;]] 12:47, 27 June 2020 (UTC)&lt;br /&gt;
:::Yes, I would believe symbol and random encounters, and that&#039;s it, but I&#039;m not sure, that&#039;s why I&#039;m asking. [[User:Nescientist|Nescientist]] ([[User talk:Nescientist|talk]]) 13:46, 27 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Move ==&lt;br /&gt;
&lt;br /&gt;
I suggest moving these two pages:&lt;br /&gt;
&lt;br /&gt;
* [[List of Pokémon by wild held item]] → [[List of wild Pokémon&#039;s held items]]&lt;br /&gt;
* [[List of Pokémon by wild held item (Generation II)]] → [[List of wild Pokémon&#039;s held items (Generation II)]]&lt;br /&gt;
&lt;br /&gt;
(or whatever other name that makes sense)&lt;br /&gt;
&lt;br /&gt;
I think I&#039;m not a big fan of the name &amp;quot;List of Pokémon by wild held item&amp;quot;. These pages are not really lists of Pokémon by their wild held items (in the sense that they are not shown or organized by their held item). They are list of wild Pokémon&#039;s held items. They are organized by the Pokédex&#039;s number first, and then the items are shown.&lt;br /&gt;
&lt;br /&gt;
Just for comparison, this name would be accurate as well, but I&#039;m not really suggesting it because it would be too long: &amp;quot;List of Pokémon by National Pokédex number, also featuring their held items&amp;quot;. --[[User:Daniel Carrero|Daniel Carrero]] ([[User talk:Daniel Carrero|talk]]) 23:48, 20 August 2020 (UTC)&lt;br /&gt;
--[[User:Daniel Carrero|Daniel Carrero]] ([[User talk:Daniel Carrero|talk]]) 23:48, 20 August 2020 (UTC)&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342324</id>
		<title>List of Pokémon by wild held item</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342324"/>
		<updated>2021-03-20T17:50:36Z</updated>

		<summary type="html">&lt;p&gt;Map233224: Undo revision 3342322 by Map233224 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{move|List of wild Pokémon&#039;s held items}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;This article is about wild held items from Generation III onward. For wild held items in Generation II, see [[List of Pokémon by wild held item (Generation II)]].&#039;&#039;&lt;br /&gt;
This is a list of Pokémon by the [[item]]s they may be holding when caught from the wild from [[Generation III]] onward. Note that not all Pokémon listed can be caught legitimately in the wild, but their held item exists in the game&#039;s programming.&lt;br /&gt;
__TOC__&lt;br /&gt;
==Item rarity==&lt;br /&gt;
In most games, Pokémon have a 50% chance of appearing with a common item or a 5% chance of appearing with a rare item. If a Pokémon has the same item defined for both its common item and its rare item, it will appear with that item 100% of the time. In [[Generation V]], some Pokémon, if encountered in {{DL|tall grass|dark grass}}, also have a 1% chance of appearing with a third item.&lt;br /&gt;
&lt;br /&gt;
In {{game|Emerald}} and all games since [[Generation IV]], if a Pokémon with the Ability {{a|Compound Eyes}} leads the party (even if [[fainting|fainted]]), the chances of finding a wild Pokémon holding an item increase from 50%/5% to 60%/20% (in dark grass in Generation V, the chances becomes 60%/20%/5%).&lt;br /&gt;
&lt;br /&gt;
==Held item table==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #CCCCFF; border: 3px solid #BEBED1;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! &lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{hoenn color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (RSE)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kanto color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (FRLG)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{sinnoh color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen IV&lt;br /&gt;
! colspan=4 style=&amp;quot;background:#{{unova color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen V&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kalos color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VI&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{alola color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VII&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{galar color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VIII&lt;br /&gt;
|-&lt;br /&gt;
! [[National Pokédex|{{color|000|#}}]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! Pokémon&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | {{tt|1%|Dark grass only}}&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 5%&amp;lt;!--only stated as &amp;quot;sometimes&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 50%&amp;lt;!--only stated as &amp;quot;often&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
{{lop/wild2|001|Bulbasaur}}&lt;br /&gt;
{{lop/wild2|002|Ivysaur}}&lt;br /&gt;
{{lop/wild2|003|Venusaur}}&lt;br /&gt;
{{lop/wild2|004|Charmander}}&lt;br /&gt;
{{lop/wild2|005|Charmeleon}}&lt;br /&gt;
{{lop/wild2|006|Charizard}}&lt;br /&gt;
{{lop/wild2|007|Squirtle}}&lt;br /&gt;
{{lop/wild2|008|Wartortle}}&lt;br /&gt;
{{lop/wild2|009|Blastoise}}&lt;br /&gt;
{{lop/wild2|010|Caterpie}}&lt;br /&gt;
{{lop/wild2|011|Metapod}}&lt;br /&gt;
{{lop/wild2|012|Butterfree|Silver Powder|||Silver Powder|||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|013|Weedle}}&lt;br /&gt;
{{lop/wild2|014|Kakuna}}&lt;br /&gt;
{{lop/wild2|015|Beedrill|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|016|Pidgey}}&lt;br /&gt;
{{lop/wild2|017|Pidgeotto}}&lt;br /&gt;
{{lop/wild2|018|Pidgeot}}&lt;br /&gt;
{{lop/wild2|019|Rattata|||||||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|019A|Rattata|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|020|Raticate||||Sitrus Berry|Oran Berry||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|020A|Raticate|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|021|Spearow|||||||||||||||||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|022|Fearow|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|023|Ekans}}&lt;br /&gt;
{{lop/wild2|024|Arbok||||Poison Barb}}&lt;br /&gt;
{{lop/wild2|025|Pikachu|Light Ball|Oran Berry|||||Light Ball|Oran Berry||||||Light Ball|||Light Ball|||Light Ball|BW1=Light Ball|B2W2-5=Light Ball|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026|Raichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026A|Raichu|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|027|Sandshrew|Quick Claw||||||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|027A|Sandshrew|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|028|Sandslash|Quick Claw|||Soft Sand|||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|028A|Sandslash|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|029|Nidoran♀}}&lt;br /&gt;
{{lop/wild2|030|Nidorina}}&lt;br /&gt;
{{lop/wild2|031|Nidoqueen}}&lt;br /&gt;
{{lop/wild2|032|Nidoran♂}}&lt;br /&gt;
{{lop/wild2|033|Nidorino}}&lt;br /&gt;
{{lop/wild2|034|Nidoking}}&lt;br /&gt;
{{lop/wild2|035|Clefairy|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|036|Clefable|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|037|Vulpix|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|037A|Vulpix|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|038|Ninetales|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|038A|Ninetales|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|039|Jigglypuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|040|Wigglytuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|041|Zubat}}&lt;br /&gt;
{{lop/wild2|042|Golbat}}&lt;br /&gt;
{{lop/wild2|043|Oddish|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|044|Gloom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|045|Vileplume|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|046|Paras|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|047|Parasect|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|048|Venonat}}&lt;br /&gt;
{{lop/wild2|049|Venomoth||||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|050|Diglett|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|050A|Diglett|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|051|Dugtrio|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|051A|Dugtrio|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth||||Nugget|||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|052A|Meowth|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|053|Persian|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|053A|Persian|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|054|Psyduck}}&lt;br /&gt;
{{lop/wild2|055|Golduck}}&lt;br /&gt;
{{lop/wild2|056|Mankey|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|057|Primeape|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|058|Growlithe|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|059|Arcanine|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|060|Poliwag}}&lt;br /&gt;
{{lop/wild2|061|Poliwhirl|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|062|Poliwrath|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|063|Abra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|064|Kadabra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|065|Alakazam|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|066|Machop|||||||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|067|Machoke||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|068|Machamp||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|069|Bellsprout}}&lt;br /&gt;
{{lop/wild2|070|Weepinbell}}&lt;br /&gt;
{{lop/wild2|071|Victreebel}}&lt;br /&gt;
{{lop/wild2|072|Tentacool|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|073|Tentacruel|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|074|Geodude|Everstone||||||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|074A|Geodude|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|075|Graveler|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|075A|Graveler|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|076|Golem|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|076A|Golem||||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|King&#039;s Rock||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|081|Magnemite|Metal Coat||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|082|Magneton|Metal Coat|||Magnet|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|Stick|||Stick|||Stick||||Stick|||Stick|||Stick|||Leek}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|||||||||||||||||||||Leek|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|084|Doduo|Sharp Beak||||||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|085|Dodrio|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|086|Seel|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|087|Dewgong||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|088|Grimer|Nugget||||||Nugget|||||||Black Sludge|||Black Sludge|BW5=Nugget|B2W2-5=Black Sludge}}&lt;br /&gt;
{{lop/wild2|088A|Grimer|||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|089|Muk|Nugget||||||Nugget||||||||Black Sludge|||Black Sludge|B2W2-1=Toxic Orb|BW5=Nugget|B2W2-50=Black Sludge}}&lt;br /&gt;
{{lop/wild2|089A|Muk||||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|090|Shellder|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|091|Cloyster|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|092|Gastly}}&lt;br /&gt;
{{lop/wild2|093|Haunter||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|094|Gengar||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|095|Onix||||Hard Stone}}&lt;br /&gt;
{{lop/wild2|096|Drowzee}}&lt;br /&gt;
{{lop/wild2|097|Hypno}}&lt;br /&gt;
{{lop/wild2|098|Krabby}}&lt;br /&gt;
{{lop/wild2|099|Kingler}}&lt;br /&gt;
{{lop/wild2|100|Voltorb}}&lt;br /&gt;
{{lop/wild2|101|Electrode}}&lt;br /&gt;
{{lop/wild2|102|Exeggcute|||||||||||||||||Psychic Seed|||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|103|Exeggutor}}&lt;br /&gt;
{{lop/wild2|103A|Exeggutor|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|104|Cubone|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105|Marowak|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105A|Marowak|||||||||||||||||Thick Club|||Thick Club|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|106|Hitmonlee}}&lt;br /&gt;
{{lop/wild2|107|Hitmonchan}}&lt;br /&gt;
{{lop/wild2|108|Lickitung|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|109|Koffing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing||||||||||||||||||||Misty Seed|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|111|Rhyhorn}}&lt;br /&gt;
{{lop/wild2|112|Rhydon}}&lt;br /&gt;
{{lop/wild2|113|Chansey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||Lucky Egg|Lucky Punch||Lucky Egg|Lucky Punch|||Lucky Punch}}&lt;br /&gt;
{{lop/wild2|114|Tangela}}&lt;br /&gt;
{{lop/wild2|115|Kangaskhan}}&lt;br /&gt;
{{lop/wild2|116|Horsea|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|117|Seadra|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|118|Goldeen|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|119|Seaking|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|120|Staryu|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|121|Starmie|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|Leppa Berry||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|123|Scyther}}&lt;br /&gt;
{{lop/wild2|124|Jynx|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|125|Electabuzz|||||||||||||||||Electirizer|||Electirizer||Electirizer||ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|126|Magmar|||Rawst Berry||||||||Magmarizer||||||Magmarizer|||Magmarizer||Magmarizer||ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|127|Pinsir}}&lt;br /&gt;
{{lop/wild2|128|Tauros}}&lt;br /&gt;
{{lop/wild2|129|Magikarp}}&lt;br /&gt;
{{lop/wild2|130|Gyarados}}&lt;br /&gt;
{{lop/wild2|131|Lapras||||||||||||||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|132|Ditto|Metal Powder|||Metal Powder|||Metal Powder|Quick Powder|||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder}}&lt;br /&gt;
{{lop/wild2|133|Eevee}}&lt;br /&gt;
{{lop/wild2|134|Vaporeon}}&lt;br /&gt;
{{lop/wild2|135|Jolteon}}&lt;br /&gt;
{{lop/wild2|136|Flareon}}&lt;br /&gt;
{{lop/wild2|137|Porygon}}&lt;br /&gt;
{{lop/wild2|138|Omanyte}}&lt;br /&gt;
{{lop/wild2|139|Omastar}}&lt;br /&gt;
{{lop/wild2|140|Kabuto}}&lt;br /&gt;
{{lop/wild2|141|Kabutops}}&lt;br /&gt;
{{lop/wild2|142|Aerodactyl}}&lt;br /&gt;
{{lop/wild2|143|Snorlax|||Leftovers|||Chesto Berry|||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|144|Articuno}}&lt;br /&gt;
{{lop/wild2|144|Articuno|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|145|Zapdos}}&lt;br /&gt;
{{lop/wild2|145|Zapdos|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|146|Moltres}}&lt;br /&gt;
{{lop/wild2|146|Moltres|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|147|Dratini|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|148|Dragonair|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|149|Dragonite|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|150|Mewtwo}}&lt;br /&gt;
{{lop/wild2|151|Mew|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|152|Chikorita}}&lt;br /&gt;
{{lop/wild2|153|Bayleef}}&lt;br /&gt;
{{lop/wild2|154|Meganium}}&lt;br /&gt;
{{lop/wild2|155|Cyndaquil}}&lt;br /&gt;
{{lop/wild2|156|Quilava}}&lt;br /&gt;
{{lop/wild2|157|Typhlosion}}&lt;br /&gt;
{{lop/wild2|158|Totodile}}&lt;br /&gt;
{{lop/wild2|159|Croconaw}}&lt;br /&gt;
{{lop/wild2|160|Feraligatr}}&lt;br /&gt;
{{lop/wild2|161|Sentret|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|162|Furret|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|163|Hoothoot}}&lt;br /&gt;
{{lop/wild2|164|Noctowl}}&lt;br /&gt;
{{lop/wild2|165|Ledyba}}&lt;br /&gt;
{{lop/wild2|166|Ledian}}&lt;br /&gt;
{{lop/wild2|167|Spinarak}}&lt;br /&gt;
{{lop/wild2|168|Ariados}}&lt;br /&gt;
{{lop/wild2|169|Crobat}}&lt;br /&gt;
{{lop/wild2|170|Chinchou|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|171|Lanturn|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|172|Pichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|173|Cleffa|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|174|Igglybuff|||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|175|Togepi}}&lt;br /&gt;
{{lop/wild2|176|Togetic}}&lt;br /&gt;
{{lop/wild2|177|Natu}}&lt;br /&gt;
{{lop/wild2|178|Xatu}}&lt;br /&gt;
{{lop/wild2|179|Mareep}}&lt;br /&gt;
{{lop/wild2|180|Flaaffy}}&lt;br /&gt;
{{lop/wild2|181|Ampharos}}&lt;br /&gt;
{{lop/wild2|182|Bellossom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|183|Marill}}&lt;br /&gt;
{{lop/wild2|184|Azumarill}}&lt;br /&gt;
{{lop/wild2|185|Sudowoodo}}&lt;br /&gt;
{{lop/wild2|186|Politoed|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|187|Hoppip}}&lt;br /&gt;
{{lop/wild2|188|Skiploom}}&lt;br /&gt;
{{lop/wild2|189|Jumpluff}}&lt;br /&gt;
{{lop/wild2|190|Aipom}}&lt;br /&gt;
{{lop/wild2|191|Sunkern|||||||Coba Berry|BW5=Coba Berry}}&lt;br /&gt;
{{lop/wild2|192|Sunflora}}&lt;br /&gt;
{{lop/wild2|193|Yanma|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|194|Wooper}}&lt;br /&gt;
{{lop/wild2|195|Quagsire}}&lt;br /&gt;
{{lop/wild2|196|Espeon}}&lt;br /&gt;
{{lop/wild2|197|Umbreon}}&lt;br /&gt;
{{lop/wild2|198|Murkrow}}&lt;br /&gt;
{{lop/wild2|199|Slowking|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|199|Slowking|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|200|Misdreavus|Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|201|Unown}}&lt;br /&gt;
{{lop/wild2|202|Wobbuffet}}&lt;br /&gt;
{{lop/wild2|203|Girafarig|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|204|Pineco}}&lt;br /&gt;
{{lop/wild2|205|Forretress}}&lt;br /&gt;
{{lop/wild2|206|Dunsparce}}&lt;br /&gt;
{{lop/wild2|207|Gligar}}&lt;br /&gt;
{{lop/wild2|208|Steelix|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|209|Snubbull}}&lt;br /&gt;
{{lop/wild2|210|Granbull}}&lt;br /&gt;
{{lop/wild2|211|Qwilfish|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|212|Scizor}}&lt;br /&gt;
{{lop/wild2|213|Shuckle|||Oran Berry|||Berry Juice|||Oran Berry|||||||Berry Juice|||Berry Juice|||Berry Juice|HGSS=Berry Juice|4notes100=HGSS}}&lt;br /&gt;
{{lop/wild2|214|Heracross}}&lt;br /&gt;
{{lop/wild2|215|Sneasel|Quick Claw||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|216|Teddiursa||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|217|Ursaring||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|218|Slugma}}&lt;br /&gt;
{{lop/wild2|219|Magcargo}}&lt;br /&gt;
{{lop/wild2|220|Swinub|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|221|Piloswine||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|222|Corsola|Red Shard|||Red Shard|||Hard Stone||||Hard Stone||||||Luminous Moss|||Luminous Moss|XY5=Hard Stone|ORAS5=Luminous Moss}}&lt;br /&gt;
{{lop/wild2|222|Corsola|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|223|Remoraid}}&lt;br /&gt;
{{lop/wild2|224|Octillery}}&lt;br /&gt;
{{lop/wild2|225|Delibird}}&lt;br /&gt;
{{lop/wild2|226|Mantine}}&lt;br /&gt;
{{lop/wild2|227|Skarmory||||Sharp Beak|||||||||||||Metal Coat|||Metal Coat|ORAS5=Metal Coat}}&lt;br /&gt;
{{lop/wild2|228|Houndour}}&lt;br /&gt;
{{lop/wild2|229|Houndoom}}&lt;br /&gt;
{{lop/wild2|230|Kingdra|Dragon Scale|||Dragon Scale|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|231|Phanpy|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|232|Donphan|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|233|Porygon2||||||Up-Grade}}&lt;br /&gt;
{{lop/wild2|234|Stantler}}&lt;br /&gt;
{{lop/wild2|235|Smeargle}}&lt;br /&gt;
{{lop/wild2|236|Tyrogue}}&lt;br /&gt;
{{lop/wild2|237|Hitmontop}}&lt;br /&gt;
{{lop/wild2|238|Smoochum|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|239|Elekid|||||||||||||||||Electirizer|||Electirizer|P=Electirizer|DPt=Electirizer|ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|240|Magby|||Rawst Berry||||||||||||||Magmarizer|||Magmarizer|D=Magmarizer|PPt=Magmarizer|ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|241|Miltank|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk||||Moomoo Milk|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk}}&lt;br /&gt;
{{lop/wild2|242|Blissey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||||Lucky Egg|||Lucky Egg|USUM5=Lucky Egg||||Lucky Egg}}&lt;br /&gt;
{{lop/wild2|243|Raikou}}&lt;br /&gt;
{{lop/wild2|244|Entei}}&lt;br /&gt;
{{lop/wild2|245|Suicune}}&lt;br /&gt;
{{lop/wild2|246|Larvitar}}&lt;br /&gt;
{{lop/wild2|247|Pupitar}}&lt;br /&gt;
{{lop/wild2|248|Tyranitar}}&lt;br /&gt;
{{lop/wild2|249|Lugia}}&lt;br /&gt;
{{lop/wild2|250|Ho-Oh|||Sacred Ash||||||Sacred Ash||||Sacred Ash|||Sacred Ash|||Sacred Ash}}&lt;br /&gt;
{{lop/wild2|251|Celebi|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|252|Treecko}}&lt;br /&gt;
{{lop/wild2|253|Grovyle}}&lt;br /&gt;
{{lop/wild2|254|Sceptile}}&lt;br /&gt;
{{lop/wild2|255|Torchic}}&lt;br /&gt;
{{lop/wild2|256|Combusken}}&lt;br /&gt;
{{lop/wild2|257|Blaziken}}&lt;br /&gt;
{{lop/wild2|258|Mudkip}}&lt;br /&gt;
{{lop/wild2|259|Marshtomp}}&lt;br /&gt;
{{lop/wild2|260|Swampert}}&lt;br /&gt;
{{lop/wild2|261|Poochyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|262|Mightyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry||||||Revive|Potion||Revive|Potion|ORAS5=Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|264|Linoone|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry|||||Max Revive|Potion||Max Revive|Potion|ORAS5=Max Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|264|Linoone|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|265|Wurmple|||||||||||||||||Bright Powder|Pecha Berry|ORAS5=Bright Powder|ORAS50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|266|Silcoon}}&lt;br /&gt;
{{lop/wild2|267|Beautifly|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|268|Cascoon}}&lt;br /&gt;
{{lop/wild2|269|Dustox|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|270|Lotad|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|271|Lombre|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|272|Ludicolo|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|273|Seedot|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|274|Nuzleaf|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|275|Shiftry|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|276|Taillow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|277|Swellow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|278|Wingull||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|279|Pelipper||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS5=Lucky Egg|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|280|Ralts}}&lt;br /&gt;
{{lop/wild2|281|Kirlia}}&lt;br /&gt;
{{lop/wild2|282|Gardevoir}}&lt;br /&gt;
{{lop/wild2|283|Surskit||||||||||||||||||Honey|ORAS5=Honey}}&lt;br /&gt;
{{lop/wild2|284|Masquerain|Silver Powder|||Silver Powder|||Silver Powder||||SilverPowder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|285|Shroomish|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|286|Breloom|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|287|Slakoth}}&lt;br /&gt;
{{lop/wild2|288|Vigoroth}}&lt;br /&gt;
{{lop/wild2|289|Slaking}}&lt;br /&gt;
{{lop/wild2|290|Nincada|||||||||||||||||Soft Sand|||Soft Sand|ORAS5=Soft Sand}}&lt;br /&gt;
{{lop/wild2|291|Ninjask}}&lt;br /&gt;
{{lop/wild2|292|Shedinja}}&lt;br /&gt;
{{lop/wild2|293|Whismur|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|294|Loudred|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|295|Exploud|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|296|Makuhita|||||||||||||||||Black Belt|ORAS5=Black Belt}}&lt;br /&gt;
{{lop/wild2|297|Hariyama|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|298|Azurill}}&lt;br /&gt;
{{lop/wild2|299|Nosepass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|300|Skitty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|301|Delcatty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|302|Sableye|||||||||||||||||Wide Lens|||Wide Lens|ORAS5=Wide Lens}}&lt;br /&gt;
{{lop/wild2|303|Mawile|||||||Occa Berry||||Occa Berry||||||Iron Ball|||Iron Ball|ORAS5=Iron Ball}}&lt;br /&gt;
{{lop/wild2|304|Aron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|305|Lairon|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|306|Aggron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|307|Meditite}}&lt;br /&gt;
{{lop/wild2|308|Medicham}}&lt;br /&gt;
{{lop/wild2|309|Electrike}}&lt;br /&gt;
{{lop/wild2|310|Manectric}}&lt;br /&gt;
{{lop/wild2|311|Plusle|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|312|Minun|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|313|Volbeat|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|314|Illumise|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|315|Roselia|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|316|Gulpin|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|317|Swalot|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|318|Carvanha|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|319|Sharpedo|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|320|Wailmer}}&lt;br /&gt;
{{lop/wild2|321|Wailord}}&lt;br /&gt;
{{lop/wild2|322|Numel|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|323|Camerupt|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|324|Torkoal||||||||||||||Charcoal|||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|325|Spoink|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|326|Grumpig|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|327|Spinda|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|328|Trapinch|Soft Sand|||Soft Sand|||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|329|Vibrava}}&lt;br /&gt;
{{lop/wild2|330|Flygon}}&lt;br /&gt;
{{lop/wild2|331|Cacnea|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|332|Cacturne|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|333|Swablu}}&lt;br /&gt;
{{lop/wild2|334|Altaria}}&lt;br /&gt;
{{lop/wild2|335|Zangoose|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|336|Seviper|||||||||||||||||Shed Shell|XY100=Persim Berry|ORAS5=Shed Shell}}&lt;br /&gt;
{{lop/wild2|337|Lunatone|Moon Stone|||Moon Stone|||Moon Stone|||Comet Shard|Moon Stone|||Moon Stone|||Moon Stone|Stardust||Moon Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|338|Solrock|Sun Stone|||Sun Stone|||Sun Stone|||Comet Shard|Sun Stone|||Sun Stone|||Sun Stone|Stardust||Sun Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|339|Barboach}}&lt;br /&gt;
{{lop/wild2|340|Whiscash}}&lt;br /&gt;
{{lop/wild2|341|Corphish}}&lt;br /&gt;
{{lop/wild2|342|Crawdaunt}}&lt;br /&gt;
{{lop/wild2|343|Baltoy|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|344|Claydol|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|345|Lileep|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|346|Cradily|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|347|Anorith}}&lt;br /&gt;
{{lop/wild2|348|Armaldo}}&lt;br /&gt;
{{lop/wild2|349|Feebas}}&lt;br /&gt;
{{lop/wild2|350|Milotic}}&lt;br /&gt;
{{lop/wild2|351|Castform|||Mystic Water|||Mystic Water|||Mystic Water||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|352|Kecleon|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|353|Shuppet|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|354|Banette|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|355|Duskull|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|356|Dusclops|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|357|Tropius}}&lt;br /&gt;
{{lop/wild2|358|Chimecho|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|359|Absol|ORAS5=Life Orb}}&lt;br /&gt;
{{lop/wild2|360|Wynaut}}&lt;br /&gt;
{{lop/wild2|361|Snorunt|||||||Babiri Berry||||Babiri Berry||||||Snowball|||Snowball|ORAS5=Snowball}}&lt;br /&gt;
{{lop/wild2|362|Glalie|Never-Melt Ice|||Never-Melt Ice|||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|363|Spheal}}&lt;br /&gt;
{{lop/wild2|364|Sealeo}}&lt;br /&gt;
{{lop/wild2|365|Walrein}}&lt;br /&gt;
{{lop/wild2|366|Clamperl|Blue Shard|||Blue Shard|||Big Pearl||||Big Pearl|||Big Pearl|||Big Pearl|Pearl|ORAS50=Pearl}}&lt;br /&gt;
{{lop/wild2|367|Huntail|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|368|Gorebyss|||||||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|369|Relicanth|Green Shard|||Green Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|370|Luvdisc||Heart Scale|||Heart Scale|||Heart Scale||||Heart Scale|||Heart Scale|||Heart Scale}}&lt;br /&gt;
{{lop/wild2|371|Bagon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|372|Shelgon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|373|Salamence|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|374|Beldum|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|375|Metang|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|376|Metagross|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|377|Regirock}}&lt;br /&gt;
{{lop/wild2|378|Regice}}&lt;br /&gt;
{{lop/wild2|379|Registeel}}&lt;br /&gt;
{{lop/wild2|380|Latias}}&lt;br /&gt;
{{lop/wild2|381|Latios}}&lt;br /&gt;
{{lop/wild2|382|Kyogre}}&lt;br /&gt;
{{lop/wild2|383|Groudon}}&lt;br /&gt;
{{lop/wild2|384|Rayquaza}}&lt;br /&gt;
{{lop/wild2|385|Jirachi|||Star Piece|||Star Piece|||Star Piece||||Star Piece|||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|386|Deoxys}}&lt;br /&gt;
{{lop/wild2|387|Turtwig}}&lt;br /&gt;
{{lop/wild2|388|Grotle}}&lt;br /&gt;
{{lop/wild2|389|Torterra}}&lt;br /&gt;
{{lop/wild2|390|Chimchar}}&lt;br /&gt;
{{lop/wild2|391|Monferno}}&lt;br /&gt;
{{lop/wild2|392|Infernape}}&lt;br /&gt;
{{lop/wild2|393|Piplup}}&lt;br /&gt;
{{lop/wild2|394|Prinplup}}&lt;br /&gt;
{{lop/wild2|395|Empoleon}}&lt;br /&gt;
{{lop/wild2|396|Starly|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|397|Staravia|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|398|Staraptor|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|399|Bidoof}}&lt;br /&gt;
{{lop/wild2|400|Bibarel|||||||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|401|Kricketot|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|402|Kricketune|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|403|Shinx}}&lt;br /&gt;
{{lop/wild2|404|Luxio}}&lt;br /&gt;
{{lop/wild2|405|Luxray}}&lt;br /&gt;
{{lop/wild2|406|Budew|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|407|Roserade|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|408|Cranidos}}&lt;br /&gt;
{{lop/wild2|409|Rampardos}}&lt;br /&gt;
{{lop/wild2|410|Shieldon}}&lt;br /&gt;
{{lop/wild2|411|Bastiodon}}&lt;br /&gt;
{{lop/wild2|412|Burmy}}&lt;br /&gt;
{{lop/wild2|413|Wormadam|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|414|Mothim|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|415|Combee|||||||||Honey|||||Honey|||Honey|||Honey|B2W2-5=Honey|BW100=Honey}}&lt;br /&gt;
{{lop/wild2|416|Vespiquen|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|417|Pachirisu}}&lt;br /&gt;
{{lop/wild2|418|Buizel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|419|Floatzel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|420|Cherubi|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|421|Cherrim|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|422|Shellos}}&lt;br /&gt;
{{lop/wild2|423|Gastrodon}}&lt;br /&gt;
{{lop/wild2|424|Ambipom}}&lt;br /&gt;
{{lop/wild2|425|Drifloon}}&lt;br /&gt;
{{lop/wild2|426|Drifblim|B2W2-1=Air Balloon}}&lt;br /&gt;
{{lop/wild2|427|Buneary|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|428|Lopunny|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|429|Mismagius}}&lt;br /&gt;
{{lop/wild2|430|Honchkrow}}&lt;br /&gt;
{{lop/wild2|431|Glameow|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|432|Purugly|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|433|Chingling|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|434|Stunky|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|435|Skuntank|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|436|Bronzor|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|437|Bronzong|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|438|Bonsly}}&lt;br /&gt;
{{lop/wild2|439|Mime Jr.|||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|440|Happiny|||||||Lucky Punch|Oval Stone|||Lucky Egg|Oval Stone||Lucky Egg|Oval Stone|||Oval Stone|||Oval Stone}}&lt;br /&gt;
{{lop/wild2|441|Chatot|||||||Metronome||||Metronome|||Metronome|||Metronome}}&lt;br /&gt;
{{lop/wild2|442|Spiritomb|ORAS100=Smoke Ball}}&lt;br /&gt;
{{lop/wild2|443|Gible|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|444|Gabite|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|445|Garchomp|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|446|Munchlax|||||||||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|447|Riolu}}&lt;br /&gt;
{{lop/wild2|448|Lucario}}&lt;br /&gt;
{{lop/wild2|449|Hippopotas}}&lt;br /&gt;
{{lop/wild2|450|Hippowdon}}&lt;br /&gt;
{{lop/wild2|451|Skorupi|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|452|Drapion|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|453|Croagunk|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|454|Toxicroak|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|455|Carnivine}}&lt;br /&gt;
{{lop/wild2|456|Finneon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|457|Lumineon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|458|Mantyke}}&lt;br /&gt;
{{lop/wild2|459|Snover|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|460|Abomasnow|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|461|Weavile|||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|462|Magnezone|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|463|Lickilicky|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|464|Rhyperior}}&lt;br /&gt;
{{lop/wild2|465|Tangrowth}}&lt;br /&gt;
{{lop/wild2|466|Electivire||||||||||||||Electirizer|||Electirizer|||Electirizer|PHGSS=Electirizer|DPt=Electirizer}}&lt;br /&gt;
{{lop/wild2|467|Magmortar||||||||||||||Magmarizer|||Magmarizer|||Magmarizer|DHGSS=Magmarizer|PPt=Magmarizer}}&lt;br /&gt;
{{lop/wild2|468|Togekiss}}&lt;br /&gt;
{{lop/wild2|469|Yanmega|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|470|Leafeon}}&lt;br /&gt;
{{lop/wild2|471|Glaceon}}&lt;br /&gt;
{{lop/wild2|472|Gliscor}}&lt;br /&gt;
{{lop/wild2|473|Mamoswine}}&lt;br /&gt;
{{lop/wild2|474|Porygon-Z}}&lt;br /&gt;
{{lop/wild2|475|Gallade}}&lt;br /&gt;
{{lop/wild2|476|Probopass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|477|Dusknoir|||||||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|478|Froslass|||||||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|479|Rotom}}&lt;br /&gt;
{{lop/wild2|480|Uxie}}&lt;br /&gt;
{{lop/wild2|481|Mesprit}}&lt;br /&gt;
{{lop/wild2|482|Azelf}}&lt;br /&gt;
{{lop/wild2|483|Dialga}}&lt;br /&gt;
{{lop/wild2|484|Palkia}}&lt;br /&gt;
{{lop/wild2|485|Heatran}}&lt;br /&gt;
{{lop/wild2|486|Regigigas}}&lt;br /&gt;
{{lop/wild2|487|Giratina}}&lt;br /&gt;
{{lop/wild2|488|Cresselia}}&lt;br /&gt;
{{lop/wild2|489|Phione}}&lt;br /&gt;
{{lop/wild2|490|Manaphy}}&lt;br /&gt;
{{lop/wild2|491|Darkrai}}&lt;br /&gt;
{{lop/wild2|492|Shaymin|||||||||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|493|Arceus}}&lt;br /&gt;
{{lop/wild2|494|Victini}}&lt;br /&gt;
{{lop/wild2|495|Snivy}}&lt;br /&gt;
{{lop/wild2|496|Servine}}&lt;br /&gt;
{{lop/wild2|497|Serperior}}&lt;br /&gt;
{{lop/wild2|498|Tepig}}&lt;br /&gt;
{{lop/wild2|499|Pignite}}&lt;br /&gt;
{{lop/wild2|500|Emboar}}&lt;br /&gt;
{{lop/wild2|501|Oshawott}}&lt;br /&gt;
{{lop/wild2|502|Dewott}}&lt;br /&gt;
{{lop/wild2|503|Samurott}}&lt;br /&gt;
{{lop/wild2|504|Patrat}}&lt;br /&gt;
{{lop/wild2|505|Watchog}}&lt;br /&gt;
{{lop/wild2|506|Lillipup}}&lt;br /&gt;
{{lop/wild2|507|Herdier}}&lt;br /&gt;
{{lop/wild2|508|Stoutland}}&lt;br /&gt;
{{lop/wild2|509|Purrloin}}&lt;br /&gt;
{{lop/wild2|510|Liepard}}&lt;br /&gt;
{{lop/wild2|511|Pansage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|512|Simisage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|513|Pansear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|514|Simisear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|515|Panpour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|516|Simipour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|517|Munna}}&lt;br /&gt;
{{lop/wild2|518|Musharna}}&lt;br /&gt;
{{lop/wild2|519|Pidove}}&lt;br /&gt;
{{lop/wild2|520|Tranquill}}&lt;br /&gt;
{{lop/wild2|521|Unfezant}}&lt;br /&gt;
{{lop/wild2|522|Blitzle||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|523|Zebstrika||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|524|Roggenrola|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|525|Boldore|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|526|Gigalith|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|527|Woobat}}&lt;br /&gt;
{{lop/wild2|528|Swoobat}}&lt;br /&gt;
{{lop/wild2|529|Drilbur}}&lt;br /&gt;
{{lop/wild2|530|Excadrill}}&lt;br /&gt;
{{lop/wild2|531|Audino|||||||||||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|532|Timburr}}&lt;br /&gt;
{{lop/wild2|533|Gurdurr}}&lt;br /&gt;
{{lop/wild2|534|Conkeldurr}}&lt;br /&gt;
{{lop/wild2|535|Tympole|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|536|Palpitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|537|Seismitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|538|Throh||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|539|Sawk||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|540|Sewaddle|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|541|Swadloon|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|542|Leavanny|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|543|Venipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|544|Whirlipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|545|Scolipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|546|Cottonee|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|547|Whimsicott|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|548|Petilil|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|549|Lilligant|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth|form=Red-Striped}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale|form=Blue-Striped}}&lt;br /&gt;
{{lop/wild2|551|Sandile|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|552|Krokorok|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|553|Krookodile||||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|554|Darumaka||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|554|Darumaka|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|556|Maractus|||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|557|Dwebble||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|558|Crustle||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|559|Scraggy|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|560|Scrafty|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|561|Sigilyph}}&lt;br /&gt;
{{lop/wild2|562|Yamask|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|562|Yamask|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|563|Cofagrigus|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|564|Tirtouga}}&lt;br /&gt;
{{lop/wild2|565|Carracosta}}&lt;br /&gt;
{{lop/wild2|566|Archen}}&lt;br /&gt;
{{lop/wild2|567|Archeops}}&lt;br /&gt;
{{lop/wild2|568|Trubbish||||||||||Nugget|Black Sludge|||Black Sludge|||Silk Scarf|||Silk Scarf}}&lt;br /&gt;
{{lop/wild2|569|Garbodor||||||||||Big Nugget|Nugget|Black Sludge||Nugget|Black Sludge||Black Sludge|Silk Scarf||Black Sludge|Silk Scarf}}&lt;br /&gt;
{{lop/wild2|570|Zorua}}&lt;br /&gt;
{{lop/wild2|571|Zoroark}}&lt;br /&gt;
{{lop/wild2|572|Minccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|573|Cinccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|574|Gothita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|575|Gothorita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|576|Gothitelle|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|577|Solosis|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|578|Duosion|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|579|Reuniclus|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|580|Ducklett}}&lt;br /&gt;
{{lop/wild2|581|Swanna}}&lt;br /&gt;
{{lop/wild2|582|Vanillite|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|583|Vanillish|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|584|Vanilluxe||||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|585|Deerling}}&lt;br /&gt;
{{lop/wild2|586|Sawsbuck}}&lt;br /&gt;
{{lop/wild2|587|Emolga|||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|588|Karrablast}}&lt;br /&gt;
{{lop/wild2|589|Escavalier}}&lt;br /&gt;
{{lop/wild2|590|Foongus||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|591|Amoonguss||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|592|Frillish}}&lt;br /&gt;
{{lop/wild2|593|Jellicent}}&lt;br /&gt;
{{lop/wild2|594|Alomomola}}&lt;br /&gt;
{{lop/wild2|595|Joltik}}&lt;br /&gt;
{{lop/wild2|596|Galvantula}}&lt;br /&gt;
{{lop/wild2|597|Ferroseed|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|598|Ferrothorn|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|599|Klink}}&lt;br /&gt;
{{lop/wild2|600|Klang}}&lt;br /&gt;
{{lop/wild2|601|Klinklang}}&lt;br /&gt;
{{lop/wild2|602|Tynamo}}&lt;br /&gt;
{{lop/wild2|603|Eelektrik}}&lt;br /&gt;
{{lop/wild2|604|Eelektross}}&lt;br /&gt;
{{lop/wild2|605|Elgyem}}&lt;br /&gt;
{{lop/wild2|606|Beheeyem}}&lt;br /&gt;
{{lop/wild2|607|Litwick}}&lt;br /&gt;
{{lop/wild2|608|Lampent}}&lt;br /&gt;
{{lop/wild2|609|Chandelure}}&lt;br /&gt;
{{lop/wild2|610|Axew}}&lt;br /&gt;
{{lop/wild2|611|Fraxure}}&lt;br /&gt;
{{lop/wild2|612|Haxorus}}&lt;br /&gt;
{{lop/wild2|613|Cubchoo||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|614|Beartic||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|615|Cryogonal|||||||||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|616|Shelmet}}&lt;br /&gt;
{{lop/wild2|617|Accelgor}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|||||||||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|619|Mienfoo}}&lt;br /&gt;
{{lop/wild2|620|Mienshao}}&lt;br /&gt;
{{lop/wild2|621|Druddigon|||||||||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|622|Golett|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|623|Golurk|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|624|Pawniard}}&lt;br /&gt;
{{lop/wild2|625|Bisharp}}&lt;br /&gt;
{{lop/wild2|626|Bouffalant}}&lt;br /&gt;
{{lop/wild2|627|Rufflet}}&lt;br /&gt;
{{lop/wild2|628|Braviary}}&lt;br /&gt;
{{lop/wild2|629|Vullaby}}&lt;br /&gt;
{{lop/wild2|630|Mandibuzz}}&lt;br /&gt;
{{lop/wild2|631|Heatmor|B2W2-1=Flame Orb}}&lt;br /&gt;
{{lop/wild2|632|Durant}}&lt;br /&gt;
{{lop/wild2|633|Deino}}&lt;br /&gt;
{{lop/wild2|634|Zweilous}}&lt;br /&gt;
{{lop/wild2|635|Hydreigon}}&lt;br /&gt;
{{lop/wild2|636|Larvesta}}&lt;br /&gt;
{{lop/wild2|637|Volcarona|||||||||||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|638|Cobalion}}&lt;br /&gt;
{{lop/wild2|639|Terrakion}}&lt;br /&gt;
{{lop/wild2|640|Virizion}}&lt;br /&gt;
{{lop/wild2|641|Tornadus}}&lt;br /&gt;
{{lop/wild2|642|Thundurus}}&lt;br /&gt;
{{lop/wild2|643|Reshiram}}&lt;br /&gt;
{{lop/wild2|644|Zekrom}}&lt;br /&gt;
{{lop/wild2|645|Landorus}}&lt;br /&gt;
{{lop/wild2|646|Kyurem}}&lt;br /&gt;
{{lop/wild2|647|Keldeo}}&lt;br /&gt;
{{lop/wild2|648|Meloetta|||||||||||||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|649|Genesect}}&lt;br /&gt;
{{lop/wild2|650|Chespin}}&lt;br /&gt;
{{lop/wild2|651|Quilladin}}&lt;br /&gt;
{{lop/wild2|652|Chesnaught}}&lt;br /&gt;
{{lop/wild2|653|Fennekin}}&lt;br /&gt;
{{lop/wild2|654|Braixen}}&lt;br /&gt;
{{lop/wild2|655|Delphox}}&lt;br /&gt;
{{lop/wild2|656|Froakie}}&lt;br /&gt;
{{lop/wild2|657|Frogadier}}&lt;br /&gt;
{{lop/wild2|658|Greninja}}&lt;br /&gt;
{{lop/wild2|659|Bunnelby}}&lt;br /&gt;
{{lop/wild2|660|Diggersby}}&lt;br /&gt;
{{lop/wild2|661|Fletchling}}&lt;br /&gt;
{{lop/wild2|662|Fletchinder}}&lt;br /&gt;
{{lop/wild2|663|Talonflame}}&lt;br /&gt;
{{lop/wild2|664|Scatterbug}}&lt;br /&gt;
{{lop/wild2|665|Spewpa}}&lt;br /&gt;
{{lop/wild2|666|Vivillon}}&lt;br /&gt;
{{lop/wild2|667|Litleo}}&lt;br /&gt;
{{lop/wild2|668|Pyroar}}&lt;br /&gt;
{{lop/wild2|669|Flabébé}}&lt;br /&gt;
{{lop/wild2|670|Floette}}&lt;br /&gt;
{{lop/wild2|671|Florges}}&lt;br /&gt;
{{lop/wild2|672|Skiddo}}&lt;br /&gt;
{{lop/wild2|673|Gogoat}}&lt;br /&gt;
{{lop/wild2|674|Pancham||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|675|Pangoro||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|676|Furfrou}}&lt;br /&gt;
{{lop/wild2|677|Espurr}}&lt;br /&gt;
{{lop/wild2|678|Meowstic}}&lt;br /&gt;
{{lop/wild2|679|Honedge}}&lt;br /&gt;
{{lop/wild2|680|Doublade}}&lt;br /&gt;
{{lop/wild2|681|Aegislash}}&lt;br /&gt;
{{lop/wild2|682|Spritzee}}&lt;br /&gt;
{{lop/wild2|683|Aromatisse}}&lt;br /&gt;
{{lop/wild2|684|Swirlix}}&lt;br /&gt;
{{lop/wild2|685|Slurpuff}}&lt;br /&gt;
{{lop/wild2|686|Inkay}}&lt;br /&gt;
{{lop/wild2|687|Malamar}}&lt;br /&gt;
{{lop/wild2|688|Binacle}}&lt;br /&gt;
{{lop/wild2|689|Barbaracle}}&lt;br /&gt;
{{lop/wild2|690|Skrelp}}&lt;br /&gt;
{{lop/wild2|691|Dragalge}}&lt;br /&gt;
{{lop/wild2|692|Clauncher}}&lt;br /&gt;
{{lop/wild2|693|Clawitzer}}&lt;br /&gt;
{{lop/wild2|694|Helioptile}}&lt;br /&gt;
{{lop/wild2|695|Heliolisk}}&lt;br /&gt;
{{lop/wild2|696|Tyrunt}}&lt;br /&gt;
{{lop/wild2|697|Tyrantrum}}&lt;br /&gt;
{{lop/wild2|698|Amaura}}&lt;br /&gt;
{{lop/wild2|699|Aurorus}}&lt;br /&gt;
{{lop/wild2|700|Sylveon}}&lt;br /&gt;
{{lop/wild2|701|Hawlucha||||||||||||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|702|Dedenne}}&lt;br /&gt;
{{lop/wild2|703|Carbink}}&lt;br /&gt;
{{lop/wild2|704|Goomy|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|705|Sliggoo|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|706|Goodra}}&lt;br /&gt;
{{lop/wild2|707|Klefki}}&lt;br /&gt;
{{lop/wild2|708|Phantump}}&lt;br /&gt;
{{lop/wild2|709|Trevenant}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Small Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Average Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Large Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Small Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Average Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Large Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|712|Bergmite}}&lt;br /&gt;
{{lop/wild2|713|Avalugg}}&lt;br /&gt;
{{lop/wild2|714|Noibat}}&lt;br /&gt;
{{lop/wild2|715|Noivern}}&lt;br /&gt;
{{lop/wild2|716|Xerneas}}&lt;br /&gt;
{{lop/wild2|717|Yveltal}}&lt;br /&gt;
{{lop/wild2|718|Zygarde}}&lt;br /&gt;
{{lop/wild2|719|Diancie}}&lt;br /&gt;
{{lop/wild2|720|Hoopa}}&lt;br /&gt;
{{lop/wild2|721|Volcanion}}&lt;br /&gt;
{{lop/wild2|722|Rowlet}}&lt;br /&gt;
{{lop/wild2|723|Dartrix}}&lt;br /&gt;
{{lop/wild2|724|Decidueye}}&lt;br /&gt;
{{lop/wild2|725|Litten}}&lt;br /&gt;
{{lop/wild2|726|Torracat}}&lt;br /&gt;
{{lop/wild2|727|Incineroar}}&lt;br /&gt;
{{lop/wild2|728|Popplio}}&lt;br /&gt;
{{lop/wild2|729|Brionne}}&lt;br /&gt;
{{lop/wild2|730|Primarina}}&lt;br /&gt;
{{lop/wild2|731|Pikipek|||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|732|Trumbeak|||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|733|Toucannon|||||||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|734|Yungoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|735|Gumshoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|736|Grubbin}}&lt;br /&gt;
{{lop/wild2|737|Charjabug|||||||||||||||||Cell Battery|||Cell Battery}}&lt;br /&gt;
{{lop/wild2|738|Vikavolt}}&lt;br /&gt;
{{lop/wild2|739|Crabrawler|||||||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|740|Crabominable|||||||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|741|Oricorio|||||||||||||||||Honey}}&lt;br /&gt;
{{lop/wild2|742|Cutiefly|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|743|Ribombee|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|744|Rockruff}}&lt;br /&gt;
{{lop/wild2|745|Lycanroc}}&lt;br /&gt;
{{lop/wild2|746|Wishiwashi}}&lt;br /&gt;
{{lop/wild2|747|Mareanie|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|748|Toxapex|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|749|Mudbray|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|750|Mudsdale|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|751|Dewpider|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|752|Araquanid|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|753|Fomantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|754|Lurantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|755|Morelull|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|756|Shiinotic|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|757|Salandit|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|758|Salazzle|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|759|Stufful}}&lt;br /&gt;
{{lop/wild2|760|Bewear}}&lt;br /&gt;
{{lop/wild2|761|Bounsweet|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|762|Steenee|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|763|Tsareena||||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|764|Comfey|||||||||||||||||Misty Seed|||Misty Seed}}&lt;br /&gt;
{{lop/wild2|765|Oranguru}}&lt;br /&gt;
{{lop/wild2|766|Passimian}}&lt;br /&gt;
{{lop/wild2|767|Wimpod}}&lt;br /&gt;
{{lop/wild2|768|Golisopod}}&lt;br /&gt;
{{lop/wild2|769|Sandygast|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|770|Palossand|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|771|Pyukumuku}}&lt;br /&gt;
{{lop/wild2|772|Type: Null}}&lt;br /&gt;
{{lop/wild2|773|Silvally}}&lt;br /&gt;
{{lop/wild2|774|Minior|||||||||||||||||Star Piece}}&lt;br /&gt;
{{lop/wild2|775|Komala}}&lt;br /&gt;
{{lop/wild2|776|Turtonator|||||||||||||||||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|777|Togedemaru|||||||||||||||||Electric Seed|||Electric Seed}}&lt;br /&gt;
{{lop/wild2|778|Mimikyu|||||||||||||||||Chesto Berry|||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|779|Bruxish|||||||||||||||||Razor Fang}}&lt;br /&gt;
{{lop/wild2|780|Drampa|||||||||||||||||Persim Berry|||Persim Berry}}&lt;br /&gt;
{{lop/wild2|781|Dhelmise}}&lt;br /&gt;
{{lop/wild2|782|Jangmo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|783|Hakamo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|784|Kommo-o||||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|785|Tapu Koko}}&lt;br /&gt;
{{lop/wild2|786|Tapu Lele}}&lt;br /&gt;
{{lop/wild2|787|Tapu Bulu}}&lt;br /&gt;
{{lop/wild2|788|Tapu Fini}}&lt;br /&gt;
{{lop/wild2|789|Cosmog}}&lt;br /&gt;
{{lop/wild2|790|Cosmoem}}&lt;br /&gt;
{{lop/wild2|791|Solgaleo}}&lt;br /&gt;
{{lop/wild2|792|Lunala}}&lt;br /&gt;
{{lop/wild2|793|Nihilego}}&lt;br /&gt;
{{lop/wild2|794|Buzzwole}}&lt;br /&gt;
{{lop/wild2|795|Pheromosa}}&lt;br /&gt;
{{lop/wild2|796|Xurkitree}}&lt;br /&gt;
{{lop/wild2|797|Celesteela}}&lt;br /&gt;
{{lop/wild2|798|Kartana}}&lt;br /&gt;
{{lop/wild2|799|Guzzlord}}&lt;br /&gt;
{{lop/wild2|800|Necrozma}}&lt;br /&gt;
{{lop/wild2|801|Magearna}}&lt;br /&gt;
{{lop/wild2|802|Marshadow}}&lt;br /&gt;
{{lop/wild2|803|Poipole}}&lt;br /&gt;
{{lop/wild2|804|Naganadel}}&lt;br /&gt;
{{lop/wild2|805|Stakataka}}&lt;br /&gt;
{{lop/wild2|806|Blacephalon}}&lt;br /&gt;
{{lop/wild2|807|Zeraora}}&lt;br /&gt;
{{lop/wild2|808|Meltan}}&lt;br /&gt;
{{lop/wild2|809|Melmetal}}&lt;br /&gt;
{{lop/wild2|810|Grookey}}&lt;br /&gt;
{{lop/wild2|811|Thwackey}}&lt;br /&gt;
{{lop/wild2|812|Rillaboom}}&lt;br /&gt;
{{lop/wild2|813|Scorbunny}}&lt;br /&gt;
{{lop/wild2|814|Raboot}}&lt;br /&gt;
{{lop/wild2|815|Cinderace}}&lt;br /&gt;
{{lop/wild2|816|Sobble}}&lt;br /&gt;
{{lop/wild2|817|Drizzile}}&lt;br /&gt;
{{lop/wild2|818|Inteleon}}&lt;br /&gt;
{{lop/wild2|819|Skwovet||||||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|820|Greedent||||||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|821|Rookidee}}&lt;br /&gt;
{{lop/wild2|822|Corvisquire}}&lt;br /&gt;
{{lop/wild2|823|Corviknight}}&lt;br /&gt;
{{lop/wild2|824|Blipbug}}&lt;br /&gt;
{{lop/wild2|825|Dottler||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|826|Orbeetle||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|827|Nickit}}&lt;br /&gt;
{{lop/wild2|828|Thievul}}&lt;br /&gt;
{{lop/wild2|829|Gossifleur}}&lt;br /&gt;
{{lop/wild2|830|Eldegoss}}&lt;br /&gt;
{{lop/wild2|831|Wooloo}}&lt;br /&gt;
{{lop/wild2|832|Dubwool}}&lt;br /&gt;
{{lop/wild2|833|Chewtle}}&lt;br /&gt;
{{lop/wild2|834|Drednaw}}&lt;br /&gt;
{{lop/wild2|835|Yamper}}&lt;br /&gt;
{{lop/wild2|836|Boltund}}&lt;br /&gt;
{{lop/wild2|837|Rolycoly}}&lt;br /&gt;
{{lop/wild2|838|Carkol}}&lt;br /&gt;
{{lop/wild2|839|Coalossal}}&lt;br /&gt;
{{lop/wild2|840|Applin}}&lt;br /&gt;
{{lop/wild2|841|Flapple}}&lt;br /&gt;
{{lop/wild2|842|Appletun}}&lt;br /&gt;
{{lop/wild2|843|Silicobra}}&lt;br /&gt;
{{lop/wild2|844|Sandaconda}}&lt;br /&gt;
{{lop/wild2|845|Cramorant}}&lt;br /&gt;
{{lop/wild2|846|Arrokuda}}&lt;br /&gt;
{{lop/wild2|847|Barraskewda}}&lt;br /&gt;
{{lop/wild2|848|Toxel}}&lt;br /&gt;
{{lop/wild2|849|Toxtricity}}&lt;br /&gt;
{{lop/wild2|850|Sizzlipede}}&lt;br /&gt;
{{lop/wild2|851|Centiskorch}}&lt;br /&gt;
{{lop/wild2|852|Clobbopus}}&lt;br /&gt;
{{lop/wild2|853|Grapploct}}&lt;br /&gt;
{{lop/wild2|854|Sinistea}}&lt;br /&gt;
{{lop/wild2|855|Polteageist}}&lt;br /&gt;
{{lop/wild2|856|Hatenna}}&lt;br /&gt;
{{lop/wild2|857|Hattrem}}&lt;br /&gt;
{{lop/wild2|858|Hatterene}}&lt;br /&gt;
{{lop/wild2|859|Impidimp}}&lt;br /&gt;
{{lop/wild2|860|Morgrem}}&lt;br /&gt;
{{lop/wild2|861|Grimmsnarl}}&lt;br /&gt;
{{lop/wild2|862|Obstagoon}}&lt;br /&gt;
{{lop/wild2|863|Perrserker}}&lt;br /&gt;
{{lop/wild2|864|Cursola}}&lt;br /&gt;
{{lop/wild2|865|Sirfetch&#039;d||||||||||||||||||||Leek}}&lt;br /&gt;
{{lop/wild2|866|Mr. Rime}}&lt;br /&gt;
{{lop/wild2|867|Runerigus}}&lt;br /&gt;
{{lop/wild2|868|Milcery}}&lt;br /&gt;
{{lop/wild2|869|Alcremie}}&lt;br /&gt;
{{lop/wild2|870|Falinks}}&lt;br /&gt;
{{lop/wild2|871|Pincurchin}}&lt;br /&gt;
{{lop/wild2|872|Snom||||||||||||||||||||Snowball}}&lt;br /&gt;
{{lop/wild2|873|Frosmoth}}&lt;br /&gt;
{{lop/wild2|874|Stonjourner}}&lt;br /&gt;
{{lop/wild2|875|Eiscue}}&lt;br /&gt;
{{lop/wild2|876|Indeedee}}&lt;br /&gt;
{{lop/wild2|877|Morpeko}}&lt;br /&gt;
{{lop/wild2|878|Cufant||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|879|Copperajah||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|880|Dracozolt}}&lt;br /&gt;
{{lop/wild2|881|Arctozolt}}&lt;br /&gt;
{{lop/wild2|882|Dracovish}}&lt;br /&gt;
{{lop/wild2|883|Arctovish}}&lt;br /&gt;
{{lop/wild2|884|Duraludon}}&lt;br /&gt;
{{lop/wild2|885|Dreepy}}&lt;br /&gt;
{{lop/wild2|886|Drakloak}}&lt;br /&gt;
{{lop/wild2|887|Dragapult}}&lt;br /&gt;
{{lop/wild2|888|Zacian}}&lt;br /&gt;
{{lop/wild2|889|Zamazenta}}&lt;br /&gt;
{{lop/wild2|890|Eternatus}}&lt;br /&gt;
{{lop/wild2|891|Kubfu}}&lt;br /&gt;
{{lop/wild2|892|Urshifu}}&lt;br /&gt;
{{lop/wild2|893|Zarude}}&lt;br /&gt;
{{lop/wild2|894|Regieleki}}&lt;br /&gt;
{{lop/wild2|895|Regidrago}}&lt;br /&gt;
{{lop/wild2|896|Glastrier}}&lt;br /&gt;
{{lop/wild2|897|Spectrier}}&lt;br /&gt;
{{lop/wild2|898|Calyrex}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In the internal data of [[Pokémon HOME]], {{p|Chansey}} was listed with a 50% chance of holding a [[Lucky Punch]] prior to version 1.1.0, {{p|Carvanha}} and {{p|Sharpedo}} were listed with a 5% chance of holding a [[Deep Sea Tooth]] prior to version 1.1.0, Relicanth was listed with a 5% chance of holding a [[Deep Sea Scale]] prior to version 1.2.0, and {{p|Ho-Oh}} was listed with a 100% chance of holding a [[Sacred Ash]] prior to version 1.2.0.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{pokelist}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project ItemDex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists]]&lt;br /&gt;
[[Category:Pokémon with wild held items|*]]&lt;br /&gt;
&lt;br /&gt;
[[es:Objetos que pueden llevar los Pokémon salvajes]]&lt;br /&gt;
[[fr:Liste des objets tenus par des Pokémon]]&lt;br /&gt;
[[it:Elenco Pokémon per strumento tenuto]]&lt;br /&gt;
[[ja:野生ポケモンのもちもの一覧]]&lt;br /&gt;
[[zh:宝可梦列表（按携带物品）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342322</id>
		<title>List of Pokémon by wild held item</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342322"/>
		<updated>2021-03-20T17:49:50Z</updated>

		<summary type="html">&lt;p&gt;Map233224: Undo revision 3342320 by Map233224 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{move|List of wild Pokémon&#039;s held items}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;This article is about wild held items from Generation III onward. For wild held items in Generation II, see [[List of Pokémon by wild held item (Generation II)]].&#039;&#039;&lt;br /&gt;
This is a list of Pokémon by the [[item]]s they may be holding when caught from the wild from [[Generation III]] onward. Note that not all Pokémon listed can be caught legitimately in the wild, but their held item exists in the game&#039;s programming.&lt;br /&gt;
__TOC__&lt;br /&gt;
==Item rarity==&lt;br /&gt;
In most games, Pokémon have a 50% chance of appearing with a common item or a 5% chance of appearing with a rare item. If a Pokémon has the same item defined for both its common item and its rare item, it will appear with that item 100% of the time. In [[Generation V]], some Pokémon, if encountered in {{DL|tall grass|dark grass}}, also have a 1% chance of appearing with a third item.&lt;br /&gt;
&lt;br /&gt;
In {{game|Emerald}} and all games since [[Generation IV]], if a Pokémon with the Ability {{a|Compound Eyes}} leads the party (even if [[fainting|fainted]]), the chances of finding a wild Pokémon holding an item increase from 50%/5% to 60%/20% (in dark grass in Generation V, the chances becomes 60%/20%/5%).&lt;br /&gt;
&lt;br /&gt;
==Held item table==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #CCCCFF; border: 3px solid #BEBED1;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! &lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{hoenn color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (RSE)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kanto color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (FRLG)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{sinnoh color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen IV&lt;br /&gt;
! colspan=4 style=&amp;quot;background:#{{unova color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen V&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kalos color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VI&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{alola color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VII&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{galar color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VIII&lt;br /&gt;
|-&lt;br /&gt;
! [[National Pokédex|{{color|000|#}}]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! Pokémon&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | {{tt|1%|Dark grass only}}&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 5%&amp;lt;!--only stated as &amp;quot;sometimes&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 50%&amp;lt;!--only stated as &amp;quot;often&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
{{lop/wild2|001|Bulbasaur}}&lt;br /&gt;
{{lop/wild2|002|Ivysaur}}&lt;br /&gt;
{{lop/wild2|003|Venusaur}}&lt;br /&gt;
{{lop/wild2|004|Charmander}}&lt;br /&gt;
{{lop/wild2|005|Charmeleon}}&lt;br /&gt;
{{lop/wild2|006|Charizard}}&lt;br /&gt;
{{lop/wild2|007|Squirtle}}&lt;br /&gt;
{{lop/wild2|008|Wartortle}}&lt;br /&gt;
{{lop/wild2|009|Blastoise}}&lt;br /&gt;
{{lop/wild2|010|Caterpie}}&lt;br /&gt;
{{lop/wild2|011|Metapod}}&lt;br /&gt;
{{lop/wild2|012|Butterfree|Silver Powder|||Silver Powder|||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|013|Weedle}}&lt;br /&gt;
{{lop/wild2|014|Kakuna}}&lt;br /&gt;
{{lop/wild2|015|Beedrill|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|016|Pidgey}}&lt;br /&gt;
{{lop/wild2|017|Pidgeotto}}&lt;br /&gt;
{{lop/wild2|018|Pidgeot}}&lt;br /&gt;
{{lop/wild2|019|Rattata|||||||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|019A|Rattata|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|020|Raticate||||Sitrus Berry|Oran Berry||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|020A|Raticate|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|021|Spearow|||||||||||||||||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|022|Fearow|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|023|Ekans}}&lt;br /&gt;
{{lop/wild2|024|Arbok||||Poison Barb}}&lt;br /&gt;
{{lop/wild2|025|Pikachu|Light Ball|Oran Berry|||||Light Ball|Oran Berry||||||Light Ball|||Light Ball|||Light Ball|BW1=Light Ball|B2W2-5=Light Ball|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026|Raichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026A|Raichu|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|027|Sandshrew|Quick Claw||||||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|027A|Sandshrew|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|028|Sandslash|Quick Claw|||Soft Sand|||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|028A|Sandslash|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|029|Nidoran♀}}&lt;br /&gt;
{{lop/wild2|030|Nidorina}}&lt;br /&gt;
{{lop/wild2|031|Nidoqueen}}&lt;br /&gt;
{{lop/wild2|032|Nidoran♂}}&lt;br /&gt;
{{lop/wild2|033|Nidorino}}&lt;br /&gt;
{{lop/wild2|034|Nidoking}}&lt;br /&gt;
{{lop/wild2|035|Clefairy|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|036|Clefable|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|037|Vulpix|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|037A|Vulpix|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|038|Ninetales|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|038A|Ninetales|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|039|Jigglypuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|040|Wigglytuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|041|Zubat}}&lt;br /&gt;
{{lop/wild2|042|Golbat}}&lt;br /&gt;
{{lop/wild2|043|Oddish|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|044|Gloom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|045|Vileplume|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|046|Paras|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|047|Parasect|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|048|Venonat}}&lt;br /&gt;
{{lop/wild2|049|Venomoth||||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|050|Diglett|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|050A|Diglett|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|051|Dugtrio|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|051A|Dugtrio|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth||||Nugget|||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|052A|Meowth|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|053|Persian|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|053A|Persian|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|054|Psyduck}}&lt;br /&gt;
{{lop/wild2|055|Golduck}}&lt;br /&gt;
{{lop/wild2|056|Mankey|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|057|Primeape|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|058|Growlithe|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|059|Arcanine|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|060|Poliwag}}&lt;br /&gt;
{{lop/wild2|061|Poliwhirl|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|062|Poliwrath|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|063|Abra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|064|Kadabra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|065|Alakazam|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|066|Machop|||||||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|067|Machoke||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|068|Machamp||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|069|Bellsprout}}&lt;br /&gt;
{{lop/wild2|070|Weepinbell}}&lt;br /&gt;
{{lop/wild2|071|Victreebel}}&lt;br /&gt;
{{lop/wild2|072|Tentacool|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|073|Tentacruel|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|074|Geodude|Everstone||||||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|074A|Geodude|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|075|Graveler|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|075A|Graveler|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|076|Golem|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|076A|Golem||||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|King&#039;s Rock||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|081|Magnemite|Metal Coat||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|082|Magneton|Metal Coat|||Magnet|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|Stick|||Stick|||Stick||||Stick|||Stick|||Stick|||Leek}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|||||||||||||||||||||Leek|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|084|Doduo|Sharp Beak||||||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|085|Dodrio|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|086|Seel|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|087|Dewgong||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|088|Grimer|Nugget||||||Nugget|||||||Black Sludge|||Black Sludge|BW5=Nugget|B2W2-5=Black Sludge}}&lt;br /&gt;
{{lop/wild2|088A|Grimer|||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|089|Muk|Nugget||||||Nugget||||||||Black Sludge|||Black Sludge|B2W2-1=Toxic Orb|BW5=Nugget|B2W2-50=Black Sludge}}&lt;br /&gt;
{{lop/wild2|089A|Muk||||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|090|Shellder|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|091|Cloyster|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|092|Gastly}}&lt;br /&gt;
{{lop/wild2|093|Haunter||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|094|Gengar||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|095|Onix||||Hard Stone}}&lt;br /&gt;
{{lop/wild2|096|Drowzee}}&lt;br /&gt;
{{lop/wild2|097|Hypno}}&lt;br /&gt;
{{lop/wild2|098|Krabby}}&lt;br /&gt;
{{lop/wild2|099|Kingler}}&lt;br /&gt;
{{lop/wild2|100|Voltorb}}&lt;br /&gt;
{{lop/wild2|101|Electrode}}&lt;br /&gt;
{{lop/wild2|102|Exeggcute|||||||||||||||||Psychic Seed|||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|103|Exeggutor}}&lt;br /&gt;
{{lop/wild2|103A|Exeggutor|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|104|Cubone|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105|Marowak|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105A|Marowak|||||||||||||||||Thick Club|||Thick Club|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|106|Hitmonlee}}&lt;br /&gt;
{{lop/wild2|107|Hitmonchan}}&lt;br /&gt;
{{lop/wild2|108|Lickitung|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|109|Koffing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing||||||||||||||||||||Misty Seed|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|111|Rhyhorn}}&lt;br /&gt;
{{lop/wild2|112|Rhydon}}&lt;br /&gt;
{{lop/wild2|113|Chansey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||Lucky Egg|Lucky Punch||Lucky Egg|Lucky Punch|||Lucky Punch}}&lt;br /&gt;
{{lop/wild2|114|Tangela}}&lt;br /&gt;
{{lop/wild2|115|Kangaskhan}}&lt;br /&gt;
{{lop/wild2|116|Horsea|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|117|Seadra|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|118|Goldeen|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|119|Seaking|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|120|Staryu|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|121|Starmie|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|Leppa Berry||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|123|Scyther}}&lt;br /&gt;
{{lop/wild2|124|Jynx|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|125|Electabuzz|||||||||||||||||Electirizer|||Electirizer|Electirizer||ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|126|Magmar|||Rawst Berry||||||||||||||Magmarizer|||Magmarizer|Magmarizer||ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|127|Pinsir}}&lt;br /&gt;
{{lop/wild2|128|Tauros}}&lt;br /&gt;
{{lop/wild2|129|Magikarp}}&lt;br /&gt;
{{lop/wild2|130|Gyarados}}&lt;br /&gt;
{{lop/wild2|131|Lapras||||||||||||||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|132|Ditto|Metal Powder|||Metal Powder|||Metal Powder|Quick Powder|||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder}}&lt;br /&gt;
{{lop/wild2|133|Eevee}}&lt;br /&gt;
{{lop/wild2|134|Vaporeon}}&lt;br /&gt;
{{lop/wild2|135|Jolteon}}&lt;br /&gt;
{{lop/wild2|136|Flareon}}&lt;br /&gt;
{{lop/wild2|137|Porygon}}&lt;br /&gt;
{{lop/wild2|138|Omanyte}}&lt;br /&gt;
{{lop/wild2|139|Omastar}}&lt;br /&gt;
{{lop/wild2|140|Kabuto}}&lt;br /&gt;
{{lop/wild2|141|Kabutops}}&lt;br /&gt;
{{lop/wild2|142|Aerodactyl}}&lt;br /&gt;
{{lop/wild2|143|Snorlax|||Leftovers|||Chesto Berry|||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|144|Articuno}}&lt;br /&gt;
{{lop/wild2|144|Articuno|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|145|Zapdos}}&lt;br /&gt;
{{lop/wild2|145|Zapdos|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|146|Moltres}}&lt;br /&gt;
{{lop/wild2|146|Moltres|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|147|Dratini|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|148|Dragonair|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|149|Dragonite|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|150|Mewtwo}}&lt;br /&gt;
{{lop/wild2|151|Mew|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|152|Chikorita}}&lt;br /&gt;
{{lop/wild2|153|Bayleef}}&lt;br /&gt;
{{lop/wild2|154|Meganium}}&lt;br /&gt;
{{lop/wild2|155|Cyndaquil}}&lt;br /&gt;
{{lop/wild2|156|Quilava}}&lt;br /&gt;
{{lop/wild2|157|Typhlosion}}&lt;br /&gt;
{{lop/wild2|158|Totodile}}&lt;br /&gt;
{{lop/wild2|159|Croconaw}}&lt;br /&gt;
{{lop/wild2|160|Feraligatr}}&lt;br /&gt;
{{lop/wild2|161|Sentret|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|162|Furret|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|163|Hoothoot}}&lt;br /&gt;
{{lop/wild2|164|Noctowl}}&lt;br /&gt;
{{lop/wild2|165|Ledyba}}&lt;br /&gt;
{{lop/wild2|166|Ledian}}&lt;br /&gt;
{{lop/wild2|167|Spinarak}}&lt;br /&gt;
{{lop/wild2|168|Ariados}}&lt;br /&gt;
{{lop/wild2|169|Crobat}}&lt;br /&gt;
{{lop/wild2|170|Chinchou|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|171|Lanturn|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|172|Pichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|173|Cleffa|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|174|Igglybuff|||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|175|Togepi}}&lt;br /&gt;
{{lop/wild2|176|Togetic}}&lt;br /&gt;
{{lop/wild2|177|Natu}}&lt;br /&gt;
{{lop/wild2|178|Xatu}}&lt;br /&gt;
{{lop/wild2|179|Mareep}}&lt;br /&gt;
{{lop/wild2|180|Flaaffy}}&lt;br /&gt;
{{lop/wild2|181|Ampharos}}&lt;br /&gt;
{{lop/wild2|182|Bellossom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|183|Marill}}&lt;br /&gt;
{{lop/wild2|184|Azumarill}}&lt;br /&gt;
{{lop/wild2|185|Sudowoodo}}&lt;br /&gt;
{{lop/wild2|186|Politoed|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|187|Hoppip}}&lt;br /&gt;
{{lop/wild2|188|Skiploom}}&lt;br /&gt;
{{lop/wild2|189|Jumpluff}}&lt;br /&gt;
{{lop/wild2|190|Aipom}}&lt;br /&gt;
{{lop/wild2|191|Sunkern|||||||Coba Berry|BW5=Coba Berry}}&lt;br /&gt;
{{lop/wild2|192|Sunflora}}&lt;br /&gt;
{{lop/wild2|193|Yanma|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|194|Wooper}}&lt;br /&gt;
{{lop/wild2|195|Quagsire}}&lt;br /&gt;
{{lop/wild2|196|Espeon}}&lt;br /&gt;
{{lop/wild2|197|Umbreon}}&lt;br /&gt;
{{lop/wild2|198|Murkrow}}&lt;br /&gt;
{{lop/wild2|199|Slowking|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|199|Slowking|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|200|Misdreavus|Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|201|Unown}}&lt;br /&gt;
{{lop/wild2|202|Wobbuffet}}&lt;br /&gt;
{{lop/wild2|203|Girafarig|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|204|Pineco}}&lt;br /&gt;
{{lop/wild2|205|Forretress}}&lt;br /&gt;
{{lop/wild2|206|Dunsparce}}&lt;br /&gt;
{{lop/wild2|207|Gligar}}&lt;br /&gt;
{{lop/wild2|208|Steelix|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|209|Snubbull}}&lt;br /&gt;
{{lop/wild2|210|Granbull}}&lt;br /&gt;
{{lop/wild2|211|Qwilfish|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|212|Scizor}}&lt;br /&gt;
{{lop/wild2|213|Shuckle|||Oran Berry|||Berry Juice|||Oran Berry|||||||Berry Juice|||Berry Juice|||Berry Juice|HGSS=Berry Juice|4notes100=HGSS}}&lt;br /&gt;
{{lop/wild2|214|Heracross}}&lt;br /&gt;
{{lop/wild2|215|Sneasel|Quick Claw||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|216|Teddiursa||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|217|Ursaring||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|218|Slugma}}&lt;br /&gt;
{{lop/wild2|219|Magcargo}}&lt;br /&gt;
{{lop/wild2|220|Swinub|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|221|Piloswine||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|222|Corsola|Red Shard|||Red Shard|||Hard Stone||||Hard Stone||||||Luminous Moss|||Luminous Moss|XY5=Hard Stone|ORAS5=Luminous Moss}}&lt;br /&gt;
{{lop/wild2|222|Corsola|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|223|Remoraid}}&lt;br /&gt;
{{lop/wild2|224|Octillery}}&lt;br /&gt;
{{lop/wild2|225|Delibird}}&lt;br /&gt;
{{lop/wild2|226|Mantine}}&lt;br /&gt;
{{lop/wild2|227|Skarmory||||Sharp Beak|||||||||||||Metal Coat|||Metal Coat|ORAS5=Metal Coat}}&lt;br /&gt;
{{lop/wild2|228|Houndour}}&lt;br /&gt;
{{lop/wild2|229|Houndoom}}&lt;br /&gt;
{{lop/wild2|230|Kingdra|Dragon Scale|||Dragon Scale|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|231|Phanpy|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|232|Donphan|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|233|Porygon2||||||Up-Grade}}&lt;br /&gt;
{{lop/wild2|234|Stantler}}&lt;br /&gt;
{{lop/wild2|235|Smeargle}}&lt;br /&gt;
{{lop/wild2|236|Tyrogue}}&lt;br /&gt;
{{lop/wild2|237|Hitmontop}}&lt;br /&gt;
{{lop/wild2|238|Smoochum|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|239|Elekid|||||||||||||||||Electirizer|||Electirizer|P=Electirizer|DPt=Electirizer|ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|240|Magby|||Rawst Berry||||||||||||||Magmarizer|||Magmarizer|D=Magmarizer|PPt=Magmarizer|ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|241|Miltank|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk||||Moomoo Milk|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk}}&lt;br /&gt;
{{lop/wild2|242|Blissey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||||Lucky Egg|||Lucky Egg|USUM5=Lucky Egg||||Lucky Egg}}&lt;br /&gt;
{{lop/wild2|243|Raikou}}&lt;br /&gt;
{{lop/wild2|244|Entei}}&lt;br /&gt;
{{lop/wild2|245|Suicune}}&lt;br /&gt;
{{lop/wild2|246|Larvitar}}&lt;br /&gt;
{{lop/wild2|247|Pupitar}}&lt;br /&gt;
{{lop/wild2|248|Tyranitar}}&lt;br /&gt;
{{lop/wild2|249|Lugia}}&lt;br /&gt;
{{lop/wild2|250|Ho-Oh|||Sacred Ash||||||Sacred Ash||||Sacred Ash|||Sacred Ash|||Sacred Ash}}&lt;br /&gt;
{{lop/wild2|251|Celebi|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|252|Treecko}}&lt;br /&gt;
{{lop/wild2|253|Grovyle}}&lt;br /&gt;
{{lop/wild2|254|Sceptile}}&lt;br /&gt;
{{lop/wild2|255|Torchic}}&lt;br /&gt;
{{lop/wild2|256|Combusken}}&lt;br /&gt;
{{lop/wild2|257|Blaziken}}&lt;br /&gt;
{{lop/wild2|258|Mudkip}}&lt;br /&gt;
{{lop/wild2|259|Marshtomp}}&lt;br /&gt;
{{lop/wild2|260|Swampert}}&lt;br /&gt;
{{lop/wild2|261|Poochyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|262|Mightyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry||||||Revive|Potion||Revive|Potion|ORAS5=Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|264|Linoone|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry|||||Max Revive|Potion||Max Revive|Potion|ORAS5=Max Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|264|Linoone|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|265|Wurmple|||||||||||||||||Bright Powder|Pecha Berry|ORAS5=Bright Powder|ORAS50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|266|Silcoon}}&lt;br /&gt;
{{lop/wild2|267|Beautifly|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|268|Cascoon}}&lt;br /&gt;
{{lop/wild2|269|Dustox|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|270|Lotad|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|271|Lombre|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|272|Ludicolo|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|273|Seedot|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|274|Nuzleaf|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|275|Shiftry|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|276|Taillow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|277|Swellow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|278|Wingull||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|279|Pelipper||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS5=Lucky Egg|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|280|Ralts}}&lt;br /&gt;
{{lop/wild2|281|Kirlia}}&lt;br /&gt;
{{lop/wild2|282|Gardevoir}}&lt;br /&gt;
{{lop/wild2|283|Surskit||||||||||||||||||Honey|ORAS5=Honey}}&lt;br /&gt;
{{lop/wild2|284|Masquerain|Silver Powder|||Silver Powder|||Silver Powder||||SilverPowder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|285|Shroomish|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|286|Breloom|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|287|Slakoth}}&lt;br /&gt;
{{lop/wild2|288|Vigoroth}}&lt;br /&gt;
{{lop/wild2|289|Slaking}}&lt;br /&gt;
{{lop/wild2|290|Nincada|||||||||||||||||Soft Sand|||Soft Sand|ORAS5=Soft Sand}}&lt;br /&gt;
{{lop/wild2|291|Ninjask}}&lt;br /&gt;
{{lop/wild2|292|Shedinja}}&lt;br /&gt;
{{lop/wild2|293|Whismur|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|294|Loudred|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|295|Exploud|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|296|Makuhita|||||||||||||||||Black Belt|ORAS5=Black Belt}}&lt;br /&gt;
{{lop/wild2|297|Hariyama|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|298|Azurill}}&lt;br /&gt;
{{lop/wild2|299|Nosepass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|300|Skitty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|301|Delcatty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|302|Sableye|||||||||||||||||Wide Lens|||Wide Lens|ORAS5=Wide Lens}}&lt;br /&gt;
{{lop/wild2|303|Mawile|||||||Occa Berry||||Occa Berry||||||Iron Ball|||Iron Ball|ORAS5=Iron Ball}}&lt;br /&gt;
{{lop/wild2|304|Aron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|305|Lairon|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|306|Aggron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|307|Meditite}}&lt;br /&gt;
{{lop/wild2|308|Medicham}}&lt;br /&gt;
{{lop/wild2|309|Electrike}}&lt;br /&gt;
{{lop/wild2|310|Manectric}}&lt;br /&gt;
{{lop/wild2|311|Plusle|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|312|Minun|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|313|Volbeat|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|314|Illumise|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|315|Roselia|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|316|Gulpin|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|317|Swalot|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|318|Carvanha|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|319|Sharpedo|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|320|Wailmer}}&lt;br /&gt;
{{lop/wild2|321|Wailord}}&lt;br /&gt;
{{lop/wild2|322|Numel|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|323|Camerupt|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|324|Torkoal||||||||||||||Charcoal|||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|325|Spoink|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|326|Grumpig|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|327|Spinda|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|328|Trapinch|Soft Sand|||Soft Sand|||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|329|Vibrava}}&lt;br /&gt;
{{lop/wild2|330|Flygon}}&lt;br /&gt;
{{lop/wild2|331|Cacnea|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|332|Cacturne|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|333|Swablu}}&lt;br /&gt;
{{lop/wild2|334|Altaria}}&lt;br /&gt;
{{lop/wild2|335|Zangoose|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|336|Seviper|||||||||||||||||Shed Shell|XY100=Persim Berry|ORAS5=Shed Shell}}&lt;br /&gt;
{{lop/wild2|337|Lunatone|Moon Stone|||Moon Stone|||Moon Stone|||Comet Shard|Moon Stone|||Moon Stone|||Moon Stone|Stardust||Moon Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|338|Solrock|Sun Stone|||Sun Stone|||Sun Stone|||Comet Shard|Sun Stone|||Sun Stone|||Sun Stone|Stardust||Sun Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|339|Barboach}}&lt;br /&gt;
{{lop/wild2|340|Whiscash}}&lt;br /&gt;
{{lop/wild2|341|Corphish}}&lt;br /&gt;
{{lop/wild2|342|Crawdaunt}}&lt;br /&gt;
{{lop/wild2|343|Baltoy|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|344|Claydol|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|345|Lileep|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|346|Cradily|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|347|Anorith}}&lt;br /&gt;
{{lop/wild2|348|Armaldo}}&lt;br /&gt;
{{lop/wild2|349|Feebas}}&lt;br /&gt;
{{lop/wild2|350|Milotic}}&lt;br /&gt;
{{lop/wild2|351|Castform|||Mystic Water|||Mystic Water|||Mystic Water||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|352|Kecleon|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|353|Shuppet|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|354|Banette|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|355|Duskull|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|356|Dusclops|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|357|Tropius}}&lt;br /&gt;
{{lop/wild2|358|Chimecho|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|359|Absol|ORAS5=Life Orb}}&lt;br /&gt;
{{lop/wild2|360|Wynaut}}&lt;br /&gt;
{{lop/wild2|361|Snorunt|||||||Babiri Berry||||Babiri Berry||||||Snowball|||Snowball|ORAS5=Snowball}}&lt;br /&gt;
{{lop/wild2|362|Glalie|Never-Melt Ice|||Never-Melt Ice|||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|363|Spheal}}&lt;br /&gt;
{{lop/wild2|364|Sealeo}}&lt;br /&gt;
{{lop/wild2|365|Walrein}}&lt;br /&gt;
{{lop/wild2|366|Clamperl|Blue Shard|||Blue Shard|||Big Pearl||||Big Pearl|||Big Pearl|||Big Pearl|Pearl|ORAS50=Pearl}}&lt;br /&gt;
{{lop/wild2|367|Huntail|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|368|Gorebyss|||||||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|369|Relicanth|Green Shard|||Green Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|370|Luvdisc||Heart Scale|||Heart Scale|||Heart Scale||||Heart Scale|||Heart Scale|||Heart Scale}}&lt;br /&gt;
{{lop/wild2|371|Bagon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|372|Shelgon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|373|Salamence|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|374|Beldum|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|375|Metang|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|376|Metagross|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|377|Regirock}}&lt;br /&gt;
{{lop/wild2|378|Regice}}&lt;br /&gt;
{{lop/wild2|379|Registeel}}&lt;br /&gt;
{{lop/wild2|380|Latias}}&lt;br /&gt;
{{lop/wild2|381|Latios}}&lt;br /&gt;
{{lop/wild2|382|Kyogre}}&lt;br /&gt;
{{lop/wild2|383|Groudon}}&lt;br /&gt;
{{lop/wild2|384|Rayquaza}}&lt;br /&gt;
{{lop/wild2|385|Jirachi|||Star Piece|||Star Piece|||Star Piece||||Star Piece|||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|386|Deoxys}}&lt;br /&gt;
{{lop/wild2|387|Turtwig}}&lt;br /&gt;
{{lop/wild2|388|Grotle}}&lt;br /&gt;
{{lop/wild2|389|Torterra}}&lt;br /&gt;
{{lop/wild2|390|Chimchar}}&lt;br /&gt;
{{lop/wild2|391|Monferno}}&lt;br /&gt;
{{lop/wild2|392|Infernape}}&lt;br /&gt;
{{lop/wild2|393|Piplup}}&lt;br /&gt;
{{lop/wild2|394|Prinplup}}&lt;br /&gt;
{{lop/wild2|395|Empoleon}}&lt;br /&gt;
{{lop/wild2|396|Starly|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|397|Staravia|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|398|Staraptor|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|399|Bidoof}}&lt;br /&gt;
{{lop/wild2|400|Bibarel|||||||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|401|Kricketot|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|402|Kricketune|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|403|Shinx}}&lt;br /&gt;
{{lop/wild2|404|Luxio}}&lt;br /&gt;
{{lop/wild2|405|Luxray}}&lt;br /&gt;
{{lop/wild2|406|Budew|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|407|Roserade|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|408|Cranidos}}&lt;br /&gt;
{{lop/wild2|409|Rampardos}}&lt;br /&gt;
{{lop/wild2|410|Shieldon}}&lt;br /&gt;
{{lop/wild2|411|Bastiodon}}&lt;br /&gt;
{{lop/wild2|412|Burmy}}&lt;br /&gt;
{{lop/wild2|413|Wormadam|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|414|Mothim|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|415|Combee|||||||||Honey|||||Honey|||Honey|||Honey|B2W2-5=Honey|BW100=Honey}}&lt;br /&gt;
{{lop/wild2|416|Vespiquen|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|417|Pachirisu}}&lt;br /&gt;
{{lop/wild2|418|Buizel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|419|Floatzel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|420|Cherubi|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|421|Cherrim|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|422|Shellos}}&lt;br /&gt;
{{lop/wild2|423|Gastrodon}}&lt;br /&gt;
{{lop/wild2|424|Ambipom}}&lt;br /&gt;
{{lop/wild2|425|Drifloon}}&lt;br /&gt;
{{lop/wild2|426|Drifblim|B2W2-1=Air Balloon}}&lt;br /&gt;
{{lop/wild2|427|Buneary|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|428|Lopunny|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|429|Mismagius}}&lt;br /&gt;
{{lop/wild2|430|Honchkrow}}&lt;br /&gt;
{{lop/wild2|431|Glameow|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|432|Purugly|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|433|Chingling|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|434|Stunky|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|435|Skuntank|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|436|Bronzor|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|437|Bronzong|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|438|Bonsly}}&lt;br /&gt;
{{lop/wild2|439|Mime Jr.|||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|440|Happiny|||||||Lucky Punch|Oval Stone|||Lucky Egg|Oval Stone||Lucky Egg|Oval Stone|||Oval Stone|||Oval Stone}}&lt;br /&gt;
{{lop/wild2|441|Chatot|||||||Metronome||||Metronome|||Metronome|||Metronome}}&lt;br /&gt;
{{lop/wild2|442|Spiritomb|ORAS100=Smoke Ball}}&lt;br /&gt;
{{lop/wild2|443|Gible|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|444|Gabite|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|445|Garchomp|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|446|Munchlax|||||||||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|447|Riolu}}&lt;br /&gt;
{{lop/wild2|448|Lucario}}&lt;br /&gt;
{{lop/wild2|449|Hippopotas}}&lt;br /&gt;
{{lop/wild2|450|Hippowdon}}&lt;br /&gt;
{{lop/wild2|451|Skorupi|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|452|Drapion|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|453|Croagunk|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|454|Toxicroak|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|455|Carnivine}}&lt;br /&gt;
{{lop/wild2|456|Finneon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|457|Lumineon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|458|Mantyke}}&lt;br /&gt;
{{lop/wild2|459|Snover|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|460|Abomasnow|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|461|Weavile|||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|462|Magnezone|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|463|Lickilicky|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|464|Rhyperior}}&lt;br /&gt;
{{lop/wild2|465|Tangrowth}}&lt;br /&gt;
{{lop/wild2|466|Electivire||||||||||||||Electirizer|||Electirizer|||Electirizer|PHGSS=Electirizer|DPt=Electirizer}}&lt;br /&gt;
{{lop/wild2|467|Magmortar||||||||||||||Magmarizer|||Magmarizer|||Magmarizer|DHGSS=Magmarizer|PPt=Magmarizer}}&lt;br /&gt;
{{lop/wild2|468|Togekiss}}&lt;br /&gt;
{{lop/wild2|469|Yanmega|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|470|Leafeon}}&lt;br /&gt;
{{lop/wild2|471|Glaceon}}&lt;br /&gt;
{{lop/wild2|472|Gliscor}}&lt;br /&gt;
{{lop/wild2|473|Mamoswine}}&lt;br /&gt;
{{lop/wild2|474|Porygon-Z}}&lt;br /&gt;
{{lop/wild2|475|Gallade}}&lt;br /&gt;
{{lop/wild2|476|Probopass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|477|Dusknoir|||||||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|478|Froslass|||||||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|479|Rotom}}&lt;br /&gt;
{{lop/wild2|480|Uxie}}&lt;br /&gt;
{{lop/wild2|481|Mesprit}}&lt;br /&gt;
{{lop/wild2|482|Azelf}}&lt;br /&gt;
{{lop/wild2|483|Dialga}}&lt;br /&gt;
{{lop/wild2|484|Palkia}}&lt;br /&gt;
{{lop/wild2|485|Heatran}}&lt;br /&gt;
{{lop/wild2|486|Regigigas}}&lt;br /&gt;
{{lop/wild2|487|Giratina}}&lt;br /&gt;
{{lop/wild2|488|Cresselia}}&lt;br /&gt;
{{lop/wild2|489|Phione}}&lt;br /&gt;
{{lop/wild2|490|Manaphy}}&lt;br /&gt;
{{lop/wild2|491|Darkrai}}&lt;br /&gt;
{{lop/wild2|492|Shaymin|||||||||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|493|Arceus}}&lt;br /&gt;
{{lop/wild2|494|Victini}}&lt;br /&gt;
{{lop/wild2|495|Snivy}}&lt;br /&gt;
{{lop/wild2|496|Servine}}&lt;br /&gt;
{{lop/wild2|497|Serperior}}&lt;br /&gt;
{{lop/wild2|498|Tepig}}&lt;br /&gt;
{{lop/wild2|499|Pignite}}&lt;br /&gt;
{{lop/wild2|500|Emboar}}&lt;br /&gt;
{{lop/wild2|501|Oshawott}}&lt;br /&gt;
{{lop/wild2|502|Dewott}}&lt;br /&gt;
{{lop/wild2|503|Samurott}}&lt;br /&gt;
{{lop/wild2|504|Patrat}}&lt;br /&gt;
{{lop/wild2|505|Watchog}}&lt;br /&gt;
{{lop/wild2|506|Lillipup}}&lt;br /&gt;
{{lop/wild2|507|Herdier}}&lt;br /&gt;
{{lop/wild2|508|Stoutland}}&lt;br /&gt;
{{lop/wild2|509|Purrloin}}&lt;br /&gt;
{{lop/wild2|510|Liepard}}&lt;br /&gt;
{{lop/wild2|511|Pansage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|512|Simisage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|513|Pansear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|514|Simisear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|515|Panpour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|516|Simipour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|517|Munna}}&lt;br /&gt;
{{lop/wild2|518|Musharna}}&lt;br /&gt;
{{lop/wild2|519|Pidove}}&lt;br /&gt;
{{lop/wild2|520|Tranquill}}&lt;br /&gt;
{{lop/wild2|521|Unfezant}}&lt;br /&gt;
{{lop/wild2|522|Blitzle||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|523|Zebstrika||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|524|Roggenrola|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|525|Boldore|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|526|Gigalith|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|527|Woobat}}&lt;br /&gt;
{{lop/wild2|528|Swoobat}}&lt;br /&gt;
{{lop/wild2|529|Drilbur}}&lt;br /&gt;
{{lop/wild2|530|Excadrill}}&lt;br /&gt;
{{lop/wild2|531|Audino|||||||||||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|532|Timburr}}&lt;br /&gt;
{{lop/wild2|533|Gurdurr}}&lt;br /&gt;
{{lop/wild2|534|Conkeldurr}}&lt;br /&gt;
{{lop/wild2|535|Tympole|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|536|Palpitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|537|Seismitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|538|Throh||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|539|Sawk||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|540|Sewaddle|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|541|Swadloon|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|542|Leavanny|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|543|Venipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|544|Whirlipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|545|Scolipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|546|Cottonee|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|547|Whimsicott|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|548|Petilil|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|549|Lilligant|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth|form=Red-Striped}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale|form=Blue-Striped}}&lt;br /&gt;
{{lop/wild2|551|Sandile|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|552|Krokorok|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|553|Krookodile||||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|554|Darumaka||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|554|Darumaka|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|556|Maractus|||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|557|Dwebble||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|558|Crustle||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|559|Scraggy|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|560|Scrafty|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|561|Sigilyph}}&lt;br /&gt;
{{lop/wild2|562|Yamask|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|562|Yamask|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|563|Cofagrigus|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|564|Tirtouga}}&lt;br /&gt;
{{lop/wild2|565|Carracosta}}&lt;br /&gt;
{{lop/wild2|566|Archen}}&lt;br /&gt;
{{lop/wild2|567|Archeops}}&lt;br /&gt;
{{lop/wild2|568|Trubbish||||||||||Nugget|Black Sludge|||Black Sludge|||Silk Scarf|||Silk Scarf}}&lt;br /&gt;
{{lop/wild2|569|Garbodor||||||||||Big Nugget|Nugget|Black Sludge||Nugget|Black Sludge||Black Sludge|Silk Scarf||Black Sludge|Silk Scarf}}&lt;br /&gt;
{{lop/wild2|570|Zorua}}&lt;br /&gt;
{{lop/wild2|571|Zoroark}}&lt;br /&gt;
{{lop/wild2|572|Minccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|573|Cinccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|574|Gothita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|575|Gothorita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|576|Gothitelle|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|577|Solosis|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|578|Duosion|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|579|Reuniclus|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|580|Ducklett}}&lt;br /&gt;
{{lop/wild2|581|Swanna}}&lt;br /&gt;
{{lop/wild2|582|Vanillite|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|583|Vanillish|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|584|Vanilluxe||||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|585|Deerling}}&lt;br /&gt;
{{lop/wild2|586|Sawsbuck}}&lt;br /&gt;
{{lop/wild2|587|Emolga|||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|588|Karrablast}}&lt;br /&gt;
{{lop/wild2|589|Escavalier}}&lt;br /&gt;
{{lop/wild2|590|Foongus||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|591|Amoonguss||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|592|Frillish}}&lt;br /&gt;
{{lop/wild2|593|Jellicent}}&lt;br /&gt;
{{lop/wild2|594|Alomomola}}&lt;br /&gt;
{{lop/wild2|595|Joltik}}&lt;br /&gt;
{{lop/wild2|596|Galvantula}}&lt;br /&gt;
{{lop/wild2|597|Ferroseed|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|598|Ferrothorn|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|599|Klink}}&lt;br /&gt;
{{lop/wild2|600|Klang}}&lt;br /&gt;
{{lop/wild2|601|Klinklang}}&lt;br /&gt;
{{lop/wild2|602|Tynamo}}&lt;br /&gt;
{{lop/wild2|603|Eelektrik}}&lt;br /&gt;
{{lop/wild2|604|Eelektross}}&lt;br /&gt;
{{lop/wild2|605|Elgyem}}&lt;br /&gt;
{{lop/wild2|606|Beheeyem}}&lt;br /&gt;
{{lop/wild2|607|Litwick}}&lt;br /&gt;
{{lop/wild2|608|Lampent}}&lt;br /&gt;
{{lop/wild2|609|Chandelure}}&lt;br /&gt;
{{lop/wild2|610|Axew}}&lt;br /&gt;
{{lop/wild2|611|Fraxure}}&lt;br /&gt;
{{lop/wild2|612|Haxorus}}&lt;br /&gt;
{{lop/wild2|613|Cubchoo||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|614|Beartic||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|615|Cryogonal|||||||||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|616|Shelmet}}&lt;br /&gt;
{{lop/wild2|617|Accelgor}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|||||||||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|619|Mienfoo}}&lt;br /&gt;
{{lop/wild2|620|Mienshao}}&lt;br /&gt;
{{lop/wild2|621|Druddigon|||||||||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|622|Golett|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|623|Golurk|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|624|Pawniard}}&lt;br /&gt;
{{lop/wild2|625|Bisharp}}&lt;br /&gt;
{{lop/wild2|626|Bouffalant}}&lt;br /&gt;
{{lop/wild2|627|Rufflet}}&lt;br /&gt;
{{lop/wild2|628|Braviary}}&lt;br /&gt;
{{lop/wild2|629|Vullaby}}&lt;br /&gt;
{{lop/wild2|630|Mandibuzz}}&lt;br /&gt;
{{lop/wild2|631|Heatmor|B2W2-1=Flame Orb}}&lt;br /&gt;
{{lop/wild2|632|Durant}}&lt;br /&gt;
{{lop/wild2|633|Deino}}&lt;br /&gt;
{{lop/wild2|634|Zweilous}}&lt;br /&gt;
{{lop/wild2|635|Hydreigon}}&lt;br /&gt;
{{lop/wild2|636|Larvesta}}&lt;br /&gt;
{{lop/wild2|637|Volcarona|||||||||||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|638|Cobalion}}&lt;br /&gt;
{{lop/wild2|639|Terrakion}}&lt;br /&gt;
{{lop/wild2|640|Virizion}}&lt;br /&gt;
{{lop/wild2|641|Tornadus}}&lt;br /&gt;
{{lop/wild2|642|Thundurus}}&lt;br /&gt;
{{lop/wild2|643|Reshiram}}&lt;br /&gt;
{{lop/wild2|644|Zekrom}}&lt;br /&gt;
{{lop/wild2|645|Landorus}}&lt;br /&gt;
{{lop/wild2|646|Kyurem}}&lt;br /&gt;
{{lop/wild2|647|Keldeo}}&lt;br /&gt;
{{lop/wild2|648|Meloetta|||||||||||||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|649|Genesect}}&lt;br /&gt;
{{lop/wild2|650|Chespin}}&lt;br /&gt;
{{lop/wild2|651|Quilladin}}&lt;br /&gt;
{{lop/wild2|652|Chesnaught}}&lt;br /&gt;
{{lop/wild2|653|Fennekin}}&lt;br /&gt;
{{lop/wild2|654|Braixen}}&lt;br /&gt;
{{lop/wild2|655|Delphox}}&lt;br /&gt;
{{lop/wild2|656|Froakie}}&lt;br /&gt;
{{lop/wild2|657|Frogadier}}&lt;br /&gt;
{{lop/wild2|658|Greninja}}&lt;br /&gt;
{{lop/wild2|659|Bunnelby}}&lt;br /&gt;
{{lop/wild2|660|Diggersby}}&lt;br /&gt;
{{lop/wild2|661|Fletchling}}&lt;br /&gt;
{{lop/wild2|662|Fletchinder}}&lt;br /&gt;
{{lop/wild2|663|Talonflame}}&lt;br /&gt;
{{lop/wild2|664|Scatterbug}}&lt;br /&gt;
{{lop/wild2|665|Spewpa}}&lt;br /&gt;
{{lop/wild2|666|Vivillon}}&lt;br /&gt;
{{lop/wild2|667|Litleo}}&lt;br /&gt;
{{lop/wild2|668|Pyroar}}&lt;br /&gt;
{{lop/wild2|669|Flabébé}}&lt;br /&gt;
{{lop/wild2|670|Floette}}&lt;br /&gt;
{{lop/wild2|671|Florges}}&lt;br /&gt;
{{lop/wild2|672|Skiddo}}&lt;br /&gt;
{{lop/wild2|673|Gogoat}}&lt;br /&gt;
{{lop/wild2|674|Pancham||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|675|Pangoro||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|676|Furfrou}}&lt;br /&gt;
{{lop/wild2|677|Espurr}}&lt;br /&gt;
{{lop/wild2|678|Meowstic}}&lt;br /&gt;
{{lop/wild2|679|Honedge}}&lt;br /&gt;
{{lop/wild2|680|Doublade}}&lt;br /&gt;
{{lop/wild2|681|Aegislash}}&lt;br /&gt;
{{lop/wild2|682|Spritzee}}&lt;br /&gt;
{{lop/wild2|683|Aromatisse}}&lt;br /&gt;
{{lop/wild2|684|Swirlix}}&lt;br /&gt;
{{lop/wild2|685|Slurpuff}}&lt;br /&gt;
{{lop/wild2|686|Inkay}}&lt;br /&gt;
{{lop/wild2|687|Malamar}}&lt;br /&gt;
{{lop/wild2|688|Binacle}}&lt;br /&gt;
{{lop/wild2|689|Barbaracle}}&lt;br /&gt;
{{lop/wild2|690|Skrelp}}&lt;br /&gt;
{{lop/wild2|691|Dragalge}}&lt;br /&gt;
{{lop/wild2|692|Clauncher}}&lt;br /&gt;
{{lop/wild2|693|Clawitzer}}&lt;br /&gt;
{{lop/wild2|694|Helioptile}}&lt;br /&gt;
{{lop/wild2|695|Heliolisk}}&lt;br /&gt;
{{lop/wild2|696|Tyrunt}}&lt;br /&gt;
{{lop/wild2|697|Tyrantrum}}&lt;br /&gt;
{{lop/wild2|698|Amaura}}&lt;br /&gt;
{{lop/wild2|699|Aurorus}}&lt;br /&gt;
{{lop/wild2|700|Sylveon}}&lt;br /&gt;
{{lop/wild2|701|Hawlucha||||||||||||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|702|Dedenne}}&lt;br /&gt;
{{lop/wild2|703|Carbink}}&lt;br /&gt;
{{lop/wild2|704|Goomy|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|705|Sliggoo|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|706|Goodra}}&lt;br /&gt;
{{lop/wild2|707|Klefki}}&lt;br /&gt;
{{lop/wild2|708|Phantump}}&lt;br /&gt;
{{lop/wild2|709|Trevenant}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Small Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Average Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Large Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Small Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Average Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Large Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|712|Bergmite}}&lt;br /&gt;
{{lop/wild2|713|Avalugg}}&lt;br /&gt;
{{lop/wild2|714|Noibat}}&lt;br /&gt;
{{lop/wild2|715|Noivern}}&lt;br /&gt;
{{lop/wild2|716|Xerneas}}&lt;br /&gt;
{{lop/wild2|717|Yveltal}}&lt;br /&gt;
{{lop/wild2|718|Zygarde}}&lt;br /&gt;
{{lop/wild2|719|Diancie}}&lt;br /&gt;
{{lop/wild2|720|Hoopa}}&lt;br /&gt;
{{lop/wild2|721|Volcanion}}&lt;br /&gt;
{{lop/wild2|722|Rowlet}}&lt;br /&gt;
{{lop/wild2|723|Dartrix}}&lt;br /&gt;
{{lop/wild2|724|Decidueye}}&lt;br /&gt;
{{lop/wild2|725|Litten}}&lt;br /&gt;
{{lop/wild2|726|Torracat}}&lt;br /&gt;
{{lop/wild2|727|Incineroar}}&lt;br /&gt;
{{lop/wild2|728|Popplio}}&lt;br /&gt;
{{lop/wild2|729|Brionne}}&lt;br /&gt;
{{lop/wild2|730|Primarina}}&lt;br /&gt;
{{lop/wild2|731|Pikipek|||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|732|Trumbeak|||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|733|Toucannon|||||||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|734|Yungoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|735|Gumshoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|736|Grubbin}}&lt;br /&gt;
{{lop/wild2|737|Charjabug|||||||||||||||||Cell Battery|||Cell Battery}}&lt;br /&gt;
{{lop/wild2|738|Vikavolt}}&lt;br /&gt;
{{lop/wild2|739|Crabrawler|||||||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|740|Crabominable|||||||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|741|Oricorio|||||||||||||||||Honey}}&lt;br /&gt;
{{lop/wild2|742|Cutiefly|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|743|Ribombee|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|744|Rockruff}}&lt;br /&gt;
{{lop/wild2|745|Lycanroc}}&lt;br /&gt;
{{lop/wild2|746|Wishiwashi}}&lt;br /&gt;
{{lop/wild2|747|Mareanie|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|748|Toxapex|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|749|Mudbray|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|750|Mudsdale|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|751|Dewpider|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|752|Araquanid|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|753|Fomantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|754|Lurantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|755|Morelull|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|756|Shiinotic|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|757|Salandit|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|758|Salazzle|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|759|Stufful}}&lt;br /&gt;
{{lop/wild2|760|Bewear}}&lt;br /&gt;
{{lop/wild2|761|Bounsweet|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|762|Steenee|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|763|Tsareena||||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|764|Comfey|||||||||||||||||Misty Seed|||Misty Seed}}&lt;br /&gt;
{{lop/wild2|765|Oranguru}}&lt;br /&gt;
{{lop/wild2|766|Passimian}}&lt;br /&gt;
{{lop/wild2|767|Wimpod}}&lt;br /&gt;
{{lop/wild2|768|Golisopod}}&lt;br /&gt;
{{lop/wild2|769|Sandygast|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|770|Palossand|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|771|Pyukumuku}}&lt;br /&gt;
{{lop/wild2|772|Type: Null}}&lt;br /&gt;
{{lop/wild2|773|Silvally}}&lt;br /&gt;
{{lop/wild2|774|Minior|||||||||||||||||Star Piece}}&lt;br /&gt;
{{lop/wild2|775|Komala}}&lt;br /&gt;
{{lop/wild2|776|Turtonator|||||||||||||||||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|777|Togedemaru|||||||||||||||||Electric Seed|||Electric Seed}}&lt;br /&gt;
{{lop/wild2|778|Mimikyu|||||||||||||||||Chesto Berry|||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|779|Bruxish|||||||||||||||||Razor Fang}}&lt;br /&gt;
{{lop/wild2|780|Drampa|||||||||||||||||Persim Berry|||Persim Berry}}&lt;br /&gt;
{{lop/wild2|781|Dhelmise}}&lt;br /&gt;
{{lop/wild2|782|Jangmo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|783|Hakamo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|784|Kommo-o||||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|785|Tapu Koko}}&lt;br /&gt;
{{lop/wild2|786|Tapu Lele}}&lt;br /&gt;
{{lop/wild2|787|Tapu Bulu}}&lt;br /&gt;
{{lop/wild2|788|Tapu Fini}}&lt;br /&gt;
{{lop/wild2|789|Cosmog}}&lt;br /&gt;
{{lop/wild2|790|Cosmoem}}&lt;br /&gt;
{{lop/wild2|791|Solgaleo}}&lt;br /&gt;
{{lop/wild2|792|Lunala}}&lt;br /&gt;
{{lop/wild2|793|Nihilego}}&lt;br /&gt;
{{lop/wild2|794|Buzzwole}}&lt;br /&gt;
{{lop/wild2|795|Pheromosa}}&lt;br /&gt;
{{lop/wild2|796|Xurkitree}}&lt;br /&gt;
{{lop/wild2|797|Celesteela}}&lt;br /&gt;
{{lop/wild2|798|Kartana}}&lt;br /&gt;
{{lop/wild2|799|Guzzlord}}&lt;br /&gt;
{{lop/wild2|800|Necrozma}}&lt;br /&gt;
{{lop/wild2|801|Magearna}}&lt;br /&gt;
{{lop/wild2|802|Marshadow}}&lt;br /&gt;
{{lop/wild2|803|Poipole}}&lt;br /&gt;
{{lop/wild2|804|Naganadel}}&lt;br /&gt;
{{lop/wild2|805|Stakataka}}&lt;br /&gt;
{{lop/wild2|806|Blacephalon}}&lt;br /&gt;
{{lop/wild2|807|Zeraora}}&lt;br /&gt;
{{lop/wild2|808|Meltan}}&lt;br /&gt;
{{lop/wild2|809|Melmetal}}&lt;br /&gt;
{{lop/wild2|810|Grookey}}&lt;br /&gt;
{{lop/wild2|811|Thwackey}}&lt;br /&gt;
{{lop/wild2|812|Rillaboom}}&lt;br /&gt;
{{lop/wild2|813|Scorbunny}}&lt;br /&gt;
{{lop/wild2|814|Raboot}}&lt;br /&gt;
{{lop/wild2|815|Cinderace}}&lt;br /&gt;
{{lop/wild2|816|Sobble}}&lt;br /&gt;
{{lop/wild2|817|Drizzile}}&lt;br /&gt;
{{lop/wild2|818|Inteleon}}&lt;br /&gt;
{{lop/wild2|819|Skwovet||||||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|820|Greedent||||||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|821|Rookidee}}&lt;br /&gt;
{{lop/wild2|822|Corvisquire}}&lt;br /&gt;
{{lop/wild2|823|Corviknight}}&lt;br /&gt;
{{lop/wild2|824|Blipbug}}&lt;br /&gt;
{{lop/wild2|825|Dottler||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|826|Orbeetle||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|827|Nickit}}&lt;br /&gt;
{{lop/wild2|828|Thievul}}&lt;br /&gt;
{{lop/wild2|829|Gossifleur}}&lt;br /&gt;
{{lop/wild2|830|Eldegoss}}&lt;br /&gt;
{{lop/wild2|831|Wooloo}}&lt;br /&gt;
{{lop/wild2|832|Dubwool}}&lt;br /&gt;
{{lop/wild2|833|Chewtle}}&lt;br /&gt;
{{lop/wild2|834|Drednaw}}&lt;br /&gt;
{{lop/wild2|835|Yamper}}&lt;br /&gt;
{{lop/wild2|836|Boltund}}&lt;br /&gt;
{{lop/wild2|837|Rolycoly}}&lt;br /&gt;
{{lop/wild2|838|Carkol}}&lt;br /&gt;
{{lop/wild2|839|Coalossal}}&lt;br /&gt;
{{lop/wild2|840|Applin}}&lt;br /&gt;
{{lop/wild2|841|Flapple}}&lt;br /&gt;
{{lop/wild2|842|Appletun}}&lt;br /&gt;
{{lop/wild2|843|Silicobra}}&lt;br /&gt;
{{lop/wild2|844|Sandaconda}}&lt;br /&gt;
{{lop/wild2|845|Cramorant}}&lt;br /&gt;
{{lop/wild2|846|Arrokuda}}&lt;br /&gt;
{{lop/wild2|847|Barraskewda}}&lt;br /&gt;
{{lop/wild2|848|Toxel}}&lt;br /&gt;
{{lop/wild2|849|Toxtricity}}&lt;br /&gt;
{{lop/wild2|850|Sizzlipede}}&lt;br /&gt;
{{lop/wild2|851|Centiskorch}}&lt;br /&gt;
{{lop/wild2|852|Clobbopus}}&lt;br /&gt;
{{lop/wild2|853|Grapploct}}&lt;br /&gt;
{{lop/wild2|854|Sinistea}}&lt;br /&gt;
{{lop/wild2|855|Polteageist}}&lt;br /&gt;
{{lop/wild2|856|Hatenna}}&lt;br /&gt;
{{lop/wild2|857|Hattrem}}&lt;br /&gt;
{{lop/wild2|858|Hatterene}}&lt;br /&gt;
{{lop/wild2|859|Impidimp}}&lt;br /&gt;
{{lop/wild2|860|Morgrem}}&lt;br /&gt;
{{lop/wild2|861|Grimmsnarl}}&lt;br /&gt;
{{lop/wild2|862|Obstagoon}}&lt;br /&gt;
{{lop/wild2|863|Perrserker}}&lt;br /&gt;
{{lop/wild2|864|Cursola}}&lt;br /&gt;
{{lop/wild2|865|Sirfetch&#039;d||||||||||||||||||||Leek}}&lt;br /&gt;
{{lop/wild2|866|Mr. Rime}}&lt;br /&gt;
{{lop/wild2|867|Runerigus}}&lt;br /&gt;
{{lop/wild2|868|Milcery}}&lt;br /&gt;
{{lop/wild2|869|Alcremie}}&lt;br /&gt;
{{lop/wild2|870|Falinks}}&lt;br /&gt;
{{lop/wild2|871|Pincurchin}}&lt;br /&gt;
{{lop/wild2|872|Snom||||||||||||||||||||Snowball}}&lt;br /&gt;
{{lop/wild2|873|Frosmoth}}&lt;br /&gt;
{{lop/wild2|874|Stonjourner}}&lt;br /&gt;
{{lop/wild2|875|Eiscue}}&lt;br /&gt;
{{lop/wild2|876|Indeedee}}&lt;br /&gt;
{{lop/wild2|877|Morpeko}}&lt;br /&gt;
{{lop/wild2|878|Cufant||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|879|Copperajah||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|880|Dracozolt}}&lt;br /&gt;
{{lop/wild2|881|Arctozolt}}&lt;br /&gt;
{{lop/wild2|882|Dracovish}}&lt;br /&gt;
{{lop/wild2|883|Arctovish}}&lt;br /&gt;
{{lop/wild2|884|Duraludon}}&lt;br /&gt;
{{lop/wild2|885|Dreepy}}&lt;br /&gt;
{{lop/wild2|886|Drakloak}}&lt;br /&gt;
{{lop/wild2|887|Dragapult}}&lt;br /&gt;
{{lop/wild2|888|Zacian}}&lt;br /&gt;
{{lop/wild2|889|Zamazenta}}&lt;br /&gt;
{{lop/wild2|890|Eternatus}}&lt;br /&gt;
{{lop/wild2|891|Kubfu}}&lt;br /&gt;
{{lop/wild2|892|Urshifu}}&lt;br /&gt;
{{lop/wild2|893|Zarude}}&lt;br /&gt;
{{lop/wild2|894|Regieleki}}&lt;br /&gt;
{{lop/wild2|895|Regidrago}}&lt;br /&gt;
{{lop/wild2|896|Glastrier}}&lt;br /&gt;
{{lop/wild2|897|Spectrier}}&lt;br /&gt;
{{lop/wild2|898|Calyrex}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In the internal data of [[Pokémon HOME]], {{p|Chansey}} was listed with a 50% chance of holding a [[Lucky Punch]] prior to version 1.1.0, {{p|Carvanha}} and {{p|Sharpedo}} were listed with a 5% chance of holding a [[Deep Sea Tooth]] prior to version 1.1.0, Relicanth was listed with a 5% chance of holding a [[Deep Sea Scale]] prior to version 1.2.0, and {{p|Ho-Oh}} was listed with a 100% chance of holding a [[Sacred Ash]] prior to version 1.2.0.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{pokelist}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project ItemDex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists]]&lt;br /&gt;
[[Category:Pokémon with wild held items|*]]&lt;br /&gt;
&lt;br /&gt;
[[es:Objetos que pueden llevar los Pokémon salvajes]]&lt;br /&gt;
[[fr:Liste des objets tenus par des Pokémon]]&lt;br /&gt;
[[it:Elenco Pokémon per strumento tenuto]]&lt;br /&gt;
[[ja:野生ポケモンのもちもの一覧]]&lt;br /&gt;
[[zh:宝可梦列表（按携带物品）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342320</id>
		<title>List of Pokémon by wild held item</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342320"/>
		<updated>2021-03-20T17:45:35Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Held item table */ Magmar and Electabuzz held items were wrong in Gen 4, corrected to 5% only&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{move|List of wild Pokémon&#039;s held items}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;This article is about wild held items from Generation III onward. For wild held items in Generation II, see [[List of Pokémon by wild held item (Generation II)]].&#039;&#039;&lt;br /&gt;
This is a list of Pokémon by the [[item]]s they may be holding when caught from the wild from [[Generation III]] onward. Note that not all Pokémon listed can be caught legitimately in the wild, but their held item exists in the game&#039;s programming.&lt;br /&gt;
__TOC__&lt;br /&gt;
==Item rarity==&lt;br /&gt;
In most games, Pokémon have a 50% chance of appearing with a common item or a 5% chance of appearing with a rare item. If a Pokémon has the same item defined for both its common item and its rare item, it will appear with that item 100% of the time. In [[Generation V]], some Pokémon, if encountered in {{DL|tall grass|dark grass}}, also have a 1% chance of appearing with a third item.&lt;br /&gt;
&lt;br /&gt;
In {{game|Emerald}} and all games since [[Generation IV]], if a Pokémon with the Ability {{a|Compound Eyes}} leads the party (even if [[fainting|fainted]]), the chances of finding a wild Pokémon holding an item increase from 50%/5% to 60%/20% (in dark grass in Generation V, the chances becomes 60%/20%/5%).&lt;br /&gt;
&lt;br /&gt;
==Held item table==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #CCCCFF; border: 3px solid #BEBED1;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! &lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{hoenn color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (RSE)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kanto color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (FRLG)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{sinnoh color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen IV&lt;br /&gt;
! colspan=4 style=&amp;quot;background:#{{unova color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen V&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kalos color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VI&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{alola color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VII&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{galar color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VIII&lt;br /&gt;
|-&lt;br /&gt;
! [[National Pokédex|{{color|000|#}}]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! Pokémon&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | {{tt|1%|Dark grass only}}&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 5%&amp;lt;!--only stated as &amp;quot;sometimes&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 50%&amp;lt;!--only stated as &amp;quot;often&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
{{lop/wild2|001|Bulbasaur}}&lt;br /&gt;
{{lop/wild2|002|Ivysaur}}&lt;br /&gt;
{{lop/wild2|003|Venusaur}}&lt;br /&gt;
{{lop/wild2|004|Charmander}}&lt;br /&gt;
{{lop/wild2|005|Charmeleon}}&lt;br /&gt;
{{lop/wild2|006|Charizard}}&lt;br /&gt;
{{lop/wild2|007|Squirtle}}&lt;br /&gt;
{{lop/wild2|008|Wartortle}}&lt;br /&gt;
{{lop/wild2|009|Blastoise}}&lt;br /&gt;
{{lop/wild2|010|Caterpie}}&lt;br /&gt;
{{lop/wild2|011|Metapod}}&lt;br /&gt;
{{lop/wild2|012|Butterfree|Silver Powder|||Silver Powder|||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|013|Weedle}}&lt;br /&gt;
{{lop/wild2|014|Kakuna}}&lt;br /&gt;
{{lop/wild2|015|Beedrill|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|016|Pidgey}}&lt;br /&gt;
{{lop/wild2|017|Pidgeotto}}&lt;br /&gt;
{{lop/wild2|018|Pidgeot}}&lt;br /&gt;
{{lop/wild2|019|Rattata|||||||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|019A|Rattata|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|020|Raticate||||Sitrus Berry|Oran Berry||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|020A|Raticate|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|021|Spearow|||||||||||||||||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|022|Fearow|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|023|Ekans}}&lt;br /&gt;
{{lop/wild2|024|Arbok||||Poison Barb}}&lt;br /&gt;
{{lop/wild2|025|Pikachu|Light Ball|Oran Berry|||||Light Ball|Oran Berry||||||Light Ball|||Light Ball|||Light Ball|BW1=Light Ball|B2W2-5=Light Ball|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026|Raichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026A|Raichu|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|027|Sandshrew|Quick Claw||||||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|027A|Sandshrew|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|028|Sandslash|Quick Claw|||Soft Sand|||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|028A|Sandslash|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|029|Nidoran♀}}&lt;br /&gt;
{{lop/wild2|030|Nidorina}}&lt;br /&gt;
{{lop/wild2|031|Nidoqueen}}&lt;br /&gt;
{{lop/wild2|032|Nidoran♂}}&lt;br /&gt;
{{lop/wild2|033|Nidorino}}&lt;br /&gt;
{{lop/wild2|034|Nidoking}}&lt;br /&gt;
{{lop/wild2|035|Clefairy|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|036|Clefable|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|037|Vulpix|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|037A|Vulpix|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|038|Ninetales|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|038A|Ninetales|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|039|Jigglypuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|040|Wigglytuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|041|Zubat}}&lt;br /&gt;
{{lop/wild2|042|Golbat}}&lt;br /&gt;
{{lop/wild2|043|Oddish|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|044|Gloom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|045|Vileplume|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|046|Paras|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|047|Parasect|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|048|Venonat}}&lt;br /&gt;
{{lop/wild2|049|Venomoth||||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|050|Diglett|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|050A|Diglett|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|051|Dugtrio|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|051A|Dugtrio|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth||||Nugget|||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|052A|Meowth|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|053|Persian|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|053A|Persian|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|054|Psyduck}}&lt;br /&gt;
{{lop/wild2|055|Golduck}}&lt;br /&gt;
{{lop/wild2|056|Mankey|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|057|Primeape|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|058|Growlithe|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|059|Arcanine|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|060|Poliwag}}&lt;br /&gt;
{{lop/wild2|061|Poliwhirl|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|062|Poliwrath|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|063|Abra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|064|Kadabra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|065|Alakazam|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|066|Machop|||||||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|067|Machoke||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|068|Machamp||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|069|Bellsprout}}&lt;br /&gt;
{{lop/wild2|070|Weepinbell}}&lt;br /&gt;
{{lop/wild2|071|Victreebel}}&lt;br /&gt;
{{lop/wild2|072|Tentacool|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|073|Tentacruel|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|074|Geodude|Everstone||||||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|074A|Geodude|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|075|Graveler|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|075A|Graveler|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|076|Golem|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|076A|Golem||||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|King&#039;s Rock||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|081|Magnemite|Metal Coat||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|082|Magneton|Metal Coat|||Magnet|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|Stick|||Stick|||Stick||||Stick|||Stick|||Stick|||Leek}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|||||||||||||||||||||Leek|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|084|Doduo|Sharp Beak||||||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|085|Dodrio|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|086|Seel|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|087|Dewgong||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|088|Grimer|Nugget||||||Nugget|||||||Black Sludge|||Black Sludge|BW5=Nugget|B2W2-5=Black Sludge}}&lt;br /&gt;
{{lop/wild2|088A|Grimer|||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|089|Muk|Nugget||||||Nugget||||||||Black Sludge|||Black Sludge|B2W2-1=Toxic Orb|BW5=Nugget|B2W2-50=Black Sludge}}&lt;br /&gt;
{{lop/wild2|089A|Muk||||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|090|Shellder|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|091|Cloyster|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|092|Gastly}}&lt;br /&gt;
{{lop/wild2|093|Haunter||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|094|Gengar||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|095|Onix||||Hard Stone}}&lt;br /&gt;
{{lop/wild2|096|Drowzee}}&lt;br /&gt;
{{lop/wild2|097|Hypno}}&lt;br /&gt;
{{lop/wild2|098|Krabby}}&lt;br /&gt;
{{lop/wild2|099|Kingler}}&lt;br /&gt;
{{lop/wild2|100|Voltorb}}&lt;br /&gt;
{{lop/wild2|101|Electrode}}&lt;br /&gt;
{{lop/wild2|102|Exeggcute|||||||||||||||||Psychic Seed|||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|103|Exeggutor}}&lt;br /&gt;
{{lop/wild2|103A|Exeggutor|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|104|Cubone|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105|Marowak|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105A|Marowak|||||||||||||||||Thick Club|||Thick Club|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|106|Hitmonlee}}&lt;br /&gt;
{{lop/wild2|107|Hitmonchan}}&lt;br /&gt;
{{lop/wild2|108|Lickitung|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|109|Koffing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing||||||||||||||||||||Misty Seed|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|111|Rhyhorn}}&lt;br /&gt;
{{lop/wild2|112|Rhydon}}&lt;br /&gt;
{{lop/wild2|113|Chansey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||Lucky Egg|Lucky Punch||Lucky Egg|Lucky Punch|||Lucky Punch}}&lt;br /&gt;
{{lop/wild2|114|Tangela}}&lt;br /&gt;
{{lop/wild2|115|Kangaskhan}}&lt;br /&gt;
{{lop/wild2|116|Horsea|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|117|Seadra|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|118|Goldeen|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|119|Seaking|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|120|Staryu|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|121|Starmie|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|Leppa Berry||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|123|Scyther}}&lt;br /&gt;
{{lop/wild2|124|Jynx|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|125|Electabuzz|||||||||||||||||Electirizer|||Electirizer||Electirizer||ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|126|Magmar|||Rawst Berry||||||||Magmarizer||||||Magmarizer|||Magmarizer||Magmarizer||ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|127|Pinsir}}&lt;br /&gt;
{{lop/wild2|128|Tauros}}&lt;br /&gt;
{{lop/wild2|129|Magikarp}}&lt;br /&gt;
{{lop/wild2|130|Gyarados}}&lt;br /&gt;
{{lop/wild2|131|Lapras||||||||||||||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|132|Ditto|Metal Powder|||Metal Powder|||Metal Powder|Quick Powder|||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder}}&lt;br /&gt;
{{lop/wild2|133|Eevee}}&lt;br /&gt;
{{lop/wild2|134|Vaporeon}}&lt;br /&gt;
{{lop/wild2|135|Jolteon}}&lt;br /&gt;
{{lop/wild2|136|Flareon}}&lt;br /&gt;
{{lop/wild2|137|Porygon}}&lt;br /&gt;
{{lop/wild2|138|Omanyte}}&lt;br /&gt;
{{lop/wild2|139|Omastar}}&lt;br /&gt;
{{lop/wild2|140|Kabuto}}&lt;br /&gt;
{{lop/wild2|141|Kabutops}}&lt;br /&gt;
{{lop/wild2|142|Aerodactyl}}&lt;br /&gt;
{{lop/wild2|143|Snorlax|||Leftovers|||Chesto Berry|||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|144|Articuno}}&lt;br /&gt;
{{lop/wild2|144|Articuno|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|145|Zapdos}}&lt;br /&gt;
{{lop/wild2|145|Zapdos|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|146|Moltres}}&lt;br /&gt;
{{lop/wild2|146|Moltres|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|147|Dratini|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|148|Dragonair|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|149|Dragonite|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|150|Mewtwo}}&lt;br /&gt;
{{lop/wild2|151|Mew|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|152|Chikorita}}&lt;br /&gt;
{{lop/wild2|153|Bayleef}}&lt;br /&gt;
{{lop/wild2|154|Meganium}}&lt;br /&gt;
{{lop/wild2|155|Cyndaquil}}&lt;br /&gt;
{{lop/wild2|156|Quilava}}&lt;br /&gt;
{{lop/wild2|157|Typhlosion}}&lt;br /&gt;
{{lop/wild2|158|Totodile}}&lt;br /&gt;
{{lop/wild2|159|Croconaw}}&lt;br /&gt;
{{lop/wild2|160|Feraligatr}}&lt;br /&gt;
{{lop/wild2|161|Sentret|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|162|Furret|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|163|Hoothoot}}&lt;br /&gt;
{{lop/wild2|164|Noctowl}}&lt;br /&gt;
{{lop/wild2|165|Ledyba}}&lt;br /&gt;
{{lop/wild2|166|Ledian}}&lt;br /&gt;
{{lop/wild2|167|Spinarak}}&lt;br /&gt;
{{lop/wild2|168|Ariados}}&lt;br /&gt;
{{lop/wild2|169|Crobat}}&lt;br /&gt;
{{lop/wild2|170|Chinchou|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|171|Lanturn|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|172|Pichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|173|Cleffa|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|174|Igglybuff|||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|175|Togepi}}&lt;br /&gt;
{{lop/wild2|176|Togetic}}&lt;br /&gt;
{{lop/wild2|177|Natu}}&lt;br /&gt;
{{lop/wild2|178|Xatu}}&lt;br /&gt;
{{lop/wild2|179|Mareep}}&lt;br /&gt;
{{lop/wild2|180|Flaaffy}}&lt;br /&gt;
{{lop/wild2|181|Ampharos}}&lt;br /&gt;
{{lop/wild2|182|Bellossom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|183|Marill}}&lt;br /&gt;
{{lop/wild2|184|Azumarill}}&lt;br /&gt;
{{lop/wild2|185|Sudowoodo}}&lt;br /&gt;
{{lop/wild2|186|Politoed|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|187|Hoppip}}&lt;br /&gt;
{{lop/wild2|188|Skiploom}}&lt;br /&gt;
{{lop/wild2|189|Jumpluff}}&lt;br /&gt;
{{lop/wild2|190|Aipom}}&lt;br /&gt;
{{lop/wild2|191|Sunkern|||||||Coba Berry|BW5=Coba Berry}}&lt;br /&gt;
{{lop/wild2|192|Sunflora}}&lt;br /&gt;
{{lop/wild2|193|Yanma|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|194|Wooper}}&lt;br /&gt;
{{lop/wild2|195|Quagsire}}&lt;br /&gt;
{{lop/wild2|196|Espeon}}&lt;br /&gt;
{{lop/wild2|197|Umbreon}}&lt;br /&gt;
{{lop/wild2|198|Murkrow}}&lt;br /&gt;
{{lop/wild2|199|Slowking|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|199|Slowking|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|200|Misdreavus|Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|201|Unown}}&lt;br /&gt;
{{lop/wild2|202|Wobbuffet}}&lt;br /&gt;
{{lop/wild2|203|Girafarig|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|204|Pineco}}&lt;br /&gt;
{{lop/wild2|205|Forretress}}&lt;br /&gt;
{{lop/wild2|206|Dunsparce}}&lt;br /&gt;
{{lop/wild2|207|Gligar}}&lt;br /&gt;
{{lop/wild2|208|Steelix|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|209|Snubbull}}&lt;br /&gt;
{{lop/wild2|210|Granbull}}&lt;br /&gt;
{{lop/wild2|211|Qwilfish|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|212|Scizor}}&lt;br /&gt;
{{lop/wild2|213|Shuckle|||Oran Berry|||Berry Juice|||Oran Berry|||||||Berry Juice|||Berry Juice|||Berry Juice|HGSS=Berry Juice|4notes100=HGSS}}&lt;br /&gt;
{{lop/wild2|214|Heracross}}&lt;br /&gt;
{{lop/wild2|215|Sneasel|Quick Claw||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|216|Teddiursa||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|217|Ursaring||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|218|Slugma}}&lt;br /&gt;
{{lop/wild2|219|Magcargo}}&lt;br /&gt;
{{lop/wild2|220|Swinub|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|221|Piloswine||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|222|Corsola|Red Shard|||Red Shard|||Hard Stone||||Hard Stone||||||Luminous Moss|||Luminous Moss|XY5=Hard Stone|ORAS5=Luminous Moss}}&lt;br /&gt;
{{lop/wild2|222|Corsola|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|223|Remoraid}}&lt;br /&gt;
{{lop/wild2|224|Octillery}}&lt;br /&gt;
{{lop/wild2|225|Delibird}}&lt;br /&gt;
{{lop/wild2|226|Mantine}}&lt;br /&gt;
{{lop/wild2|227|Skarmory||||Sharp Beak|||||||||||||Metal Coat|||Metal Coat|ORAS5=Metal Coat}}&lt;br /&gt;
{{lop/wild2|228|Houndour}}&lt;br /&gt;
{{lop/wild2|229|Houndoom}}&lt;br /&gt;
{{lop/wild2|230|Kingdra|Dragon Scale|||Dragon Scale|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|231|Phanpy|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|232|Donphan|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|233|Porygon2||||||Up-Grade}}&lt;br /&gt;
{{lop/wild2|234|Stantler}}&lt;br /&gt;
{{lop/wild2|235|Smeargle}}&lt;br /&gt;
{{lop/wild2|236|Tyrogue}}&lt;br /&gt;
{{lop/wild2|237|Hitmontop}}&lt;br /&gt;
{{lop/wild2|238|Smoochum|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|239|Elekid|||||||||||||||||Electirizer|||Electirizer|P=Electirizer|DPt=Electirizer|ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|240|Magby|||Rawst Berry||||||||||||||Magmarizer|||Magmarizer|D=Magmarizer|PPt=Magmarizer|ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|241|Miltank|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk||||Moomoo Milk|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk}}&lt;br /&gt;
{{lop/wild2|242|Blissey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||||Lucky Egg|||Lucky Egg|USUM5=Lucky Egg||||Lucky Egg}}&lt;br /&gt;
{{lop/wild2|243|Raikou}}&lt;br /&gt;
{{lop/wild2|244|Entei}}&lt;br /&gt;
{{lop/wild2|245|Suicune}}&lt;br /&gt;
{{lop/wild2|246|Larvitar}}&lt;br /&gt;
{{lop/wild2|247|Pupitar}}&lt;br /&gt;
{{lop/wild2|248|Tyranitar}}&lt;br /&gt;
{{lop/wild2|249|Lugia}}&lt;br /&gt;
{{lop/wild2|250|Ho-Oh|||Sacred Ash||||||Sacred Ash||||Sacred Ash|||Sacred Ash|||Sacred Ash}}&lt;br /&gt;
{{lop/wild2|251|Celebi|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|252|Treecko}}&lt;br /&gt;
{{lop/wild2|253|Grovyle}}&lt;br /&gt;
{{lop/wild2|254|Sceptile}}&lt;br /&gt;
{{lop/wild2|255|Torchic}}&lt;br /&gt;
{{lop/wild2|256|Combusken}}&lt;br /&gt;
{{lop/wild2|257|Blaziken}}&lt;br /&gt;
{{lop/wild2|258|Mudkip}}&lt;br /&gt;
{{lop/wild2|259|Marshtomp}}&lt;br /&gt;
{{lop/wild2|260|Swampert}}&lt;br /&gt;
{{lop/wild2|261|Poochyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|262|Mightyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry||||||Revive|Potion||Revive|Potion|ORAS5=Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|264|Linoone|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry|||||Max Revive|Potion||Max Revive|Potion|ORAS5=Max Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|264|Linoone|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|265|Wurmple|||||||||||||||||Bright Powder|Pecha Berry|ORAS5=Bright Powder|ORAS50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|266|Silcoon}}&lt;br /&gt;
{{lop/wild2|267|Beautifly|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|268|Cascoon}}&lt;br /&gt;
{{lop/wild2|269|Dustox|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|270|Lotad|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|271|Lombre|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|272|Ludicolo|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|273|Seedot|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|274|Nuzleaf|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|275|Shiftry|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|276|Taillow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|277|Swellow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|278|Wingull||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|279|Pelipper||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS5=Lucky Egg|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|280|Ralts}}&lt;br /&gt;
{{lop/wild2|281|Kirlia}}&lt;br /&gt;
{{lop/wild2|282|Gardevoir}}&lt;br /&gt;
{{lop/wild2|283|Surskit||||||||||||||||||Honey|ORAS5=Honey}}&lt;br /&gt;
{{lop/wild2|284|Masquerain|Silver Powder|||Silver Powder|||Silver Powder||||SilverPowder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|285|Shroomish|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|286|Breloom|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|287|Slakoth}}&lt;br /&gt;
{{lop/wild2|288|Vigoroth}}&lt;br /&gt;
{{lop/wild2|289|Slaking}}&lt;br /&gt;
{{lop/wild2|290|Nincada|||||||||||||||||Soft Sand|||Soft Sand|ORAS5=Soft Sand}}&lt;br /&gt;
{{lop/wild2|291|Ninjask}}&lt;br /&gt;
{{lop/wild2|292|Shedinja}}&lt;br /&gt;
{{lop/wild2|293|Whismur|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|294|Loudred|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|295|Exploud|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|296|Makuhita|||||||||||||||||Black Belt|ORAS5=Black Belt}}&lt;br /&gt;
{{lop/wild2|297|Hariyama|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|298|Azurill}}&lt;br /&gt;
{{lop/wild2|299|Nosepass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|300|Skitty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|301|Delcatty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|302|Sableye|||||||||||||||||Wide Lens|||Wide Lens|ORAS5=Wide Lens}}&lt;br /&gt;
{{lop/wild2|303|Mawile|||||||Occa Berry||||Occa Berry||||||Iron Ball|||Iron Ball|ORAS5=Iron Ball}}&lt;br /&gt;
{{lop/wild2|304|Aron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|305|Lairon|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|306|Aggron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|307|Meditite}}&lt;br /&gt;
{{lop/wild2|308|Medicham}}&lt;br /&gt;
{{lop/wild2|309|Electrike}}&lt;br /&gt;
{{lop/wild2|310|Manectric}}&lt;br /&gt;
{{lop/wild2|311|Plusle|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|312|Minun|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|313|Volbeat|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|314|Illumise|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|315|Roselia|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|316|Gulpin|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|317|Swalot|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|318|Carvanha|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|319|Sharpedo|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|320|Wailmer}}&lt;br /&gt;
{{lop/wild2|321|Wailord}}&lt;br /&gt;
{{lop/wild2|322|Numel|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|323|Camerupt|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|324|Torkoal||||||||||||||Charcoal|||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|325|Spoink|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|326|Grumpig|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|327|Spinda|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|328|Trapinch|Soft Sand|||Soft Sand|||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|329|Vibrava}}&lt;br /&gt;
{{lop/wild2|330|Flygon}}&lt;br /&gt;
{{lop/wild2|331|Cacnea|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|332|Cacturne|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|333|Swablu}}&lt;br /&gt;
{{lop/wild2|334|Altaria}}&lt;br /&gt;
{{lop/wild2|335|Zangoose|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|336|Seviper|||||||||||||||||Shed Shell|XY100=Persim Berry|ORAS5=Shed Shell}}&lt;br /&gt;
{{lop/wild2|337|Lunatone|Moon Stone|||Moon Stone|||Moon Stone|||Comet Shard|Moon Stone|||Moon Stone|||Moon Stone|Stardust||Moon Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|338|Solrock|Sun Stone|||Sun Stone|||Sun Stone|||Comet Shard|Sun Stone|||Sun Stone|||Sun Stone|Stardust||Sun Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|339|Barboach}}&lt;br /&gt;
{{lop/wild2|340|Whiscash}}&lt;br /&gt;
{{lop/wild2|341|Corphish}}&lt;br /&gt;
{{lop/wild2|342|Crawdaunt}}&lt;br /&gt;
{{lop/wild2|343|Baltoy|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|344|Claydol|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|345|Lileep|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|346|Cradily|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|347|Anorith}}&lt;br /&gt;
{{lop/wild2|348|Armaldo}}&lt;br /&gt;
{{lop/wild2|349|Feebas}}&lt;br /&gt;
{{lop/wild2|350|Milotic}}&lt;br /&gt;
{{lop/wild2|351|Castform|||Mystic Water|||Mystic Water|||Mystic Water||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|352|Kecleon|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|353|Shuppet|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|354|Banette|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|355|Duskull|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|356|Dusclops|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|357|Tropius}}&lt;br /&gt;
{{lop/wild2|358|Chimecho|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|359|Absol|ORAS5=Life Orb}}&lt;br /&gt;
{{lop/wild2|360|Wynaut}}&lt;br /&gt;
{{lop/wild2|361|Snorunt|||||||Babiri Berry||||Babiri Berry||||||Snowball|||Snowball|ORAS5=Snowball}}&lt;br /&gt;
{{lop/wild2|362|Glalie|Never-Melt Ice|||Never-Melt Ice|||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|363|Spheal}}&lt;br /&gt;
{{lop/wild2|364|Sealeo}}&lt;br /&gt;
{{lop/wild2|365|Walrein}}&lt;br /&gt;
{{lop/wild2|366|Clamperl|Blue Shard|||Blue Shard|||Big Pearl||||Big Pearl|||Big Pearl|||Big Pearl|Pearl|ORAS50=Pearl}}&lt;br /&gt;
{{lop/wild2|367|Huntail|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|368|Gorebyss|||||||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|369|Relicanth|Green Shard|||Green Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|370|Luvdisc||Heart Scale|||Heart Scale|||Heart Scale||||Heart Scale|||Heart Scale|||Heart Scale}}&lt;br /&gt;
{{lop/wild2|371|Bagon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|372|Shelgon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|373|Salamence|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|374|Beldum|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|375|Metang|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|376|Metagross|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|377|Regirock}}&lt;br /&gt;
{{lop/wild2|378|Regice}}&lt;br /&gt;
{{lop/wild2|379|Registeel}}&lt;br /&gt;
{{lop/wild2|380|Latias}}&lt;br /&gt;
{{lop/wild2|381|Latios}}&lt;br /&gt;
{{lop/wild2|382|Kyogre}}&lt;br /&gt;
{{lop/wild2|383|Groudon}}&lt;br /&gt;
{{lop/wild2|384|Rayquaza}}&lt;br /&gt;
{{lop/wild2|385|Jirachi|||Star Piece|||Star Piece|||Star Piece||||Star Piece|||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|386|Deoxys}}&lt;br /&gt;
{{lop/wild2|387|Turtwig}}&lt;br /&gt;
{{lop/wild2|388|Grotle}}&lt;br /&gt;
{{lop/wild2|389|Torterra}}&lt;br /&gt;
{{lop/wild2|390|Chimchar}}&lt;br /&gt;
{{lop/wild2|391|Monferno}}&lt;br /&gt;
{{lop/wild2|392|Infernape}}&lt;br /&gt;
{{lop/wild2|393|Piplup}}&lt;br /&gt;
{{lop/wild2|394|Prinplup}}&lt;br /&gt;
{{lop/wild2|395|Empoleon}}&lt;br /&gt;
{{lop/wild2|396|Starly|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|397|Staravia|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|398|Staraptor|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|399|Bidoof}}&lt;br /&gt;
{{lop/wild2|400|Bibarel|||||||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|401|Kricketot|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|402|Kricketune|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|403|Shinx}}&lt;br /&gt;
{{lop/wild2|404|Luxio}}&lt;br /&gt;
{{lop/wild2|405|Luxray}}&lt;br /&gt;
{{lop/wild2|406|Budew|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|407|Roserade|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|408|Cranidos}}&lt;br /&gt;
{{lop/wild2|409|Rampardos}}&lt;br /&gt;
{{lop/wild2|410|Shieldon}}&lt;br /&gt;
{{lop/wild2|411|Bastiodon}}&lt;br /&gt;
{{lop/wild2|412|Burmy}}&lt;br /&gt;
{{lop/wild2|413|Wormadam|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|414|Mothim|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|415|Combee|||||||||Honey|||||Honey|||Honey|||Honey|B2W2-5=Honey|BW100=Honey}}&lt;br /&gt;
{{lop/wild2|416|Vespiquen|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|417|Pachirisu}}&lt;br /&gt;
{{lop/wild2|418|Buizel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|419|Floatzel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|420|Cherubi|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|421|Cherrim|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|422|Shellos}}&lt;br /&gt;
{{lop/wild2|423|Gastrodon}}&lt;br /&gt;
{{lop/wild2|424|Ambipom}}&lt;br /&gt;
{{lop/wild2|425|Drifloon}}&lt;br /&gt;
{{lop/wild2|426|Drifblim|B2W2-1=Air Balloon}}&lt;br /&gt;
{{lop/wild2|427|Buneary|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|428|Lopunny|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|429|Mismagius}}&lt;br /&gt;
{{lop/wild2|430|Honchkrow}}&lt;br /&gt;
{{lop/wild2|431|Glameow|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|432|Purugly|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|433|Chingling|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|434|Stunky|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|435|Skuntank|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|436|Bronzor|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|437|Bronzong|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|438|Bonsly}}&lt;br /&gt;
{{lop/wild2|439|Mime Jr.|||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|440|Happiny|||||||Lucky Punch|Oval Stone|||Lucky Egg|Oval Stone||Lucky Egg|Oval Stone|||Oval Stone|||Oval Stone}}&lt;br /&gt;
{{lop/wild2|441|Chatot|||||||Metronome||||Metronome|||Metronome|||Metronome}}&lt;br /&gt;
{{lop/wild2|442|Spiritomb|ORAS100=Smoke Ball}}&lt;br /&gt;
{{lop/wild2|443|Gible|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|444|Gabite|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|445|Garchomp|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|446|Munchlax|||||||||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|447|Riolu}}&lt;br /&gt;
{{lop/wild2|448|Lucario}}&lt;br /&gt;
{{lop/wild2|449|Hippopotas}}&lt;br /&gt;
{{lop/wild2|450|Hippowdon}}&lt;br /&gt;
{{lop/wild2|451|Skorupi|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|452|Drapion|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|453|Croagunk|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|454|Toxicroak|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|455|Carnivine}}&lt;br /&gt;
{{lop/wild2|456|Finneon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|457|Lumineon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|458|Mantyke}}&lt;br /&gt;
{{lop/wild2|459|Snover|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|460|Abomasnow|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|461|Weavile|||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|462|Magnezone|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|463|Lickilicky|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|464|Rhyperior}}&lt;br /&gt;
{{lop/wild2|465|Tangrowth}}&lt;br /&gt;
{{lop/wild2|466|Electivire||||||||||||||Electirizer|||Electirizer|||Electirizer|PHGSS=Electirizer|DPt=Electirizer}}&lt;br /&gt;
{{lop/wild2|467|Magmortar||||||||||||||Magmarizer|||Magmarizer|||Magmarizer|DHGSS=Magmarizer|PPt=Magmarizer}}&lt;br /&gt;
{{lop/wild2|468|Togekiss}}&lt;br /&gt;
{{lop/wild2|469|Yanmega|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|470|Leafeon}}&lt;br /&gt;
{{lop/wild2|471|Glaceon}}&lt;br /&gt;
{{lop/wild2|472|Gliscor}}&lt;br /&gt;
{{lop/wild2|473|Mamoswine}}&lt;br /&gt;
{{lop/wild2|474|Porygon-Z}}&lt;br /&gt;
{{lop/wild2|475|Gallade}}&lt;br /&gt;
{{lop/wild2|476|Probopass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|477|Dusknoir|||||||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|478|Froslass|||||||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|479|Rotom}}&lt;br /&gt;
{{lop/wild2|480|Uxie}}&lt;br /&gt;
{{lop/wild2|481|Mesprit}}&lt;br /&gt;
{{lop/wild2|482|Azelf}}&lt;br /&gt;
{{lop/wild2|483|Dialga}}&lt;br /&gt;
{{lop/wild2|484|Palkia}}&lt;br /&gt;
{{lop/wild2|485|Heatran}}&lt;br /&gt;
{{lop/wild2|486|Regigigas}}&lt;br /&gt;
{{lop/wild2|487|Giratina}}&lt;br /&gt;
{{lop/wild2|488|Cresselia}}&lt;br /&gt;
{{lop/wild2|489|Phione}}&lt;br /&gt;
{{lop/wild2|490|Manaphy}}&lt;br /&gt;
{{lop/wild2|491|Darkrai}}&lt;br /&gt;
{{lop/wild2|492|Shaymin|||||||||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|493|Arceus}}&lt;br /&gt;
{{lop/wild2|494|Victini}}&lt;br /&gt;
{{lop/wild2|495|Snivy}}&lt;br /&gt;
{{lop/wild2|496|Servine}}&lt;br /&gt;
{{lop/wild2|497|Serperior}}&lt;br /&gt;
{{lop/wild2|498|Tepig}}&lt;br /&gt;
{{lop/wild2|499|Pignite}}&lt;br /&gt;
{{lop/wild2|500|Emboar}}&lt;br /&gt;
{{lop/wild2|501|Oshawott}}&lt;br /&gt;
{{lop/wild2|502|Dewott}}&lt;br /&gt;
{{lop/wild2|503|Samurott}}&lt;br /&gt;
{{lop/wild2|504|Patrat}}&lt;br /&gt;
{{lop/wild2|505|Watchog}}&lt;br /&gt;
{{lop/wild2|506|Lillipup}}&lt;br /&gt;
{{lop/wild2|507|Herdier}}&lt;br /&gt;
{{lop/wild2|508|Stoutland}}&lt;br /&gt;
{{lop/wild2|509|Purrloin}}&lt;br /&gt;
{{lop/wild2|510|Liepard}}&lt;br /&gt;
{{lop/wild2|511|Pansage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|512|Simisage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|513|Pansear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|514|Simisear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|515|Panpour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|516|Simipour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|517|Munna}}&lt;br /&gt;
{{lop/wild2|518|Musharna}}&lt;br /&gt;
{{lop/wild2|519|Pidove}}&lt;br /&gt;
{{lop/wild2|520|Tranquill}}&lt;br /&gt;
{{lop/wild2|521|Unfezant}}&lt;br /&gt;
{{lop/wild2|522|Blitzle||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|523|Zebstrika||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|524|Roggenrola|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|525|Boldore|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|526|Gigalith|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|527|Woobat}}&lt;br /&gt;
{{lop/wild2|528|Swoobat}}&lt;br /&gt;
{{lop/wild2|529|Drilbur}}&lt;br /&gt;
{{lop/wild2|530|Excadrill}}&lt;br /&gt;
{{lop/wild2|531|Audino|||||||||||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|532|Timburr}}&lt;br /&gt;
{{lop/wild2|533|Gurdurr}}&lt;br /&gt;
{{lop/wild2|534|Conkeldurr}}&lt;br /&gt;
{{lop/wild2|535|Tympole|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|536|Palpitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|537|Seismitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|538|Throh||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|539|Sawk||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|540|Sewaddle|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|541|Swadloon|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|542|Leavanny|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|543|Venipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|544|Whirlipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|545|Scolipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|546|Cottonee|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|547|Whimsicott|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|548|Petilil|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|549|Lilligant|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth|form=Red-Striped}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale|form=Blue-Striped}}&lt;br /&gt;
{{lop/wild2|551|Sandile|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|552|Krokorok|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|553|Krookodile||||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|554|Darumaka||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|554|Darumaka|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|556|Maractus|||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|557|Dwebble||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|558|Crustle||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|559|Scraggy|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|560|Scrafty|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|561|Sigilyph}}&lt;br /&gt;
{{lop/wild2|562|Yamask|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|562|Yamask|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|563|Cofagrigus|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|564|Tirtouga}}&lt;br /&gt;
{{lop/wild2|565|Carracosta}}&lt;br /&gt;
{{lop/wild2|566|Archen}}&lt;br /&gt;
{{lop/wild2|567|Archeops}}&lt;br /&gt;
{{lop/wild2|568|Trubbish||||||||||Nugget|Black Sludge|||Black Sludge|||Silk Scarf|||Silk Scarf}}&lt;br /&gt;
{{lop/wild2|569|Garbodor||||||||||Big Nugget|Nugget|Black Sludge||Nugget|Black Sludge||Black Sludge|Silk Scarf||Black Sludge|Silk Scarf}}&lt;br /&gt;
{{lop/wild2|570|Zorua}}&lt;br /&gt;
{{lop/wild2|571|Zoroark}}&lt;br /&gt;
{{lop/wild2|572|Minccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|573|Cinccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|574|Gothita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|575|Gothorita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|576|Gothitelle|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|577|Solosis|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|578|Duosion|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|579|Reuniclus|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|580|Ducklett}}&lt;br /&gt;
{{lop/wild2|581|Swanna}}&lt;br /&gt;
{{lop/wild2|582|Vanillite|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|583|Vanillish|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|584|Vanilluxe||||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|585|Deerling}}&lt;br /&gt;
{{lop/wild2|586|Sawsbuck}}&lt;br /&gt;
{{lop/wild2|587|Emolga|||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|588|Karrablast}}&lt;br /&gt;
{{lop/wild2|589|Escavalier}}&lt;br /&gt;
{{lop/wild2|590|Foongus||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|591|Amoonguss||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|592|Frillish}}&lt;br /&gt;
{{lop/wild2|593|Jellicent}}&lt;br /&gt;
{{lop/wild2|594|Alomomola}}&lt;br /&gt;
{{lop/wild2|595|Joltik}}&lt;br /&gt;
{{lop/wild2|596|Galvantula}}&lt;br /&gt;
{{lop/wild2|597|Ferroseed|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|598|Ferrothorn|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|599|Klink}}&lt;br /&gt;
{{lop/wild2|600|Klang}}&lt;br /&gt;
{{lop/wild2|601|Klinklang}}&lt;br /&gt;
{{lop/wild2|602|Tynamo}}&lt;br /&gt;
{{lop/wild2|603|Eelektrik}}&lt;br /&gt;
{{lop/wild2|604|Eelektross}}&lt;br /&gt;
{{lop/wild2|605|Elgyem}}&lt;br /&gt;
{{lop/wild2|606|Beheeyem}}&lt;br /&gt;
{{lop/wild2|607|Litwick}}&lt;br /&gt;
{{lop/wild2|608|Lampent}}&lt;br /&gt;
{{lop/wild2|609|Chandelure}}&lt;br /&gt;
{{lop/wild2|610|Axew}}&lt;br /&gt;
{{lop/wild2|611|Fraxure}}&lt;br /&gt;
{{lop/wild2|612|Haxorus}}&lt;br /&gt;
{{lop/wild2|613|Cubchoo||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|614|Beartic||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|615|Cryogonal|||||||||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|616|Shelmet}}&lt;br /&gt;
{{lop/wild2|617|Accelgor}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|||||||||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|619|Mienfoo}}&lt;br /&gt;
{{lop/wild2|620|Mienshao}}&lt;br /&gt;
{{lop/wild2|621|Druddigon|||||||||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|622|Golett|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|623|Golurk|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|624|Pawniard}}&lt;br /&gt;
{{lop/wild2|625|Bisharp}}&lt;br /&gt;
{{lop/wild2|626|Bouffalant}}&lt;br /&gt;
{{lop/wild2|627|Rufflet}}&lt;br /&gt;
{{lop/wild2|628|Braviary}}&lt;br /&gt;
{{lop/wild2|629|Vullaby}}&lt;br /&gt;
{{lop/wild2|630|Mandibuzz}}&lt;br /&gt;
{{lop/wild2|631|Heatmor|B2W2-1=Flame Orb}}&lt;br /&gt;
{{lop/wild2|632|Durant}}&lt;br /&gt;
{{lop/wild2|633|Deino}}&lt;br /&gt;
{{lop/wild2|634|Zweilous}}&lt;br /&gt;
{{lop/wild2|635|Hydreigon}}&lt;br /&gt;
{{lop/wild2|636|Larvesta}}&lt;br /&gt;
{{lop/wild2|637|Volcarona|||||||||||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|638|Cobalion}}&lt;br /&gt;
{{lop/wild2|639|Terrakion}}&lt;br /&gt;
{{lop/wild2|640|Virizion}}&lt;br /&gt;
{{lop/wild2|641|Tornadus}}&lt;br /&gt;
{{lop/wild2|642|Thundurus}}&lt;br /&gt;
{{lop/wild2|643|Reshiram}}&lt;br /&gt;
{{lop/wild2|644|Zekrom}}&lt;br /&gt;
{{lop/wild2|645|Landorus}}&lt;br /&gt;
{{lop/wild2|646|Kyurem}}&lt;br /&gt;
{{lop/wild2|647|Keldeo}}&lt;br /&gt;
{{lop/wild2|648|Meloetta|||||||||||||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|649|Genesect}}&lt;br /&gt;
{{lop/wild2|650|Chespin}}&lt;br /&gt;
{{lop/wild2|651|Quilladin}}&lt;br /&gt;
{{lop/wild2|652|Chesnaught}}&lt;br /&gt;
{{lop/wild2|653|Fennekin}}&lt;br /&gt;
{{lop/wild2|654|Braixen}}&lt;br /&gt;
{{lop/wild2|655|Delphox}}&lt;br /&gt;
{{lop/wild2|656|Froakie}}&lt;br /&gt;
{{lop/wild2|657|Frogadier}}&lt;br /&gt;
{{lop/wild2|658|Greninja}}&lt;br /&gt;
{{lop/wild2|659|Bunnelby}}&lt;br /&gt;
{{lop/wild2|660|Diggersby}}&lt;br /&gt;
{{lop/wild2|661|Fletchling}}&lt;br /&gt;
{{lop/wild2|662|Fletchinder}}&lt;br /&gt;
{{lop/wild2|663|Talonflame}}&lt;br /&gt;
{{lop/wild2|664|Scatterbug}}&lt;br /&gt;
{{lop/wild2|665|Spewpa}}&lt;br /&gt;
{{lop/wild2|666|Vivillon}}&lt;br /&gt;
{{lop/wild2|667|Litleo}}&lt;br /&gt;
{{lop/wild2|668|Pyroar}}&lt;br /&gt;
{{lop/wild2|669|Flabébé}}&lt;br /&gt;
{{lop/wild2|670|Floette}}&lt;br /&gt;
{{lop/wild2|671|Florges}}&lt;br /&gt;
{{lop/wild2|672|Skiddo}}&lt;br /&gt;
{{lop/wild2|673|Gogoat}}&lt;br /&gt;
{{lop/wild2|674|Pancham||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|675|Pangoro||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|676|Furfrou}}&lt;br /&gt;
{{lop/wild2|677|Espurr}}&lt;br /&gt;
{{lop/wild2|678|Meowstic}}&lt;br /&gt;
{{lop/wild2|679|Honedge}}&lt;br /&gt;
{{lop/wild2|680|Doublade}}&lt;br /&gt;
{{lop/wild2|681|Aegislash}}&lt;br /&gt;
{{lop/wild2|682|Spritzee}}&lt;br /&gt;
{{lop/wild2|683|Aromatisse}}&lt;br /&gt;
{{lop/wild2|684|Swirlix}}&lt;br /&gt;
{{lop/wild2|685|Slurpuff}}&lt;br /&gt;
{{lop/wild2|686|Inkay}}&lt;br /&gt;
{{lop/wild2|687|Malamar}}&lt;br /&gt;
{{lop/wild2|688|Binacle}}&lt;br /&gt;
{{lop/wild2|689|Barbaracle}}&lt;br /&gt;
{{lop/wild2|690|Skrelp}}&lt;br /&gt;
{{lop/wild2|691|Dragalge}}&lt;br /&gt;
{{lop/wild2|692|Clauncher}}&lt;br /&gt;
{{lop/wild2|693|Clawitzer}}&lt;br /&gt;
{{lop/wild2|694|Helioptile}}&lt;br /&gt;
{{lop/wild2|695|Heliolisk}}&lt;br /&gt;
{{lop/wild2|696|Tyrunt}}&lt;br /&gt;
{{lop/wild2|697|Tyrantrum}}&lt;br /&gt;
{{lop/wild2|698|Amaura}}&lt;br /&gt;
{{lop/wild2|699|Aurorus}}&lt;br /&gt;
{{lop/wild2|700|Sylveon}}&lt;br /&gt;
{{lop/wild2|701|Hawlucha||||||||||||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|702|Dedenne}}&lt;br /&gt;
{{lop/wild2|703|Carbink}}&lt;br /&gt;
{{lop/wild2|704|Goomy|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|705|Sliggoo|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|706|Goodra}}&lt;br /&gt;
{{lop/wild2|707|Klefki}}&lt;br /&gt;
{{lop/wild2|708|Phantump}}&lt;br /&gt;
{{lop/wild2|709|Trevenant}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Small Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Average Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Large Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Small Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Average Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Large Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|712|Bergmite}}&lt;br /&gt;
{{lop/wild2|713|Avalugg}}&lt;br /&gt;
{{lop/wild2|714|Noibat}}&lt;br /&gt;
{{lop/wild2|715|Noivern}}&lt;br /&gt;
{{lop/wild2|716|Xerneas}}&lt;br /&gt;
{{lop/wild2|717|Yveltal}}&lt;br /&gt;
{{lop/wild2|718|Zygarde}}&lt;br /&gt;
{{lop/wild2|719|Diancie}}&lt;br /&gt;
{{lop/wild2|720|Hoopa}}&lt;br /&gt;
{{lop/wild2|721|Volcanion}}&lt;br /&gt;
{{lop/wild2|722|Rowlet}}&lt;br /&gt;
{{lop/wild2|723|Dartrix}}&lt;br /&gt;
{{lop/wild2|724|Decidueye}}&lt;br /&gt;
{{lop/wild2|725|Litten}}&lt;br /&gt;
{{lop/wild2|726|Torracat}}&lt;br /&gt;
{{lop/wild2|727|Incineroar}}&lt;br /&gt;
{{lop/wild2|728|Popplio}}&lt;br /&gt;
{{lop/wild2|729|Brionne}}&lt;br /&gt;
{{lop/wild2|730|Primarina}}&lt;br /&gt;
{{lop/wild2|731|Pikipek|||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|732|Trumbeak|||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|733|Toucannon|||||||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|734|Yungoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|735|Gumshoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|736|Grubbin}}&lt;br /&gt;
{{lop/wild2|737|Charjabug|||||||||||||||||Cell Battery|||Cell Battery}}&lt;br /&gt;
{{lop/wild2|738|Vikavolt}}&lt;br /&gt;
{{lop/wild2|739|Crabrawler|||||||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|740|Crabominable|||||||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|741|Oricorio|||||||||||||||||Honey}}&lt;br /&gt;
{{lop/wild2|742|Cutiefly|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|743|Ribombee|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|744|Rockruff}}&lt;br /&gt;
{{lop/wild2|745|Lycanroc}}&lt;br /&gt;
{{lop/wild2|746|Wishiwashi}}&lt;br /&gt;
{{lop/wild2|747|Mareanie|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|748|Toxapex|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|749|Mudbray|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|750|Mudsdale|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|751|Dewpider|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|752|Araquanid|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|753|Fomantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|754|Lurantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|755|Morelull|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|756|Shiinotic|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|757|Salandit|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|758|Salazzle|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|759|Stufful}}&lt;br /&gt;
{{lop/wild2|760|Bewear}}&lt;br /&gt;
{{lop/wild2|761|Bounsweet|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|762|Steenee|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|763|Tsareena||||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|764|Comfey|||||||||||||||||Misty Seed|||Misty Seed}}&lt;br /&gt;
{{lop/wild2|765|Oranguru}}&lt;br /&gt;
{{lop/wild2|766|Passimian}}&lt;br /&gt;
{{lop/wild2|767|Wimpod}}&lt;br /&gt;
{{lop/wild2|768|Golisopod}}&lt;br /&gt;
{{lop/wild2|769|Sandygast|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|770|Palossand|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|771|Pyukumuku}}&lt;br /&gt;
{{lop/wild2|772|Type: Null}}&lt;br /&gt;
{{lop/wild2|773|Silvally}}&lt;br /&gt;
{{lop/wild2|774|Minior|||||||||||||||||Star Piece}}&lt;br /&gt;
{{lop/wild2|775|Komala}}&lt;br /&gt;
{{lop/wild2|776|Turtonator|||||||||||||||||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|777|Togedemaru|||||||||||||||||Electric Seed|||Electric Seed}}&lt;br /&gt;
{{lop/wild2|778|Mimikyu|||||||||||||||||Chesto Berry|||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|779|Bruxish|||||||||||||||||Razor Fang}}&lt;br /&gt;
{{lop/wild2|780|Drampa|||||||||||||||||Persim Berry|||Persim Berry}}&lt;br /&gt;
{{lop/wild2|781|Dhelmise}}&lt;br /&gt;
{{lop/wild2|782|Jangmo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|783|Hakamo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|784|Kommo-o||||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|785|Tapu Koko}}&lt;br /&gt;
{{lop/wild2|786|Tapu Lele}}&lt;br /&gt;
{{lop/wild2|787|Tapu Bulu}}&lt;br /&gt;
{{lop/wild2|788|Tapu Fini}}&lt;br /&gt;
{{lop/wild2|789|Cosmog}}&lt;br /&gt;
{{lop/wild2|790|Cosmoem}}&lt;br /&gt;
{{lop/wild2|791|Solgaleo}}&lt;br /&gt;
{{lop/wild2|792|Lunala}}&lt;br /&gt;
{{lop/wild2|793|Nihilego}}&lt;br /&gt;
{{lop/wild2|794|Buzzwole}}&lt;br /&gt;
{{lop/wild2|795|Pheromosa}}&lt;br /&gt;
{{lop/wild2|796|Xurkitree}}&lt;br /&gt;
{{lop/wild2|797|Celesteela}}&lt;br /&gt;
{{lop/wild2|798|Kartana}}&lt;br /&gt;
{{lop/wild2|799|Guzzlord}}&lt;br /&gt;
{{lop/wild2|800|Necrozma}}&lt;br /&gt;
{{lop/wild2|801|Magearna}}&lt;br /&gt;
{{lop/wild2|802|Marshadow}}&lt;br /&gt;
{{lop/wild2|803|Poipole}}&lt;br /&gt;
{{lop/wild2|804|Naganadel}}&lt;br /&gt;
{{lop/wild2|805|Stakataka}}&lt;br /&gt;
{{lop/wild2|806|Blacephalon}}&lt;br /&gt;
{{lop/wild2|807|Zeraora}}&lt;br /&gt;
{{lop/wild2|808|Meltan}}&lt;br /&gt;
{{lop/wild2|809|Melmetal}}&lt;br /&gt;
{{lop/wild2|810|Grookey}}&lt;br /&gt;
{{lop/wild2|811|Thwackey}}&lt;br /&gt;
{{lop/wild2|812|Rillaboom}}&lt;br /&gt;
{{lop/wild2|813|Scorbunny}}&lt;br /&gt;
{{lop/wild2|814|Raboot}}&lt;br /&gt;
{{lop/wild2|815|Cinderace}}&lt;br /&gt;
{{lop/wild2|816|Sobble}}&lt;br /&gt;
{{lop/wild2|817|Drizzile}}&lt;br /&gt;
{{lop/wild2|818|Inteleon}}&lt;br /&gt;
{{lop/wild2|819|Skwovet||||||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|820|Greedent||||||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|821|Rookidee}}&lt;br /&gt;
{{lop/wild2|822|Corvisquire}}&lt;br /&gt;
{{lop/wild2|823|Corviknight}}&lt;br /&gt;
{{lop/wild2|824|Blipbug}}&lt;br /&gt;
{{lop/wild2|825|Dottler||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|826|Orbeetle||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|827|Nickit}}&lt;br /&gt;
{{lop/wild2|828|Thievul}}&lt;br /&gt;
{{lop/wild2|829|Gossifleur}}&lt;br /&gt;
{{lop/wild2|830|Eldegoss}}&lt;br /&gt;
{{lop/wild2|831|Wooloo}}&lt;br /&gt;
{{lop/wild2|832|Dubwool}}&lt;br /&gt;
{{lop/wild2|833|Chewtle}}&lt;br /&gt;
{{lop/wild2|834|Drednaw}}&lt;br /&gt;
{{lop/wild2|835|Yamper}}&lt;br /&gt;
{{lop/wild2|836|Boltund}}&lt;br /&gt;
{{lop/wild2|837|Rolycoly}}&lt;br /&gt;
{{lop/wild2|838|Carkol}}&lt;br /&gt;
{{lop/wild2|839|Coalossal}}&lt;br /&gt;
{{lop/wild2|840|Applin}}&lt;br /&gt;
{{lop/wild2|841|Flapple}}&lt;br /&gt;
{{lop/wild2|842|Appletun}}&lt;br /&gt;
{{lop/wild2|843|Silicobra}}&lt;br /&gt;
{{lop/wild2|844|Sandaconda}}&lt;br /&gt;
{{lop/wild2|845|Cramorant}}&lt;br /&gt;
{{lop/wild2|846|Arrokuda}}&lt;br /&gt;
{{lop/wild2|847|Barraskewda}}&lt;br /&gt;
{{lop/wild2|848|Toxel}}&lt;br /&gt;
{{lop/wild2|849|Toxtricity}}&lt;br /&gt;
{{lop/wild2|850|Sizzlipede}}&lt;br /&gt;
{{lop/wild2|851|Centiskorch}}&lt;br /&gt;
{{lop/wild2|852|Clobbopus}}&lt;br /&gt;
{{lop/wild2|853|Grapploct}}&lt;br /&gt;
{{lop/wild2|854|Sinistea}}&lt;br /&gt;
{{lop/wild2|855|Polteageist}}&lt;br /&gt;
{{lop/wild2|856|Hatenna}}&lt;br /&gt;
{{lop/wild2|857|Hattrem}}&lt;br /&gt;
{{lop/wild2|858|Hatterene}}&lt;br /&gt;
{{lop/wild2|859|Impidimp}}&lt;br /&gt;
{{lop/wild2|860|Morgrem}}&lt;br /&gt;
{{lop/wild2|861|Grimmsnarl}}&lt;br /&gt;
{{lop/wild2|862|Obstagoon}}&lt;br /&gt;
{{lop/wild2|863|Perrserker}}&lt;br /&gt;
{{lop/wild2|864|Cursola}}&lt;br /&gt;
{{lop/wild2|865|Sirfetch&#039;d||||||||||||||||||||Leek}}&lt;br /&gt;
{{lop/wild2|866|Mr. Rime}}&lt;br /&gt;
{{lop/wild2|867|Runerigus}}&lt;br /&gt;
{{lop/wild2|868|Milcery}}&lt;br /&gt;
{{lop/wild2|869|Alcremie}}&lt;br /&gt;
{{lop/wild2|870|Falinks}}&lt;br /&gt;
{{lop/wild2|871|Pincurchin}}&lt;br /&gt;
{{lop/wild2|872|Snom||||||||||||||||||||Snowball}}&lt;br /&gt;
{{lop/wild2|873|Frosmoth}}&lt;br /&gt;
{{lop/wild2|874|Stonjourner}}&lt;br /&gt;
{{lop/wild2|875|Eiscue}}&lt;br /&gt;
{{lop/wild2|876|Indeedee}}&lt;br /&gt;
{{lop/wild2|877|Morpeko}}&lt;br /&gt;
{{lop/wild2|878|Cufant||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|879|Copperajah||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|880|Dracozolt}}&lt;br /&gt;
{{lop/wild2|881|Arctozolt}}&lt;br /&gt;
{{lop/wild2|882|Dracovish}}&lt;br /&gt;
{{lop/wild2|883|Arctovish}}&lt;br /&gt;
{{lop/wild2|884|Duraludon}}&lt;br /&gt;
{{lop/wild2|885|Dreepy}}&lt;br /&gt;
{{lop/wild2|886|Drakloak}}&lt;br /&gt;
{{lop/wild2|887|Dragapult}}&lt;br /&gt;
{{lop/wild2|888|Zacian}}&lt;br /&gt;
{{lop/wild2|889|Zamazenta}}&lt;br /&gt;
{{lop/wild2|890|Eternatus}}&lt;br /&gt;
{{lop/wild2|891|Kubfu}}&lt;br /&gt;
{{lop/wild2|892|Urshifu}}&lt;br /&gt;
{{lop/wild2|893|Zarude}}&lt;br /&gt;
{{lop/wild2|894|Regieleki}}&lt;br /&gt;
{{lop/wild2|895|Regidrago}}&lt;br /&gt;
{{lop/wild2|896|Glastrier}}&lt;br /&gt;
{{lop/wild2|897|Spectrier}}&lt;br /&gt;
{{lop/wild2|898|Calyrex}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In the internal data of [[Pokémon HOME]], {{p|Chansey}} was listed with a 50% chance of holding a [[Lucky Punch]] prior to version 1.1.0, {{p|Carvanha}} and {{p|Sharpedo}} were listed with a 5% chance of holding a [[Deep Sea Tooth]] prior to version 1.1.0, Relicanth was listed with a 5% chance of holding a [[Deep Sea Scale]] prior to version 1.2.0, and {{p|Ho-Oh}} was listed with a 100% chance of holding a [[Sacred Ash]] prior to version 1.2.0.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{pokelist}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project ItemDex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists]]&lt;br /&gt;
[[Category:Pokémon with wild held items|*]]&lt;br /&gt;
&lt;br /&gt;
[[es:Objetos que pueden llevar los Pokémon salvajes]]&lt;br /&gt;
[[fr:Liste des objets tenus par des Pokémon]]&lt;br /&gt;
[[it:Elenco Pokémon per strumento tenuto]]&lt;br /&gt;
[[ja:野生ポケモンのもちもの一覧]]&lt;br /&gt;
[[zh:宝可梦列表（按携带物品）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342316</id>
		<title>List of Pokémon by wild held item</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=List_of_Pok%C3%A9mon_by_wild_held_item&amp;diff=3342316"/>
		<updated>2021-03-20T17:41:38Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Held item table */ Magmar and Electabuzz held items were wrong in Gen 4, corrected to 5% only&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{move|List of wild Pokémon&#039;s held items}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;This article is about wild held items from Generation III onward. For wild held items in Generation II, see [[List of Pokémon by wild held item (Generation II)]].&#039;&#039;&lt;br /&gt;
This is a list of Pokémon by the [[item]]s they may be holding when caught from the wild from [[Generation III]] onward. Note that not all Pokémon listed can be caught legitimately in the wild, but their held item exists in the game&#039;s programming.&lt;br /&gt;
__TOC__&lt;br /&gt;
==Item rarity==&lt;br /&gt;
In most games, Pokémon have a 50% chance of appearing with a common item or a 5% chance of appearing with a rare item. If a Pokémon has the same item defined for both its common item and its rare item, it will appear with that item 100% of the time. In [[Generation V]], some Pokémon, if encountered in {{DL|tall grass|dark grass}}, also have a 1% chance of appearing with a third item.&lt;br /&gt;
&lt;br /&gt;
In {{game|Emerald}} and all games since [[Generation IV]], if a Pokémon with the Ability {{a|Compound Eyes}} leads the party (even if [[fainting|fainted]]), the chances of finding a wild Pokémon holding an item increase from 50%/5% to 60%/20% (in dark grass in Generation V, the chances becomes 60%/20%/5%).&lt;br /&gt;
&lt;br /&gt;
==Held item table==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #CCCCFF; border: 3px solid #BEBED1;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! &lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{hoenn color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (RSE)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kanto color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen III (FRLG)&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{sinnoh color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen IV&lt;br /&gt;
! colspan=4 style=&amp;quot;background:#{{unova color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen V&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{kalos color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VI&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{alola color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VII&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{galar color}}; {{roundytop|10px}}; font-size: 80%&amp;quot; | Gen VIII&lt;br /&gt;
|-&lt;br /&gt;
! [[National Pokédex|{{color|000|#}}]]&lt;br /&gt;
! &amp;amp;nbsp;&lt;br /&gt;
! Pokémon&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{hoenn color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{kanto color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{sinnoh color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | {{tt|1%|Dark grass only}}&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{unova color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 5%&amp;lt;!--only stated as &amp;quot;sometimes&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 50%&amp;lt;!--only stated as &amp;quot;often&amp;quot; in the Japanese guidebook, but likely this--&amp;gt;&lt;br /&gt;
! style=&amp;quot;background:#{{kalos color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{alola color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 5%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 50%&lt;br /&gt;
! style=&amp;quot;background:#{{galar color}}; font-size: 80%&amp;quot; | 100%&lt;br /&gt;
{{lop/wild2|001|Bulbasaur}}&lt;br /&gt;
{{lop/wild2|002|Ivysaur}}&lt;br /&gt;
{{lop/wild2|003|Venusaur}}&lt;br /&gt;
{{lop/wild2|004|Charmander}}&lt;br /&gt;
{{lop/wild2|005|Charmeleon}}&lt;br /&gt;
{{lop/wild2|006|Charizard}}&lt;br /&gt;
{{lop/wild2|007|Squirtle}}&lt;br /&gt;
{{lop/wild2|008|Wartortle}}&lt;br /&gt;
{{lop/wild2|009|Blastoise}}&lt;br /&gt;
{{lop/wild2|010|Caterpie}}&lt;br /&gt;
{{lop/wild2|011|Metapod}}&lt;br /&gt;
{{lop/wild2|012|Butterfree|Silver Powder|||Silver Powder|||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|013|Weedle}}&lt;br /&gt;
{{lop/wild2|014|Kakuna}}&lt;br /&gt;
{{lop/wild2|015|Beedrill|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|016|Pidgey}}&lt;br /&gt;
{{lop/wild2|017|Pidgeotto}}&lt;br /&gt;
{{lop/wild2|018|Pidgeot}}&lt;br /&gt;
{{lop/wild2|019|Rattata|||||||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|019A|Rattata|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|020|Raticate||||Sitrus Berry|Oran Berry||Chilan Berry|BW5=Chilan Berry}}&lt;br /&gt;
{{lop/wild2|020A|Raticate|||||||||||||||||Pecha Berry|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|021|Spearow|||||||||||||||||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|022|Fearow|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|023|Ekans}}&lt;br /&gt;
{{lop/wild2|024|Arbok||||Poison Barb}}&lt;br /&gt;
{{lop/wild2|025|Pikachu|Light Ball|Oran Berry|||||Light Ball|Oran Berry||||||Light Ball|||Light Ball|||Light Ball|BW1=Light Ball|B2W2-5=Light Ball|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026|Raichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|026A|Raichu|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|027|Sandshrew|Quick Claw||||||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|027A|Sandshrew|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|028|Sandslash|Quick Claw|||Soft Sand|||Quick Claw||||Quick Claw||||||Grip Claw|||Grip Claw|XY5=Quick Claw|ORAS5=Grip Claw}}&lt;br /&gt;
{{lop/wild2|028A|Sandslash|||||||||||||||||Grip Claw|||Grip Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|029|Nidoran♀}}&lt;br /&gt;
{{lop/wild2|030|Nidorina}}&lt;br /&gt;
{{lop/wild2|031|Nidoqueen}}&lt;br /&gt;
{{lop/wild2|032|Nidoran♂}}&lt;br /&gt;
{{lop/wild2|033|Nidorino}}&lt;br /&gt;
{{lop/wild2|034|Nidoking}}&lt;br /&gt;
{{lop/wild2|035|Clefairy|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|036|Clefable|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|037|Vulpix|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|037A|Vulpix|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|038|Ninetales|||Rawst Berry||Rawst Berry||||Rawst Berry||||Rawst Berry||||Charcoal|||Charcoal|ORAS5=Charcoal}}&lt;br /&gt;
{{lop/wild2|038A|Ninetales|||||||||||||||||Snowball|||Snowball|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|039|Jigglypuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|040|Wigglytuff|||||Oran Berry||||||||||||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|041|Zubat}}&lt;br /&gt;
{{lop/wild2|042|Golbat}}&lt;br /&gt;
{{lop/wild2|043|Oddish|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|044|Gloom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|045|Vileplume|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|046|Paras|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|047|Parasect|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|048|Venonat}}&lt;br /&gt;
{{lop/wild2|049|Venomoth||||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|050|Diglett|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|050A|Diglett|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|051|Dugtrio|||||||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|051A|Dugtrio|||||||||||||||||Soft Sand|||Soft Sand|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth||||Nugget|||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|052A|Meowth|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|052|Meowth|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|053|Persian|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|053A|Persian|||||||||||||||||Quick Claw|||Quick Claw|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|054|Psyduck}}&lt;br /&gt;
{{lop/wild2|055|Golduck}}&lt;br /&gt;
{{lop/wild2|056|Mankey|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|057|Primeape|||||||Payapa Berry||||Payapa Berry}}&lt;br /&gt;
{{lop/wild2|058|Growlithe|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|059|Arcanine|||Rawst Berry||Rawst Berry||||Rawst Berry|B2W2-50=Rawst Berry|BW100=Rawst Berry}}&lt;br /&gt;
{{lop/wild2|060|Poliwag}}&lt;br /&gt;
{{lop/wild2|061|Poliwhirl|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|062|Poliwrath|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|063|Abra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|064|Kadabra|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|065|Alakazam|TwistedSpoon|||TwistedSpoon|||TwistedSpoon||||TwistedSpoon|||Twisted Spoon|||Twisted Spoon|||Twisted Spoon}}&lt;br /&gt;
{{lop/wild2|066|Machop|||||||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|067|Machoke||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|068|Machamp||||Focus Band|||||||||||||Focus Band|||Focus Band|ORAS5=Focus Band}}&lt;br /&gt;
{{lop/wild2|069|Bellsprout}}&lt;br /&gt;
{{lop/wild2|070|Weepinbell}}&lt;br /&gt;
{{lop/wild2|071|Victreebel}}&lt;br /&gt;
{{lop/wild2|072|Tentacool|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|073|Tentacruel|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|074|Geodude|Everstone||||||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|074A|Geodude|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|075|Graveler|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|075A|Graveler|||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|076|Golem|Everstone|||Hard Stone|||Everstone||||Everstone|||Everstone|||Everstone}}&lt;br /&gt;
{{lop/wild2|076A|Golem||||||||||||||||||Cell Battery|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|077|Ponyta|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|||||||Shuca Berry||||Shuca Berry}}&lt;br /&gt;
{{lop/wild2|078|Rapidash|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|King&#039;s Rock||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|079|Slowpoke|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|King&#039;s Rock||||||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|080|Slowbro|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|081|Magnemite|Metal Coat||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|082|Magneton|Metal Coat|||Magnet|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|Stick|||Stick|||Stick||||Stick|||Stick|||Stick|||Leek}}&lt;br /&gt;
{{lop/wild2|083|Farfetch&#039;d|||||||||||||||||||||Leek|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|084|Doduo|Sharp Beak||||||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|085|Dodrio|Sharp Beak|||Sharp Beak|||Sharp Beak||||Sharp Beak|||Sharp Beak|||Sharp Beak}}&lt;br /&gt;
{{lop/wild2|086|Seel|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|087|Dewgong||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|088|Grimer|Nugget||||||Nugget|||||||Black Sludge|||Black Sludge|BW5=Nugget|B2W2-5=Black Sludge}}&lt;br /&gt;
{{lop/wild2|088A|Grimer|||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|089|Muk|Nugget||||||Nugget||||||||Black Sludge|||Black Sludge|B2W2-1=Toxic Orb|BW5=Nugget|B2W2-50=Black Sludge}}&lt;br /&gt;
{{lop/wild2|089A|Muk||||||||||||||||||Black Sludge|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|090|Shellder|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|091|Cloyster|Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl|||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl||Big Pearl|Pearl}}&lt;br /&gt;
{{lop/wild2|092|Gastly}}&lt;br /&gt;
{{lop/wild2|093|Haunter||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|094|Gengar||||Spell Tag}}&lt;br /&gt;
{{lop/wild2|095|Onix||||Hard Stone}}&lt;br /&gt;
{{lop/wild2|096|Drowzee}}&lt;br /&gt;
{{lop/wild2|097|Hypno}}&lt;br /&gt;
{{lop/wild2|098|Krabby}}&lt;br /&gt;
{{lop/wild2|099|Kingler}}&lt;br /&gt;
{{lop/wild2|100|Voltorb}}&lt;br /&gt;
{{lop/wild2|101|Electrode}}&lt;br /&gt;
{{lop/wild2|102|Exeggcute|||||||||||||||||Psychic Seed|||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|103|Exeggutor}}&lt;br /&gt;
{{lop/wild2|103A|Exeggutor|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|104|Cubone|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105|Marowak|Thick Club|||Thick Club|||Thick Club||||Thick Club|||Thick Club|||Thick Club|||Thick Club}}&lt;br /&gt;
{{lop/wild2|105A|Marowak|||||||||||||||||Thick Club|||Thick Club|form=Alolan Form}}&lt;br /&gt;
{{lop/wild2|106|Hitmonlee}}&lt;br /&gt;
{{lop/wild2|107|Hitmonchan}}&lt;br /&gt;
{{lop/wild2|108|Lickitung|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|109|Koffing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing|Smoke Ball||||||Smoke Ball||||Smoke Ball|||Smoke Ball|||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|110|Weezing||||||||||||||||||||Misty Seed|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|111|Rhyhorn}}&lt;br /&gt;
{{lop/wild2|112|Rhydon}}&lt;br /&gt;
{{lop/wild2|113|Chansey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||Lucky Egg|Lucky Punch||Lucky Egg|Lucky Punch|||Lucky Punch}}&lt;br /&gt;
{{lop/wild2|114|Tangela}}&lt;br /&gt;
{{lop/wild2|115|Kangaskhan}}&lt;br /&gt;
{{lop/wild2|116|Horsea|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|117|Seadra|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|118|Goldeen|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|119|Seaking|||||||||||||||||Mystic Water|||Mystic Water|ORAS5=Mystic Water}}&lt;br /&gt;
{{lop/wild2|120|Staryu|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|121|Starmie|Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust|||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust||Star Piece|Stardust}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|Leppa Berry||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|122|Mr. Mime|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|123|Scyther}}&lt;br /&gt;
{{lop/wild2|124|Jynx|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|125|Electabuzz|||||||||||||||||Electirizer|||Electirizer|Electirizer||ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|126|Magmar|||Rawst Berry||||||||||||||Magmarizer|||Magmarizer|Magmarizer||ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|127|Pinsir}}&lt;br /&gt;
{{lop/wild2|128|Tauros}}&lt;br /&gt;
{{lop/wild2|129|Magikarp}}&lt;br /&gt;
{{lop/wild2|130|Gyarados}}&lt;br /&gt;
{{lop/wild2|131|Lapras||||||||||||||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|132|Ditto|Metal Powder|||Metal Powder|||Metal Powder|Quick Powder|||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder||Metal Powder|Quick Powder}}&lt;br /&gt;
{{lop/wild2|133|Eevee}}&lt;br /&gt;
{{lop/wild2|134|Vaporeon}}&lt;br /&gt;
{{lop/wild2|135|Jolteon}}&lt;br /&gt;
{{lop/wild2|136|Flareon}}&lt;br /&gt;
{{lop/wild2|137|Porygon}}&lt;br /&gt;
{{lop/wild2|138|Omanyte}}&lt;br /&gt;
{{lop/wild2|139|Omastar}}&lt;br /&gt;
{{lop/wild2|140|Kabuto}}&lt;br /&gt;
{{lop/wild2|141|Kabutops}}&lt;br /&gt;
{{lop/wild2|142|Aerodactyl}}&lt;br /&gt;
{{lop/wild2|143|Snorlax|||Leftovers|||Chesto Berry|||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|144|Articuno}}&lt;br /&gt;
{{lop/wild2|144|Articuno|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|145|Zapdos}}&lt;br /&gt;
{{lop/wild2|145|Zapdos|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|146|Moltres}}&lt;br /&gt;
{{lop/wild2|146|Moltres|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|147|Dratini|Dragon Scale||||||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|148|Dragonair|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|149|Dragonite|Dragon Scale|||Dragon Fang|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|150|Mewtwo}}&lt;br /&gt;
{{lop/wild2|151|Mew|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|152|Chikorita}}&lt;br /&gt;
{{lop/wild2|153|Bayleef}}&lt;br /&gt;
{{lop/wild2|154|Meganium}}&lt;br /&gt;
{{lop/wild2|155|Cyndaquil}}&lt;br /&gt;
{{lop/wild2|156|Quilava}}&lt;br /&gt;
{{lop/wild2|157|Typhlosion}}&lt;br /&gt;
{{lop/wild2|158|Totodile}}&lt;br /&gt;
{{lop/wild2|159|Croconaw}}&lt;br /&gt;
{{lop/wild2|160|Feraligatr}}&lt;br /&gt;
{{lop/wild2|161|Sentret|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|162|Furret|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|163|Hoothoot}}&lt;br /&gt;
{{lop/wild2|164|Noctowl}}&lt;br /&gt;
{{lop/wild2|165|Ledyba}}&lt;br /&gt;
{{lop/wild2|166|Ledian}}&lt;br /&gt;
{{lop/wild2|167|Spinarak}}&lt;br /&gt;
{{lop/wild2|168|Ariados}}&lt;br /&gt;
{{lop/wild2|169|Crobat}}&lt;br /&gt;
{{lop/wild2|170|Chinchou|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|171|Lanturn|Yellow Shard|||Yellow Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|172|Pichu|Oran Berry||||||Oran Berry|BW50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|173|Cleffa|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|Leppa Berry||Comet Shard|Moon Stone|Leppa Berry||Moon Stone|||Moon Stone|||Moon Stone}}&lt;br /&gt;
{{lop/wild2|174|Igglybuff|||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|175|Togepi}}&lt;br /&gt;
{{lop/wild2|176|Togetic}}&lt;br /&gt;
{{lop/wild2|177|Natu}}&lt;br /&gt;
{{lop/wild2|178|Xatu}}&lt;br /&gt;
{{lop/wild2|179|Mareep}}&lt;br /&gt;
{{lop/wild2|180|Flaaffy}}&lt;br /&gt;
{{lop/wild2|181|Ampharos}}&lt;br /&gt;
{{lop/wild2|182|Bellossom|||||||||||||||||Absorb Bulb|||Absorb Bulb|ORAS5=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|183|Marill}}&lt;br /&gt;
{{lop/wild2|184|Azumarill}}&lt;br /&gt;
{{lop/wild2|185|Sudowoodo}}&lt;br /&gt;
{{lop/wild2|186|Politoed|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|187|Hoppip}}&lt;br /&gt;
{{lop/wild2|188|Skiploom}}&lt;br /&gt;
{{lop/wild2|189|Jumpluff}}&lt;br /&gt;
{{lop/wild2|190|Aipom}}&lt;br /&gt;
{{lop/wild2|191|Sunkern|||||||Coba Berry|BW5=Coba Berry}}&lt;br /&gt;
{{lop/wild2|192|Sunflora}}&lt;br /&gt;
{{lop/wild2|193|Yanma|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|194|Wooper}}&lt;br /&gt;
{{lop/wild2|195|Quagsire}}&lt;br /&gt;
{{lop/wild2|196|Espeon}}&lt;br /&gt;
{{lop/wild2|197|Umbreon}}&lt;br /&gt;
{{lop/wild2|198|Murkrow}}&lt;br /&gt;
{{lop/wild2|199|Slowking|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|199|Slowking|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|200|Misdreavus|Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|201|Unown}}&lt;br /&gt;
{{lop/wild2|202|Wobbuffet}}&lt;br /&gt;
{{lop/wild2|203|Girafarig|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|204|Pineco}}&lt;br /&gt;
{{lop/wild2|205|Forretress}}&lt;br /&gt;
{{lop/wild2|206|Dunsparce}}&lt;br /&gt;
{{lop/wild2|207|Gligar}}&lt;br /&gt;
{{lop/wild2|208|Steelix|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|209|Snubbull}}&lt;br /&gt;
{{lop/wild2|210|Granbull}}&lt;br /&gt;
{{lop/wild2|211|Qwilfish|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|212|Scizor}}&lt;br /&gt;
{{lop/wild2|213|Shuckle|||Oran Berry|||Berry Juice|||Oran Berry|||||||Berry Juice|||Berry Juice|||Berry Juice|HGSS=Berry Juice|4notes100=HGSS}}&lt;br /&gt;
{{lop/wild2|214|Heracross}}&lt;br /&gt;
{{lop/wild2|215|Sneasel|Quick Claw||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|216|Teddiursa||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|217|Ursaring||||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|218|Slugma}}&lt;br /&gt;
{{lop/wild2|219|Magcargo}}&lt;br /&gt;
{{lop/wild2|220|Swinub|||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|221|Piloswine||||Never-Melt Ice|Aspear Berry}}&lt;br /&gt;
{{lop/wild2|222|Corsola|Red Shard|||Red Shard|||Hard Stone||||Hard Stone||||||Luminous Moss|||Luminous Moss|XY5=Hard Stone|ORAS5=Luminous Moss}}&lt;br /&gt;
{{lop/wild2|222|Corsola|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|223|Remoraid}}&lt;br /&gt;
{{lop/wild2|224|Octillery}}&lt;br /&gt;
{{lop/wild2|225|Delibird}}&lt;br /&gt;
{{lop/wild2|226|Mantine}}&lt;br /&gt;
{{lop/wild2|227|Skarmory||||Sharp Beak|||||||||||||Metal Coat|||Metal Coat|ORAS5=Metal Coat}}&lt;br /&gt;
{{lop/wild2|228|Houndour}}&lt;br /&gt;
{{lop/wild2|229|Houndoom}}&lt;br /&gt;
{{lop/wild2|230|Kingdra|Dragon Scale|||Dragon Scale|||Dragon Scale||||Dragon Scale|||Dragon Scale|||Dragon Scale|||Dragon Scale}}&lt;br /&gt;
{{lop/wild2|231|Phanpy|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|232|Donphan|||||||Passho Berry||||Passho Berry}}&lt;br /&gt;
{{lop/wild2|233|Porygon2||||||Up-Grade}}&lt;br /&gt;
{{lop/wild2|234|Stantler}}&lt;br /&gt;
{{lop/wild2|235|Smeargle}}&lt;br /&gt;
{{lop/wild2|236|Tyrogue}}&lt;br /&gt;
{{lop/wild2|237|Hitmontop}}&lt;br /&gt;
{{lop/wild2|238|Smoochum|||Aspear Berry||||||Aspear Berry||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|239|Elekid|||||||||||||||||Electirizer|||Electirizer|P=Electirizer|DPt=Electirizer|ORAS5=Electirizer}}&lt;br /&gt;
{{lop/wild2|240|Magby|||Rawst Berry||||||||||||||Magmarizer|||Magmarizer|D=Magmarizer|PPt=Magmarizer|ORAS5=Magmarizer}}&lt;br /&gt;
{{lop/wild2|241|Miltank|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk||||Moomoo Milk|||Moomoo Milk|||Moomoo Milk|||Moomoo Milk}}&lt;br /&gt;
{{lop/wild2|242|Blissey|Lucky Egg|||Lucky Egg|||Lucky Egg|Oval Stone|||||Lucky Egg|||Lucky Egg|USUM5=Lucky Egg||||Lucky Egg}}&lt;br /&gt;
{{lop/wild2|243|Raikou}}&lt;br /&gt;
{{lop/wild2|244|Entei}}&lt;br /&gt;
{{lop/wild2|245|Suicune}}&lt;br /&gt;
{{lop/wild2|246|Larvitar}}&lt;br /&gt;
{{lop/wild2|247|Pupitar}}&lt;br /&gt;
{{lop/wild2|248|Tyranitar}}&lt;br /&gt;
{{lop/wild2|249|Lugia}}&lt;br /&gt;
{{lop/wild2|250|Ho-Oh|||Sacred Ash||||||Sacred Ash||||Sacred Ash|||Sacred Ash|||Sacred Ash}}&lt;br /&gt;
{{lop/wild2|251|Celebi|||Lum Berry|||Lum Berry|||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|252|Treecko}}&lt;br /&gt;
{{lop/wild2|253|Grovyle}}&lt;br /&gt;
{{lop/wild2|254|Sceptile}}&lt;br /&gt;
{{lop/wild2|255|Torchic}}&lt;br /&gt;
{{lop/wild2|256|Combusken}}&lt;br /&gt;
{{lop/wild2|257|Blaziken}}&lt;br /&gt;
{{lop/wild2|258|Mudkip}}&lt;br /&gt;
{{lop/wild2|259|Marshtomp}}&lt;br /&gt;
{{lop/wild2|260|Swampert}}&lt;br /&gt;
{{lop/wild2|261|Poochyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|262|Mightyena|Pecha Berry|||Pecha Berry|||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|Oran Berry|||Oran Berry|||Oran Berry||||Oran Berry||||||Revive|Potion||Revive|Potion|ORAS5=Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|263|Zigzagoon|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|264|Linoone|Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry|||||Max Revive|Potion||Max Revive|Potion|ORAS5=Max Revive|ORAS50=Potion}}&lt;br /&gt;
{{lop/wild2|264|Linoone|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|265|Wurmple|||||||||||||||||Bright Powder|Pecha Berry|ORAS5=Bright Powder|ORAS50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|266|Silcoon}}&lt;br /&gt;
{{lop/wild2|267|Beautifly|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|268|Cascoon}}&lt;br /&gt;
{{lop/wild2|269|Dustox|Silver Powder|||Silver Powder|||Shed Shell||||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|270|Lotad|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|271|Lombre|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|272|Ludicolo|||||||||||||||||Mental Herb|||Mental Herb|ORAS5=Mental Herb}}&lt;br /&gt;
{{lop/wild2|273|Seedot|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|274|Nuzleaf|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|275|Shiftry|||||||||||||||||Power Herb|||Power Herb|ORAS5=Power Herb}}&lt;br /&gt;
{{lop/wild2|276|Taillow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|277|Swellow|||||||Charti Berry||||Charti Berry}}&lt;br /&gt;
{{lop/wild2|278|Wingull||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|279|Pelipper||||||||||||||||||Pretty Wing|||Pretty Feather|ORAS5=Lucky Egg|ORAS50=Pretty Wing}}&lt;br /&gt;
{{lop/wild2|280|Ralts}}&lt;br /&gt;
{{lop/wild2|281|Kirlia}}&lt;br /&gt;
{{lop/wild2|282|Gardevoir}}&lt;br /&gt;
{{lop/wild2|283|Surskit||||||||||||||||||Honey|ORAS5=Honey}}&lt;br /&gt;
{{lop/wild2|284|Masquerain|Silver Powder|||Silver Powder|||Silver Powder||||SilverPowder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|285|Shroomish|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|286|Breloom|||||||Kebia Berry||||Kebia Berry||||||Big Mushroom|Tiny Mushroom|ORAS5=Big Mushroom|ORAS50=Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|287|Slakoth}}&lt;br /&gt;
{{lop/wild2|288|Vigoroth}}&lt;br /&gt;
{{lop/wild2|289|Slaking}}&lt;br /&gt;
{{lop/wild2|290|Nincada|||||||||||||||||Soft Sand|||Soft Sand|ORAS5=Soft Sand}}&lt;br /&gt;
{{lop/wild2|291|Ninjask}}&lt;br /&gt;
{{lop/wild2|292|Shedinja}}&lt;br /&gt;
{{lop/wild2|293|Whismur|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|294|Loudred|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|295|Exploud|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|296|Makuhita|||||||||||||||||Black Belt|ORAS5=Black Belt}}&lt;br /&gt;
{{lop/wild2|297|Hariyama|King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|298|Azurill}}&lt;br /&gt;
{{lop/wild2|299|Nosepass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|300|Skitty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|301|Delcatty|Leppa Berry|||Leppa Berry|||Leppa Berry|BW5=Leppa Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|302|Sableye|||||||||||||||||Wide Lens|||Wide Lens|ORAS5=Wide Lens}}&lt;br /&gt;
{{lop/wild2|303|Mawile|||||||Occa Berry||||Occa Berry||||||Iron Ball|||Iron Ball|ORAS5=Iron Ball}}&lt;br /&gt;
{{lop/wild2|304|Aron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|305|Lairon|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|306|Aggron|Hard Stone|||Hard Stone|||Hard Stone||||Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|307|Meditite}}&lt;br /&gt;
{{lop/wild2|308|Medicham}}&lt;br /&gt;
{{lop/wild2|309|Electrike}}&lt;br /&gt;
{{lop/wild2|310|Manectric}}&lt;br /&gt;
{{lop/wild2|311|Plusle|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|312|Minun|||||||||||||||||Cell Battery|ORAS5=Cell Battery}}&lt;br /&gt;
{{lop/wild2|313|Volbeat|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|314|Illumise|||||||||||||||||Bright Powder|ORAS5=Bright Powder}}&lt;br /&gt;
{{lop/wild2|315|Roselia|Poison Barb|||Poison Barb|||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|316|Gulpin|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|317|Swalot|Big Pearl|||Big Pearl|||Big Pearl||||Big Pearl||||||Sitrus Berry|Oran Berry|XY5=Oran Berry|ORAS5=Sitrus Berry|ORAS50=Oran Berry}}&lt;br /&gt;
{{lop/wild2|318|Carvanha|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|319|Sharpedo|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|320|Wailmer}}&lt;br /&gt;
{{lop/wild2|321|Wailord}}&lt;br /&gt;
{{lop/wild2|322|Numel|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|323|Camerupt|||Rawst Berry|||Rawst Berry|||Rawst Berry||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|324|Torkoal||||||||||||||Charcoal|||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|325|Spoink|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|326|Grumpig|||||||Tanga Berry|BW5=Tanga Berry|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|327|Spinda|Chesto Berry|||Chesto Berry|||Chesto Berry||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|328|Trapinch|Soft Sand|||Soft Sand|||Soft Sand||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|329|Vibrava}}&lt;br /&gt;
{{lop/wild2|330|Flygon}}&lt;br /&gt;
{{lop/wild2|331|Cacnea|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|332|Cacturne|Poison Barb|||Poison Barb|||Sticky Barb||||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|333|Swablu}}&lt;br /&gt;
{{lop/wild2|334|Altaria}}&lt;br /&gt;
{{lop/wild2|335|Zangoose|||||||Quick Claw||||Quick Claw|||Quick Claw|||Quick Claw}}&lt;br /&gt;
{{lop/wild2|336|Seviper|||||||||||||||||Shed Shell|XY100=Persim Berry|ORAS5=Shed Shell}}&lt;br /&gt;
{{lop/wild2|337|Lunatone|Moon Stone|||Moon Stone|||Moon Stone|||Comet Shard|Moon Stone|||Moon Stone|||Moon Stone|Stardust||Moon Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|338|Solrock|Sun Stone|||Sun Stone|||Sun Stone|||Comet Shard|Sun Stone|||Sun Stone|||Sun Stone|Stardust||Sun Stone|Stardust|ORAS50=Stardust}}&lt;br /&gt;
{{lop/wild2|339|Barboach}}&lt;br /&gt;
{{lop/wild2|340|Whiscash}}&lt;br /&gt;
{{lop/wild2|341|Corphish}}&lt;br /&gt;
{{lop/wild2|342|Crawdaunt}}&lt;br /&gt;
{{lop/wild2|343|Baltoy|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|344|Claydol|||||||||||||||||Light Clay|||Light Clay|ORAS5=Light Clay}}&lt;br /&gt;
{{lop/wild2|345|Lileep|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|346|Cradily|||||||Big Root||||Big Root|||Big Root|||Big Root|||Big Root}}&lt;br /&gt;
{{lop/wild2|347|Anorith}}&lt;br /&gt;
{{lop/wild2|348|Armaldo}}&lt;br /&gt;
{{lop/wild2|349|Feebas}}&lt;br /&gt;
{{lop/wild2|350|Milotic}}&lt;br /&gt;
{{lop/wild2|351|Castform|||Mystic Water|||Mystic Water|||Mystic Water||||Mystic Water|||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|352|Kecleon|Persim Berry|||Persim Berry|||Persim Berry||||Persim Berry}}&lt;br /&gt;
{{lop/wild2|353|Shuppet|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|354|Banette|Spell Tag|||Spell Tag|||Spell Tag||||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|355|Duskull|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|356|Dusclops|Spell Tag|||Spell Tag|||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|357|Tropius}}&lt;br /&gt;
{{lop/wild2|358|Chimecho|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|359|Absol|ORAS5=Life Orb}}&lt;br /&gt;
{{lop/wild2|360|Wynaut}}&lt;br /&gt;
{{lop/wild2|361|Snorunt|||||||Babiri Berry||||Babiri Berry||||||Snowball|||Snowball|ORAS5=Snowball}}&lt;br /&gt;
{{lop/wild2|362|Glalie|Never-Melt Ice|||Never-Melt Ice|||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|363|Spheal}}&lt;br /&gt;
{{lop/wild2|364|Sealeo}}&lt;br /&gt;
{{lop/wild2|365|Walrein}}&lt;br /&gt;
{{lop/wild2|366|Clamperl|Blue Shard|||Blue Shard|||Big Pearl||||Big Pearl|||Big Pearl|||Big Pearl|Pearl|ORAS50=Pearl}}&lt;br /&gt;
{{lop/wild2|367|Huntail|||||||DeepSeaTooth||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth}}&lt;br /&gt;
{{lop/wild2|368|Gorebyss|||||||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|369|Relicanth|Green Shard|||Green Shard|||DeepSeaScale||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale}}&lt;br /&gt;
{{lop/wild2|370|Luvdisc||Heart Scale|||Heart Scale|||Heart Scale||||Heart Scale|||Heart Scale|||Heart Scale}}&lt;br /&gt;
{{lop/wild2|371|Bagon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|372|Shelgon|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|373|Salamence|Dragon Scale|||Dragon Scale|||Dragon Fang||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|374|Beldum|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|375|Metang|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|376|Metagross|Metal Coat|||Metal Coat|||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|377|Regirock}}&lt;br /&gt;
{{lop/wild2|378|Regice}}&lt;br /&gt;
{{lop/wild2|379|Registeel}}&lt;br /&gt;
{{lop/wild2|380|Latias}}&lt;br /&gt;
{{lop/wild2|381|Latios}}&lt;br /&gt;
{{lop/wild2|382|Kyogre}}&lt;br /&gt;
{{lop/wild2|383|Groudon}}&lt;br /&gt;
{{lop/wild2|384|Rayquaza}}&lt;br /&gt;
{{lop/wild2|385|Jirachi|||Star Piece|||Star Piece|||Star Piece||||Star Piece|||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|386|Deoxys}}&lt;br /&gt;
{{lop/wild2|387|Turtwig}}&lt;br /&gt;
{{lop/wild2|388|Grotle}}&lt;br /&gt;
{{lop/wild2|389|Torterra}}&lt;br /&gt;
{{lop/wild2|390|Chimchar}}&lt;br /&gt;
{{lop/wild2|391|Monferno}}&lt;br /&gt;
{{lop/wild2|392|Infernape}}&lt;br /&gt;
{{lop/wild2|393|Piplup}}&lt;br /&gt;
{{lop/wild2|394|Prinplup}}&lt;br /&gt;
{{lop/wild2|395|Empoleon}}&lt;br /&gt;
{{lop/wild2|396|Starly|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|397|Staravia|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|398|Staraptor|||||||Yache Berry||||Yache Berry}}&lt;br /&gt;
{{lop/wild2|399|Bidoof}}&lt;br /&gt;
{{lop/wild2|400|Bibarel|||||||Sitrus Berry|Oran Berry|||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|401|Kricketot|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|402|Kricketune|||||||Metronome||||Metronome||||||Metronome|ORAS5=Metronome}}&lt;br /&gt;
{{lop/wild2|403|Shinx}}&lt;br /&gt;
{{lop/wild2|404|Luxio}}&lt;br /&gt;
{{lop/wild2|405|Luxray}}&lt;br /&gt;
{{lop/wild2|406|Budew|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|407|Roserade|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|B2W2-1=Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|408|Cranidos}}&lt;br /&gt;
{{lop/wild2|409|Rampardos}}&lt;br /&gt;
{{lop/wild2|410|Shieldon}}&lt;br /&gt;
{{lop/wild2|411|Bastiodon}}&lt;br /&gt;
{{lop/wild2|412|Burmy}}&lt;br /&gt;
{{lop/wild2|413|Wormadam|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|414|Mothim|||||||Silver Powder||||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|415|Combee|||||||||Honey|||||Honey|||Honey|||Honey|B2W2-5=Honey|BW100=Honey}}&lt;br /&gt;
{{lop/wild2|416|Vespiquen|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|417|Pachirisu}}&lt;br /&gt;
{{lop/wild2|418|Buizel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|419|Floatzel|||||||Wacan Berry|BW5=Wacan Berry}}&lt;br /&gt;
{{lop/wild2|420|Cherubi|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|421|Cherrim|||||||Miracle Seed||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|422|Shellos}}&lt;br /&gt;
{{lop/wild2|423|Gastrodon}}&lt;br /&gt;
{{lop/wild2|424|Ambipom}}&lt;br /&gt;
{{lop/wild2|425|Drifloon}}&lt;br /&gt;
{{lop/wild2|426|Drifblim|B2W2-1=Air Balloon}}&lt;br /&gt;
{{lop/wild2|427|Buneary|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|428|Lopunny|||||||Chople Berry|BW5=Chople Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|429|Mismagius}}&lt;br /&gt;
{{lop/wild2|430|Honchkrow}}&lt;br /&gt;
{{lop/wild2|431|Glameow|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|432|Purugly|||||||Cheri Berry||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|433|Chingling|||||||Colbur Berry||||Colbur Berry||||||Cleanse Tag|ORAS5=Cleanse Tag}}&lt;br /&gt;
{{lop/wild2|434|Stunky|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|435|Skuntank|||||||Pecha Berry||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|436|Bronzor|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|437|Bronzong|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|438|Bonsly}}&lt;br /&gt;
{{lop/wild2|439|Mime Jr.|||||||Leppa Berry|BW5=Leppa Berry}}&lt;br /&gt;
{{lop/wild2|440|Happiny|||||||Lucky Punch|Oval Stone|||Lucky Egg|Oval Stone||Lucky Egg|Oval Stone|||Oval Stone|||Oval Stone}}&lt;br /&gt;
{{lop/wild2|441|Chatot|||||||Metronome||||Metronome|||Metronome|||Metronome}}&lt;br /&gt;
{{lop/wild2|442|Spiritomb|ORAS100=Smoke Ball}}&lt;br /&gt;
{{lop/wild2|443|Gible|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|444|Gabite|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|445|Garchomp|||||||Haban Berry||||Haban Berry}}&lt;br /&gt;
{{lop/wild2|446|Munchlax|||||||||Leftovers||||Leftovers|||Leftovers|||Leftovers|||Leftovers}}&lt;br /&gt;
{{lop/wild2|447|Riolu}}&lt;br /&gt;
{{lop/wild2|448|Lucario}}&lt;br /&gt;
{{lop/wild2|449|Hippopotas}}&lt;br /&gt;
{{lop/wild2|450|Hippowdon}}&lt;br /&gt;
{{lop/wild2|451|Skorupi|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|452|Drapion|||||||Poison Barb||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|453|Croagunk|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|454|Toxicroak|||||||Black Sludge||||Black Sludge|||Black Sludge|||Black Sludge|||Black Sludge}}&lt;br /&gt;
{{lop/wild2|455|Carnivine}}&lt;br /&gt;
{{lop/wild2|456|Finneon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|457|Lumineon|||||||Rindo Berry||||Rindo Berry}}&lt;br /&gt;
{{lop/wild2|458|Mantyke}}&lt;br /&gt;
{{lop/wild2|459|Snover|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|460|Abomasnow|||||||Never-Melt Ice||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|461|Weavile|||||||Quick Claw|Grip Claw|||Quick Claw|Grip Claw||Quick Claw|||Quick Claw|||Quick Claw|XY50=Grip Claw}}&lt;br /&gt;
{{lop/wild2|462|Magnezone|||||||Metal Coat||||Metal Coat|||Metal Coat|||Metal Coat|||Metal Coat}}&lt;br /&gt;
{{lop/wild2|463|Lickilicky|||||||Lagging Tail||||Lagging Tail|||Lagging Tail|||Lagging Tail|||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|464|Rhyperior}}&lt;br /&gt;
{{lop/wild2|465|Tangrowth}}&lt;br /&gt;
{{lop/wild2|466|Electivire||||||||||||||Electirizer|||Electirizer|||Electirizer|PHGSS=Electirizer|DPt=Electirizer}}&lt;br /&gt;
{{lop/wild2|467|Magmortar||||||||||||||Magmarizer|||Magmarizer|||Magmarizer|DHGSS=Magmarizer|PPt=Magmarizer}}&lt;br /&gt;
{{lop/wild2|468|Togekiss}}&lt;br /&gt;
{{lop/wild2|469|Yanmega|||||||Wide Lens||||Wide Lens|||Wide Lens|||Wide Lens}}&lt;br /&gt;
{{lop/wild2|470|Leafeon}}&lt;br /&gt;
{{lop/wild2|471|Glaceon}}&lt;br /&gt;
{{lop/wild2|472|Gliscor}}&lt;br /&gt;
{{lop/wild2|473|Mamoswine}}&lt;br /&gt;
{{lop/wild2|474|Porygon-Z}}&lt;br /&gt;
{{lop/wild2|475|Gallade}}&lt;br /&gt;
{{lop/wild2|476|Probopass|||||||Hard Stone||||Hard Stone|||Hard Stone|||Magnet}}&lt;br /&gt;
{{lop/wild2|477|Dusknoir|||||||Kasib Berry||||Kasib Berry||||||Spell Tag|||Spell Tag|ORAS5=Spell Tag}}&lt;br /&gt;
{{lop/wild2|478|Froslass|||||||Babiri Berry||||Babiri Berry}}&lt;br /&gt;
{{lop/wild2|479|Rotom}}&lt;br /&gt;
{{lop/wild2|480|Uxie}}&lt;br /&gt;
{{lop/wild2|481|Mesprit}}&lt;br /&gt;
{{lop/wild2|482|Azelf}}&lt;br /&gt;
{{lop/wild2|483|Dialga}}&lt;br /&gt;
{{lop/wild2|484|Palkia}}&lt;br /&gt;
{{lop/wild2|485|Heatran}}&lt;br /&gt;
{{lop/wild2|486|Regigigas}}&lt;br /&gt;
{{lop/wild2|487|Giratina}}&lt;br /&gt;
{{lop/wild2|488|Cresselia}}&lt;br /&gt;
{{lop/wild2|489|Phione}}&lt;br /&gt;
{{lop/wild2|490|Manaphy}}&lt;br /&gt;
{{lop/wild2|491|Darkrai}}&lt;br /&gt;
{{lop/wild2|492|Shaymin|||||||||Lum Berry||||Lum Berry|||Lum Berry|||Lum Berry}}&lt;br /&gt;
{{lop/wild2|493|Arceus}}&lt;br /&gt;
{{lop/wild2|494|Victini}}&lt;br /&gt;
{{lop/wild2|495|Snivy}}&lt;br /&gt;
{{lop/wild2|496|Servine}}&lt;br /&gt;
{{lop/wild2|497|Serperior}}&lt;br /&gt;
{{lop/wild2|498|Tepig}}&lt;br /&gt;
{{lop/wild2|499|Pignite}}&lt;br /&gt;
{{lop/wild2|500|Emboar}}&lt;br /&gt;
{{lop/wild2|501|Oshawott}}&lt;br /&gt;
{{lop/wild2|502|Dewott}}&lt;br /&gt;
{{lop/wild2|503|Samurott}}&lt;br /&gt;
{{lop/wild2|504|Patrat}}&lt;br /&gt;
{{lop/wild2|505|Watchog}}&lt;br /&gt;
{{lop/wild2|506|Lillipup}}&lt;br /&gt;
{{lop/wild2|507|Herdier}}&lt;br /&gt;
{{lop/wild2|508|Stoutland}}&lt;br /&gt;
{{lop/wild2|509|Purrloin}}&lt;br /&gt;
{{lop/wild2|510|Liepard}}&lt;br /&gt;
{{lop/wild2|511|Pansage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|512|Simisage|||||||||||Occa Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|513|Pansear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|514|Simisear|||||||||||Passho Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|515|Panpour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|516|Simipour|||||||||||Rindo Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|517|Munna}}&lt;br /&gt;
{{lop/wild2|518|Musharna}}&lt;br /&gt;
{{lop/wild2|519|Pidove}}&lt;br /&gt;
{{lop/wild2|520|Tranquill}}&lt;br /&gt;
{{lop/wild2|521|Unfezant}}&lt;br /&gt;
{{lop/wild2|522|Blitzle||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|523|Zebstrika||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|524|Roggenrola|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|525|Boldore|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|526|Gigalith|||||||||||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone||Hard Stone|Everstone}}&lt;br /&gt;
{{lop/wild2|527|Woobat}}&lt;br /&gt;
{{lop/wild2|528|Swoobat}}&lt;br /&gt;
{{lop/wild2|529|Drilbur}}&lt;br /&gt;
{{lop/wild2|530|Excadrill}}&lt;br /&gt;
{{lop/wild2|531|Audino|||||||||||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry||Sitrus Berry|Oran Berry}}&lt;br /&gt;
{{lop/wild2|532|Timburr}}&lt;br /&gt;
{{lop/wild2|533|Gurdurr}}&lt;br /&gt;
{{lop/wild2|534|Conkeldurr}}&lt;br /&gt;
{{lop/wild2|535|Tympole|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|536|Palpitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|537|Seismitoad|BW50=Persim Berry|B2W2-50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|538|Throh||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|539|Sawk||||||||||Expert Belt|Black Belt|||Black Belt|||Black Belt|||Black Belt}}&lt;br /&gt;
{{lop/wild2|540|Sewaddle|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|541|Swadloon|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|542|Leavanny|||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|543|Venipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|544|Whirlipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|545|Scolipede|||||||||||Poison Barb|||Poison Barb|||Poison Barb|||Poison Barb|BW50=Pecha Berry}}&lt;br /&gt;
{{lop/wild2|546|Cottonee|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|547|Whimsicott|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|548|Petilil|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|549|Lilligant|||||||||||||||||Absorb Bulb|||Absorb Bulb}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaTooth|||Deep Sea Tooth|||Deep Sea Tooth|form=Red-Striped}}&lt;br /&gt;
{{lop/wild2|550|Basculin|||||||||||DeepSeaScale|||Deep Sea Scale|||Deep Sea Scale|form=Blue-Striped}}&lt;br /&gt;
{{lop/wild2|551|Sandile|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|552|Krokorok|||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|553|Krookodile||||||||||||||||||Black Glasses|||Black Glasses}}&lt;br /&gt;
{{lop/wild2|554|Darumaka||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|554|Darumaka|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|555|Darmanitan|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|556|Maractus|||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|557|Dwebble||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|558|Crustle||||||||||Rare Bone|Hard Stone|||Hard Stone|||Hard Stone|||Hard Stone}}&lt;br /&gt;
{{lop/wild2|559|Scraggy|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|560|Scrafty|||||||||||Shed Shell|||Shed Shell|||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|561|Sigilyph}}&lt;br /&gt;
{{lop/wild2|562|Yamask|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|562|Yamask|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|563|Cofagrigus|||||||||||Spell Tag|||Spell Tag|||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|564|Tirtouga}}&lt;br /&gt;
{{lop/wild2|565|Carracosta}}&lt;br /&gt;
{{lop/wild2|566|Archen}}&lt;br /&gt;
{{lop/wild2|567|Archeops}}&lt;br /&gt;
{{lop/wild2|568|Trubbish||||||||||Nugget|Black Sludge|||Black Sludge|||Silk Scarf|||Silk Scarf}}&lt;br /&gt;
{{lop/wild2|569|Garbodor||||||||||Big Nugget|Nugget|Black Sludge||Nugget|Black Sludge||Black Sludge|Silk Scarf||Black Sludge|Silk Scarf}}&lt;br /&gt;
{{lop/wild2|570|Zorua}}&lt;br /&gt;
{{lop/wild2|571|Zoroark}}&lt;br /&gt;
{{lop/wild2|572|Minccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|573|Cinccino||||||||||||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|574|Gothita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|575|Gothorita|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|576|Gothitelle|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|577|Solosis|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|578|Duosion|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|579|Reuniclus|B2W2-50=Persim Berry}}&lt;br /&gt;
{{lop/wild2|580|Ducklett}}&lt;br /&gt;
{{lop/wild2|581|Swanna}}&lt;br /&gt;
{{lop/wild2|582|Vanillite|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|583|Vanillish|||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|584|Vanilluxe||||||||||||||||||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|585|Deerling}}&lt;br /&gt;
{{lop/wild2|586|Sawsbuck}}&lt;br /&gt;
{{lop/wild2|587|Emolga|||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|588|Karrablast}}&lt;br /&gt;
{{lop/wild2|589|Escavalier}}&lt;br /&gt;
{{lop/wild2|590|Foongus||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|591|Amoonguss||||||||||Balm Mushroom|Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|592|Frillish}}&lt;br /&gt;
{{lop/wild2|593|Jellicent}}&lt;br /&gt;
{{lop/wild2|594|Alomomola}}&lt;br /&gt;
{{lop/wild2|595|Joltik}}&lt;br /&gt;
{{lop/wild2|596|Galvantula}}&lt;br /&gt;
{{lop/wild2|597|Ferroseed|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|598|Ferrothorn|||||||||||Sticky Barb|||Sticky Barb|||Sticky Barb|||Sticky Barb}}&lt;br /&gt;
{{lop/wild2|599|Klink}}&lt;br /&gt;
{{lop/wild2|600|Klang}}&lt;br /&gt;
{{lop/wild2|601|Klinklang}}&lt;br /&gt;
{{lop/wild2|602|Tynamo}}&lt;br /&gt;
{{lop/wild2|603|Eelektrik}}&lt;br /&gt;
{{lop/wild2|604|Eelektross}}&lt;br /&gt;
{{lop/wild2|605|Elgyem}}&lt;br /&gt;
{{lop/wild2|606|Beheeyem}}&lt;br /&gt;
{{lop/wild2|607|Litwick}}&lt;br /&gt;
{{lop/wild2|608|Lampent}}&lt;br /&gt;
{{lop/wild2|609|Chandelure}}&lt;br /&gt;
{{lop/wild2|610|Axew}}&lt;br /&gt;
{{lop/wild2|611|Fraxure}}&lt;br /&gt;
{{lop/wild2|612|Haxorus}}&lt;br /&gt;
{{lop/wild2|613|Cubchoo||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|614|Beartic||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|615|Cryogonal|||||||||||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice|||Never-Melt Ice}}&lt;br /&gt;
{{lop/wild2|616|Shelmet}}&lt;br /&gt;
{{lop/wild2|617|Accelgor}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|||||||||||Soft Sand|||Soft Sand|||Soft Sand|||Soft Sand}}&lt;br /&gt;
{{lop/wild2|618|Stunfisk|form=Galarian Form}}&lt;br /&gt;
{{lop/wild2|619|Mienfoo}}&lt;br /&gt;
{{lop/wild2|620|Mienshao}}&lt;br /&gt;
{{lop/wild2|621|Druddigon|||||||||||Dragon Fang|||Dragon Fang|||Dragon Fang|||Dragon Fang}}&lt;br /&gt;
{{lop/wild2|622|Golett|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|623|Golurk|||||||||||Light Clay|||Light Clay|||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|624|Pawniard}}&lt;br /&gt;
{{lop/wild2|625|Bisharp}}&lt;br /&gt;
{{lop/wild2|626|Bouffalant}}&lt;br /&gt;
{{lop/wild2|627|Rufflet}}&lt;br /&gt;
{{lop/wild2|628|Braviary}}&lt;br /&gt;
{{lop/wild2|629|Vullaby}}&lt;br /&gt;
{{lop/wild2|630|Mandibuzz}}&lt;br /&gt;
{{lop/wild2|631|Heatmor|B2W2-1=Flame Orb}}&lt;br /&gt;
{{lop/wild2|632|Durant}}&lt;br /&gt;
{{lop/wild2|633|Deino}}&lt;br /&gt;
{{lop/wild2|634|Zweilous}}&lt;br /&gt;
{{lop/wild2|635|Hydreigon}}&lt;br /&gt;
{{lop/wild2|636|Larvesta}}&lt;br /&gt;
{{lop/wild2|637|Volcarona|||||||||||||Silver Powder|||Silver Powder|||Silver Powder|||Silver Powder}}&lt;br /&gt;
{{lop/wild2|638|Cobalion}}&lt;br /&gt;
{{lop/wild2|639|Terrakion}}&lt;br /&gt;
{{lop/wild2|640|Virizion}}&lt;br /&gt;
{{lop/wild2|641|Tornadus}}&lt;br /&gt;
{{lop/wild2|642|Thundurus}}&lt;br /&gt;
{{lop/wild2|643|Reshiram}}&lt;br /&gt;
{{lop/wild2|644|Zekrom}}&lt;br /&gt;
{{lop/wild2|645|Landorus}}&lt;br /&gt;
{{lop/wild2|646|Kyurem}}&lt;br /&gt;
{{lop/wild2|647|Keldeo}}&lt;br /&gt;
{{lop/wild2|648|Meloetta|||||||||||||Star Piece|||Star Piece|||Star Piece}}&lt;br /&gt;
{{lop/wild2|649|Genesect}}&lt;br /&gt;
{{lop/wild2|650|Chespin}}&lt;br /&gt;
{{lop/wild2|651|Quilladin}}&lt;br /&gt;
{{lop/wild2|652|Chesnaught}}&lt;br /&gt;
{{lop/wild2|653|Fennekin}}&lt;br /&gt;
{{lop/wild2|654|Braixen}}&lt;br /&gt;
{{lop/wild2|655|Delphox}}&lt;br /&gt;
{{lop/wild2|656|Froakie}}&lt;br /&gt;
{{lop/wild2|657|Frogadier}}&lt;br /&gt;
{{lop/wild2|658|Greninja}}&lt;br /&gt;
{{lop/wild2|659|Bunnelby}}&lt;br /&gt;
{{lop/wild2|660|Diggersby}}&lt;br /&gt;
{{lop/wild2|661|Fletchling}}&lt;br /&gt;
{{lop/wild2|662|Fletchinder}}&lt;br /&gt;
{{lop/wild2|663|Talonflame}}&lt;br /&gt;
{{lop/wild2|664|Scatterbug}}&lt;br /&gt;
{{lop/wild2|665|Spewpa}}&lt;br /&gt;
{{lop/wild2|666|Vivillon}}&lt;br /&gt;
{{lop/wild2|667|Litleo}}&lt;br /&gt;
{{lop/wild2|668|Pyroar}}&lt;br /&gt;
{{lop/wild2|669|Flabébé}}&lt;br /&gt;
{{lop/wild2|670|Floette}}&lt;br /&gt;
{{lop/wild2|671|Florges}}&lt;br /&gt;
{{lop/wild2|672|Skiddo}}&lt;br /&gt;
{{lop/wild2|673|Gogoat}}&lt;br /&gt;
{{lop/wild2|674|Pancham||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|675|Pangoro||||||||||||||Mental Herb|||Mental Herb|||Mental Herb}}&lt;br /&gt;
{{lop/wild2|676|Furfrou}}&lt;br /&gt;
{{lop/wild2|677|Espurr}}&lt;br /&gt;
{{lop/wild2|678|Meowstic}}&lt;br /&gt;
{{lop/wild2|679|Honedge}}&lt;br /&gt;
{{lop/wild2|680|Doublade}}&lt;br /&gt;
{{lop/wild2|681|Aegislash}}&lt;br /&gt;
{{lop/wild2|682|Spritzee}}&lt;br /&gt;
{{lop/wild2|683|Aromatisse}}&lt;br /&gt;
{{lop/wild2|684|Swirlix}}&lt;br /&gt;
{{lop/wild2|685|Slurpuff}}&lt;br /&gt;
{{lop/wild2|686|Inkay}}&lt;br /&gt;
{{lop/wild2|687|Malamar}}&lt;br /&gt;
{{lop/wild2|688|Binacle}}&lt;br /&gt;
{{lop/wild2|689|Barbaracle}}&lt;br /&gt;
{{lop/wild2|690|Skrelp}}&lt;br /&gt;
{{lop/wild2|691|Dragalge}}&lt;br /&gt;
{{lop/wild2|692|Clauncher}}&lt;br /&gt;
{{lop/wild2|693|Clawitzer}}&lt;br /&gt;
{{lop/wild2|694|Helioptile}}&lt;br /&gt;
{{lop/wild2|695|Heliolisk}}&lt;br /&gt;
{{lop/wild2|696|Tyrunt}}&lt;br /&gt;
{{lop/wild2|697|Tyrantrum}}&lt;br /&gt;
{{lop/wild2|698|Amaura}}&lt;br /&gt;
{{lop/wild2|699|Aurorus}}&lt;br /&gt;
{{lop/wild2|700|Sylveon}}&lt;br /&gt;
{{lop/wild2|701|Hawlucha||||||||||||||King&#039;s Rock|||King&#039;s Rock|||King&#039;s Rock}}&lt;br /&gt;
{{lop/wild2|702|Dedenne}}&lt;br /&gt;
{{lop/wild2|703|Carbink}}&lt;br /&gt;
{{lop/wild2|704|Goomy|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|705|Sliggoo|||||||||||||||||Shed Shell|||Shed Shell}}&lt;br /&gt;
{{lop/wild2|706|Goodra}}&lt;br /&gt;
{{lop/wild2|707|Klefki}}&lt;br /&gt;
{{lop/wild2|708|Phantump}}&lt;br /&gt;
{{lop/wild2|709|Trevenant}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Small Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Average Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo|form=Large Size}}&lt;br /&gt;
{{lop/wild2|710|Pumpkaboo||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Small Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Average Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist|form=Large Size}}&lt;br /&gt;
{{lop/wild2|711|Gourgeist||||||||||||||||Miracle Seed|||Miracle Seed|||Miracle Seed|form=Super Size}}&lt;br /&gt;
{{lop/wild2|712|Bergmite}}&lt;br /&gt;
{{lop/wild2|713|Avalugg}}&lt;br /&gt;
{{lop/wild2|714|Noibat}}&lt;br /&gt;
{{lop/wild2|715|Noivern}}&lt;br /&gt;
{{lop/wild2|716|Xerneas}}&lt;br /&gt;
{{lop/wild2|717|Yveltal}}&lt;br /&gt;
{{lop/wild2|718|Zygarde}}&lt;br /&gt;
{{lop/wild2|719|Diancie}}&lt;br /&gt;
{{lop/wild2|720|Hoopa}}&lt;br /&gt;
{{lop/wild2|721|Volcanion}}&lt;br /&gt;
{{lop/wild2|722|Rowlet}}&lt;br /&gt;
{{lop/wild2|723|Dartrix}}&lt;br /&gt;
{{lop/wild2|724|Decidueye}}&lt;br /&gt;
{{lop/wild2|725|Litten}}&lt;br /&gt;
{{lop/wild2|726|Torracat}}&lt;br /&gt;
{{lop/wild2|727|Incineroar}}&lt;br /&gt;
{{lop/wild2|728|Popplio}}&lt;br /&gt;
{{lop/wild2|729|Brionne}}&lt;br /&gt;
{{lop/wild2|730|Primarina}}&lt;br /&gt;
{{lop/wild2|731|Pikipek|||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|732|Trumbeak|||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|733|Toucannon|||||||||||||||||Rawst Berry}}&lt;br /&gt;
{{lop/wild2|734|Yungoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|735|Gumshoos|||||||||||||||||Pecha Berry}}&lt;br /&gt;
{{lop/wild2|736|Grubbin}}&lt;br /&gt;
{{lop/wild2|737|Charjabug|||||||||||||||||Cell Battery|||Cell Battery}}&lt;br /&gt;
{{lop/wild2|738|Vikavolt}}&lt;br /&gt;
{{lop/wild2|739|Crabrawler|||||||||||||||||Aspear Berry}}&lt;br /&gt;
{{lop/wild2|740|Crabominable|||||||||||||||||Cheri Berry}}&lt;br /&gt;
{{lop/wild2|741|Oricorio|||||||||||||||||Honey}}&lt;br /&gt;
{{lop/wild2|742|Cutiefly|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|743|Ribombee|||||||||||||||||Honey|||Honey}}&lt;br /&gt;
{{lop/wild2|744|Rockruff}}&lt;br /&gt;
{{lop/wild2|745|Lycanroc}}&lt;br /&gt;
{{lop/wild2|746|Wishiwashi}}&lt;br /&gt;
{{lop/wild2|747|Mareanie|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|748|Toxapex|||||||||||||||||Poison Barb|||Poison Barb}}&lt;br /&gt;
{{lop/wild2|749|Mudbray|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|750|Mudsdale|||||||||||||||||Light Clay|||Light Clay}}&lt;br /&gt;
{{lop/wild2|751|Dewpider|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|752|Araquanid|||||||||||||||||Mystic Water|||Mystic Water}}&lt;br /&gt;
{{lop/wild2|753|Fomantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|754|Lurantis|||||||||||||||||Miracle Seed|||Miracle Seed}}&lt;br /&gt;
{{lop/wild2|755|Morelull|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|756|Shiinotic|||||||||||||||||Big Mushroom|Tiny Mushroom||Big Mushroom|Tiny Mushroom}}&lt;br /&gt;
{{lop/wild2|757|Salandit|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|758|Salazzle|||||||||||||||||Smoke Ball|||Smoke Ball}}&lt;br /&gt;
{{lop/wild2|759|Stufful}}&lt;br /&gt;
{{lop/wild2|760|Bewear}}&lt;br /&gt;
{{lop/wild2|761|Bounsweet|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|762|Steenee|||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|763|Tsareena||||||||||||||||||Grassy Seed|||Grassy Seed}}&lt;br /&gt;
{{lop/wild2|764|Comfey|||||||||||||||||Misty Seed|||Misty Seed}}&lt;br /&gt;
{{lop/wild2|765|Oranguru}}&lt;br /&gt;
{{lop/wild2|766|Passimian}}&lt;br /&gt;
{{lop/wild2|767|Wimpod}}&lt;br /&gt;
{{lop/wild2|768|Golisopod}}&lt;br /&gt;
{{lop/wild2|769|Sandygast|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|770|Palossand|||||||||||||||||Spell Tag|||Spell Tag}}&lt;br /&gt;
{{lop/wild2|771|Pyukumuku}}&lt;br /&gt;
{{lop/wild2|772|Type: Null}}&lt;br /&gt;
{{lop/wild2|773|Silvally}}&lt;br /&gt;
{{lop/wild2|774|Minior|||||||||||||||||Star Piece}}&lt;br /&gt;
{{lop/wild2|775|Komala}}&lt;br /&gt;
{{lop/wild2|776|Turtonator|||||||||||||||||Charcoal|||Charcoal}}&lt;br /&gt;
{{lop/wild2|777|Togedemaru|||||||||||||||||Electric Seed|||Electric Seed}}&lt;br /&gt;
{{lop/wild2|778|Mimikyu|||||||||||||||||Chesto Berry|||Chesto Berry}}&lt;br /&gt;
{{lop/wild2|779|Bruxish|||||||||||||||||Razor Fang}}&lt;br /&gt;
{{lop/wild2|780|Drampa|||||||||||||||||Persim Berry|||Persim Berry}}&lt;br /&gt;
{{lop/wild2|781|Dhelmise}}&lt;br /&gt;
{{lop/wild2|782|Jangmo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|783|Hakamo-o|||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|784|Kommo-o||||||||||||||||||Razor Claw|||Razor Claw}}&lt;br /&gt;
{{lop/wild2|785|Tapu Koko}}&lt;br /&gt;
{{lop/wild2|786|Tapu Lele}}&lt;br /&gt;
{{lop/wild2|787|Tapu Bulu}}&lt;br /&gt;
{{lop/wild2|788|Tapu Fini}}&lt;br /&gt;
{{lop/wild2|789|Cosmog}}&lt;br /&gt;
{{lop/wild2|790|Cosmoem}}&lt;br /&gt;
{{lop/wild2|791|Solgaleo}}&lt;br /&gt;
{{lop/wild2|792|Lunala}}&lt;br /&gt;
{{lop/wild2|793|Nihilego}}&lt;br /&gt;
{{lop/wild2|794|Buzzwole}}&lt;br /&gt;
{{lop/wild2|795|Pheromosa}}&lt;br /&gt;
{{lop/wild2|796|Xurkitree}}&lt;br /&gt;
{{lop/wild2|797|Celesteela}}&lt;br /&gt;
{{lop/wild2|798|Kartana}}&lt;br /&gt;
{{lop/wild2|799|Guzzlord}}&lt;br /&gt;
{{lop/wild2|800|Necrozma}}&lt;br /&gt;
{{lop/wild2|801|Magearna}}&lt;br /&gt;
{{lop/wild2|802|Marshadow}}&lt;br /&gt;
{{lop/wild2|803|Poipole}}&lt;br /&gt;
{{lop/wild2|804|Naganadel}}&lt;br /&gt;
{{lop/wild2|805|Stakataka}}&lt;br /&gt;
{{lop/wild2|806|Blacephalon}}&lt;br /&gt;
{{lop/wild2|807|Zeraora}}&lt;br /&gt;
{{lop/wild2|808|Meltan}}&lt;br /&gt;
{{lop/wild2|809|Melmetal}}&lt;br /&gt;
{{lop/wild2|810|Grookey}}&lt;br /&gt;
{{lop/wild2|811|Thwackey}}&lt;br /&gt;
{{lop/wild2|812|Rillaboom}}&lt;br /&gt;
{{lop/wild2|813|Scorbunny}}&lt;br /&gt;
{{lop/wild2|814|Raboot}}&lt;br /&gt;
{{lop/wild2|815|Cinderace}}&lt;br /&gt;
{{lop/wild2|816|Sobble}}&lt;br /&gt;
{{lop/wild2|817|Drizzile}}&lt;br /&gt;
{{lop/wild2|818|Inteleon}}&lt;br /&gt;
{{lop/wild2|819|Skwovet||||||||||||||||||||Oran Berry}}&lt;br /&gt;
{{lop/wild2|820|Greedent||||||||||||||||||||Sitrus Berry}}&lt;br /&gt;
{{lop/wild2|821|Rookidee}}&lt;br /&gt;
{{lop/wild2|822|Corvisquire}}&lt;br /&gt;
{{lop/wild2|823|Corviknight}}&lt;br /&gt;
{{lop/wild2|824|Blipbug}}&lt;br /&gt;
{{lop/wild2|825|Dottler||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|826|Orbeetle||||||||||||||||||||Psychic Seed}}&lt;br /&gt;
{{lop/wild2|827|Nickit}}&lt;br /&gt;
{{lop/wild2|828|Thievul}}&lt;br /&gt;
{{lop/wild2|829|Gossifleur}}&lt;br /&gt;
{{lop/wild2|830|Eldegoss}}&lt;br /&gt;
{{lop/wild2|831|Wooloo}}&lt;br /&gt;
{{lop/wild2|832|Dubwool}}&lt;br /&gt;
{{lop/wild2|833|Chewtle}}&lt;br /&gt;
{{lop/wild2|834|Drednaw}}&lt;br /&gt;
{{lop/wild2|835|Yamper}}&lt;br /&gt;
{{lop/wild2|836|Boltund}}&lt;br /&gt;
{{lop/wild2|837|Rolycoly}}&lt;br /&gt;
{{lop/wild2|838|Carkol}}&lt;br /&gt;
{{lop/wild2|839|Coalossal}}&lt;br /&gt;
{{lop/wild2|840|Applin}}&lt;br /&gt;
{{lop/wild2|841|Flapple}}&lt;br /&gt;
{{lop/wild2|842|Appletun}}&lt;br /&gt;
{{lop/wild2|843|Silicobra}}&lt;br /&gt;
{{lop/wild2|844|Sandaconda}}&lt;br /&gt;
{{lop/wild2|845|Cramorant}}&lt;br /&gt;
{{lop/wild2|846|Arrokuda}}&lt;br /&gt;
{{lop/wild2|847|Barraskewda}}&lt;br /&gt;
{{lop/wild2|848|Toxel}}&lt;br /&gt;
{{lop/wild2|849|Toxtricity}}&lt;br /&gt;
{{lop/wild2|850|Sizzlipede}}&lt;br /&gt;
{{lop/wild2|851|Centiskorch}}&lt;br /&gt;
{{lop/wild2|852|Clobbopus}}&lt;br /&gt;
{{lop/wild2|853|Grapploct}}&lt;br /&gt;
{{lop/wild2|854|Sinistea}}&lt;br /&gt;
{{lop/wild2|855|Polteageist}}&lt;br /&gt;
{{lop/wild2|856|Hatenna}}&lt;br /&gt;
{{lop/wild2|857|Hattrem}}&lt;br /&gt;
{{lop/wild2|858|Hatterene}}&lt;br /&gt;
{{lop/wild2|859|Impidimp}}&lt;br /&gt;
{{lop/wild2|860|Morgrem}}&lt;br /&gt;
{{lop/wild2|861|Grimmsnarl}}&lt;br /&gt;
{{lop/wild2|862|Obstagoon}}&lt;br /&gt;
{{lop/wild2|863|Perrserker}}&lt;br /&gt;
{{lop/wild2|864|Cursola}}&lt;br /&gt;
{{lop/wild2|865|Sirfetch&#039;d||||||||||||||||||||Leek}}&lt;br /&gt;
{{lop/wild2|866|Mr. Rime}}&lt;br /&gt;
{{lop/wild2|867|Runerigus}}&lt;br /&gt;
{{lop/wild2|868|Milcery}}&lt;br /&gt;
{{lop/wild2|869|Alcremie}}&lt;br /&gt;
{{lop/wild2|870|Falinks}}&lt;br /&gt;
{{lop/wild2|871|Pincurchin}}&lt;br /&gt;
{{lop/wild2|872|Snom||||||||||||||||||||Snowball}}&lt;br /&gt;
{{lop/wild2|873|Frosmoth}}&lt;br /&gt;
{{lop/wild2|874|Stonjourner}}&lt;br /&gt;
{{lop/wild2|875|Eiscue}}&lt;br /&gt;
{{lop/wild2|876|Indeedee}}&lt;br /&gt;
{{lop/wild2|877|Morpeko}}&lt;br /&gt;
{{lop/wild2|878|Cufant||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|879|Copperajah||||||||||||||||||||Lagging Tail}}&lt;br /&gt;
{{lop/wild2|880|Dracozolt}}&lt;br /&gt;
{{lop/wild2|881|Arctozolt}}&lt;br /&gt;
{{lop/wild2|882|Dracovish}}&lt;br /&gt;
{{lop/wild2|883|Arctovish}}&lt;br /&gt;
{{lop/wild2|884|Duraludon}}&lt;br /&gt;
{{lop/wild2|885|Dreepy}}&lt;br /&gt;
{{lop/wild2|886|Drakloak}}&lt;br /&gt;
{{lop/wild2|887|Dragapult}}&lt;br /&gt;
{{lop/wild2|888|Zacian}}&lt;br /&gt;
{{lop/wild2|889|Zamazenta}}&lt;br /&gt;
{{lop/wild2|890|Eternatus}}&lt;br /&gt;
{{lop/wild2|891|Kubfu}}&lt;br /&gt;
{{lop/wild2|892|Urshifu}}&lt;br /&gt;
{{lop/wild2|893|Zarude}}&lt;br /&gt;
{{lop/wild2|894|Regieleki}}&lt;br /&gt;
{{lop/wild2|895|Regidrago}}&lt;br /&gt;
{{lop/wild2|896|Glastrier}}&lt;br /&gt;
{{lop/wild2|897|Spectrier}}&lt;br /&gt;
{{lop/wild2|898|Calyrex}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In the internal data of [[Pokémon HOME]], {{p|Chansey}} was listed with a 50% chance of holding a [[Lucky Punch]] prior to version 1.1.0, {{p|Carvanha}} and {{p|Sharpedo}} were listed with a 5% chance of holding a [[Deep Sea Tooth]] prior to version 1.1.0, Relicanth was listed with a 5% chance of holding a [[Deep Sea Scale]] prior to version 1.2.0, and {{p|Ho-Oh}} was listed with a 100% chance of holding a [[Sacred Ash]] prior to version 1.2.0.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{pokelist}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project ItemDex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists]]&lt;br /&gt;
[[Category:Pokémon with wild held items|*]]&lt;br /&gt;
&lt;br /&gt;
[[es:Objetos que pueden llevar los Pokémon salvajes]]&lt;br /&gt;
[[fr:Liste des objets tenus par des Pokémon]]&lt;br /&gt;
[[it:Elenco Pokémon per strumento tenuto]]&lt;br /&gt;
[[ja:野生ポケモンのもちもの一覧]]&lt;br /&gt;
[[zh:宝可梦列表（按携带物品）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Psywave_(move)&amp;diff=3307174</id>
		<title>Psywave (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Psywave_(move)&amp;diff=3307174"/>
		<updated>2021-01-04T09:43:55Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Generations III and IV */  Corrected the damage formula&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=149&lt;br /&gt;
|name=Psywave&lt;br /&gt;
|jname=サイコウェーブ&lt;br /&gt;
|jtrans=Psychowave&lt;br /&gt;
|jtranslit=Saikowēbu&lt;br /&gt;
|gameimage=Psywave VII.png&lt;br /&gt;
|gameimage2=Psywave VII 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|damagecategory=Special&lt;br /&gt;
|basepp=15&lt;br /&gt;
|maxpp=24&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy={{tt|100|80 in Generations I-V}}&lt;br /&gt;
|gen=I&lt;br /&gt;
|category=Smart&lt;br /&gt;
|appeal=2&lt;br /&gt;
|jam=1&lt;br /&gt;
|cdesc=Badly startles all Pokémon that made good appeals.&lt;br /&gt;
|appealsc=3&lt;br /&gt;
|scdesc=A basic performance using a move known by the Pokémon.&lt;br /&gt;
|category6=Clever&lt;br /&gt;
|appeal6=1&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Effectiveness varies depending on when it is used.&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=yes&lt;br /&gt;
|kingsrock=yes&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
|na=no&lt;br /&gt;
|tm1=yes&lt;br /&gt;
|tm#1=46&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Psywave&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;サイコウェーブ&#039;&#039;&#039; &#039;&#039;Psychowave&#039;&#039;) is a damage-dealing {{type|Psychic}} [[move]] introduced in [[Generation I]]. It was [[TM46]] in Generation I. In [[Generation II]], it was the [[signature move]] of {{p|Misdreavus}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===Generation I===&lt;br /&gt;
Psywave inflicts a random amount of damage, varying between 1 damage and 1.5× the user&#039;s level.&lt;br /&gt;
&lt;br /&gt;
In a link battle, the damage dealt varies between 1 damage and 1.5× the user&#039;s level on the user&#039;s side, and between 0 damage and 1.5× the user&#039;s level on its opponent&#039;s side in a link battle. As a result, if a 0 is [[Pseudorandom number generation in Pokémon|generated]] in a link battle, it causes [[List of glitches in Generation I#Psywave desynchronization|the games to desynchronize]] as the target will receive 0 damage on the opponent&#039;s game, while the user&#039;s side will keep generating pseudorandom numbers until it produces a number between 1 and 1.5× the user&#039;s level. Additionally, [[List of glitches in Generation I#Psywave infinite loop|the game will freeze]] if a Level 0, 1, or 171 Pokémon uses the move, though Pokémon cannot normally be obtained at these levels without the use of glitches.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
Psywave inflicts a random amount of damage, varying between 1 {{stat|HP}} and 1.5× the user&#039;s level. The damage is always rounded down; however, Psywave will always deal at least 1 HP of damage.&lt;br /&gt;
&lt;br /&gt;
Psywave does not take weaknesses or resistances into account; however, type immunity is not ignored.&lt;br /&gt;
&lt;br /&gt;
===Generations III and IV===&lt;br /&gt;
Psywave inflicts damage equal to user_level * (r + 5) / 10, where r is a random number from 0 to 10. The damage is always rounded down; however, Psywave will always deal at least 1 HP of damage.&lt;br /&gt;
&lt;br /&gt;
Psywave can be used as part of a [[Contest combination|Pokémon Contest combination]], with the user gaining extra two appeal points if {{m|Calm Mind}} was used in the prior turn.&lt;br /&gt;
&lt;br /&gt;
===Generation V===&lt;br /&gt;
Psywave inflicts damage equal to (user&#039;s level) * (r + 50) / 100, where r is a random number from 0 to 100. The damage is always rounded down; however, Psywave will always deal at least 1 HP of damage.&lt;br /&gt;
&lt;br /&gt;
===Generations VI and VII===&lt;br /&gt;
Psywave&#039;s [[accuracy]] is now 100% instead of 80%.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII===&lt;br /&gt;
Psywave cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Psychic}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Stad}}{{gameabbrevss|Stad2}}|A &amp;lt;sc&amp;gt;Psychic&amp;lt;/sc&amp;gt;-type attack of varying intensity. It occasionally inflicts heavy damage.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev2|GSC}}|An attack with variable power.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|Attacks with a psychic wave of varying intensity.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|The foe is attacked with an odd, hot energy wave that varies in intensity.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The foe is attacked with an odd, hot energy wave. The attack varies in intensity.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}|The target is attacked with an odd psychic wave. The attack varies in intensity.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|SwSh}}|This move can&#039;t be used. It&#039;s recommended that this move is forgotten. Once forgotten, this move can&#039;t be remembered.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==Learnset==&lt;br /&gt;
===By [[Level|leveling up]]===&lt;br /&gt;
{{Movehead/Level|Psychic|1}}&lt;br /&gt;
{{Moveentry/8|120|Staryu|type=Water|1|Water 3|Water 3||||||13{{sup/6|ORAS}}|13{{sup/7|SMUSUM}}&amp;lt;br&amp;gt;4{{sup/7|PE}}|}}&lt;br /&gt;
{{Moveentry/8|121|Starmie|type=Water|type2=Psychic|1|Water 3|Water 3|||||||1{{sup/7|PE}}|}}&lt;br /&gt;
{{Moveentry/8|122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|||||15{{sup/5|B2W2}}|15|15{{sup/7|SMUSUM}}&amp;lt;br&amp;gt;20{{sup/7|PE}}|}}&lt;br /&gt;
{{Moveentry/8|150|Mewtwo|type=Psychic|1|Undiscovered|Undiscovered|||||||1|}}&lt;br /&gt;
{{Moveentry/8|151|Mew|type=Psychic|1|Undiscovered|Undiscovered|||||||33{{sup/7|PE}}|}}&lt;br /&gt;
{{Moveentry/8|200|Misdreavus|type=Ghost|1|Amorphous|Amorphous||1|1|1|1|1|1|}}&lt;br /&gt;
{{Moveentry/8|325|Spoink|type=Psychic|1|Field|Field|||7|7|7|7|7|}}&lt;br /&gt;
{{Moveentry/8|326|Grumpig|type=Psychic|1|Field|Field|||1, 7|1, 7|1, 7|1, 7|1, 7|}}&lt;br /&gt;
{{Moveentry/8|337|Lunatone|type=Rock|type2=Psychic|1|Mineral|Mineral|||25|23|23{{sup/5|BW}}&amp;lt;br&amp;gt;17{{sup/5|B2W2}}|17{{sup/6|XY}}&amp;lt;br&amp;gt;13{{sup/6|ORAS}}|13|}}&lt;br /&gt;
{{Moveentry/8|338|Solrock|type=Rock|type2=Psychic|1|Mineral|Mineral|||25|23|23{{sup/5|BW}}&amp;lt;br&amp;gt;17{{sup/5|B2W2}}|17{{sup/6|XY}}&amp;lt;br&amp;gt;13{{sup/6|ORAS}}|13|}}&lt;br /&gt;
{{Moveentry/8|358|Chimecho|type=Psychic|1|Amorphous|Amorphous|||30|30|30|30{{sup/6|XY}}&amp;lt;br&amp;gt;16{{sup/6|ORAS}}|16|}}&lt;br /&gt;
{{Moveentry/8|380|Latias|type=Dragon|type2=Psychic|1|Undiscovered|Undiscovered|||1|1|1|1|1|}}&lt;br /&gt;
{{Moveentry/8|381|Latios|type=Dragon|type2=Psychic|1|Undiscovered|Undiscovered|||1|1|1|1|1|}}&lt;br /&gt;
{{Moveentry/8|429|Mismagius|type=Ghost|1|Amorphous|Amorphous||||1|1|1|1|}}&lt;br /&gt;
{{Moveentry/8|436|Bronzor|type=Steel|type2=Psychic|1|Mineral|Mineral|||||15{{sup/5|B2W2}}|15|15|}}&lt;br /&gt;
{{Moveentry/8|437|Bronzong|type=Steel|type2=Psychic|1|Mineral|Mineral|||||15{{sup/5|B2W2}}|15|15|}}&lt;br /&gt;
{{Moveentry/8|517|Munna|type=Psychic|1|Field|Field|||||1|1|1|}}&lt;br /&gt;
{{Moveentry/8|561|Sigilyph|type=Psychic|type2=Flying|1|Flying|Flying|||||8|8|8|}}&lt;br /&gt;
{{Moveentry/8|577|Solosis|type=Psychic|1|Amorphous|Amorphous|||||1|1|1|}}&lt;br /&gt;
{{Moveentry/8|578|Duosion|type=Psychic|1|Amorphous|Amorphous|||||1|1|1|}}&lt;br /&gt;
{{Moveentry/8|579|Reuniclus|type=Psychic|1|Amorphous|Amorphous|||||1|1|1|}}&lt;br /&gt;
{{Moveentry/8|686|Inkay|type=Dark|type2=Psychic|2|Water 1|Water 2||||||13|13|}}&lt;br /&gt;
{{Moveentry/8|687|Malamar|type=Dark|type2=Psychic|2|Water 1|Water 2||||||13|13|}}&lt;br /&gt;
{{Moveentry/8|779|Bruxish|type=Water|type2=Psychic|1|Water 2|Water 2|||||||25|}}&lt;br /&gt;
{{Moveentry/8|786|Tapu Lele|type=Psychic|type2=Fairy|1|Undiscovered|Undiscovered|||||||8|}}&lt;br /&gt;
{{Moveentry/8|793|Nihilego|type=Rock|type2=Poison|1|Undiscovered|Undiscovered|||||||13|}}&lt;br /&gt;
{{Movefoot|Psychic|8}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Breed|Psychic|2}}&lt;br /&gt;
{{Moveentry/7|092|Gastly|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|109|Koffing|type=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Movefoot|Psychic|7}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]===&lt;br /&gt;
{{Movehead/TM|Psychic|1|TM46|no|no|no|no|no|no|no}}&lt;br /&gt;
{{Moveentry/8|012|Butterfree|type=Bug|type2=Flying|1|Bug|Bug|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|035|Clefairy|type=Normal|1|Fairy|Fairy|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|036|Clefable|type=Normal|1|Fairy|Fairy|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|039|Jigglypuff|type=Normal|1|Fairy|Fairy|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|040|Wigglytuff|type=Normal|1|Fairy|Fairy|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|048|Venonat|type=Bug|type2=Poison|1|Bug|Bug|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|049|Venomoth|type=Bug|type2=Poison|1|Bug|Bug|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|060|Poliwag|type=Water|1|Water 1|Water 1|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|061|Poliwhirl|type=Water|1|Water 1|Water 1|✔||||||}}&lt;br /&gt;
{{Moveentry/8|062|Poliwrath|type=Water|type2=Fighting|1|Water 1|Water 1|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|063|Abra|type=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|064|Kadabra|type=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|065|Alakazam|type=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|079|Slowpoke|type=Water|type2=Psychic|2|Monster|Water 1|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|080|Slowbro|type=Water|type2=Psychic|2|Monster|Water 1|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|092|Gastly|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|093|Haunter|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|094|Gengar|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|096|Drowzee|type=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|097|Hypno|type=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|102|Exeggcute|type=Grass|type2=Psychic|1|Grass|Grass|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|103|Exeggutor|type=Grass|type2=Psychic|1|Grass|Grass|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|113|Chansey|type=Normal|1|Fairy|Fairy|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|120|Staryu|type=Water|1|Water 3|Water 3|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|121|Starmie|type=Water|type2=Psychic|1|Water 3|Water 3|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|122|Mr. Mime|type=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|124|Jynx|type=Ice|type2=Psychic|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|125|Electabuzz|type=Electric|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|126|Magmar|type=Fire|1|Human-Like|Human-Like|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|131|Lapras|type=Water|type2=Ice|2|Monster|Water 1|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|137|Porygon|type=Normal|1|Mineral|Mineral|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|143|Snorlax|type=Normal|1|Monster|Monster|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|150|Mewtwo|type=Psychic|1|Undiscovered|Undiscovered|✔|||||||}}&lt;br /&gt;
{{Moveentry/8|151|Mew|type=Psychic|1|Undiscovered|Undiscovered|✔|||||||}}&lt;br /&gt;
{{Movefoot|Psychic|8}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
{{incomplete|section|2=Pokken}}&lt;br /&gt;
===In Pokémon Mystery Dungeon series===&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|Red Rescue Team and Blue Rescue Team]], Psywave has 19PP and 100% accuracy. The attack travels up to 10 tiles away and hits the first Pokémon it encounters, ally or enemy, dealing damage between 1/2 and 383/256 (~1.49x) of the user&#039;s level. It is affected by type matchup and STAB unlike in main series. Before accounting for type matchup and STAB, the move is guaranteed to deal at least 1HP of damage, but no more than 199 (although that number is impossible to achieve under normal gameplay).&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers of Time,  Darkness]] and [[Pokémon Mystery Dungeon: Explorers of Sky|Sky]], the move&#039;s PP has been decreased to 12, and its accuracy to 95%.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Psychic}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Inflicts damage on the target, even at a distance. The amount of damage depends on the user&#039;s level.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Inflicts damage on the target, even at a distance. The higher the user&#039;s level, the greater the damage.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|はなれたポケモンに ダメージをあたえる じぶんの レベルがたかいほど ダメージが おおきくなりやすい|Inflicts damage on the target, even at a distance. The higher the user&#039;s level, the greater the damage}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Its damage varies. The higher your level, the greater the possible damage.{{tt|*|Move Summary and PAL Move Description}}&amp;lt;br&amp;gt;It damages even a faraway Pokémon. The higher your level, the greater the damage.{{tt|*|US Move Description}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|Its damage varies. The higher your level, the greater the possible damage.{{tt|*|Move Summary}}&amp;lt;br&amp;gt;It damages an enemy. The higher your level, the greater the damage.{{tt|*|Move Description}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&amp;lt;!--===Pokken Tournament==&lt;br /&gt;
-Psywave Slash&lt;br /&gt;
-Psywave Vortex&lt;br /&gt;
-Psywave -&amp;gt; Teleport--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
{{moveanime|type=psychic|exp=yes|gen=The foe is attacked with an odd, hot energy wave.|image3={{#switch: {{#expr: {{#time: U}} mod 3}}|0=Fantina|1=Cocoa|2=Zoey}} Mismagius Psywave.png|image3p=Mismagius|image1=Officer Jenny Duosion Psywave.png|image1p=Duosion|image2=Brandon Solrock Psywave.png|image2p=Solrock|image4=Mandi Exeggutor Psywave.png|image4p=Exeggutor}}&lt;br /&gt;
{{movep|type=Psychic|ms=124|pkmn=Jynx|method=Jynx&#039;s eyes glow and she raises her hands in the air. The opponent then lifts up into the air, and by waving her arms, Jynx can control wherever the opponent goes.}}&lt;br /&gt;
{{movemid|type=psychic|user=Santa Claus|user1=Santa Claus&#039;s Jynx|startcode=Holiday Hi-Jynx|notes=Debut}}&lt;br /&gt;
{{movep|type=psychic|ms=103|pkmn=Exeggutor|method=Exeggutor&#039;s eyes glow green and it bends down, firing a white ring at the opponent from the middle of its leaves.}}&lt;br /&gt;
{{movemid|type=psychic|user=Mandi|user1=Mandi&#039;s Exeggutor|startcode=EP075|startname=Round One - Begin!}}&lt;br /&gt;
{{movep|type=psychic|ms=092|pkmn=Gastly|method=Gastly shoots the fog around its body at the opponent and the fog morphs into an arrow-like shape that hits the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Gastly (Pokémon)|user1=Officer Jenny&#039;s Gastly|startcode=EP086|startname=Pikachu Re-Volts}}&lt;br /&gt;
{{movep|type=psychic|ms=122|pkmn=Mr. Mime|method=Mr. Mime raises its hands then brings them down in the shape of a circle and a white circle appears in front of it. It then fires the ring at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Toku|user1=Toku&#039;s Mr. Mime|startcode=EP156|startname=The Psychic Sidekicks!}}&lt;br /&gt;
{{movep|type=psychic|ms=338|pkmn=Solrock|method=Solrock&#039;s body becomes outlined in light blue, and its eyes also glow light blue. Solrock then fires light blue rings at the opponent from its body.}}&lt;br /&gt;
{{movemid|type=psychic|user=Brandon (anime)|user1=Brandon&#039;s Solrock|startcode=AG190|startname=Pace - The Final Frontier!}}&lt;br /&gt;
{{movep|type=psychic|ms=429|pkmn=Mismagius|method=Mismagius&#039;s outlines glow light blue and it releases a wave of energy out of its body. When it hits the opponent, its body glows multicolored and Mismagius can control the opponent, or Mismagius&#039;s body becomes outlined in light blue and it fires invisible or light blue shockwaves at the opponent from its body, or the gems on Mismagius&#039;s body glow pink and its body becomes outlined in light blue. It then fires multiple light blue tentacles from the outline at the opponent, or Mismagius&#039;s eyes become surrounded in multicolored energy and it fires a beam of multicolored energy from its eyes at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Cocoa|user1=Cocoa&#039;s Mismagius|startcode=DP086|startname=Arriving in Style!}}&lt;br /&gt;
{{movemid|type=psychic|user=Fantina|user1=Fantina&#039;s Mismagius|startcode=DP093|startname=Playing the Leveling Field!}}&lt;br /&gt;
{{movemid|type=psychic|user=Zoey|user1=Zoey&#039;s Mismagius|startcode=DP176|startname=Coming Full - Festival Circle!}}&lt;br /&gt;
{{movemid|type=psychic|user=Grings Kodai|user1=Grings Kodai&#039;s Mismagius|startcode=M13|startname=Zoroark: Master of Illusions}}&lt;br /&gt;
{{movep|type=psychic|ms=358|pkmn=Chimecho|method=Chimecho&#039;s body becomes outlined in light blue and it releases multiple light blue rings from its mouth at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Maya (DP154)|user1=Maya&#039;s Chimecho|startcode=DP154|startname=Mastering Current Events!}}&lt;br /&gt;
{{movep|type=psychic|ms=579|pkmn=Reuniclus|method=Reuniclus puts its hands together in front of it and fires a multicolored beam of energy from its hands at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Damon|user1=Damon&#039;s Reuniclus|startcode=M14|startname=White—Victini and Zekrom}}&lt;br /&gt;
{{movep|type=psychic|ms=578|pkmn=Duosion|method=Duosion puts its arms out in front of it and multicolored energy appears and gathers in front of its body. A wavy multicolored beam of energy then fires from the energy at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Officer Jenny|user1=Officer Jenny&#039;s Duosion|startcode=BW045|startname=Beheeyem, Duosion, and the Dream Thief!}}&lt;br /&gt;
{{movep|type=psychic|ms=150MY|pkmn=Mewtwo|method=Mega Mewtwo Y creates a white force field that expands rapidly from around it and explodes on contact with the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Mewtwo (M16)|startcode=M16|startname=Genesect and the Legend Awakened|notes=Mewtwo {{color2|{{psychic color dark}}|Anime move errors|cannot legally know}} Psywave {{color2|{{psychic color dark}}|Generation V|in Generation V}}}}&lt;br /&gt;
{{movep|type=psychic|ms=326|pkmn=Grumpig|method=Grumpig fires a beam of multicolored energy from between its hands at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Grumpig (Pokémon)|user1=A wild Grumpig|startcode=XY061|startname=An Oasis of Hope!}}&lt;br /&gt;
{{movep|type=psychic|ms=325|pkmn=Spoink|method=Spoink fires a beam of multicolored energy from between its hands at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Spoink (Pokémon)|user1=Multiple wild Spoink|startcode=XY061|startname=An Oasis of Hope!}}&lt;br /&gt;
{{movep|type=psychic|ms=561|pkmn=Sigilyph|method=Sigilyph&#039;s two eyes on its head start to glow and then it fires a beam of multicolored energy from its eyes at the opponent.}}&lt;br /&gt;
{{movebtm|type=psychic|user=Carrie (XY092)|user1=Carrie&#039;s Sigilyph|startcode=XY092|startname=Cloudy Fate, Bright Future!}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
{{movemanga|type=psychic|exp=yes|gen=The foe is attacked with an odd, hot energy wave.|image1=Mewtwo Psywave Tornado Adventures.png|image1p=Mewtwo (Tornado)|image2=Mewtwo spoon.png|image2p=Mewtwo (Spoon)|image3=Ken Jynx Psywave Adventures.png|image3p=Jynx|image4=Mewtwo fork.png|image4p=Mewtwo (Fork)}}&lt;br /&gt;
{{movep|type=psychic|ms=124|pkmn=Jynx|method=Jynx releases a powerful wave of psychic energy from her body that distorts the air around the opponent and creates a horrible sound in the target&#039;s head.}}&lt;br /&gt;
{{movemid|type=psychic|user=Team Rocket Elite Trio|user1=Ken&#039;s Jynx|startcode=PS017|startname=The Jynx Jinx|notes=Debut}}&lt;br /&gt;
{{movep|type=psychic|ms=150|pkmn=Mewtwo|method=Mewtwo releases a powerful tornado from its body that traps the opponent inside, or Mewtwo creates a spoon out of psychic energy and hits the opponent with it. When in the spoon form, Mewtwo can fire the energy from the spoon by transforming it into a fork and extending it.}}&lt;br /&gt;
{{movemid|type=psychic|user=Mewtwo (Adventures)|user1=Blaine&#039;s Mewtwo|startcode=PS034|startname=And Mewtwo Too?!}}&lt;br /&gt;
{{movep|type=psychic|ms=200|pkmn=Misdreavus|method=Misdreavus releases a beam of energy from its face at the opponent.}}&lt;br /&gt;
{{movemid|type=psychic|user=Morty|user1=Morty&#039;s Misdreavus|startcode=PS125|startname=Misdreavus Misgivings}}&lt;br /&gt;
{{movep|type=psychic|ms=203|pkmn=Girafarig|method=Girafarig releases a powerful wave of psychic energy from its antennae that distorts the air around and causes the opponent&#039;s head to hurt.}}&lt;br /&gt;
{{movemid|type=psychic|user=Team Rocket Elite Trio|user1=Harry&#039;s Girafarig|startcode=PS129|startname=Great Girafarig}}&lt;br /&gt;
{{movep|type=psychic|ms=338|pkmn=Solrock|method=Solrock glares at the opponent and releases a powerful wave of psychic energy at the opponent from its body.}}&lt;br /&gt;
{{movemidManga|type=psychic|user=Tate&#039;s Solrock|startcode=PS229|startname=You Can Fight Day or Night With Lunatone &amp;amp; Solrock}}&lt;br /&gt;
{{movep|type=psychic|ms=150MX|pkmn=Mewtwo|method=Mega Mewtwo X creates a spoon out of psychic energy and hits the opponent with it.}}&lt;br /&gt;
{{movebtmManga|type=psychic|user=Mewtwo (Adventures)|user1=Blaine&#039;s Mewtwo|startcode=PAXY36|startname=Mewtwo Angered}}&lt;br /&gt;
&lt;br /&gt;
===In the Phantom Thief Pokémon 7 manga===&lt;br /&gt;
{{Movemanga|type=psychic|exp=yes|gen=The user releases a powerful blast of energy at the opponent.|image1=Lily Mismagius Psywave P7.png|image1p=Mismagius|image2=Hiori Mime Jr Mimic Psywave.png|image2p=Mime Jr.}}&lt;br /&gt;
{{movep|type=psychic|ms=429|pkmn=Mismagius|method=Mismagius glows and shoots a blast of energy at the opponent.}}&lt;br /&gt;
{{Movemid|type=psychic|user=Lily (Pokémon 7)|user1=Lily&#039;s Mismagius|startcode=P7-04|startname=A Fated Reunion|notes=Debut}}&lt;br /&gt;
{{movep|type=psychic|ms=439|pkmn=Mime Jr.|method=Mime Jr. glows and shoots a blast of energy at the opponent.}}&lt;br /&gt;
{{movebtmManga|type=psychic|user=Hiori|user1=Hiori&#039;s Mime Jr.|startcode=P7-08|startname=Lily Regains Her Memories!|notes=Used via {{color2|{{psychic color dark}}|Mimic (move)|Mimic}}}}&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Try Adventure manga===&lt;br /&gt;
{{movemanga|type=psychic|exp=yes|gen=The user fires a beam of psychic energy at the opponent.|image1=Soro Spoink Psywave.png|image1p=Spoink}}&lt;br /&gt;
{{movep|type=psychic|ms=325|pkmn=Spoink|method=Spoink fires a beam of psychic energy at the opponent.}}&lt;br /&gt;
{{movebtmManga|type=psychic|user=Soro|user1=Soro&#039;s Spoink|startcode=TA30|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|genI=Psywave I&lt;br /&gt;
|genII=Psywave II&lt;br /&gt;
|genIII=Psywave III&lt;br /&gt;
|genIV=Psywave IV&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|genV=Psywave V&lt;br /&gt;
|genVI=Psywave VI&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|Stad=Psywave Stad&lt;br /&gt;
|Stad2=Psywave Stad2&lt;br /&gt;
|Colo=Psywave Colo&lt;br /&gt;
|XD=Psywave XD&lt;br /&gt;
}}&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|PBR=Psywave PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|PMDRB=Psywave PMD RB&lt;br /&gt;
}}&lt;br /&gt;
[[File:Psywave PMD RTDX.png|thumb|center|250px|PMD: Rescue Team DX]]&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{psychic color}}|bordercolor={{psychic color dark}}&lt;br /&gt;
|zh_yue=精神波 &#039;&#039;{{tt|Jīngsàhn Bō|Psycho Wave}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;幻象波 &#039;&#039;{{tt|Waahnjeuhng Bō|Illusory Wave}}&#039;&#039; {{tt|*|XY series}}&amp;lt;br&amp;gt;幻像波浪 &#039;&#039;{{tt|Waahnjeuhng Bōlohng|Illusory Wave}}&#039;&#039; {{tt|*|Guidebook}}&lt;br /&gt;
|zh_cmn=精神波 &#039;&#039;{{tt|Jīngshén Bō|Psycho Wave}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;幻象波 &#039;&#039;{{tt|Huànxiàng Bō|Illusory Wave}}&#039;&#039; {{tt|*|Anime &amp;amp; Manga}}&lt;br /&gt;
|nl=Psygolf&lt;br /&gt;
|hi= मानसिक लहर &#039;&#039;Maansik leher&#039;&#039;&lt;br /&gt;
|fi=Psykoaalto&lt;br /&gt;
|fr=Vague Psy&lt;br /&gt;
|de=Psywelle&lt;br /&gt;
|el=Ψυχοκύμα &#039;&#039;Psychokýma&#039;&#039;&lt;br /&gt;
|id=Psywave&lt;br /&gt;
|it=Psiconda{{tt|*|Generation III onwards}}&amp;lt;br&amp;gt;Psico-onda{{tt|*|Generations I-II}}&lt;br /&gt;
|ko=사이코웨이브 &#039;&#039;{{tt|Saikoweibeu|Psycho wave}}&#039;&#039;&lt;br /&gt;
|pl=Psychofala&lt;br /&gt;
|pt_br=Onda Psíquica&lt;br /&gt;
|ro=Psywave&lt;br /&gt;
|sr=Psihički Talas&lt;br /&gt;
|es=Psicoonda{{tt|*|Generation III onwards}}&amp;lt;br&amp;gt;Psico-Onda{{tt|*|Generations I-II}}&lt;br /&gt;
|sv=Psykvåg&amp;lt;br&amp;gt;Hypnos{{tt|*|EP075}}&lt;br /&gt;
|vi=Sóng Tâm Linh&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Generation I TMs}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can jam]]&lt;br /&gt;
[[Category:Moves that deal direct damage]]&lt;br /&gt;
[[Category:Moves in Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]&lt;br /&gt;
&lt;br /&gt;
[[de:Psywelle]]&lt;br /&gt;
[[es:Psicoonda]]&lt;br /&gt;
[[fr:Vague Psy]]&lt;br /&gt;
[[it:Psiconda]]&lt;br /&gt;
[[ja:サイコウェーブ]]&lt;br /&gt;
[[zh:精神波（招式）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pomeg_glitch&amp;diff=3293717</id>
		<title>Pomeg glitch</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pomeg_glitch&amp;diff=3293717"/>
		<updated>2020-11-30T13:00:42Z</updated>

		<summary type="html">&lt;p&gt;Map233224: HGSS doesn&amp;#039;t have the Pomeg Glitch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Pomeg glitch&#039;&#039;&#039; is a [[glitch]] exclusive to {{game|Emerald}}, {{game|Diamond}}, {{game|Pearl}} and {{game|Platinum}}.&lt;br /&gt;
&lt;br /&gt;
==Performing the glitch==&lt;br /&gt;
The Pomeg glitch involves using a [[Pomeg Berry]] on a Pokémon whose current HP is very low. The Pomeg Berry lowers the HP {{EV}}s of a Pokémon by 10 in [[Generation III]]. Since every 4 EVs is equivalent to 1 HP (at level 100), the Pokémon&#039;s HP will decrease with each Pomeg Berry used, as long as the Pokémon has 4 or more EVs in HP. In this way, it is possible to lower the Pokémon&#039;s current HP to 0 (without causing it to [[Fainting|faint]]) or a negative number.&lt;br /&gt;
&lt;br /&gt;
For example, if a Pokémon with 8 HP EVs currently has 1 HP out of a maximum of 100, using a Pomeg Berry will decrease the EVs to 0. As a result, the Pokémon should lose 2 HP and have a current HP of -1 and a maximum of 98. However, due to the [[wp:Unsigned integer|unsigned]] manner in which this data is stored, the game interprets a negative number as a very high number; therefore, if a Pokémon&#039;s current HP drops to -1, it will be interpreted as 65,535 (two bytes) and be displayed as &amp;quot;?35&amp;quot; as well as the HP bar showing the incorrect amount in percent.&lt;br /&gt;
&lt;br /&gt;
In [[Generation IV]], the glitch was partially corrected so that a Pomeg Berry could not glitch a Pokémon with 3 or fewer HP (a Pomeg Berry will usually decrease a Pokémon&#039;s HP by 2). However, the glitch still exists but must be performed on a Pokémon with 4 or more current HP and 116 or more HP EVs. When a Pomeg Berry is consumed with more than 100 EVs, it resets the EVs to 100. With an EV total of 116, the Pokémon would lose at least 4 HP to reach 0 current HP. &lt;br /&gt;
&lt;br /&gt;
In [[Generation V]] EV Berries always decrease EVs by 10, and will no longer decrease EVs by more than 10 if the Pokémon has over 100 EVs, making the Pomeg glitch unusable.&lt;br /&gt;
&lt;br /&gt;
The player can undo the effects by simply healing in a [[Pokémon Center]] or using a [[Revive]] when the HP goes back to 0 after using a healing item during which the HP is at &amp;quot;?35&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Sub-glitches==&lt;br /&gt;
Several other glitches derive from the Pomeg glitch, such as the ability to battle with an Egg, battling with no Pokémon at all, or battling for an unlimited amount of times. Other than Eruption/Water Spout related sub-glitch, these cannot be performed in {{game|Ruby and Sapphire|s}}.&lt;br /&gt;
&lt;br /&gt;
===In Generation III===&lt;br /&gt;
====Reviving Glitched Pokémon====&lt;br /&gt;
If a [[Potion]] is used in battle, returning the glitched Pokémon to 0 HP, and the offending Pokémon causes damage to the glitched Pokémon, the glitched Pokémon&#039;s sprite will disappear for the remainder of the battle, and the Pokémon will return to full HP, minus the damage from the previous attack.&lt;br /&gt;
&lt;br /&gt;
====Battling with no Pokémon====&lt;br /&gt;
If there is only one Pokémon in the player&#039;s party when affected by this glitch, and goes into faint status using a healing item, the player will not white out. This is because the game does not check for this on the field. If the player walks into [[tall grass]] and encounters a wild Pokémon or starts a battle in any other way, the Pokémon will be sent out with 0 HP, the {{shiny}} animation will not play, and will faint at the beginning of the battle if it is commanded to attack the opponent, causing the normal [[Black out|whiteout]] scenario. If on the first turn an item is used to revive the Pokémon the battle will continue as normal.&lt;br /&gt;
&lt;br /&gt;
====Battling with an Egg====&lt;br /&gt;
If the player has only an Egg in their party with the Pokémon affected, the Egg (or rather, the Pokémon that would be inside) can be forced into battle by following the same steps, but putting the Egg at the head of the party. The Egg will have the same stats it would have upon hatching, as well as all the moves. This allows it to battle as if it were a normal Pokémon. When battling with an Egg, the sprite of the Pokémon within the Egg is displayed; however, there may be irregularity in the coloring of the Pokémon. This may be because the game is reading the backsprite of the Pokémon within the Egg and the color palette of the Egg itself. &lt;br /&gt;
&lt;br /&gt;
An Egg that battles can gain experience in this way, and with patience, level up, learn moves, and even evolve before hatching. However, when it hatches the level is set to 5, {{EV}}s reset to zero and all [[Experience|EXP]] gained in the Egg is removed. This allows level 5 versions of high-evolutionary Pokémon such as {{p|Tyranitar}} or {{p|Dragonite}} to be obtainable, it also allows otherwise illegal moveset/level combinations, such as a level 5 {{p|Staryu}} with {{m|Hydro Pump}}.&lt;br /&gt;
&lt;br /&gt;
If the player has other Pokémon in the party, to prevent [[Black out|blacking out]], the player has to use a (Max) Revive or a Revival Herb on any other Pokémon in the party.&lt;br /&gt;
&lt;br /&gt;
====Healing with Eruption/Water Spout====&lt;br /&gt;
If the Pokémon that has been affected by the glitch uses Eruption or Water Spout, the attack may heal the opponent if the user has high enough Sp. Atk and the opponent has a low level, low Sp. Def and double weakness to the attack.&lt;br /&gt;
&lt;br /&gt;
This is because [[Water Spout]] deals damage based on the user&#039;s current HP, and performing the Pomeg Glitch gives the user approximately 65535 HP. With a high enough Sp.Atk value, it causes the damage dealt to be so high it underflows to a negative value (the [[damage]] value was a {{wp|signedness|signed}} integer in this generation, which was changed to unsigned in Generation V). A full health opponent&#039;s HP bar will appear to drain, but it will not faint. An opponent with less than full HP will be healed to full HP.&lt;br /&gt;
&lt;br /&gt;
{{youtubevid|OdHRxG9jC0U|ChickasaurusGL|Spicy}}&lt;br /&gt;
&lt;br /&gt;
====Near-infinite battle====&lt;br /&gt;
If the Pokémon that has been affected is sent out with 65,535 HP against an opponent that uses an HP-stealing move like {{m|Absorb}}, the Pokémon&#039;s HP will be stolen until it reaches the normal maximum amount, which is usually over 65,000 HP lower than the glitched amount for a Pokémon with the absolute maximum HP. If a second HP-stealing move is used, the Pokémon will lose its full HP, go down to 0, and then repeat from the top again.&lt;br /&gt;
&lt;br /&gt;
{{youtubevid|om_gbtMAw6I|v0id19|Spicy}}&lt;br /&gt;
&lt;br /&gt;
====Sprite glitch====&lt;br /&gt;
{{Cleanup|section}}&lt;br /&gt;
{{GlitchResearch| Needs list of all moves that work with this glitch }}&lt;br /&gt;
&lt;br /&gt;
This sub-glitch changes a Pokémon&#039;s sprite depending on the moves the affected Pokémon performs or is attacked with.&lt;br /&gt;
&lt;br /&gt;
After performing the Pomeg glitch, the player must enter a battle using a Pokémon currently affected by the glitch against another that knows one of the correct moves. The second step is letting a turn pass either by use of the [[Oran Berry]] on the glitched Pokémon, moves with little or no damage to the foe, or wait for it to use the effective move twice, unless the player&#039;s Pokémon has been damaged before. If this were to happen, it will only require being hit once by the effective move.&lt;br /&gt;
&lt;br /&gt;
Certain moves affect the glitched Pokémon.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background:#{{spicy color}}; border:2px solid #{{spicy color dark}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! class=&amp;quot;roundytl&amp;quot; style=&amp;quot;background:#{{spicy color light}};&amp;quot; | Move&lt;br /&gt;
! class=&amp;quot;roundytr&amp;quot; style=&amp;quot;background:#{{spicy color light}};&amp;quot; | Effect&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Absorb}}&lt;br /&gt;
| Drags sprite towards enemy&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Acid}}&lt;br /&gt;
| Enemy sprite goes near Acid and moves with it.&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Air Cutter}}&lt;br /&gt;
| Moves the Pokémon from the enemy to the original position of the glitched Pokémon&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|String Shot}} &lt;br /&gt;
| Moves along the string&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Odor Sleuth}}&lt;br /&gt;
| Never ends, screen freezes with the words &amp;quot;Wild/Foe (Pokémon) used Odor Sleuth!&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Sunny Day}} &lt;br /&gt;
| User flies down with the sun&#039;s rays.&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Bite}}&lt;br /&gt;
| Moves along the bottom Jaw/Teeth.&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Charge}}&lt;br /&gt;
| User shrinks to very small size.&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Bone Club}}&lt;br /&gt;
| User&#039;s sprite is rotated.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{youtubevid|mywjwEl9HwE|TeamofNoobs|spicy}}&lt;br /&gt;
&lt;br /&gt;
Certain moves also affect the opponent Pokémon.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background:#{{spicy color}}; border:2px solid #{{spicy color dark}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! class=&amp;quot;roundytl&amp;quot; style=&amp;quot;background:#{{spicy color light}};&amp;quot; | Move&lt;br /&gt;
! class=&amp;quot;roundytr&amp;quot; style=&amp;quot;background:#{{spicy color light}};&amp;quot; | Effect&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Charm}} &lt;br /&gt;
| Depends on opponent Pokémon, commonly reduces size of opponent sprite.&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Sunny Day}} &lt;br /&gt;
| Inverts opponent Pokémon&#039;s sprite. Causes very odd effects between turns.&lt;br /&gt;
|- style=&amp;quot;background:#FFFFFF;&amp;quot;&lt;br /&gt;
| {{m|Screech}}&lt;br /&gt;
| A box (color depends by Pokémon) appears on user and user goes narrower. After this user returns to normal width. Part of Sunny Day&#039;s odd effects.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{youtubevid|K2y2oqzEbaE|VaePomegGlitch|spicy}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{incomplete|section}}&lt;br /&gt;
&lt;br /&gt;
====Egg trade evolution glitch====&lt;br /&gt;
If a Pokémon in an {{pkmn|Egg}} evolves into a Pokémon that evolves by trade such as {{p|Kadabra}}, the Egg will evolve when traded, for example into {{p|Alakazam}}.&lt;br /&gt;
&lt;br /&gt;
{{youtubevid|dOvw0wtZItw|VaePomegGlitch|spicy}}&lt;br /&gt;
&lt;br /&gt;
====Access Pokémon beyond slot 6====&lt;br /&gt;
{{Incomplete|section|Huge amount of information missing; e.g. discuss how scrolling far enough corrupts memory in Storage Boxes 3(?) and onward, segue into how this plus the checksum verification and the related dynamic ordering of Pokemon data substructures can cause certain Pokemon (Eggs) to reliably change species based on the EVs they had, allowing the player to obtain any Pokemon ([[Glitzer Popping]]).}}&lt;br /&gt;
&lt;br /&gt;
This sub-glitch allows the player to access Pokémon beyond slot 6. &lt;br /&gt;
&lt;br /&gt;
To do this, the player has to have at least 3 Pokémon in their party, one to four fainted, one normal, and one affected by the Pomeg glitch.&lt;br /&gt;
&lt;br /&gt;
The player should enter a wild battle with their Pomeg glitched Pokémon, swap to their normal Pokémon, and then run. After doing this, the normal Pokémon should be deposited into a PC at a Pokémon Center, and then a Potion should be used on the Pomeg-affected Pokémon to get its HP at 0. Once done, entering any battle will cause the player to send out [[Ten question marks|??????????]], and viewing its Pokémon screen, looking at any of its stats, exiting the stat screen, and then scrolling down allows the player access Pokémon beyond the 6th slot.&lt;br /&gt;
{{youtubevid|KME8eusvRAc|Werster|spicy}}&lt;br /&gt;
&lt;br /&gt;
{{youtubevid|R3XreB4GLnE|ChickasaurusGL|spicy}}&lt;br /&gt;
&lt;br /&gt;
=====Glitzer Popping=====&lt;br /&gt;
{{main|Glitzer Popping}}&lt;br /&gt;
&lt;br /&gt;
===In Generation IV===&lt;br /&gt;
====Battling with no Pokémon====&lt;br /&gt;
&lt;br /&gt;
In {{3v2|Diamond|Pearl|Platinum}}, if the player&#039;s only Pokémon are [[fainting|fainted]] or {{pkmn|Egg}}s, battling a Trainer in the [[Battleground]], {{si|Pokémon League}}, or [[Seven Stars Restaurant]] will cause the player to send out a [[-----]] (or two ----- at the Seven Stars Restaurant). &lt;br /&gt;
&lt;br /&gt;
This glitch can be performed if the last conscious non-Egg Pokémon in the player&#039;s party is a Pokémon whose level is above 40 but less than 100 with a high amount of {{stat|HP}} {{EV}}s, whose remaining HP is the same as below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Remaining HP = (HP lost through use of a Pomeg Berry) - (HP gained through use of a Rare Candy after using a Pomeg Berry)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then a [[Pomeg Berry]] must be used, which makes the Pokémon&#039;s HP roll over to a {{tt|very high|or sometimes considered negative}} number. Then a [[Rare Candy]] must be used to level up the Pokémon, causing it to faint. The player does not [[black out]].&lt;br /&gt;
&lt;br /&gt;
By battling at the {{si|Pokémon League}} or [[Battleground]], the player will send out a -----.&lt;br /&gt;
&lt;br /&gt;
At the [[Seven Stars Restaurant]], the player can perform the glitch in a [[Double Battle]]. Once the battle starts, the player will send out two -----. Due to being unable to target -----, opponents will target their ally.&lt;br /&gt;
&lt;br /&gt;
This can be performed with one or more Pokémon, as long as all of them are fainted or {{pkmn|Egg}}s. If performed with more than one Pokémon, the second Pokémon will appear in the first slot on the party screen, the third in the second, etc.&lt;br /&gt;
&lt;br /&gt;
During the battle, if the game checks to see if either player has no Pokémon left (whenever a Pokémon takes damage and at the end of each round), the player will automatically black out if the only Pokémon they have are -----. If performed the glitch with a fainted Pokémon in the second party slot or further and a [[Revive]] or [[Revival Herb]] is used to revive it mid-battle, the player will not lose; however, at the end of the round the player will be forced to switch it in. If this happens in a Double Battle under this glitch, the Pokémon will replace the left -----; the right -----&#039;s sprite will remain, but its turn will always be skipped.&lt;br /&gt;
&lt;br /&gt;
{{youtubevid|E12pPXg4-dM|ChickasaurusGL|Spicy}}&lt;br /&gt;
(glitch begins at 5:14)&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Glitches}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project GlitchDex notice|no}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Glitches]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Bug de la Baie Grena]]&lt;br /&gt;
[[it:Glitch della Baccagrana]]&lt;br /&gt;
[[zh:榴石果（漏洞）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Spiky-eared_Pichu&amp;diff=3278814</id>
		<title>Spiky-eared Pichu</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Spiky-eared_Pichu&amp;diff=3278814"/>
		<updated>2020-11-01T18:10:40Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In the core series */ typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AnimePokémonInfobox&lt;br /&gt;
|nickname=Spiky-eared Pichu&lt;br /&gt;
|jnickname=ギザみみピチュー&lt;br /&gt;
|tmnickname=Gizamimi Pichu&lt;br /&gt;
|pokemonname=Pichu&lt;br /&gt;
|image=[[File:Spiky-eared Pichu DP 1.png|180px]]&lt;br /&gt;
|caption=Spiky-eared Pichu&lt;br /&gt;
|gender=Female&lt;br /&gt;
|type1=electric&lt;br /&gt;
|ball=None&lt;br /&gt;
|ability={{a|Static}}&lt;br /&gt;
|caught=no&lt;br /&gt;
|prevonum=172&lt;br /&gt;
|noevo=incap&lt;br /&gt;
|nature=Naughty&lt;br /&gt;
|epnum=Pokémon HeartGold and SoulSilver Versions&lt;br /&gt;
|epname=HeartGold and SoulSilver&lt;br /&gt;
|current=[[Ilex Forest]] (games)&amp;lt;br&amp;gt;[[Michina Town]] (anime)&lt;br /&gt;
|java1=[[Shōko Nakagawa]]&lt;br /&gt;
|enva1=[[Kayzie Rogers]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Spiky-eared Pichu&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ギザみみピチュー&#039;&#039;&#039; &#039;&#039;Gizamimi Pichu&#039;&#039;) is a female {{p|Pichu}}. Her [[List of Pokémon with form differences|form]] is different from the one of an ordinary Pichu, as she has three spikes at the tip of her left ear, hence her name.&lt;br /&gt;
&lt;br /&gt;
==In the games==&lt;br /&gt;
===In the core series===&lt;br /&gt;
[[File:HGSS Prerelease Double Pichu battle.png|thumb|Spiky-eared Pichu and {{DL|List of Nintendo event Pokémon with in-game effects|Pikachu-colored Pichu}} in a Double Battle]]&lt;br /&gt;
She appears in {{game|HeartGold and SoulSilver|s}} as an event Pokémon obtained in [[Ilex Forest]]. She will appear and join the player&#039;s party if the {{DL|List of Nintendo event Pokémon with in-game effects|Pikachu-colored Pichu}} (or one of its evolutions) is brought to the shrine as the first Pokémon in the party. She has her own unique in-battle and overworld sprites and cannot evolve or be traded outside of HeartGold and SoulSilver. Aside from her unique sprite, moves, and inability to be traded or evolve, she is nearly identical to a normal Pichu in that her base stats are the same as a normal Pichu&#039;s. However, her maximum stats for the [[Pokéathlon]] are different.&amp;lt;!-- The same trend occurs with other Pokémon that share base stats throughout multiple forms, such as {{p|Rotom}} and {{p|Arceus}}.--&amp;gt; If a Pokémon uses {{m|Transform}} on her, it will have a spiky ear.&lt;br /&gt;
&lt;br /&gt;
{{Shiny}} sprites for Spiky-eared Pichu exist in the coding of the games, although it is impossible to obtain one due to the game assigning the Spiky-eared Pichu a fixed [[personality value]] that is predetermined according to the [[Trainer ID number]] and [[secret ID]]. This ensures that the [[personality value]] will never result in a Shiny nor a male Spiky-eared Pichu.&lt;br /&gt;
&lt;br /&gt;
If taken to [[Professor Elm]], it is revealed that she has traveled through time with {{p|Celebi}}. Elm claims that he and [[Professor Oak]] were researching the time travel abilities of Celebi, and claims that this Pichu proves his main theory. He adds that the reason she cannot evolve is because she has been time traveling for so long. He then calls all the [[Pokémon Center]] attendants to prevent Spiky-eared Pichu from being used in trades; however, the attendants do not permit her into a trading facility prior to this either. Spiky-eared Pichu is also unable to be transferred through the [[Poké Transfer]] into a [[Generation V]] game due to her past time traveling.&lt;br /&gt;
&lt;br /&gt;
Spiky-eared Pichu&#039;s inability to be traded outside of HeartGold and SoulSilver can be explained as being preventative of trading any alternate form to a game in which the form does not appear, as happens in Platinum, HeartGold, and SoulSilver when entering the trade center with {{p|Rotom}} in an appliance, {{p|Giratina}} in its Origin Forme, or {{p|Shaymin}} in its Sky Forme, by returning them to the forms they appeared in Diamond and Pearl. As Spiky-eared Pichu cannot freely change between forms, this explains the need to make her untradeable within Generation IV.&lt;br /&gt;
&lt;br /&gt;
{{Pokémon/4&lt;br /&gt;
|ndex=172N&lt;br /&gt;
|game=HeartGold and SoulSilver&lt;br /&gt;
|pokemon=Pichu&lt;br /&gt;
|gender=female&lt;br /&gt;
|level=30&lt;br /&gt;
|ability=Static&lt;br /&gt;
|type1=Electric&lt;br /&gt;
|held=Zap Plate&lt;br /&gt;
|move1=Volt Tackle|move1type=Electric|move1cat=Physical&lt;br /&gt;
|move2=Helping Hand|move2type=Normal|move2cat=Status&lt;br /&gt;
|move3=Swagger|move3type=Normal|move3cat=Status&lt;br /&gt;
|move4=Pain Split|move4type=Normal|move4cat=Status&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Electric&lt;br /&gt;
|Speed=5&lt;br /&gt;
|SpeedMax=5&lt;br /&gt;
|Power=1&lt;br /&gt;
|PowerMax=1&lt;br /&gt;
|Technique=3&lt;br /&gt;
|TechniqueMax=5&lt;br /&gt;
|Stamina=1&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=3&lt;br /&gt;
|JumpMax=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===In the spin-off games===&lt;br /&gt;
[[File:SSBU Spiky Pichu.png|150px|thumb|Spiky-eared Pichu in Super Smash Bros. Ultimate]]&lt;br /&gt;
====[[Pokémon Battrio]]====&lt;br /&gt;
Spiky-eared Pichu appears in [[Pokémon Battrio]], as the {{battrio|Special Pucks}} [[Pichu (Spiky-eared Pichu Set)]] and [[Pichu (10-032)]].&lt;br /&gt;
&lt;br /&gt;
====[[Super Smash Bros. Ultimate]]====&lt;br /&gt;
Spiky-eared Pichu acts as an alternate skin for {{OBP|Pichu|Super Smash Bros.}} in &#039;&#039;Super Smash Bros. Ultimate&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Artwork===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color}}; font-size:80%;&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;{{roundy|10px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}; width:160px&amp;quot;| [[File:Pichupichushrine.png|150px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|10px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}; width:160px&amp;quot;| [[File:Double Pichu art.png|150px]]&lt;br /&gt;
|- &lt;br /&gt;
| In the Ilex Forest with the Pikachu-colored Pichu&lt;br /&gt;
| With the Pikachu-colored Pichu&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Sprites====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color}}; font-size:80%;&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}; width:160px&amp;quot;| [[File:Spr 4h 172N.png]][[File:Spr b 4h 172N.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}; width:160px&amp;quot;| [[File:Spr 4h 172N s.png]][[File:Spr b 4h 172N s.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}&amp;quot;| [[File:Ani172ODSp.png]]&lt;br /&gt;
|- &lt;br /&gt;
| Sprite and back sprite&lt;br /&gt;
| Shiny sprite and back sprite&lt;br /&gt;
| Overworld sprite&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Spiky eared Pichu trailer.png|thumb|left|220px|[[Ash&#039;s Pikachu]] with Spiky-eared Pichu in the {{pkmn|anime}}]]&lt;br /&gt;
Spiky-eared Pichu debuted in &#039;&#039;[[M12|Arceus and the Jewel of Life]]&#039;&#039; as [[Damos]]&#039;s friend. She helped {{AP|Pikachu}} and {{TP|Dawn|Piplup}} find the keys for {{Ash}}, {{an|Dawn}}, {{an|Brock}}, and Damos&#039; jail cell after they were imprisoned by [[Marcus]]. &lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PK20|Pikachu&#039;s Big Sparking Search]]&#039;&#039;, Spiky-eared Pichu and {{p|Smoochum}} were preparing a birthday party for {{p|Bellossom}}.&lt;br /&gt;
&lt;br /&gt;
She has an [[Get Fired Up, Spiky-eared Pichu!|ending]] dedicated to her. This ending displays her love for [[Grepa Berry|Grepa Berries]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PK24|Meloetta&#039;s Moonlight Serenade]]&#039;&#039;, Spiky-eared Pichu was one of the Pokémon watching {{an|Meloetta}}&#039;s concert.&lt;br /&gt;
&lt;br /&gt;
===Personality and characteristics===&lt;br /&gt;
In the {{pkmn|anime}}, Spiky-eared Pichu was shown to be a helpful Pokémon, which can be seen when she freed {{p|Cyndaquil}} by using Iron Tail on the collar that was used to control it. In the ending dedicated to her, however, she was shown to be competitive, as evident when she raced the {{Shiny}} Pichu up a tree and lost, and when she had an eating contest with the Shiny Pichu to see who could eat the most [[Grepa Berry|Grepa Berries]] and won. In that ending theme, she was also shown to be very sensitive, as she was seen crying when she got lost.&lt;br /&gt;
&lt;br /&gt;
===Moves used===&lt;br /&gt;
{{anmov/h|electric||Spiky-eared Pichu {{#switch: {{#expr: {{#time: U}} mod 2}}|0=Thunder Shock|1=Iron Tail}}.png|Using {{#switch: {{#expr: {{#time: U}} mod 2}}|0=Thunder Shock|1=Iron Tail}}}}&lt;br /&gt;
{{anmov|electric|Thunder Shock|M12|Arceus and the Jewel of Life}} &lt;br /&gt;
{{anmov|steel|Iron Tail|M12|Arceus and the Jewel of Life}} &lt;br /&gt;
{{anmov/f|electric}}&lt;br /&gt;
&lt;br /&gt;
===Artwork===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color}}; font-size:80%;&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}&amp;quot;| [[File:Spiky-eared Pichu DP 1.png|150px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border: 2px solid #{{electric color dark}}; background: #{{electric color light}}&amp;quot;| [[File:Spiky-eared Pichu DP 2.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| Official artwork from&amp;lt;br&amp;gt;&#039;&#039;{{color2|000|Pokémon the Series: Diamond and Pearl}}&#039;&#039;&lt;br /&gt;
| Official artwork from&amp;lt;br&amp;gt;&#039;&#039;{{color2|000|Pokémon the Series: Diamond and Pearl}}&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Spiky-eared Pichu Adventures.png|thumb|right|200px|The Spiky-eared Pichu in [[Pokémon Adventures]]]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
Spiky-eared Pichu first appears in &#039;&#039;[[PS460|All About Arceus IX]]&#039;&#039;, where she is seen accompanying {{adv|Gold}}&#039;s [[Pibu]] as they help {{adv|Celebi}} find the herbs needed to cure {{adv|Giovanni}}&#039;s disease. When several {{tc|Team Rocket Grunt}}s try to stop [[Team Rocket Elite Trio|Ken, Al, and Harry]] from helping Celebi under Giovanni&#039;s orders, they accidentally trample over the Pichu duo, which causes them to retaliate by shocking the Grunts with a combined {{t|Electric}} attack. When they meet up with Gold, Gold sees Spiky-eared Pichu and teases Pibu about finding a date.&lt;br /&gt;
&lt;br /&gt;
===In the Arceus and the Jewel of Life manga===&lt;br /&gt;
In the {{ma|Arceus and the Jewel of Life|manga adaptation}} of the movie, Spiky-eared Pichu is a [[wild Pokémon]] who the characters meet in the distant past. She assists the characters in escaping from the movie&#039;s main antagonist, [[Marcus]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
This listing is of cards mentioning or featuring Spiky-eared Pichu in the [[Pokémon Trading Card Game]].&lt;br /&gt;
{{cardlist/header|Spiky-eared Pichu|Lightning|char=yes}}&lt;br /&gt;
{{cardlist/entry|cardname=[[Spiky-eared Pichu M (Movie Random Pack 9)|Spiky-eared Pichu]] {{SP|M}}|type=Lightning|jpset=Movie Commemoration Random Pack|jpnum=009/022|jpset2=Movie Commemoration Random Pack|jpnum2=010/022|jpset3=Movie Commemoration Random Pack|jpnum3=011/022|jpset4=DPt-P Promotional cards|jpnum4=042/DPt-P|jpset5=Unnumbered Promotional cards}}&lt;br /&gt;
{{cardlist/footer|Lightning}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
[[File:Box Spiky Pika HGSS.png|frame|The [[Pokémon Storage System#HeartGold and SoulSilver|Pokémon Storage System]] wallpaper featuring Spiky-eared Pichu]]&lt;br /&gt;
* A picture of a [[Pikachu short]] poster that featured Spiky-eared Pichu alongside {{AP|Pikachu}} and {{TP|Dawn|Piplup}} was leaked several days before this Pokémon was officially revealed.&lt;br /&gt;
* She was first mentioned at the end of a movie preview of &#039;&#039;Arceus and the Jewel of Life&#039;&#039; when movie director [[Kunihiko Yuyama]] talked about a &amp;quot;small, yellow Electric-type that would save the world.&amp;quot;&lt;br /&gt;
* Spiky-eared Pichu&#039;s sprite in {{2v2|HeartGold|SoulSilver}} is in a different pose than that of a normal Pichu, but she retains the two frames that a normal Pichu uses in her animation; thus, she is the only Pokémon to have three animation frames in [[Generation IV]].&lt;br /&gt;
* According to [[Shōko Nakagawa]]&#039;s autobiography, the Spiky-eared Pichu was originally going to be a &#039;&#039;&#039;White Pichu&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ホワイトピチュー&#039;&#039;&#039;).&lt;br /&gt;
* Spiky-eared Pichu was featured in a [[Pokémon Storage System#HeartGold and SoulSilver|Pokémon Storage System]] wallpaper in HeartGold and SoulSilver. The wallpaper must be unlocked by telling [[Primo]] at the [[Violet City]] Pokémon Center custom phrases using the [[easy chat system]]. The phrase for a given wallpaper depends on the player&#039;s game, [[Trainer ID]], and game language.&lt;br /&gt;
* Spiky-eared Pichu appears as a figure in the [[MC Fourth Generation|fourth generation]] of [[Monster Collection]].&lt;br /&gt;
* Spiky-eared Pichu appears as a [[Poké Doll (plush)|Poké Doll]] plush toy.&lt;br /&gt;
* Spiky-eared Pichu shares several similarities with {{pkmn|Omega Ruby and Alpha Sapphire}}&#039;s [[Cosplay Pikachu]]. Both are female-only variants of the {{p|Pikachu}} evolution line who were introduced in [[remake]]s. They are both incapable of evolving, breeding, being traded, or being transferred to later games. They also both cannot be obtained {{Shiny}}, though Shiny variants exist in the game code for them. They are also both a palette swap in [[Super Smash Bros. Ultimate]].&lt;br /&gt;
* Spiky-eared Pichu is currently the only Pokémon without a 3D model in the [[core series]] games.&lt;br /&gt;
&lt;br /&gt;
==Names==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; align=&amp;quot;left&amp;quot; style=&amp;quot;background: #{{electric color light}}; border: 3px solid #{{electric color}}&amp;quot;&lt;br /&gt;
|- align=center&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Language&lt;br /&gt;
! Name&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Japanese&lt;br /&gt;
|ギザみみピチュー &#039;&#039;Gizamimi Pichu&#039;&#039;&lt;br /&gt;
|Literally &amp;quot;Notched-Ear Pichu&amp;quot;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|French&lt;br /&gt;
|Pichu Troizépi&lt;br /&gt;
|From &#039;&#039;trois&#039;&#039; (three) and &#039;&#039;épine&#039;&#039; (spike).&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|German&lt;br /&gt;
|Strubbelohr-Pichu&lt;br /&gt;
|From &#039;&#039;strubbelig&#039;&#039; (tousled) and &#039;&#039;Ohr&#039;&#039; (ear).&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Italian&lt;br /&gt;
|Pichu Spunzorek&lt;br /&gt;
|From &#039;&#039;spuntone&#039;&#039; (spike) and &#039;&#039;orecchio&#039;&#039; (ear).&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Brazilian Portuguese&lt;br /&gt;
|Pichu de orelha cortada&lt;br /&gt;
||Literally &amp;quot;Sliced-Ear Pichu&amp;quot;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Portuguese&lt;br /&gt;
|Pichu de orelha talhada&lt;br /&gt;
|Literally &amp;quot;Sliced-Ear Pichu&amp;quot;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Spanish&lt;br /&gt;
|Pichu Picoreja&lt;br /&gt;
|From &#039;&#039;pico&#039;&#039; (spiky tip) and &#039;&#039;oreja&#039;&#039; (ear).&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Korean&lt;br /&gt;
|삐쭉귀 피츄 &#039;&#039;Ppijjukgwi Pichyu&#039;&#039;&lt;br /&gt;
|Literally &amp;quot;Sharp-Ear Pichu&amp;quot;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Chinese (Taiwan)&lt;br /&gt;
|刺刺耳皮丘 &#039;&#039;Cìcì&#039;ěr Píqiū&#039;&#039;&lt;br /&gt;
|Literally &amp;quot;Spiky-Ear Pichu&amp;quot;.&lt;br /&gt;
|}{{-}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{animespecies|Pichu}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Moviecharacters}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{DoubleProjectTag|Pokédex|Anime|each Pokémon as a species and cover all aspects of the Pokémon anime, respectively.}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Pichu}}&lt;br /&gt;
[[Category:HeartGold and SoulSilver characters]]&lt;br /&gt;
[[Category:Pokémon Adventures characters (Pokémon)]]&lt;br /&gt;
[[Category:Pokémon characters]]&lt;br /&gt;
[[Category:Promotion-only Pokémon]]&lt;br /&gt;
[[Category:Variant Pokémon]]&lt;br /&gt;
[[Category:Female characters (Pokémon)]]&lt;br /&gt;
&lt;br /&gt;
[[de:Pichu#Strubbelohr-Pichu]]&lt;br /&gt;
[[es:Pichu picoreja]]&lt;br /&gt;
[[fr:Pichu Troizépi]]&lt;br /&gt;
[[it:Pichu Spunzorek]]&lt;br /&gt;
[[ja:ギザみみピチュー]]&lt;br /&gt;
[[zh:刺刺耳皮丘]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Storm_Drain_(Ability)&amp;diff=3231510</id>
		<title>Storm Drain (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Storm_Drain_(Ability)&amp;diff=3231510"/>
		<updated>2020-08-24T17:19:44Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Generation IV */  Removed that HP Water couldn&amp;#039;t be redirected, evidence here https://www.youtube.com/watch?v=OtpJFHwSaqM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Storm Drain&lt;br /&gt;
|jpname=よびみず&lt;br /&gt;
|jptrans=Pump Priming&lt;br /&gt;
|jptranslit=Yobimizu&lt;br /&gt;
|colorscheme=water&lt;br /&gt;
|gen=4&lt;br /&gt;
|text4=The Pokémon draws in all Water-type moves.&lt;br /&gt;
|text5=Draws in all Water-type moves to up Sp. Attack.&lt;br /&gt;
|text6=Draws in all Water-type moves to boost its Sp. Atk stat.&lt;br /&gt;
|text7=Draws in all Water-type moves. Instead of being hit by Water-type moves, it boosts its Sp. Atk. &lt;br /&gt;
|text8=Draws in all Water-type moves. Instead of being hit by Water-type moves, it boosts its Sp. Atk.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Storm Drain&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;よびみず&#039;&#039;&#039; &#039;&#039;Pump Priming&#039;&#039;) is an [[Ability]] introduced in [[Generation IV]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
====Generation IV====&lt;br /&gt;
Storm Drain forces all single-target {{type|Water}} moves to strike the Pokémon with this Ability, including those used by allies. Water-type moves will never miss the Pokémon with this Ability, unless it is in the {{cat|Moves with a semi-invulnerable turn|semi-invulnerable turn}} of a move such as {{m|Dive}} or {{m|Fly}} ({{m|Surf}} will never miss a Pokémon in the semi-invulnerable turn of {{m|Dive}}). Storm Drain can only redirect {{m|Dive}} on the turn Dive deals damage.&lt;br /&gt;
&lt;br /&gt;
Storm Drain cannot redirect Water-type {{m|Judgment}} or {{m|Natural Gift}}.&lt;br /&gt;
&lt;br /&gt;
If another Pokémon becomes the {{status|center of attention}}, Water-type moves will be directed to it instead of the Pokémon with Storm Drain.&lt;br /&gt;
&lt;br /&gt;
====Generation V onward====&lt;br /&gt;
Along with its previous effects, Storm Drain also gives the Pokémon immunity to all Water-type moves, and it raises the Pokémon&#039;s {{stat|Special Attack}} by one stage whenever it is hit by one. This effect will not activate if the Pokémon is {{cat|Protection moves|protected}} from the Water-type move. [[Multi-strike move]]s, such as {{m|Water Shuriken}}, will only activate this effect once.&lt;br /&gt;
&lt;br /&gt;
Storm Drain can now redirect Water-type {{m|Hidden Power}}, {{m|Judgment}}, and {{m|Natural Gift}}.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon with Storm Drain is holding an [[Absorb Bulb]] or [[Luminous Moss]], Storm Drain absorbs the move so the item&#039;s effect is not triggered.&lt;br /&gt;
&lt;br /&gt;
In [[Triple Battle]]s, Storm Drain cannot redirect Water-type moves if the Pokémon is out of range.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
In [[Pokémon Sword and Shield]], if a Pokémon with Storm Drain is in the first place in the [[party]] (even if [[fainted]]), then there is a 50% chance the game will force an encounter with a Water-type Pokémon, if one is possible.&lt;br /&gt;
&lt;br /&gt;
==Pokémon with Storm Drain==&lt;br /&gt;
{{Ability/head|Water}}&lt;br /&gt;
{{Ability/entry|345|Lileep|Rock|Grass|Suction Cups|None|Storm Drain}}&lt;br /&gt;
{{Ability/entry|346|Cradily|Rock|Grass|Suction Cups|None|Storm Drain}}&lt;br /&gt;
{{Ability/entry|422|Shellos|Water|Water|Sticky Hold|Storm Drain|Sand Force|West Sea}}&lt;br /&gt;
{{Ability/entry|422E|Shellos|Water|Water|Sticky Hold|Storm Drain|Sand Force|East Sea}}&lt;br /&gt;
{{Ability/entry|423|Gastrodon|Water|Ground|Sticky Hold|Storm Drain|Sand Force|West Sea}}&lt;br /&gt;
{{Ability/entry|423E|Gastrodon|Water|Ground|Sticky Hold|Storm Drain|Sand Force|East Sea}}&lt;br /&gt;
{{Ability/entry|456|Finneon|Water|Water|Swift Swim|Storm Drain|Water Veil}}&lt;br /&gt;
{{Ability/entry|457|Lumineon|Water|Water|Swift Swim|Storm Drain|Water Veil}}&lt;br /&gt;
{{Ability/entry|556|Maractus|Grass|Grass|Water Absorb|Chlorophyll|Storm Drain}}&lt;br /&gt;
{{Ability/foot|Water}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
A Pokémon with Storm Drain draws in all enemy {{type|Water}} attacks in the same room, and their damage/effect is completely neutralized. In {{g|Super Mystery Dungeon}}, Storm Drain also increases the Pokémon&#039;s Special Attack by one stage when hit by a Water-type move. &lt;br /&gt;
&lt;br /&gt;
Dungeon enemies with Storm Drain can negate the Storm Drain of the player&#039;s team member(s).&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Water}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Draws Water-type moves to the Pokémon and absorbs them without harm.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|みずタイプの わざを あつめて そのわざの こうかをうけない|Draws Water-type moves to the Pokémon and absorbs them without harm}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Unavailable}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The Water-type moves of enemies in the same room are drawn to the Pokémon and absorbed. When the Pokémon absorbs Water-type moves, its Sp. Atk goes up!}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{langtable|color={{water color}}|bordercolor={{water color dark}}&lt;br /&gt;
|zh_yue=引水 &#039;&#039;{{tt|Yáhnséui|Channel Water}}&#039;&#039;&lt;br /&gt;
|zh_cmn=引水 &#039;&#039;{{tt|Yǐnshuǐ|Channel Water}}&#039;&#039;&lt;br /&gt;
|fr=Lavabo&lt;br /&gt;
|de=Sturmsog&lt;br /&gt;
|it=Acquascolo&lt;br /&gt;
|ko=마중물 &#039;&#039;Majungmul&#039;&#039;&lt;br /&gt;
|es=Colector&lt;br /&gt;
|pt=Drena-Tempestades&lt;br /&gt;
|vi=Dẫn Nước&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{AbilityVariations|Lightning Rod|Storm Drain|color=Water|1color={{Electric color dark}}|2color={{Water color dark}}|title={{cat|Move-drawing Abilities}}&lt;br /&gt;
|1a=Justified|2a=Lightning Rod|3a=Motor Drive|4a=Sap Sipper|5a=Storm Drain|6a=Rattled|1acolor={{Fighting color dark}}|2acolor={{Electric color dark}}|3acolor={{Electric color dark}}|4acolor={{Grass color dark}}|5acolor={{water color dark}}|6acolor={{Normal color dark}}|titlea={{cat|Stat raising Abilities}}&lt;br /&gt;
|1b=Dry Skin|2b=Flash Fire|3b=Lightning Rod|4b=Motor Drive|5b=Sap Sipper|6b=Storm Drain|7b=Volt Absorb|8b=Water Absorb|1bcolor={{Grass color dark}}|2bcolor={{Fire color dark}}|3bcolor={{Electric color dark}}|4bcolor={{Electric color dark}}|5bcolor={{Grass color dark}}|6bcolor={{Water color dark}}|7bcolor={{Electric color dark}}|8bcolor={{Water color dark}}|titleb={{cat|Abilities that alter damage taken}}}}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that alter damage taken]]&lt;br /&gt;
[[Category:Abilities with field effects]]&lt;br /&gt;
[[Category:Move-drawing Abilities]]&lt;br /&gt;
[[Category:Stat raising Abilities]]&lt;br /&gt;
[[Category:Ignorable Abilities]]&lt;br /&gt;
[[Category:Abilities that affect appearance of wild Pokémon]]&lt;br /&gt;
[[Category:Abilities that affect appearance of wild Pokémon of specific types]]&lt;br /&gt;
&lt;br /&gt;
[[de:Sturmsog]]&lt;br /&gt;
[[es:Colector]]&lt;br /&gt;
[[fr:Lavabo]]&lt;br /&gt;
[[it:Acquascolo]]&lt;br /&gt;
[[ja:よびみず]]&lt;br /&gt;
[[zh:引水（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_Egg&amp;diff=3181502</id>
		<title>Pokémon Egg</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_Egg&amp;diff=3181502"/>
		<updated>2020-06-05T08:29:44Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Special dates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:SugimoriEggs.png|right|thumb|235px|Eggs of {{p|Togepi}} and {{p|Elekid}}]]&lt;br /&gt;
[[File:Hatching Egg V.png|frame|right|A {{p|Larvesta}} hatching from its Egg]]&lt;br /&gt;
A &#039;&#039;&#039;Pokémon Egg&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケモンのタマゴ&#039;&#039;&#039; &#039;&#039;Pokémon Egg&#039;&#039;) is an object from which most {{OBP|Pokémon|species}} are known to hatch. An Egg&#039;s shell will usually have a pattern that reflects the appearance of the Pokémon developing inside, though in the games, this is not the case.&lt;br /&gt;
&lt;br /&gt;
Pokémon Eggs are produced by {{pkmn|breeding}} two Pokémon of a compatible [[Egg Group]] and opposite gender together and will contain, by default, the lowest species in the evolutionary line of the mother. According to a girl in [[Solaceon Town]], where one of many [[Pokémon Day Care]]s are located, no one has ever seen a Pokémon lay an Egg, and thus, it is not confirmed that this is how they appear. According to a {{tc|Monsieur}} in [[Coumarine City]], Eggs are not actually eggs and are more like &amp;quot;cradles&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Some Pokémon, known as [[baby Pokémon]], are also found by hatching them from an Egg created by their evolved forms, either naturally or through use of a held [[incense]]. Unlike other species {{egg|Undiscovered|which cannot breed}}, baby Pokémon evolve into species which can do so. In the games, [[Legendary Pokémon]] cannot breed in captivity, and only two [[Mythical Pokémon]]—{{p|Manaphy}} and {{p|Phione}}—are capable of breeding, both producing Phione Eggs when bred with {{p|Ditto}}.&lt;br /&gt;
&lt;br /&gt;
==In the games==&lt;br /&gt;
Pokémon Eggs have appeared in all games where Pokémon breeding has been available, and were a major plot point in [[Generation II]], in which they were introduced. They have also appeared in several side games.&lt;br /&gt;
&lt;br /&gt;
===Mechanics===&lt;br /&gt;
[[File:Egg Gen II.png|frame|right|An Egg&#039;s status screen in [[Generation II]]]]&lt;br /&gt;
The amount of time left until a Pokémon hatches from its Egg is determined by the number of [[Egg cycles]] (which are measured in steps) that the player walks when it is in the party (including movement on a [[Bicycle]] or while {{m|Surf}}ing). In-game [[time]] has no direct bearing on Egg hatching.&lt;br /&gt;
&lt;br /&gt;
Eggs utilize the same memory allocation as Pokémon, so the coding structure is very similar. What would be the [[friendship]] value in a Pokémon is the [[Egg cycle]] count for an Egg. Unlike friendship, this value counts down at the end of every Egg cycle.&lt;br /&gt;
&lt;br /&gt;
Since Generation V, an Egg will hatch when its Egg cycle count reaches zero. If multiple Eggs become ready to hatch at the same time, the first Egg in the party will hatch first while each subsequent Egg will hatch with each subsequent step.&lt;br /&gt;
&lt;br /&gt;
In Generations III and IV, an Egg will only hatch if its Egg cycle count is zero before an Egg cycle ends (meaning that an extra Egg cycle must be walked). Only one Egg can hatch per Egg cycle, since Eggs are processed in order and if one hatches, any remaining Eggs are not touched.&lt;br /&gt;
&lt;br /&gt;
Generation II is like Generations III and IV except that an Egg will hatch when its Egg cycle count reaches zero.&lt;br /&gt;
&lt;br /&gt;
The number of Egg cycles that an Egg has left determines the text that is shown on its status screen.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
[[File:Gold Silver Beta Egg.png|thumb|A [[Pokémon Gold and Silver beta|pre-release image]] of an Egg hatching in Pokémon Gold and Silver]]&lt;br /&gt;
[[File:Stadium 2 Egg.png|frame|left]]&lt;br /&gt;
Generation II introduced the system of Egg creation and hatching that would continue, much unaltered, to the present. The first Pokémon Egg obtainable by the {{player}} in the series was a [[Key Item]] given by [[Mr. Pokémon]] in {{game2|Gold|Silver|Crystal}}. The [[Mystery Egg]] is to be delivered to [[Professor Elm]] in [[New Bark Town]]; he will then study it and have one of his aides return it to the player in the [[Violet City]] [[Pokémon Center]].&lt;br /&gt;
&lt;br /&gt;
Elm&#039;s studies show that when a Pokémon Egg is carried with a {{pkmn|Trainer}} with a [[party]] of lively Pokémon, it will eventually hatch. This is easily proven, as some time after the Egg is given, if it is kept in the party, it will hatch into a {{p|Togepi}}.&lt;br /&gt;
&lt;br /&gt;
The player reaching the Daycare on {{rt|34|Johto}} marks where the game mechanics of breeding are truly introduced. Though unrevealed in the games (and only ever truly shown by {{g|Stadium 2}} and [[Pokédex 3D]]), Pokémon belong to one or two of fifteen [[Egg Group]]s, and those which share an Egg Group and are of opposite gender are capable of breeding. Pokémon without gender can be bred with a {{p|Ditto}}, as can any other Pokémon not in the {{egg2|Undiscovered}}. Pokémon in the Undiscovered Group will not breed with any Pokémon or produce any Eggs.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from an Egg will come out at level 5, having whatever moves their species can learn by that level, any move both parents know that the hatched Pokémon can learn through level-up, any [[TM]] or [[HM]] moves they are compatible with that were known by their father, and any [[Egg Move]]s their father passed down. The father&#039;s moves take priority over the moves the species would usually have at that level.&lt;br /&gt;
&lt;br /&gt;
These are the only games in which an Egg&#039;s status screen differs considerably from that of a normal Pokémon, as all later games use either a modified version of the Pokémon status screen of that game (as is the case in Generation III), or the same status screen, minus some pages (as is the case in Generation IV, V, and VII).&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation II:&lt;br /&gt;
* {{p|Togepi}}{{sup/2|GSC}}: From [[Mr. Pokémon]], initially classed as a [[Key Item]]. Received from [[Professor Elm]]&#039;s aide in [[Violet City]].&lt;br /&gt;
* [[Odd Egg]]{{sup/2|C}}: From the [[Day-Care Couple|Day-Care Man]]. Will hatch into a {{p|Pichu}}, {{p|Cleffa}}, {{p|Igglybuff}}, {{p|Tyrogue}}, {{p|Smoochum}}, {{p|Elekid}}, or {{p|Magby}} that knows {{m|Dizzy Punch}}. It has a 14% chance of being {{Shiny}} in international versions. In the Japanese version of Crystal, the Day-Care Man instead gives out an [[Egg Ticket]] that can be traded in at the [[Pokémon Communication Center]] for the Odd Egg. The Odd Egg in the Japanese version has a 50% chance of being {{Shiny}}.&lt;br /&gt;
&lt;br /&gt;
===Generation III===&lt;br /&gt;
Generation III retained much of the system introduced in Generation II, with only one major change: [[incense]]s are introduced that, if held by the appropriate Pokémon, will cause them to produce Eggs that hatch into new baby Pokémon (who were introduced in this generation). There are incenses for {{p|Marill}}&#039;s and {{p|Wobbuffet}}&#039;s evolutionary lines, which allow them to produce Eggs that hatch into {{p|Azurill}} and {{p|Wynaut}} respectively. Presumably, these incenses are meant to keep the results of breeding consistent across generations while still allowing earlier evolutions to be introduced.&lt;br /&gt;
&lt;br /&gt;
All other mechanics present in Generation II are present in Generation III, including the system for hatching Eggs, except that Eggs require an extra Egg cycle to hatch. Egg Groups now have more members, but the groups themselves number the same as in Generation II, and no Pokémon have changed groups.&lt;br /&gt;
&lt;br /&gt;
In {{game|Emerald}}, several more mechanics were added. A Pokémon&#039;s [[nature]] could be influenced if its mother held an [[Everstone]] while in the Day Care, while Pokémon with {{a|Magma Armor}} or {{a|Flame Body}} shorten the hatching process if they are in the party with Eggs.&lt;br /&gt;
&lt;br /&gt;
In Generation III, a Pokémon Egg&#039;s type is listed as {{t|???}}.&lt;br /&gt;
&lt;br /&gt;
No Eggs can be obtained or traded to [[Pokémon Colosseum]] or {{XD}}.&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation III:&lt;br /&gt;
* {{p|Wynaut}}{{sup/3|RSE}}: From an old couple in [[Lavaridge Town]].&lt;br /&gt;
* {{p|Togepi}}{{sup/3|FRLG}}: From an old man in the [[Water Labyrinth]].&lt;br /&gt;
* {{p|Swablu}}: From the start of [[Pokémon Box Ruby &amp;amp; Sapphire]].&lt;br /&gt;
* {{p|Zigzagoon}}: From Pokémon Box Ruby &amp;amp; Sapphire after depositing at least 100 Pokémon.&lt;br /&gt;
* {{p|Skitty}}: From Pokémon Box Ruby &amp;amp; Sapphire after depositing at least 500 Pokémon.&lt;br /&gt;
* {{p|Pichu}}: From Pokémon Box Ruby &amp;amp; Sapphire after depositing 1499 Pokémon.&lt;br /&gt;
All Eggs obtained from Pokémon Box Ruby &amp;amp; Sapphire have moves that are otherwise unobtainable.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
{{incomplete|section|needs=Manaphy Egg in Ranch}}&lt;br /&gt;
Generation IV expanded on the mechanics found in Emerald, making them standard to the series, as well as added more baby Pokémon only obtainable through [[incense]] breeding. A new mechanic is that either parent can now pass down its nature to its offspring if it holds an Everstone. In addition to this, Pokémon Eggs now hatch at level 1. This would have been possible in Generation III as well, but was not in Generation II due to a glitch in the programming that caused level 1 &amp;quot;[[Experience#Experience to level|Medium Slow]]&amp;quot; Pokémon to jump to level 100 instantly when leveled up.&lt;br /&gt;
&lt;br /&gt;
A minor change in mechanics from Generation III causes Eggs to hatch slightly earlier, with the length of an Egg cycle dropping from 256 to 255 steps. The Manaphy Egg obtainable from Ranger games has its own sprite that is different from other, normal Eggs&#039; sprites.&lt;br /&gt;
&lt;br /&gt;
Trainers can use the Pokétch {{DL|Pokétch|Day-Care Checker}} app to check whether or not an Egg has been produced, unlike in previous generations, where Trainers attempting to breed two Pokémon would need to stay near the Day Care if they wished to get an Egg as soon as it was ready.&lt;br /&gt;
&lt;br /&gt;
Eggs may also be transferred to [[My Pokémon Ranch]], but they will not hatch as long as they are kept in the game. When the ranch reaches the maximum level (level 25, requiring 999 Pokémon to be present in the ranch), [[Hayley]] will offer to trade any Pokémon Egg for her Mew.&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl, and Platinum, Eggs can be given a spa treatment at the [[Ribbon Syndicate]] building. This will cause the Egg to have an increased [[friendship]] upon hatching. However, Eggs cannot be given massages; if attempted, the [[Massage Girl]] will exclaim, &amp;quot;That&#039;s silly! I&#039;d break that Egg if I tried to massage it!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Poketch Egg.png|An Egg on the [[Pokétch]]&lt;br /&gt;
File:Ranch Egg.png|An Egg in [[My Pokémon Ranch]]&lt;br /&gt;
File:Menu PBR Egg.png|An Egg in [[Pokémon Battle Revolution]]&lt;br /&gt;
File:Menu PBR Manaphy Egg.png|A Manaphy Egg in Pokémon Battle Revolution&lt;br /&gt;
File:Dragon hatch HGSS.png|An Egg produced by {{p|Arceus}}, about to hatch into {{p|Dialga}}, {{p|Palkia}} or {{p|Giratina}}&lt;br /&gt;
File:ManaphyEggmssoa.png|Manaphy Egg in {{g|Ranger: Shadows of Almia}}&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation IV:&lt;br /&gt;
* {{p|Happiny}}{{sup/4|DP}}: From a Traveling Man in [[Hearthome City]] (has the appearance of a {{tc|Hiker}}).&lt;br /&gt;
* {{p|Riolu}}{{sup/4|DPPt}}: From [[Riley]] on [[Iron Island]].&lt;br /&gt;
* {{p|Togepi}}{{sup/4|Pt}}: From [[Cynthia]] in [[Eterna City]].&lt;br /&gt;
* {{p|Manaphy}}{{sup/4|DPPtHGSS}}: From {{ga|Pokémon Ranger}}, {{g|Ranger: Shadows of Almia}} and {{g|Ranger: Guardian Signs}}.&lt;br /&gt;
* {{p|Togepi}}{{sup/4|HGSS}}: From [[Mr. Pokémon]]. Initially classed as a [[Key Item]], the [[Mystery Egg]]. Received from [[Professor Elm]]&#039;s aide in [[Violet City]].&lt;br /&gt;
* {{p|Mareep}}{{sup/4|HGSS}}: From [[Primo]], after entering the correct secret phrase.&lt;br /&gt;
* {{p|Wooper}}{{sup/4|HGSS}}: From [[Primo]], after entering the correct secret phrase.&lt;br /&gt;
* {{p|Slugma}}{{sup/4|HGSS}}: From [[Primo]], after entering the correct secret phrase.&lt;br /&gt;
&lt;br /&gt;
====Special dates====&lt;br /&gt;
As an [[Easter Egg]], Game Freak made it so that the [[Egg cycle]] will be reduced from 255 steps to 230 steps on these special dates, making a [[Magikarp]] hatch in 1380 steps instead of 1530 steps.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background-color:#{{night color}}; border:3px solid #{{blue color light}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color: #{{blue color light}}; color:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Date&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Significance&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| January 12th&lt;br /&gt;
| Masuda&#039;s Birthday&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| February 14th&lt;br /&gt;
| Valentine&#039;s Day&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| March 3rd&lt;br /&gt;
| Hinamatsuri&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| April 1st&lt;br /&gt;
| School Entrance Ceremony&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| May 1st&lt;br /&gt;
| May Day&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| June 11th&lt;br /&gt;
| Unknown&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| July 7th&lt;br /&gt;
| Tanabata&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| August 21st&lt;br /&gt;
| Unknown&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| September 28th&lt;br /&gt;
| Diamond &amp;amp; Pearl release date&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| October 31st&lt;br /&gt;
| Halloween&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| November 21st&lt;br /&gt;
| Ruby &amp;amp; Sapphire release date&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| December 24th&lt;br /&gt;
| Christmas Eve&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| December 25th&lt;br /&gt;
| Christmas&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Generation V===&lt;br /&gt;
Building on the mechanics introduced in HeartGold and SoulSilver, Generation V makes it possible for female Pokémon with a Hidden Ability to pass on their Hidden Ability to their offspring, unless the father is a Ditto. The Manaphy Egg is found [[List of Pokémon by index number (Generation V)|in the coding of Black and White]], but was not used.&lt;br /&gt;
&lt;br /&gt;
A significant change to the mechanics of [[Egg cycle]]s in Generation IV causes Eggs to hatch at earlier times; Eggs now hatch when their Egg cycle count drops from 1 to 0, rather than when it is 0 at the end of an Egg cycle, effectively reducing the number of Egg cycles that need to be walked by 1. The length of an Egg cycle was also increased from 255 to 257 steps, but this effect is overshadowed by the change in the hatching trigger.&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation V:&lt;br /&gt;
* {{p|Larvesta}}{{sup/5|BW}}: From a Treasure Hunter inside a building on {{rt|18|Unova}} (has the appearance of a {{tc|Pokémon Ranger}}).&lt;br /&gt;
* {{p|Happiny}}{{sup/5|B2W2}}: From a {{tc|Pokémon Breeder}} inside the eastern gate in [[Nacrene City]].&lt;br /&gt;
&lt;br /&gt;
===Generation VI===&lt;br /&gt;
Again expanding on mechanics from previous games, Generation VI builds upon the mechanics from Generation V by allowing mothers to pass on [[Egg Move]]s and [[Poké Ball]]s, removing the ability to pass on [[TM]]s and [[HM]]s from the father, and allowing any Pokémon to pass down Hidden Abilities when bred with Ditto. Another new mechanic is the ability for the parents to pass down five IVs if one of them holds a [[Destiny Knot]].&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation VI:&lt;br /&gt;
* {{p|Wynaut}}{{sup/6|ORAS}}: From an old hot-springs visitor in [[Lavaridge Town]].&lt;br /&gt;
* {{p|Togepi}}{{sup/6|ORAS}}: From an old hot-springs visitor in Lavaridge Town after defeating [[Primal Reversion|Primal]] {{p|Groudon}}{{sup/6|OR}}/{{p|Kyogre}}{{sup/6|AS}}.&lt;br /&gt;
These Eggs are obtained with an [[Egg cycle]] value of 70, higher than the same Egg would start with if it were obtained by breeding.&lt;br /&gt;
&lt;br /&gt;
===Generation VII===&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Egg can be obtained in Generation VII:&lt;br /&gt;
* {{p|Eevee}}{{sup/7|SMUSUM}}: From a woman at the [[Pokémon Nursery]] in [[Paniola Ranch]].&lt;br /&gt;
&lt;br /&gt;
===Appearance===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{normal color dark}}; background: #{{normal color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 2g Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 3r Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 3e Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 4d Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 5b Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr b 5b Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 6x Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:HOME000.png|100px]]&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation II}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon Ruby and Sapphire Versions|Pokémon Ruby, Sapphire}}, {{color2|000|Pokémon FireRed and LeafGreen Versions|FireRed and LeafGreen}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon Emerald Version|Pokémon Emerald}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation IV}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation V}} (front)&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation V}} (back)&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation VI|Generations VI}} and {{color2|000|Generation VII|VII}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon HOME}}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:MS Egg II.png]] [[File:AniMS Egg II.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:EggMS III.png]]{{AniMS|Egg}}&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| {{bag|Mystery Egg}}&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| {{MS|Egg}}&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
| Menu sprites from&amp;lt;br&amp;gt;{{color2|000|Generation II}}&lt;br /&gt;
| Menu sprites from&amp;lt;br&amp;gt;{{color2|000|Generation III|Generations III}}, {{color2|000|Generation IV|IV}}, and {{color2|000|Generation V|V}}&lt;br /&gt;
| {{color2|000|Mystery Egg}} sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon HeartGold and SoulSilver Versions|HeartGold and SoulSilver}}&lt;br /&gt;
| Menu sprite from&amp;lt;br&amp;gt;{{color2|000|Generation VI|Generations VI}}, {{color2|000|Generation VII|VII}}, and {{color2|000|Generation VIII|VIII}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Manaphy Egg====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{water color dark}}; background: #{{water color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; | [[File:Spr 4d ManaphyEgg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; | [[File:Spr 5b ManaphyEgg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; | {{MS|ManaphyEgg}}{{AniMS|ManaphyEgg}}&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
| A {{pcolor|Manaphy|000}} Egg from&amp;lt;br&amp;gt;{{color2|000|Generation IV}}&lt;br /&gt;
| A {{pcolor|Manaphy|000}} Egg from&amp;lt;br&amp;gt;{{color2|000|Generation V}}&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg menu sprites from&amp;lt;br&amp;gt;{{color2|000|Generation IV|Generations IV}} and {{color2|000|Generation V|V}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Side games===&lt;br /&gt;
[[File:Hey You Pikachu Togepi Egg.png|thumb|right|A Togepi Egg]]&lt;br /&gt;
====Hey You, Pikachu!====&lt;br /&gt;
In [[Hey You, Pikachu!]], a Togepi Egg can be found and hatched while completing the Pokémon Picnic missions. In Japan, this game was released before the launch of Generation II, making it the first Egg to appear in a game.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Snap====&lt;br /&gt;
The Eggs of the [[Kanto]] [[Legendary birds]] appeared in {{g|Snap}}. This was the first appearance of Pokémon Eggs outside of Japan. These Eggs could be hatched by player interaction.&lt;br /&gt;
&lt;br /&gt;
* {{p|Articuno}}: This Egg is in the [[Pokémon Island Cave|Cave]] area. It is silver and has a crystalline form. It hatches with the aid of two dancing {{p|Jynx}}.&lt;br /&gt;
* {{p|Zapdos}}: This Egg is in the [[Pokémon Island Tunnel|Tunnel]] area. It is yellow with a jagged electric pattern on it. It hatches with the aid of a {{p|Pikachu}}&#039;s {{m|Thunderbolt}}.&lt;br /&gt;
* {{p|Moltres}}: This Egg is in the [[Pokémon Island Volcano|Volcano]] area. It is white with a red flame design on it. It hatches when a [[Pester Ball]] or an apple knocks it into the lava.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Articuno Egg Snap.png|Articuno Egg&lt;br /&gt;
File:Zapdos Egg Snap.png|Zapdos Egg&lt;br /&gt;
File:Moltres Egg Snap.png|Moltres Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Puzzle Challenge====&lt;br /&gt;
[[File:Puzzle Challenge Eggs.png|thumb|right|Eggs available in Puzzle Challenge]]&lt;br /&gt;
Four Eggs are available as unlockables in {{g|Puzzle Challenge}}; over time, they will hatch, and the Pokémon inside are only playable in Marathon mode.&lt;br /&gt;
* {{p|Magby}} is available after hatching the Fire Egg.&lt;br /&gt;
* {{p|Elekid}} is available after hatching the Lightning Egg.&lt;br /&gt;
* {{p|Igglybuff}} is available after hatching the Normal Circle Egg.&lt;br /&gt;
* {{p|Cleffa}} is available after hatching the Normal Star Egg.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Breeder mini====&lt;br /&gt;
[[File:Pokémon Breeder egg.png|thumb|120px|right|{{pkmn|Breeder mini}} Eggs]]&lt;br /&gt;
Three Eggs containing {{p|Treecko}}, {{p|Torchic}} and {{p|Mudkip}} are available for the player to choose between in {{g|Breeder mini}}. However, these Eggs have a generic appearance, rather than their individual designs present in other media.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Channel====&lt;br /&gt;
{{incomplete|section|images of the following Eggs: Azurill, Smoochum, Sentret, and Wynaut}}&lt;br /&gt;
In {{g|Channel}}, Pokémon Eggs appear on the &#039;&#039;Eggzamination: Hatch Up!&#039;&#039; channel, where the player can guess which Pokémon is within an Egg, and will win money if correct on hatching, which can take any time between 5 minutes to 24 hours. While some Pokémon hatch from plain white Eggs, a number of Eggs that have appeared in the anime are a main feature on the channel.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from their anime Eggs include {{p|Aipom}}, {{p|Azurill}}, {{p|Bellsprout}}, {{p|Cleffa}}, {{p|Hoppip}}, {{p|Igglybuff}}, {{p|Krabby}}, {{p|Ledyba}}, {{p|Magby}}, {{p|Mudkip}}, {{p|Phanpy}}, {{p|Pichu}}, {{p|Sentret}}, {{p|Slowpoke}}, {{p|Smoochum}}, {{p|Swinub}}, {{p|Teddiursa}}, {{p|Togepi}}, {{p|Torchic}}, {{p|Treecko}}, {{p|Wooper}}, and {{p|Wynaut}}.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from plain white Eggs include {{p|Bulbasaur}}, {{p|Chansey}}, {{p|Charmander}}, {{p|Chikorita}}, {{p|Corsola}}, {{p|Cubone}}, {{p|Diglett}}, {{p|Delibird}}, {{p|Eevee}}, {{p|Geodude}}, {{p|Goldeen}}, {{p|Hoothoot}}, {{p|Koffing}}, {{p|Mr. Mime}}, {{p|Natu}}, {{p|Poliwag}}, {{p|Psyduck}}, {{p|Remoraid}}, {{p|Shellder}}, {{p|Smeargle}}, {{p|Squirtle}}, {{p|Sudowoodo}}, {{p|Vulpix}}, and {{p|Zubat}}.&lt;br /&gt;
&amp;lt;!--Vulpix does have an anime Egg, but hatches from a WHITE Egg in Pokémon Channel--&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Blank Egg Channel.png|Generic Egg&lt;br /&gt;
File:Treecko Egg Channel.png|Treecko Egg&lt;br /&gt;
File:Torchic Egg Channel.png|Torchic Egg&lt;br /&gt;
File:Mudkip Egg Channel.png|Mudkip Egg&lt;br /&gt;
File:Swinub Egg Channel.png|Swinub Egg&lt;br /&gt;
File:Teddiursa Egg Channel.png|Teddiursa Egg&lt;br /&gt;
File:Cleffa Egg Channel.png|Cleffa Egg&lt;br /&gt;
File:Magby Egg Channel.png|Magby Egg&lt;br /&gt;
File:Slowpoke Egg Channel.png|Slowpoke Egg&lt;br /&gt;
File:Togepi Egg Channel.png|Togepi Egg&lt;br /&gt;
File:Krabby Egg Channel.png|Krabby Egg&lt;br /&gt;
File:Ledyba Egg Channel.png|Ledyba Egg&lt;br /&gt;
File:Wooper Egg Channel.png|Wooper Egg&lt;br /&gt;
File:Oddish Egg Channel.png|Oddish Egg&lt;br /&gt;
File:Hoppip Egg Channel.png|Hoppip Egg&lt;br /&gt;
File:Bellsprout Egg Channel.png|Bellsprout Egg&lt;br /&gt;
File:Igglybuff Egg Channel.png|Igglybuff Egg&lt;br /&gt;
File:Aipom Egg Channel.png|Aipom Egg&lt;br /&gt;
File:Pichu Egg Channel.png|Pichu Egg&lt;br /&gt;
File:Phanpy Egg Channel.png|Phanpy Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Pinball: Ruby &amp;amp; Sapphire====&lt;br /&gt;
[[File:Pinball RS Egg.png|thumb|right|Pinball RS Eggs]]&lt;br /&gt;
Eggs can be hatched while playing in Egg Mode in {{g|Pinball: Ruby &amp;amp; Sapphire}}. While playing on the [[Ruby Field]], hit {{p|Cyndaquil}} into the Egg stand three times to start heating the Egg. Hitting it once more will make the Egg hatch. Afterwards, sending the ball into the Egg stand again will lead to {{p|Aerodactyl}} or {{p|Totodile}} replacing the Egg. While playing on the [[Sapphire Field]], send the ball through the Egg Stand to turn on one of the lights. This only works by sending the ball up the lower Egg Loop and not through Spoink launching the ball. Once all four lights are lit, the Egg will hatch the next time the ball is sent through the Egg stand. Afterwards, sending the ball through the Egg stand once more makes a new Egg appear and the process starts over. After an Egg has been hatched it must be caught by hitting it twice with the {{i|Poké Ball}} in less than a minute, otherwise it will go back into the Egg Stand.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Mystery Dungeon series====&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Pokémon Mystery Dungeon: Explorers of Time, Darkness]] and [[Pokémon Mystery Dungeon: Explorers of Sky|Sky]], the {{player}} can earn Eggs as a reward for missions with a reward listed as ???. Only one Egg can be kept at a time, and will be sent to [[Treasure Town#Chansey&#039;s Day Care|Chansey&#039;s Day Care]]. The Egg will hatch after a random number of days, at which point, the hatched Pokémon will ask to join the player&#039;s team, be at level 1, and know [[Egg Move]]s.&lt;br /&gt;
{{spoilers}}&lt;br /&gt;
A [[Wonder Egg]] can be found at the end of the [[Surrounded Sea]], which will hatch into {{p|Manaphy}} the next morning.&lt;br /&gt;
{{Endspoilers}}&lt;br /&gt;
&lt;br /&gt;
====Pokémon Battle Chess BW Version====&lt;br /&gt;
In [[Pokémon Battle Chess]] BW Version, a {{p|Victini}} Egg acts as the equivalent of a king piece in chess. The Egg can take three hits before it hatches, and Victini can take one before fainting. If this Victini faints, the controlling player loses. The Egg can still be moved even while unhatched, though only when it has been damaged at least once.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery perrow=3&amp;gt;&lt;br /&gt;
File:Egg Yellow Battle Chess.png|Untouched&lt;br /&gt;
File:Egg2 Yellow Battle Chess.png|Damaged once&lt;br /&gt;
File:Egg3 Yellow Battle Chess.png|Damaged twice&lt;br /&gt;
File:Egg Blue Battle Chess.png|Untouched&lt;br /&gt;
File:Egg2 Blue Battle Chess.png|Damaged once&lt;br /&gt;
File:Egg3 Blue Battle Chess.png|Damaged twice&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Picross====&lt;br /&gt;
In [[Pokémon Picross]], a Pokémon Egg appeared as a puzzle in [[Pokémon Picross Stages#Area 00|Area 00-03]].&lt;br /&gt;
&lt;br /&gt;
====Pokémon GO====&lt;br /&gt;
:&#039;&#039;For current and historic lists of Eggs in {{g|GO}}, see [[list of Eggs in Pokémon GO]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In {{g|GO}}, a Pokémon Egg can be hatched by placing them inside an [[Egg Incubator]] and travelling a required distance. A player can hold a maximum of nine Eggs at once and cannot discard unhatched Eggs. The player&#039;s travel is only counted towards hatching an Egg at low speeds (i.e. walking and running speeds). [[Adventure Sync]] allows the player&#039;s walked distance to be tracked even while the app is closed; without it, only walking while the app is open counts towards hatching Eggs.&lt;br /&gt;
&lt;br /&gt;
There are four different distances which Eggs can require: 2&amp;amp;nbsp;km, 5&amp;amp;nbsp;km, 7&amp;amp;nbsp;km, and 10&amp;amp;nbsp;km. Starting October 25, 2016, Eggs are colored based on the total distance required to hatch them: 2&amp;amp;nbsp;km Eggs are white with green spots, 5&amp;amp;nbsp;km Eggs are colored white with yellow spots, 7&amp;amp;nbsp;km Eggs are yellow with pink spots, and 10&amp;amp;nbsp;km Eggs are white with purple spots. 7&amp;amp;nbsp;km Eggs were introduced on June 21, 2018, initially only being able to hatch into {{rf|Alolan|Form}}s, but the pool has since been expanded to include [[baby Pokémon]] as well.&lt;br /&gt;
&lt;br /&gt;
Eggs can be obtained in variety of ways.&lt;br /&gt;
* Spinning a [[PokéStop]] or {{OBP|Gym|GO}} has a chance of awarding the player a 2&amp;amp;nbsp;km, 5&amp;amp;nbsp;km, or 10&amp;amp;nbsp;km Egg.&lt;br /&gt;
* [[Gift]]s from {{OBP|Friends|GO}} have a chance of containing a 7&amp;amp;nbsp;km.&lt;br /&gt;
* Weekly [[Adventure Sync]] rewards may include Eggs. The player can obtain a 5&amp;amp;nbsp;km Egg for walking 25&amp;amp;nbsp;km and a 10&amp;amp;nbsp;km Egg for walking 50&amp;amp;nbsp;km.&lt;br /&gt;
&lt;br /&gt;
While it is not possible to know what will hatch from an Egg beforehand, an Egg&#039;s properties are determined at the time it is obtained (not when it is hatched). The hatched Pokémon&#039;s [[Power Up]] level will match the player&#039;s [[Trainer level]] at the time its Egg was obtained, capped at level 20. Its origin location will be the location at which the player obtained Egg; for Eggs obtained from Gifts, it will be the location at which the Friend obtained the Gift. Pokémon that are hatched from Eggs are guaranteed at least 10 {{IV}}s (out of the maximum 15) in each stat. Region-exclusive Pokémon can only be hatched from Eggs obtained in its respective region; only during the 2018 and 2019 Ultra Bonus events, region-exclusive Pokémon (i.e. {{p|Farfetch&#039;d}}, {{p|Kangaskhan}}, {{p|Mr. Mime}}, and {{p|Tauros}}) were obtainable worldwide from 7&amp;amp;nbsp;km Eggs. Although the possible pool of Pokémon obtainable from Eggs is occasionally updated, these changes do not affect Eggs that players already have on hand. &lt;br /&gt;
&lt;br /&gt;
Hatching Eggs is the only way to obtain baby Pokémon and the Alolan Forms of {{p|Sandshrew}}, {{p|Vulpix}}, {{p|Meowth}}, and {{p|Grimer}}. {{p|Shinx}}, {{p|Mawile}}, {{p|Absol}}, and {{p|Klink}} can only be obtained by hatching Eggs or from [[Raid Battle]]s. {{p|Nincada}}, which was previously exclusive to [[Field Research]], is currently exclusive to hatching Eggs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Originally, Egg distance corresponds to the number of [[Egg cycle]]s to hatch the Pokémon in the core series games. Pokémon which take 5 to 15 cycles require 2&amp;amp;nbsp;km in Pokémon GO, Pokémon which require 20 cycles (except [[starter Pokémon]] and Pokémon that have pre-evolutions in the core series) take 5&amp;amp;nbsp;km, and Pokémon which require 25 cycles or more take 10&amp;amp;nbsp;km (except Eevee). Starter Pokémon, and 20 cycle Pokémon that have pre-evolutions in the core series, take 2&amp;amp;nbsp;km to hatch rather than 5&amp;amp;nbsp;km. Additionally, while Eevee (which has 35 cycles in the core series) used to take 10&amp;amp;nbsp;km to hatch, it now only takes 5&amp;amp;nbsp;km.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
Upon hatching an Egg, a player will receive a random amount of {{OBP|Stardust|GO}} and [[Candy]] dependent on the Egg&#039;s distance. The number of Candy received directly corresponds to the amount of Stardust received.&lt;br /&gt;
* 2 to 7&amp;amp;nbsp;km: &amp;lt;code&amp;gt;Candy = floor(Stardust/75)&amp;lt;/code&amp;gt;&lt;br /&gt;
* 10&amp;amp;nbsp;km: &amp;lt;code&amp;gt;Candy = floor(Stardust/100)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background-color:#{{night color}}; border:3px solid #{{blue color light}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color: #{{blue color light}}; color:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Distance&lt;br /&gt;
! {{color2|fff|Stardust (GO)|Stardust}}&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | {{color2|fff|Candy}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! [[File:GO Egg 2 km.png|60px]]&amp;lt;br&amp;gt;2&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}400 - 800&lt;br /&gt;
| {{Candy}}5 - 10&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! [[File:GO Egg 5 km.png|60px]]&amp;lt;br&amp;gt;5&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}800 - 1600&lt;br /&gt;
| {{Candy}}10 - 21&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! [[File:GO Egg 7 km.png|60px]]&amp;lt;br&amp;gt;7&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}800 - 1600&lt;br /&gt;
| {{Candy}}10 - 21&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundybl|5px}}&amp;quot; | [[File:GO Egg 10 km.png|60px]]&amp;lt;br&amp;gt;10&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}1600 - 3200&lt;br /&gt;
| style=&amp;quot;{{roundybr|5px}}&amp;quot; | {{Candy}}16 - 32&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Breeding house Eggs.png|thumb|220px|Pokémon Eggs at a [[Pokémon Day Care|breeding house]] in &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;]]&lt;br /&gt;
The anime was where Pokémon Eggs made their debut, with {{Ash}}&#039;s find of an Egg in &#039;&#039;[[EP046|Attack of the Prehistoric Pokémon]]&#039;&#039;, predating Pokémon Snap by nearly a year. The Egg was kept safe by {{an|Brock}}, but unlike later episodes, was not kept in its own case.&lt;br /&gt;
&lt;br /&gt;
Later Eggs have all been shown to be kept in a [[Egg case|case]], which includes a {{i|Poké Ball}} for the baby to be put into upon hatching. Aside from Togepi&#039;s Egg, which hatched like an Egg would in the real world, later Eggs are shown to flash white before hatching, then to glow white and transform into the Pokémon they contain, slightly in the same way as [[Evolution|evolving]]. By &#039;&#039;[[Pokémon the Series: Black &amp;amp; White]]&#039;&#039;, hatching eggs would be depicted as glowing and the egg shell bursting open to reveal the young Pokémon, much like the games.&lt;br /&gt;
&lt;br /&gt;
In the episode &#039;&#039;[[EP263|Address Unown]]&#039;&#039;, it was revealed that Pokémon are able to see the world outside of their Eggs. More than that, Pokémon have been seen interacting from inside their Eggs—Manaphy had used {{m|Heart Swap}} on Team Rocket before it even hatched (it was also implied that it was the one who gave May the dream involving [[Samiya|the Sea Temple]]).&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[HS15|Putting the Air Back in Aerodactyl!]]&#039;&#039;, a fossilized {{p|Aerodactyl}} Egg is shown, and revealed to have been used in conjunction with an [[Old Amber]] to resurrect a living Aerodactyl.&lt;br /&gt;
&lt;br /&gt;
===Pokémon hatched from Eggs===&lt;br /&gt;
; [[Misty&#039;s Togepi]]&lt;br /&gt;
: This Egg was white with blue and red triangular spots. It was found by {{Ash}} deep in [[Grampa Canyon]] in &#039;&#039;[[EP046|Attack of the Prehistoric Pokémon]]&#039;&#039;. It was taken care of by {{an|Brock}} and, for a short period, by {{MTR}}. It hatched into a {{p|Togepi}} in &#039;&#039;[[EP050|Who Gets to Keep Togepi?]]&#039;&#039;. Since {{an|Misty}} was the first person it saw, the baby Pokémon thought she was its mother, and thus became hers.&lt;br /&gt;
; [[Ash&#039;s Phanpy]]&lt;br /&gt;
: This Egg was light blue with no designs. It was given to {{Ash}} as a prize for winning the [[Extreme Pokémon Race]] in &#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;. He took care of it himself, and it hatched into a {{p|Phanpy}} in &#039;&#039;[[EP230|Hatching a Plan!]]&#039;&#039;.&lt;br /&gt;
; [[Ash&#039;s Larvitar|Larvitar (anime)]]&lt;br /&gt;
: This Egg was jade green with no designs. It was given to {{Ash}} in &#039;&#039;[[EP257|Lapras of Luxury]]&#039;&#039;. It hatched into a {{p|Larvitar}} in &#039;&#039;[[EP258|Hatch Me If You Can!]]&#039;&#039;.&lt;br /&gt;
; [[Brock&#039;s Mudkip]]&lt;br /&gt;
: This Egg was never seen. Mudkip was one of the many Eggs given to [[Old Man Swamp]] to raise to be [[starter Pokémon]] for beginning Trainers of the [[Hoenn]] [[region]]. It was eventually given to Brock due to Mudkip being too strong for a new Trainer.&lt;br /&gt;
; [[Misty&#039;s Azurill]]&lt;br /&gt;
: This Egg was never seen. It was the offspring of [[Tracey&#039;s Marill]], and then {{Tracey}} gave it to {{an|Misty}} as mentioned in &#039;&#039;[[AG132|The Scheme Team!]]&#039;&#039;, when Azurill itself first appeared.&lt;br /&gt;
[[File:Eevee hatches.png|right|thumb|[[May&#039;s Eevee]] hatching from its Egg in &#039;&#039;[[AG157|Time Warp Heals All Wounds]]&#039;&#039;]]&lt;br /&gt;
; [[May&#039;s Eevee]]&lt;br /&gt;
: This Egg was brown with a cream-colored zigzag stripe around its middle. It was given to {{an|May}} by a day-care worker in &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;. She took care of it herself, and it hatched into an {{p|Eevee}} in &#039;&#039;[[AG157|Time-Warp Heals All Wounds]]&#039;&#039;.&lt;br /&gt;
; [[Manaphy (M09)|Manaphy]]&lt;br /&gt;
: This Egg was translucent blue with a red, yolk-like sphere and a ring of yellow dots inside of it. It was primary to the plot of &#039;&#039;[[M09|Pokémon Ranger and the Temple of the Sea]]&#039;&#039;. During the movie, while everyone was trying to protect the Egg, the center began to glow. When {{an|May}} caught it after being tossed into the air, it began to hatch into a {{p|Manaphy}}.&lt;br /&gt;
; [[Brock&#039;s Happiny]]&lt;br /&gt;
: This Egg was light pink with a white stripe around the center and a red top. It was won by {{an|Brock}} in the [[Pokémon Dress-Up Contest]] in &#039;&#039;[[DP033|All Dressed Up With Somewhere To Go!]]&#039;&#039;. He took care of it himself, and it hatched into a {{p|Happiny}} with the help of [[Nurse Joy]] in &#039;&#039;[[DP038|One Big Happiny Family!]]&#039;&#039;.&lt;br /&gt;
; [[Dawn&#039;s Cyndaquil]]&lt;br /&gt;
: {{an|Dawn}}&#039;s Egg obtained in &#039;&#039;[[DP143|An Egg Scramble!]]&#039;&#039; hatched into a baby Cyndaquil later in the episode. The Egg was mostly green, with a cream colored bottom and three red spots near the bottom.&lt;br /&gt;
; [[Iris&#039;s Axew]]&lt;br /&gt;
: This Egg was never seen. Axew was given to Iris prior to the start of the series a few days after he had hatched.&lt;br /&gt;
; [[Ash&#039;s Scraggy]]&lt;br /&gt;
: Ash&#039;s Egg obtained in &#039;&#039;[[BW012|Here Comes the Trubbish Squad!]]&#039;&#039; hatched into a baby {{p|Scraggy}} in &#039;&#039;[[BW017|Scraggy-Hatched to be Wild!]]&#039;&#039;. The Egg is similar to the ones seen in the games. However, it retains Scraggy&#039;s color scheme, being tan with brown spots.&lt;br /&gt;
; [[Ash&#039;s Noibat]]&lt;br /&gt;
: Ash&#039;s Noibat&#039;s Egg was found by his {{AP|Hawlucha}} in &#039;&#039;[[XY076|A Not-So-Flying Start!]]&#039;&#039;, and hatched in the same episode. It is lavender with purple markings that resemble a Noibat&#039;s ears.&lt;br /&gt;
; [[Ash&#039;s Froakie]]&lt;br /&gt;
: Ash&#039;s Froakie hatched offscreen. It was shown in a flashback in &#039;&#039;[[XY092|Cloudy Fate, Bright Future!]]&#039;&#039;. It is light blue with white markings that resemble a Froakie&#039;s hands.&lt;br /&gt;
; [[Ash&#039;s Rowlet]]&lt;br /&gt;
: Ash&#039;s Rowlet hatched offscreen. It was shown in a flashback in &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;. Very little of the egg was seen.&lt;br /&gt;
; [[Snowy]]&lt;br /&gt;
: An {{rf|Alolan}} Vulpix Egg was given to {{an|Lillie}} and her classmates to raise in &#039;&#039;[[SM008|Lillie&#039;s Egg-xhilarating Challenge!]]&#039;&#039;. It hatched in &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039; and Lillie caught it in the [[SM014|next episode]]. The Egg was white with a blue pattern that looked like flowers.&lt;br /&gt;
; [[Ash&#039;s Riolu]]&lt;br /&gt;
: Ash received this Egg from the [[Vermilion City]] [[Nurse Joy]] in [[JN021]]. It hatched later in the same episode. This Egg resembled the 10 km Eggs from [[Pokémon GO]], with a color scheme of white with light blue spots.&lt;br /&gt;
&amp;lt;!--Please do not add Eggs that haven&#039;t hatched yet here. This is for hatched Pokémon only.--&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Togepi Egg.png|[[Misty&#039;s Togepi]] Egg&lt;br /&gt;
File:Phanpy Egg.png|[[Ash&#039;s Phanpy]] Egg&lt;br /&gt;
File:Larvitar Egg.png|[[Ash&#039;s Larvitar]] Egg&lt;br /&gt;
File:May Eevee Egg.png|[[May&#039;s Eevee]] Egg&lt;br /&gt;
File:Manaphy Egg anime.png|{{OBP|Manaphy|M09}} Egg&lt;br /&gt;
File:Happiny Egg.png|[[Brock&#039;s Happiny]] Egg&lt;br /&gt;
File:Cyndaquil Egg.png|[[Dawn&#039;s Cyndaquil]] Egg&lt;br /&gt;
File:Scraggy Egg.png|[[Ash&#039;s Scraggy]] Egg&lt;br /&gt;
File:Ash Noibat Egg.png|[[Ash&#039;s Noibat]] Egg&lt;br /&gt;
File:Ash Froakie Egg.png|[[Ash&#039;s Froakie]] Egg&lt;br /&gt;
File:Pikipek Egg.png|[[Ash&#039;s Rowlet]] Egg (far back) among {{p|Pikipek}} Eggs&lt;br /&gt;
File:Lillie Egg.png|{{rf|Alolan}} {{p|Vulpix}} ([[Snowy]]) Egg&lt;br /&gt;
File:Ash Riolu Egg.png|[[Ash&#039;s Riolu]] Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Other Pokémon Eggs in the anime===&lt;br /&gt;
[[File:Mudkip hatching.png|200px|thumb|A {{p|Mudkip}} hatching from its Egg in &#039;&#039;[[AG025|A Mudkip Mission]]&#039;&#039;]]&lt;br /&gt;
* &#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;: An entire breeding house full of Eggs appeared in this episode. Several &amp;quot;dummy&amp;quot; Eggs were used in the race. A large number of the Egg varieties seen, both real and dummy, are unique to this episode. Some of the designs seen are similar to {{p|Beedrill}}, {{p|Farfetch&#039;d}}, {{p|Drowzee}}, {{p|Starmie}}, and {{p|Heracross}}, although Beedrill and Starmie usually cannot hatch from Eggs directly.&lt;br /&gt;
* &#039;&#039;[[AG025|A Mudkip Mission]]&#039;&#039;: This episode showed a home where baby {{p|Mudkip}} were bred and even showed one hatching and spraying May in the face. These Eggs were small and blue with orange spots.&lt;br /&gt;
* &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;: An entire breeding house full of Eggs appeared in this episode. Primarily, it featured an Egg of a {{p|Vulpix}} which was about to hatch, which was two shades of red with a design of curls separating the top from the bottom, reflecting the design of Vulpix&#039;s tails. Many other Eggs appeared in the breeding house. Based on the design, some of the other Eggs were identified as {{p|Aipom}}, {{p|Bellsprout}}, {{p|Chinchou}}, {{p|Cleffa}}, {{p|Elekid}}, {{p|Igglybuff}}, {{p|Ledyba}}, {{p|Magby}}, {{p|Pichu}}, {{p|Sandshrew}}, {{p|Sentret}}, {{p|Smoochum}}, {{p|Spinarak}}, {{p|Swinub}}, {{p|Teddiursa}}, and {{p|Wooper}}. A few of the designs were more difficult to distinguish than others.&lt;br /&gt;
* &#039;&#039;[[DP087|The Psyduck Stops Here!]]&#039;&#039;: {{p|Psyduck}} Eggs were seen in this episode and were the reason why the Psyduck were blocking the road. These Eggs were yellow with patterns that looked like Psyduck&#039;s feet.&lt;br /&gt;
* &#039;&#039;[[SM001|In Alola to New Adventure!]]&#039;&#039;: [[Samson Oak]] received this Vulpix Egg from his cousin, {{an|Professor Oak}}. In &#039;&#039;[[SM008|Lillie&#039;s Egg-xhilarating Challenge!]]&#039;&#039;, Samson offered Ash and his classmates the opportunity to raise either this Egg or a [[Snowy|white one]]. When the latter was chosen, Samson chose to raise the remaining Egg himself. In &#039;&#039;[[SM014|Getting to Know You!]]&#039;&#039;, it hatched into a Vulpix. Unlike the previous Vulpix Egg, this Vulpix Egg was orange in color.&lt;br /&gt;
* &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;: {{p|Pikipek}} Eggs were seen in this episode and were hatched alongside [[Ash&#039;s Rowlet]] by a {{p|Toucannon}}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Elekid Egg.png|An {{p|Elekid}} Egg in &#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;&lt;br /&gt;
File:Sentret Egg.png|A {{p|Sentret}} Egg in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Pichu Egg.png|A {{p|Pichu}} Egg in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Dummy Pokemon Eggs 1.png|&amp;quot;Dummy&amp;quot; Eggs in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Dummy Pokemon Eggs 2.png|&amp;quot;Dummy&amp;quot; Eggs in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Aipom Egg.png|An {{p|Aipom}} Egg in &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;&lt;br /&gt;
File:Bellsprout Egg.png|A {{p|Bellsprout}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Chinchou Egg.png|A {{p|Chinchou}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Cleffa Egg.png|A {{p|Cleffa}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Igglybuff Egg.png|An {{p|Igglybuff}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Ledyba Egg.png|A {{p|Ledyba}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Magby Egg.png|A {{p|Magby}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Sandshrew Egg.png|A {{p|Sandshrew}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Smoochum Egg.png|A {{p|Smoochum}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Spinarak Egg.png|A {{p|Spinarak}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Swinub Egg.png|A {{p|Swinub}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Teddiursa Egg.png|A {{p|Teddiursa}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Wooper Egg.png|A {{p|Wooper}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Vulpix Egg.png|A {{p|Vulpix}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Slowpoke Egg.png|A {{p|Slowpoke}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Psyduck Eggs.png|Three {{p|Psyduck}} with their Eggs in &#039;&#039;[[DP087|The Psyduck Stops Here!]]&#039;&#039;&lt;br /&gt;
File:Samson Egg.png|A {{p|Vulpix}} Egg in &#039;&#039;[[SM014|Getting to Know You!]]&#039;&#039;&lt;br /&gt;
File:Pikipek Egg.png|Five {{p|Pikipek}} Eggs and a {{p|Rowlet}} Egg in &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Gold Pichu Egg Golden Boys.png|thumb|200px|A Pichu Egg in the Pokémon Gold and Silver: The Golden Boys manga]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
* In &#039;&#039;[[PS013|Sigh for Psyduck]]&#039;&#039;, [[Mr. Fuji]]&#039;s deceased {{p|Doduo}} is shown hatching from an Egg in a photograph. Notably, this was before the concept of Pokémon Eggs was introduced, and the Egg seen in the photograph was more similar to a real-life bird egg.&lt;br /&gt;
* In &#039;&#039;[[PS101|Teddiursa&#039;s Picnic]]&#039;&#039;, {{adv|Gold}} received an Egg produced by [[Jasmine]]&#039;s two {{p|Togetic}}, which eventually hatched into a {{p|Togepi}}, nicknamed [[Togebo]].&lt;br /&gt;
* In &#039;&#039;[[PS160|Playful Porygon2]]&#039;&#039;, {{adv|Red}}&#039;s [[Pika]] and {{adv|Yellow}}&#039;s [[Chuchu]] produced an Egg, which later hatched into Gold&#039;s [[Pibu]].&lt;br /&gt;
* In &#039;&#039;[[PS380|Lucky Lucario II]]&#039;&#039;, [[Riley]]&#039;s {{p|Riolu}}&#039;s Egg was put inside a cavern as a final task for {{adv|Diamond}} during his training on [[Iron Island]]. It hatched soon after being found.&lt;br /&gt;
* In &#039;&#039;[[PS441|Alternate Dimension Showdown XI]]&#039;&#039;, Diamond was given a {{p|Manaphy}} Egg by {{adv|Looker}}, who had been entrusted with it during a mission in [[Fiore]]. The Egg later hatched into Manaphy at the [[Pokémon Day Care]]. Manaphy later produced an Egg that hatched into a {{p|Phione}}.&lt;br /&gt;
* In &#039;&#039;[[PS460|All About Arceus IX]]&#039;&#039;, Red&#039;s [[Snor]] and {{adv|Emerald}}&#039;s {{p|Snorlax}} were revealed to have produced an Egg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Mr Fuji Doduo Egg.png|[[Mr Fuji]]&#039;s {{p|Doduo}} hatching from its Egg&lt;br /&gt;
File:Togebo Egg.png|[[Togebo]]&#039;s Egg&lt;br /&gt;
File:Pibu Egg.png|[[Pibu]]&#039;s Egg held by {{adv|Gold}}&lt;br /&gt;
File:Day-Care Couple Azurill Wynaut Adventures.png|An {{p|Igglybuff}} Egg held by the [[Day Care Man]]&lt;br /&gt;
File:Riley Riolu Egg Adventures.png|Riley&#039;s {{p|Riolu}}&#039;s Egg&lt;br /&gt;
File:Roark Cranidos Egg Adventures.png|[[Roark&#039;s Cranidos]]&#039;s Egg&lt;br /&gt;
File:Manaphy Egg Adventures.png|{{p|Manaphy}} Egg&lt;br /&gt;
File:Phione Egg Adventures.png|{{p|Phione}}&#039;s Egg with Manaphy&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Diamond and Pearl Adventure! manga===&lt;br /&gt;
* [[Hareta]] received an Egg from his father, [[Kaisei]], at the end of &#039;&#039;[[DPA27|A Surprise Visit from Hareta&#039;s Father!]]&#039;&#039;. It hatched into a {{TP|Hareta|Minun}} in &#039;&#039;[[DPA30|The Anger of Legendary Pokémon Heatran]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Hareta Minun Egg.png|[[Hareta]]&#039;s {{TP|Hareta|Minun}} Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Gold &amp;amp; Silver: The Golden Boys manga===&lt;br /&gt;
* {{GnB|Gold}} received a Pokémon Egg from the [[Day-Care Couple]] in &#039;&#039;[[GB10|A Huge Mysterious Tree!!]]&#039;&#039;. It hatched into {{p|Pichu}} in &#039;&#039;[[GB16|The New Pokémon Is Hatched!!]]&#039;&#039;.&lt;br /&gt;
* {{GnB|Chris}} hatches a {{p|Togepi}} from an Egg that {{GnB|Gold}} delivered to [[Professor Elm]] in &#039;&#039;[[GB15|Escape From The Mystery Forest!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Chris Togepi Egg Golden Boys.png|{{GnB|Chris}}&#039;s {{p|Togepi}} Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Pocket Monsters manga===&lt;br /&gt;
* {{OBP|Red|Pocket Monsters}} hatched a {{TP|Red|Togepi}} Egg in &#039;&#039;[[PM066|Hatch the Pokémon Egg!!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Red Togepi Egg PM.png|Togepi Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
* {{TCG ID|Challenge from the|_____&#039;s Chansey|Darkness}}: Depicts a {{p|Chansey}} hatching from an Egg, as well as many other generic Eggs in the background.&lt;br /&gt;
* {{TCG ID|Neo Discovery|Fossil Egg|72}}: Used to hatch into any Pokémon that evolves from {{TCG ID|Fossil|Mysterious Fossil|62}}.&lt;br /&gt;
* {{TCG ID|Movie VS Pack|Manaphy&#039;s Egg|16}}: Used to hatch into [[Manaphy (TCG)#Sea&#039;s Manaphy|Sea&#039;s Manaphy]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* The color of a standard Pokémon Egg may be a reference to the standard {{smw|Yoshi Egg}}, as one of its early appearances was in &#039;&#039;{{smw|Yoshi (game)|Yoshi}}&#039;&#039;, a game also developed by [[Game Freak]].&lt;br /&gt;
* The Eggs of {{p|Elekid}} and {{p|Magby}} are the only Eggs whose designs depict those of the Pokémon&#039;s {{p|Electabuzz|evolved}} {{p|Magmar|form}}, rather than the Pokémon it directly hatches into.&lt;br /&gt;
* Aside from {{OBP|Manaphy|M09}}, which is {{pkmn2|Mythical}}, no anime Pokémon that has been seen hatching from an Egg is a Pokémon that is unable to evolve.&lt;br /&gt;
* Even though Eggs are incapable of battling, they have [[base stats]] programmed into the game. Each stat is 10.&lt;br /&gt;
** Through [[Pomeg glitch|a glitch]] in {{game|Emerald}} and [[Generation IV]], Eggs can actually battle in-game.&lt;br /&gt;
* In {{2v2|Ruby|Sapphire}}, there was a minor bug when Pokémon hatched from an Egg in another game was traded to either game. When done, the &amp;quot;Egg&amp;quot; that appears after the location where the Egg hatched in the summary will change to &amp;quot;met&amp;quot; when traded to Ruby or Sapphire. This bug was fixed in {{game|Emerald}}.&lt;br /&gt;
* Another issue with traded Eggs occurred in Generations III, IV, and V : When an Egg is generated, it is given the OT, ID, secret ID, and game identifier of the game which created it. This can cause an Egg which is traded to hatch {{Shiny}} and then be normally colored, or hatch normally colored, and then be Shiny. This is due to the change in OT, ID, and secret ID happening after the hatching cutscene.&lt;br /&gt;
** This issue is also present if a Pokémon is traded between the main and remake games of the third and fourth generations: the game identifier is never changed, meaning that an Azurill Egg generated in Ruby, but then traded to FireRed and hatched will, though identifying itself as having FireRed&#039;s player as its OT, still be marked as having been generated in Ruby. When transferred via Pal Park to Generation IV, it will say that it is from Hoenn, rather than Kanto, as this is determined not by [[List of locations by index number (Generation III)|index number]] of the location hatched, but by game identifier. In Generation IV, this occurs between Sinnoh and Johto games when Pokémon are transferred forward to Generation V. It cannot occur between Kanto/Hoenn and Johto/Sinnoh games, however, as Pokémon Eggs cannot be transferred via Pal Park.&lt;br /&gt;
** This issue was resolved in [[Generation VI]], where an Egg uses its current owner&#039;s OT, ID, secret ID, and game identifier while hatching.&lt;br /&gt;
* The DVs of the Pokémon hatched from the Odd Egg will always be either 0/2/10/10/10 if Shiny or all 0 if non-Shiny, regardless of language version. These are the lowest possible values in Generation II for any Shiny or non-Shiny Pokémon, respectively.&amp;lt;ref&amp;gt;[http://web.archive.org/web/20141231124858/http://upokecenter.dreamhosters.com/articles/pokemon-video-games/pokemon-crystal/pokemon-crystal-odd-egg/ Odd Egg - The Ultimate Pokémon Center (archive)]&amp;lt;/ref&amp;gt;&lt;br /&gt;
* The Odd Egg always hatches with 125 experience points. This matches the base [[experience]] for the {{cat|Pokémon in the Medium Fast experience group|Medium Fast}} experience group (which includes {{p|Pichu}}, {{p|Tyrogue}}, {{p|Smoochum}}, {{p|Elekid}} and {{p|Magby}} in this instance), but exceeds the base experience for the {{cat|Pokémon in the Fast experience group|Fast}} experience group. This makes it possible for a {{p|Cleffa}} or {{p|Igglybuff}} hatched from the Odd Egg to start with more experience points than it would normally have.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color dark}}&lt;br /&gt;
|ja=タマゴ &#039;&#039;Egg&#039;&#039;&lt;br /&gt;
|zh_yue=蛋 &#039;&#039;{{tt|Dáan|Egg}}&#039;&#039;&lt;br /&gt;
|zh_cmn=蛋 &#039;&#039;{{tt|Dàn|Egg}}&#039;&#039;&lt;br /&gt;
|da=Æg&lt;br /&gt;
|nl=Ei&lt;br /&gt;
|fi=Muna&lt;br /&gt;
|fr_eu=Œuf&lt;br /&gt;
|de=Ei&lt;br /&gt;
|hu=Tojás&lt;br /&gt;
|it=Uovo&lt;br /&gt;
|ko=알 &#039;&#039;Egg&#039;&#039;&lt;br /&gt;
|no=Egg&lt;br /&gt;
|pl=Jajo&lt;br /&gt;
|pt_br=Ovo&lt;br /&gt;
|ru=Яйцо &#039;&#039;Yaytso&#039;&#039;&lt;br /&gt;
|es_eu=Huevo&lt;br /&gt;
|sv=Ägg&lt;br /&gt;
|tr=Yumurta&lt;br /&gt;
|vi=Trứng Pokémon&lt;br /&gt;
|th=ไข่ &#039;&#039;Egg&#039;&#039;&lt;br /&gt;
|pt_eu=Ovo{{tt|*|Platinum manual}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* {{cat|Episodes in which a main character obtains a Pokémon Egg}}&lt;br /&gt;
* [[Lucky Egg]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon world]]&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
&lt;br /&gt;
[[de:Ei]]&lt;br /&gt;
[[es:Huevo Pokémon]]&lt;br /&gt;
[[fr:Œuf]]&lt;br /&gt;
[[it:Uova Pokémon]]&lt;br /&gt;
[[ja:タマゴ]]&lt;br /&gt;
[[zh:宝可梦的蛋]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_Egg&amp;diff=3181500</id>
		<title>Pokémon Egg</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_Egg&amp;diff=3181500"/>
		<updated>2020-06-05T08:22:55Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Generation IV */  Added special dates section in generation 4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:SugimoriEggs.png|right|thumb|235px|Eggs of {{p|Togepi}} and {{p|Elekid}}]]&lt;br /&gt;
[[File:Hatching Egg V.png|frame|right|A {{p|Larvesta}} hatching from its Egg]]&lt;br /&gt;
A &#039;&#039;&#039;Pokémon Egg&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケモンのタマゴ&#039;&#039;&#039; &#039;&#039;Pokémon Egg&#039;&#039;) is an object from which most {{OBP|Pokémon|species}} are known to hatch. An Egg&#039;s shell will usually have a pattern that reflects the appearance of the Pokémon developing inside, though in the games, this is not the case.&lt;br /&gt;
&lt;br /&gt;
Pokémon Eggs are produced by {{pkmn|breeding}} two Pokémon of a compatible [[Egg Group]] and opposite gender together and will contain, by default, the lowest species in the evolutionary line of the mother. According to a girl in [[Solaceon Town]], where one of many [[Pokémon Day Care]]s are located, no one has ever seen a Pokémon lay an Egg, and thus, it is not confirmed that this is how they appear. According to a {{tc|Monsieur}} in [[Coumarine City]], Eggs are not actually eggs and are more like &amp;quot;cradles&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Some Pokémon, known as [[baby Pokémon]], are also found by hatching them from an Egg created by their evolved forms, either naturally or through use of a held [[incense]]. Unlike other species {{egg|Undiscovered|which cannot breed}}, baby Pokémon evolve into species which can do so. In the games, [[Legendary Pokémon]] cannot breed in captivity, and only two [[Mythical Pokémon]]—{{p|Manaphy}} and {{p|Phione}}—are capable of breeding, both producing Phione Eggs when bred with {{p|Ditto}}.&lt;br /&gt;
&lt;br /&gt;
==In the games==&lt;br /&gt;
Pokémon Eggs have appeared in all games where Pokémon breeding has been available, and were a major plot point in [[Generation II]], in which they were introduced. They have also appeared in several side games.&lt;br /&gt;
&lt;br /&gt;
===Mechanics===&lt;br /&gt;
[[File:Egg Gen II.png|frame|right|An Egg&#039;s status screen in [[Generation II]]]]&lt;br /&gt;
The amount of time left until a Pokémon hatches from its Egg is determined by the number of [[Egg cycles]] (which are measured in steps) that the player walks when it is in the party (including movement on a [[Bicycle]] or while {{m|Surf}}ing). In-game [[time]] has no direct bearing on Egg hatching.&lt;br /&gt;
&lt;br /&gt;
Eggs utilize the same memory allocation as Pokémon, so the coding structure is very similar. What would be the [[friendship]] value in a Pokémon is the [[Egg cycle]] count for an Egg. Unlike friendship, this value counts down at the end of every Egg cycle.&lt;br /&gt;
&lt;br /&gt;
Since Generation V, an Egg will hatch when its Egg cycle count reaches zero. If multiple Eggs become ready to hatch at the same time, the first Egg in the party will hatch first while each subsequent Egg will hatch with each subsequent step.&lt;br /&gt;
&lt;br /&gt;
In Generations III and IV, an Egg will only hatch if its Egg cycle count is zero before an Egg cycle ends (meaning that an extra Egg cycle must be walked). Only one Egg can hatch per Egg cycle, since Eggs are processed in order and if one hatches, any remaining Eggs are not touched.&lt;br /&gt;
&lt;br /&gt;
Generation II is like Generations III and IV except that an Egg will hatch when its Egg cycle count reaches zero.&lt;br /&gt;
&lt;br /&gt;
The number of Egg cycles that an Egg has left determines the text that is shown on its status screen.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
[[File:Gold Silver Beta Egg.png|thumb|A [[Pokémon Gold and Silver beta|pre-release image]] of an Egg hatching in Pokémon Gold and Silver]]&lt;br /&gt;
[[File:Stadium 2 Egg.png|frame|left]]&lt;br /&gt;
Generation II introduced the system of Egg creation and hatching that would continue, much unaltered, to the present. The first Pokémon Egg obtainable by the {{player}} in the series was a [[Key Item]] given by [[Mr. Pokémon]] in {{game2|Gold|Silver|Crystal}}. The [[Mystery Egg]] is to be delivered to [[Professor Elm]] in [[New Bark Town]]; he will then study it and have one of his aides return it to the player in the [[Violet City]] [[Pokémon Center]].&lt;br /&gt;
&lt;br /&gt;
Elm&#039;s studies show that when a Pokémon Egg is carried with a {{pkmn|Trainer}} with a [[party]] of lively Pokémon, it will eventually hatch. This is easily proven, as some time after the Egg is given, if it is kept in the party, it will hatch into a {{p|Togepi}}.&lt;br /&gt;
&lt;br /&gt;
The player reaching the Daycare on {{rt|34|Johto}} marks where the game mechanics of breeding are truly introduced. Though unrevealed in the games (and only ever truly shown by {{g|Stadium 2}} and [[Pokédex 3D]]), Pokémon belong to one or two of fifteen [[Egg Group]]s, and those which share an Egg Group and are of opposite gender are capable of breeding. Pokémon without gender can be bred with a {{p|Ditto}}, as can any other Pokémon not in the {{egg2|Undiscovered}}. Pokémon in the Undiscovered Group will not breed with any Pokémon or produce any Eggs.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from an Egg will come out at level 5, having whatever moves their species can learn by that level, any move both parents know that the hatched Pokémon can learn through level-up, any [[TM]] or [[HM]] moves they are compatible with that were known by their father, and any [[Egg Move]]s their father passed down. The father&#039;s moves take priority over the moves the species would usually have at that level.&lt;br /&gt;
&lt;br /&gt;
These are the only games in which an Egg&#039;s status screen differs considerably from that of a normal Pokémon, as all later games use either a modified version of the Pokémon status screen of that game (as is the case in Generation III), or the same status screen, minus some pages (as is the case in Generation IV, V, and VII).&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation II:&lt;br /&gt;
* {{p|Togepi}}{{sup/2|GSC}}: From [[Mr. Pokémon]], initially classed as a [[Key Item]]. Received from [[Professor Elm]]&#039;s aide in [[Violet City]].&lt;br /&gt;
* [[Odd Egg]]{{sup/2|C}}: From the [[Day-Care Couple|Day-Care Man]]. Will hatch into a {{p|Pichu}}, {{p|Cleffa}}, {{p|Igglybuff}}, {{p|Tyrogue}}, {{p|Smoochum}}, {{p|Elekid}}, or {{p|Magby}} that knows {{m|Dizzy Punch}}. It has a 14% chance of being {{Shiny}} in international versions. In the Japanese version of Crystal, the Day-Care Man instead gives out an [[Egg Ticket]] that can be traded in at the [[Pokémon Communication Center]] for the Odd Egg. The Odd Egg in the Japanese version has a 50% chance of being {{Shiny}}.&lt;br /&gt;
&lt;br /&gt;
===Generation III===&lt;br /&gt;
Generation III retained much of the system introduced in Generation II, with only one major change: [[incense]]s are introduced that, if held by the appropriate Pokémon, will cause them to produce Eggs that hatch into new baby Pokémon (who were introduced in this generation). There are incenses for {{p|Marill}}&#039;s and {{p|Wobbuffet}}&#039;s evolutionary lines, which allow them to produce Eggs that hatch into {{p|Azurill}} and {{p|Wynaut}} respectively. Presumably, these incenses are meant to keep the results of breeding consistent across generations while still allowing earlier evolutions to be introduced.&lt;br /&gt;
&lt;br /&gt;
All other mechanics present in Generation II are present in Generation III, including the system for hatching Eggs, except that Eggs require an extra Egg cycle to hatch. Egg Groups now have more members, but the groups themselves number the same as in Generation II, and no Pokémon have changed groups.&lt;br /&gt;
&lt;br /&gt;
In {{game|Emerald}}, several more mechanics were added. A Pokémon&#039;s [[nature]] could be influenced if its mother held an [[Everstone]] while in the Day Care, while Pokémon with {{a|Magma Armor}} or {{a|Flame Body}} shorten the hatching process if they are in the party with Eggs.&lt;br /&gt;
&lt;br /&gt;
In Generation III, a Pokémon Egg&#039;s type is listed as {{t|???}}.&lt;br /&gt;
&lt;br /&gt;
No Eggs can be obtained or traded to [[Pokémon Colosseum]] or {{XD}}.&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation III:&lt;br /&gt;
* {{p|Wynaut}}{{sup/3|RSE}}: From an old couple in [[Lavaridge Town]].&lt;br /&gt;
* {{p|Togepi}}{{sup/3|FRLG}}: From an old man in the [[Water Labyrinth]].&lt;br /&gt;
* {{p|Swablu}}: From the start of [[Pokémon Box Ruby &amp;amp; Sapphire]].&lt;br /&gt;
* {{p|Zigzagoon}}: From Pokémon Box Ruby &amp;amp; Sapphire after depositing at least 100 Pokémon.&lt;br /&gt;
* {{p|Skitty}}: From Pokémon Box Ruby &amp;amp; Sapphire after depositing at least 500 Pokémon.&lt;br /&gt;
* {{p|Pichu}}: From Pokémon Box Ruby &amp;amp; Sapphire after depositing 1499 Pokémon.&lt;br /&gt;
All Eggs obtained from Pokémon Box Ruby &amp;amp; Sapphire have moves that are otherwise unobtainable.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
{{incomplete|section|needs=Manaphy Egg in Ranch}}&lt;br /&gt;
Generation IV expanded on the mechanics found in Emerald, making them standard to the series, as well as added more baby Pokémon only obtainable through [[incense]] breeding. A new mechanic is that either parent can now pass down its nature to its offspring if it holds an Everstone. In addition to this, Pokémon Eggs now hatch at level 1. This would have been possible in Generation III as well, but was not in Generation II due to a glitch in the programming that caused level 1 &amp;quot;[[Experience#Experience to level|Medium Slow]]&amp;quot; Pokémon to jump to level 100 instantly when leveled up.&lt;br /&gt;
&lt;br /&gt;
A minor change in mechanics from Generation III causes Eggs to hatch slightly earlier, with the length of an Egg cycle dropping from 256 to 255 steps. The Manaphy Egg obtainable from Ranger games has its own sprite that is different from other, normal Eggs&#039; sprites.&lt;br /&gt;
&lt;br /&gt;
Trainers can use the Pokétch {{DL|Pokétch|Day-Care Checker}} app to check whether or not an Egg has been produced, unlike in previous generations, where Trainers attempting to breed two Pokémon would need to stay near the Day Care if they wished to get an Egg as soon as it was ready.&lt;br /&gt;
&lt;br /&gt;
Eggs may also be transferred to [[My Pokémon Ranch]], but they will not hatch as long as they are kept in the game. When the ranch reaches the maximum level (level 25, requiring 999 Pokémon to be present in the ranch), [[Hayley]] will offer to trade any Pokémon Egg for her Mew.&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl, and Platinum, Eggs can be given a spa treatment at the [[Ribbon Syndicate]] building. This will cause the Egg to have an increased [[friendship]] upon hatching. However, Eggs cannot be given massages; if attempted, the [[Massage Girl]] will exclaim, &amp;quot;That&#039;s silly! I&#039;d break that Egg if I tried to massage it!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Poketch Egg.png|An Egg on the [[Pokétch]]&lt;br /&gt;
File:Ranch Egg.png|An Egg in [[My Pokémon Ranch]]&lt;br /&gt;
File:Menu PBR Egg.png|An Egg in [[Pokémon Battle Revolution]]&lt;br /&gt;
File:Menu PBR Manaphy Egg.png|A Manaphy Egg in Pokémon Battle Revolution&lt;br /&gt;
File:Dragon hatch HGSS.png|An Egg produced by {{p|Arceus}}, about to hatch into {{p|Dialga}}, {{p|Palkia}} or {{p|Giratina}}&lt;br /&gt;
File:ManaphyEggmssoa.png|Manaphy Egg in {{g|Ranger: Shadows of Almia}}&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation IV:&lt;br /&gt;
* {{p|Happiny}}{{sup/4|DP}}: From a Traveling Man in [[Hearthome City]] (has the appearance of a {{tc|Hiker}}).&lt;br /&gt;
* {{p|Riolu}}{{sup/4|DPPt}}: From [[Riley]] on [[Iron Island]].&lt;br /&gt;
* {{p|Togepi}}{{sup/4|Pt}}: From [[Cynthia]] in [[Eterna City]].&lt;br /&gt;
* {{p|Manaphy}}{{sup/4|DPPtHGSS}}: From {{ga|Pokémon Ranger}}, {{g|Ranger: Shadows of Almia}} and {{g|Ranger: Guardian Signs}}.&lt;br /&gt;
* {{p|Togepi}}{{sup/4|HGSS}}: From [[Mr. Pokémon]]. Initially classed as a [[Key Item]], the [[Mystery Egg]]. Received from [[Professor Elm]]&#039;s aide in [[Violet City]].&lt;br /&gt;
* {{p|Mareep}}{{sup/4|HGSS}}: From [[Primo]], after entering the correct secret phrase.&lt;br /&gt;
* {{p|Wooper}}{{sup/4|HGSS}}: From [[Primo]], after entering the correct secret phrase.&lt;br /&gt;
* {{p|Slugma}}{{sup/4|HGSS}}: From [[Primo]], after entering the correct secret phrase.&lt;br /&gt;
&lt;br /&gt;
====Special dates====&lt;br /&gt;
As an [[Easter Egg]], Game Freak made it so that the [[Egg cycle]] will be reduced from 255 steps to 230 steps on these special dates, making a [[Magikarp]] hatch in 1380 steps instead of 1530 steps.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background-color:#{{night color}}; border:3px solid #{{blue color light}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color: #{{blue color light}}; color:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Date&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Significance&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| January 12th&lt;br /&gt;
| Masuda&#039;s Birthday&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| February 14th&lt;br /&gt;
| Valentine&#039;s Day&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| March 3rd&lt;br /&gt;
| Hinamatsuri&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| April 1st&lt;br /&gt;
| School Entrance Ceremony&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| May 1st&lt;br /&gt;
| May Day&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| June 11th&lt;br /&gt;
| Unknown&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| July 7th&lt;br /&gt;
| Tanabata&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| August 21st&lt;br /&gt;
| Unknown&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| September 28th&lt;br /&gt;
| Diamond &amp;amp; Pearl release date&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| October 31st&lt;br /&gt;
| Halloween&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Novemeber 21st&lt;br /&gt;
| Ruby &amp;amp; Sapphire release date&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| December 24th&lt;br /&gt;
| Christmas Eve&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| December 25th&lt;br /&gt;
| Christmas&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Generation V===&lt;br /&gt;
Building on the mechanics introduced in HeartGold and SoulSilver, Generation V makes it possible for female Pokémon with a Hidden Ability to pass on their Hidden Ability to their offspring, unless the father is a Ditto. The Manaphy Egg is found [[List of Pokémon by index number (Generation V)|in the coding of Black and White]], but was not used.&lt;br /&gt;
&lt;br /&gt;
A significant change to the mechanics of [[Egg cycle]]s in Generation IV causes Eggs to hatch at earlier times; Eggs now hatch when their Egg cycle count drops from 1 to 0, rather than when it is 0 at the end of an Egg cycle, effectively reducing the number of Egg cycles that need to be walked by 1. The length of an Egg cycle was also increased from 255 to 257 steps, but this effect is overshadowed by the change in the hatching trigger.&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation V:&lt;br /&gt;
* {{p|Larvesta}}{{sup/5|BW}}: From a Treasure Hunter inside a building on {{rt|18|Unova}} (has the appearance of a {{tc|Pokémon Ranger}}).&lt;br /&gt;
* {{p|Happiny}}{{sup/5|B2W2}}: From a {{tc|Pokémon Breeder}} inside the eastern gate in [[Nacrene City]].&lt;br /&gt;
&lt;br /&gt;
===Generation VI===&lt;br /&gt;
Again expanding on mechanics from previous games, Generation VI builds upon the mechanics from Generation V by allowing mothers to pass on [[Egg Move]]s and [[Poké Ball]]s, removing the ability to pass on [[TM]]s and [[HM]]s from the father, and allowing any Pokémon to pass down Hidden Abilities when bred with Ditto. Another new mechanic is the ability for the parents to pass down five IVs if one of them holds a [[Destiny Knot]].&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Eggs can be obtained in Generation VI:&lt;br /&gt;
* {{p|Wynaut}}{{sup/6|ORAS}}: From an old hot-springs visitor in [[Lavaridge Town]].&lt;br /&gt;
* {{p|Togepi}}{{sup/6|ORAS}}: From an old hot-springs visitor in Lavaridge Town after defeating [[Primal Reversion|Primal]] {{p|Groudon}}{{sup/6|OR}}/{{p|Kyogre}}{{sup/6|AS}}.&lt;br /&gt;
These Eggs are obtained with an [[Egg cycle]] value of 70, higher than the same Egg would start with if it were obtained by breeding.&lt;br /&gt;
&lt;br /&gt;
===Generation VII===&lt;br /&gt;
&lt;br /&gt;
====Eggs available====&lt;br /&gt;
Aside from Eggs made by the player&#039;s Pokémon, the following Egg can be obtained in Generation VII:&lt;br /&gt;
* {{p|Eevee}}{{sup/7|SMUSUM}}: From a woman at the [[Pokémon Nursery]] in [[Paniola Ranch]].&lt;br /&gt;
&lt;br /&gt;
===Appearance===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{normal color dark}}; background: #{{normal color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 2g Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 3r Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 3e Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 4d Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 5b Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr b 5b Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:Spr 6x Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:HOME000.png|100px]]&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation II}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon Ruby and Sapphire Versions|Pokémon Ruby, Sapphire}}, {{color2|000|Pokémon FireRed and LeafGreen Versions|FireRed and LeafGreen}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon Emerald Version|Pokémon Emerald}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation IV}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation V}} (front)&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation V}} (back)&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Generation VI|Generations VI}} and {{color2|000|Generation VII|VII}}&lt;br /&gt;
| Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon HOME}}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:MS Egg II.png]] [[File:AniMS Egg II.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| [[File:EggMS III.png]]{{AniMS|Egg}}&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| {{bag|Mystery Egg}}&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{normal color dark}}; background: #{{grass color light}}; width:100px&amp;quot;| {{MS|Egg}}&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
| Menu sprites from&amp;lt;br&amp;gt;{{color2|000|Generation II}}&lt;br /&gt;
| Menu sprites from&amp;lt;br&amp;gt;{{color2|000|Generation III|Generations III}}, {{color2|000|Generation IV|IV}}, and {{color2|000|Generation V|V}}&lt;br /&gt;
| {{color2|000|Mystery Egg}} sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon HeartGold and SoulSilver Versions|HeartGold and SoulSilver}}&lt;br /&gt;
| Menu sprite from&amp;lt;br&amp;gt;{{color2|000|Generation VI|Generations VI}}, {{color2|000|Generation VII|VII}}, and {{color2|000|Generation VIII|VIII}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Manaphy Egg====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{water color dark}}; background: #{{water color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; | [[File:Spr 4d ManaphyEgg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; | [[File:Spr 5b ManaphyEgg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; | {{MS|ManaphyEgg}}{{AniMS|ManaphyEgg}}&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
| A {{pcolor|Manaphy|000}} Egg from&amp;lt;br&amp;gt;{{color2|000|Generation IV}}&lt;br /&gt;
| A {{pcolor|Manaphy|000}} Egg from&amp;lt;br&amp;gt;{{color2|000|Generation V}}&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg menu sprites from&amp;lt;br&amp;gt;{{color2|000|Generation IV|Generations IV}} and {{color2|000|Generation V|V}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Side games===&lt;br /&gt;
[[File:Hey You Pikachu Togepi Egg.png|thumb|right|A Togepi Egg]]&lt;br /&gt;
====Hey You, Pikachu!====&lt;br /&gt;
In [[Hey You, Pikachu!]], a Togepi Egg can be found and hatched while completing the Pokémon Picnic missions. In Japan, this game was released before the launch of Generation II, making it the first Egg to appear in a game.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Snap====&lt;br /&gt;
The Eggs of the [[Kanto]] [[Legendary birds]] appeared in {{g|Snap}}. This was the first appearance of Pokémon Eggs outside of Japan. These Eggs could be hatched by player interaction.&lt;br /&gt;
&lt;br /&gt;
* {{p|Articuno}}: This Egg is in the [[Pokémon Island Cave|Cave]] area. It is silver and has a crystalline form. It hatches with the aid of two dancing {{p|Jynx}}.&lt;br /&gt;
* {{p|Zapdos}}: This Egg is in the [[Pokémon Island Tunnel|Tunnel]] area. It is yellow with a jagged electric pattern on it. It hatches with the aid of a {{p|Pikachu}}&#039;s {{m|Thunderbolt}}.&lt;br /&gt;
* {{p|Moltres}}: This Egg is in the [[Pokémon Island Volcano|Volcano]] area. It is white with a red flame design on it. It hatches when a [[Pester Ball]] or an apple knocks it into the lava.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Articuno Egg Snap.png|Articuno Egg&lt;br /&gt;
File:Zapdos Egg Snap.png|Zapdos Egg&lt;br /&gt;
File:Moltres Egg Snap.png|Moltres Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Puzzle Challenge====&lt;br /&gt;
[[File:Puzzle Challenge Eggs.png|thumb|right|Eggs available in Puzzle Challenge]]&lt;br /&gt;
Four Eggs are available as unlockables in {{g|Puzzle Challenge}}; over time, they will hatch, and the Pokémon inside are only playable in Marathon mode.&lt;br /&gt;
* {{p|Magby}} is available after hatching the Fire Egg.&lt;br /&gt;
* {{p|Elekid}} is available after hatching the Lightning Egg.&lt;br /&gt;
* {{p|Igglybuff}} is available after hatching the Normal Circle Egg.&lt;br /&gt;
* {{p|Cleffa}} is available after hatching the Normal Star Egg.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Breeder mini====&lt;br /&gt;
[[File:Pokémon Breeder egg.png|thumb|120px|right|{{pkmn|Breeder mini}} Eggs]]&lt;br /&gt;
Three Eggs containing {{p|Treecko}}, {{p|Torchic}} and {{p|Mudkip}} are available for the player to choose between in {{g|Breeder mini}}. However, these Eggs have a generic appearance, rather than their individual designs present in other media.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Channel====&lt;br /&gt;
{{incomplete|section|images of the following Eggs: Azurill, Smoochum, Sentret, and Wynaut}}&lt;br /&gt;
In {{g|Channel}}, Pokémon Eggs appear on the &#039;&#039;Eggzamination: Hatch Up!&#039;&#039; channel, where the player can guess which Pokémon is within an Egg, and will win money if correct on hatching, which can take any time between 5 minutes to 24 hours. While some Pokémon hatch from plain white Eggs, a number of Eggs that have appeared in the anime are a main feature on the channel.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from their anime Eggs include {{p|Aipom}}, {{p|Azurill}}, {{p|Bellsprout}}, {{p|Cleffa}}, {{p|Hoppip}}, {{p|Igglybuff}}, {{p|Krabby}}, {{p|Ledyba}}, {{p|Magby}}, {{p|Mudkip}}, {{p|Phanpy}}, {{p|Pichu}}, {{p|Sentret}}, {{p|Slowpoke}}, {{p|Smoochum}}, {{p|Swinub}}, {{p|Teddiursa}}, {{p|Togepi}}, {{p|Torchic}}, {{p|Treecko}}, {{p|Wooper}}, and {{p|Wynaut}}.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from plain white Eggs include {{p|Bulbasaur}}, {{p|Chansey}}, {{p|Charmander}}, {{p|Chikorita}}, {{p|Corsola}}, {{p|Cubone}}, {{p|Diglett}}, {{p|Delibird}}, {{p|Eevee}}, {{p|Geodude}}, {{p|Goldeen}}, {{p|Hoothoot}}, {{p|Koffing}}, {{p|Mr. Mime}}, {{p|Natu}}, {{p|Poliwag}}, {{p|Psyduck}}, {{p|Remoraid}}, {{p|Shellder}}, {{p|Smeargle}}, {{p|Squirtle}}, {{p|Sudowoodo}}, {{p|Vulpix}}, and {{p|Zubat}}.&lt;br /&gt;
&amp;lt;!--Vulpix does have an anime Egg, but hatches from a WHITE Egg in Pokémon Channel--&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Blank Egg Channel.png|Generic Egg&lt;br /&gt;
File:Treecko Egg Channel.png|Treecko Egg&lt;br /&gt;
File:Torchic Egg Channel.png|Torchic Egg&lt;br /&gt;
File:Mudkip Egg Channel.png|Mudkip Egg&lt;br /&gt;
File:Swinub Egg Channel.png|Swinub Egg&lt;br /&gt;
File:Teddiursa Egg Channel.png|Teddiursa Egg&lt;br /&gt;
File:Cleffa Egg Channel.png|Cleffa Egg&lt;br /&gt;
File:Magby Egg Channel.png|Magby Egg&lt;br /&gt;
File:Slowpoke Egg Channel.png|Slowpoke Egg&lt;br /&gt;
File:Togepi Egg Channel.png|Togepi Egg&lt;br /&gt;
File:Krabby Egg Channel.png|Krabby Egg&lt;br /&gt;
File:Ledyba Egg Channel.png|Ledyba Egg&lt;br /&gt;
File:Wooper Egg Channel.png|Wooper Egg&lt;br /&gt;
File:Oddish Egg Channel.png|Oddish Egg&lt;br /&gt;
File:Hoppip Egg Channel.png|Hoppip Egg&lt;br /&gt;
File:Bellsprout Egg Channel.png|Bellsprout Egg&lt;br /&gt;
File:Igglybuff Egg Channel.png|Igglybuff Egg&lt;br /&gt;
File:Aipom Egg Channel.png|Aipom Egg&lt;br /&gt;
File:Pichu Egg Channel.png|Pichu Egg&lt;br /&gt;
File:Phanpy Egg Channel.png|Phanpy Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Pinball: Ruby &amp;amp; Sapphire====&lt;br /&gt;
[[File:Pinball RS Egg.png|thumb|right|Pinball RS Eggs]]&lt;br /&gt;
Eggs can be hatched while playing in Egg Mode in {{g|Pinball: Ruby &amp;amp; Sapphire}}. While playing on the [[Ruby Field]], hit {{p|Cyndaquil}} into the Egg stand three times to start heating the Egg. Hitting it once more will make the Egg hatch. Afterwards, sending the ball into the Egg stand again will lead to {{p|Aerodactyl}} or {{p|Totodile}} replacing the Egg. While playing on the [[Sapphire Field]], send the ball through the Egg Stand to turn on one of the lights. This only works by sending the ball up the lower Egg Loop and not through Spoink launching the ball. Once all four lights are lit, the Egg will hatch the next time the ball is sent through the Egg stand. Afterwards, sending the ball through the Egg stand once more makes a new Egg appear and the process starts over. After an Egg has been hatched it must be caught by hitting it twice with the {{i|Poké Ball}} in less than a minute, otherwise it will go back into the Egg Stand.&lt;br /&gt;
&lt;br /&gt;
====Pokémon Mystery Dungeon series====&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Pokémon Mystery Dungeon: Explorers of Time, Darkness]] and [[Pokémon Mystery Dungeon: Explorers of Sky|Sky]], the {{player}} can earn Eggs as a reward for missions with a reward listed as ???. Only one Egg can be kept at a time, and will be sent to [[Treasure Town#Chansey&#039;s Day Care|Chansey&#039;s Day Care]]. The Egg will hatch after a random number of days, at which point, the hatched Pokémon will ask to join the player&#039;s team, be at level 1, and know [[Egg Move]]s.&lt;br /&gt;
{{spoilers}}&lt;br /&gt;
A [[Wonder Egg]] can be found at the end of the [[Surrounded Sea]], which will hatch into {{p|Manaphy}} the next morning.&lt;br /&gt;
{{Endspoilers}}&lt;br /&gt;
&lt;br /&gt;
====Pokémon Battle Chess BW Version====&lt;br /&gt;
In [[Pokémon Battle Chess]] BW Version, a {{p|Victini}} Egg acts as the equivalent of a king piece in chess. The Egg can take three hits before it hatches, and Victini can take one before fainting. If this Victini faints, the controlling player loses. The Egg can still be moved even while unhatched, though only when it has been damaged at least once.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery perrow=3&amp;gt;&lt;br /&gt;
File:Egg Yellow Battle Chess.png|Untouched&lt;br /&gt;
File:Egg2 Yellow Battle Chess.png|Damaged once&lt;br /&gt;
File:Egg3 Yellow Battle Chess.png|Damaged twice&lt;br /&gt;
File:Egg Blue Battle Chess.png|Untouched&lt;br /&gt;
File:Egg2 Blue Battle Chess.png|Damaged once&lt;br /&gt;
File:Egg3 Blue Battle Chess.png|Damaged twice&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon Picross====&lt;br /&gt;
In [[Pokémon Picross]], a Pokémon Egg appeared as a puzzle in [[Pokémon Picross Stages#Area 00|Area 00-03]].&lt;br /&gt;
&lt;br /&gt;
====Pokémon GO====&lt;br /&gt;
:&#039;&#039;For current and historic lists of Eggs in {{g|GO}}, see [[list of Eggs in Pokémon GO]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In {{g|GO}}, a Pokémon Egg can be hatched by placing them inside an [[Egg Incubator]] and travelling a required distance. A player can hold a maximum of nine Eggs at once and cannot discard unhatched Eggs. The player&#039;s travel is only counted towards hatching an Egg at low speeds (i.e. walking and running speeds). [[Adventure Sync]] allows the player&#039;s walked distance to be tracked even while the app is closed; without it, only walking while the app is open counts towards hatching Eggs.&lt;br /&gt;
&lt;br /&gt;
There are four different distances which Eggs can require: 2&amp;amp;nbsp;km, 5&amp;amp;nbsp;km, 7&amp;amp;nbsp;km, and 10&amp;amp;nbsp;km. Starting October 25, 2016, Eggs are colored based on the total distance required to hatch them: 2&amp;amp;nbsp;km Eggs are white with green spots, 5&amp;amp;nbsp;km Eggs are colored white with yellow spots, 7&amp;amp;nbsp;km Eggs are yellow with pink spots, and 10&amp;amp;nbsp;km Eggs are white with purple spots. 7&amp;amp;nbsp;km Eggs were introduced on June 21, 2018, initially only being able to hatch into {{rf|Alolan|Form}}s, but the pool has since been expanded to include [[baby Pokémon]] as well.&lt;br /&gt;
&lt;br /&gt;
Eggs can be obtained in variety of ways.&lt;br /&gt;
* Spinning a [[PokéStop]] or {{OBP|Gym|GO}} has a chance of awarding the player a 2&amp;amp;nbsp;km, 5&amp;amp;nbsp;km, or 10&amp;amp;nbsp;km Egg.&lt;br /&gt;
* [[Gift]]s from {{OBP|Friends|GO}} have a chance of containing a 7&amp;amp;nbsp;km.&lt;br /&gt;
* Weekly [[Adventure Sync]] rewards may include Eggs. The player can obtain a 5&amp;amp;nbsp;km Egg for walking 25&amp;amp;nbsp;km and a 10&amp;amp;nbsp;km Egg for walking 50&amp;amp;nbsp;km.&lt;br /&gt;
&lt;br /&gt;
While it is not possible to know what will hatch from an Egg beforehand, an Egg&#039;s properties are determined at the time it is obtained (not when it is hatched). The hatched Pokémon&#039;s [[Power Up]] level will match the player&#039;s [[Trainer level]] at the time its Egg was obtained, capped at level 20. Its origin location will be the location at which the player obtained Egg; for Eggs obtained from Gifts, it will be the location at which the Friend obtained the Gift. Pokémon that are hatched from Eggs are guaranteed at least 10 {{IV}}s (out of the maximum 15) in each stat. Region-exclusive Pokémon can only be hatched from Eggs obtained in its respective region; only during the 2018 and 2019 Ultra Bonus events, region-exclusive Pokémon (i.e. {{p|Farfetch&#039;d}}, {{p|Kangaskhan}}, {{p|Mr. Mime}}, and {{p|Tauros}}) were obtainable worldwide from 7&amp;amp;nbsp;km Eggs. Although the possible pool of Pokémon obtainable from Eggs is occasionally updated, these changes do not affect Eggs that players already have on hand. &lt;br /&gt;
&lt;br /&gt;
Hatching Eggs is the only way to obtain baby Pokémon and the Alolan Forms of {{p|Sandshrew}}, {{p|Vulpix}}, {{p|Meowth}}, and {{p|Grimer}}. {{p|Shinx}}, {{p|Mawile}}, {{p|Absol}}, and {{p|Klink}} can only be obtained by hatching Eggs or from [[Raid Battle]]s. {{p|Nincada}}, which was previously exclusive to [[Field Research]], is currently exclusive to hatching Eggs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Originally, Egg distance corresponds to the number of [[Egg cycle]]s to hatch the Pokémon in the core series games. Pokémon which take 5 to 15 cycles require 2&amp;amp;nbsp;km in Pokémon GO, Pokémon which require 20 cycles (except [[starter Pokémon]] and Pokémon that have pre-evolutions in the core series) take 5&amp;amp;nbsp;km, and Pokémon which require 25 cycles or more take 10&amp;amp;nbsp;km (except Eevee). Starter Pokémon, and 20 cycle Pokémon that have pre-evolutions in the core series, take 2&amp;amp;nbsp;km to hatch rather than 5&amp;amp;nbsp;km. Additionally, while Eevee (which has 35 cycles in the core series) used to take 10&amp;amp;nbsp;km to hatch, it now only takes 5&amp;amp;nbsp;km.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
Upon hatching an Egg, a player will receive a random amount of {{OBP|Stardust|GO}} and [[Candy]] dependent on the Egg&#039;s distance. The number of Candy received directly corresponds to the amount of Stardust received.&lt;br /&gt;
* 2 to 7&amp;amp;nbsp;km: &amp;lt;code&amp;gt;Candy = floor(Stardust/75)&amp;lt;/code&amp;gt;&lt;br /&gt;
* 10&amp;amp;nbsp;km: &amp;lt;code&amp;gt;Candy = floor(Stardust/100)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background-color:#{{night color}}; border:3px solid #{{blue color light}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color: #{{blue color light}}; color:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Distance&lt;br /&gt;
! {{color2|fff|Stardust (GO)|Stardust}}&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | {{color2|fff|Candy}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! [[File:GO Egg 2 km.png|60px]]&amp;lt;br&amp;gt;2&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}400 - 800&lt;br /&gt;
| {{Candy}}5 - 10&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! [[File:GO Egg 5 km.png|60px]]&amp;lt;br&amp;gt;5&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}800 - 1600&lt;br /&gt;
| {{Candy}}10 - 21&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! [[File:GO Egg 7 km.png|60px]]&amp;lt;br&amp;gt;7&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}800 - 1600&lt;br /&gt;
| {{Candy}}10 - 21&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundybl|5px}}&amp;quot; | [[File:GO Egg 10 km.png|60px]]&amp;lt;br&amp;gt;10&amp;amp;nbsp;km&lt;br /&gt;
| {{Stardust}}1600 - 3200&lt;br /&gt;
| style=&amp;quot;{{roundybr|5px}}&amp;quot; | {{Candy}}16 - 32&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Breeding house Eggs.png|thumb|220px|Pokémon Eggs at a [[Pokémon Day Care|breeding house]] in &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;]]&lt;br /&gt;
The anime was where Pokémon Eggs made their debut, with {{Ash}}&#039;s find of an Egg in &#039;&#039;[[EP046|Attack of the Prehistoric Pokémon]]&#039;&#039;, predating Pokémon Snap by nearly a year. The Egg was kept safe by {{an|Brock}}, but unlike later episodes, was not kept in its own case.&lt;br /&gt;
&lt;br /&gt;
Later Eggs have all been shown to be kept in a [[Egg case|case]], which includes a {{i|Poké Ball}} for the baby to be put into upon hatching. Aside from Togepi&#039;s Egg, which hatched like an Egg would in the real world, later Eggs are shown to flash white before hatching, then to glow white and transform into the Pokémon they contain, slightly in the same way as [[Evolution|evolving]]. By &#039;&#039;[[Pokémon the Series: Black &amp;amp; White]]&#039;&#039;, hatching eggs would be depicted as glowing and the egg shell bursting open to reveal the young Pokémon, much like the games.&lt;br /&gt;
&lt;br /&gt;
In the episode &#039;&#039;[[EP263|Address Unown]]&#039;&#039;, it was revealed that Pokémon are able to see the world outside of their Eggs. More than that, Pokémon have been seen interacting from inside their Eggs—Manaphy had used {{m|Heart Swap}} on Team Rocket before it even hatched (it was also implied that it was the one who gave May the dream involving [[Samiya|the Sea Temple]]).&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[HS15|Putting the Air Back in Aerodactyl!]]&#039;&#039;, a fossilized {{p|Aerodactyl}} Egg is shown, and revealed to have been used in conjunction with an [[Old Amber]] to resurrect a living Aerodactyl.&lt;br /&gt;
&lt;br /&gt;
===Pokémon hatched from Eggs===&lt;br /&gt;
; [[Misty&#039;s Togepi]]&lt;br /&gt;
: This Egg was white with blue and red triangular spots. It was found by {{Ash}} deep in [[Grampa Canyon]] in &#039;&#039;[[EP046|Attack of the Prehistoric Pokémon]]&#039;&#039;. It was taken care of by {{an|Brock}} and, for a short period, by {{MTR}}. It hatched into a {{p|Togepi}} in &#039;&#039;[[EP050|Who Gets to Keep Togepi?]]&#039;&#039;. Since {{an|Misty}} was the first person it saw, the baby Pokémon thought she was its mother, and thus became hers.&lt;br /&gt;
; [[Ash&#039;s Phanpy]]&lt;br /&gt;
: This Egg was light blue with no designs. It was given to {{Ash}} as a prize for winning the [[Extreme Pokémon Race]] in &#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;. He took care of it himself, and it hatched into a {{p|Phanpy}} in &#039;&#039;[[EP230|Hatching a Plan!]]&#039;&#039;.&lt;br /&gt;
; [[Ash&#039;s Larvitar|Larvitar (anime)]]&lt;br /&gt;
: This Egg was jade green with no designs. It was given to {{Ash}} in &#039;&#039;[[EP257|Lapras of Luxury]]&#039;&#039;. It hatched into a {{p|Larvitar}} in &#039;&#039;[[EP258|Hatch Me If You Can!]]&#039;&#039;.&lt;br /&gt;
; [[Brock&#039;s Mudkip]]&lt;br /&gt;
: This Egg was never seen. Mudkip was one of the many Eggs given to [[Old Man Swamp]] to raise to be [[starter Pokémon]] for beginning Trainers of the [[Hoenn]] [[region]]. It was eventually given to Brock due to Mudkip being too strong for a new Trainer.&lt;br /&gt;
; [[Misty&#039;s Azurill]]&lt;br /&gt;
: This Egg was never seen. It was the offspring of [[Tracey&#039;s Marill]], and then {{Tracey}} gave it to {{an|Misty}} as mentioned in &#039;&#039;[[AG132|The Scheme Team!]]&#039;&#039;, when Azurill itself first appeared.&lt;br /&gt;
[[File:Eevee hatches.png|right|thumb|[[May&#039;s Eevee]] hatching from its Egg in &#039;&#039;[[AG157|Time Warp Heals All Wounds]]&#039;&#039;]]&lt;br /&gt;
; [[May&#039;s Eevee]]&lt;br /&gt;
: This Egg was brown with a cream-colored zigzag stripe around its middle. It was given to {{an|May}} by a day-care worker in &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;. She took care of it herself, and it hatched into an {{p|Eevee}} in &#039;&#039;[[AG157|Time-Warp Heals All Wounds]]&#039;&#039;.&lt;br /&gt;
; [[Manaphy (M09)|Manaphy]]&lt;br /&gt;
: This Egg was translucent blue with a red, yolk-like sphere and a ring of yellow dots inside of it. It was primary to the plot of &#039;&#039;[[M09|Pokémon Ranger and the Temple of the Sea]]&#039;&#039;. During the movie, while everyone was trying to protect the Egg, the center began to glow. When {{an|May}} caught it after being tossed into the air, it began to hatch into a {{p|Manaphy}}.&lt;br /&gt;
; [[Brock&#039;s Happiny]]&lt;br /&gt;
: This Egg was light pink with a white stripe around the center and a red top. It was won by {{an|Brock}} in the [[Pokémon Dress-Up Contest]] in &#039;&#039;[[DP033|All Dressed Up With Somewhere To Go!]]&#039;&#039;. He took care of it himself, and it hatched into a {{p|Happiny}} with the help of [[Nurse Joy]] in &#039;&#039;[[DP038|One Big Happiny Family!]]&#039;&#039;.&lt;br /&gt;
; [[Dawn&#039;s Cyndaquil]]&lt;br /&gt;
: {{an|Dawn}}&#039;s Egg obtained in &#039;&#039;[[DP143|An Egg Scramble!]]&#039;&#039; hatched into a baby Cyndaquil later in the episode. The Egg was mostly green, with a cream colored bottom and three red spots near the bottom.&lt;br /&gt;
; [[Iris&#039;s Axew]]&lt;br /&gt;
: This Egg was never seen. Axew was given to Iris prior to the start of the series a few days after he had hatched.&lt;br /&gt;
; [[Ash&#039;s Scraggy]]&lt;br /&gt;
: Ash&#039;s Egg obtained in &#039;&#039;[[BW012|Here Comes the Trubbish Squad!]]&#039;&#039; hatched into a baby {{p|Scraggy}} in &#039;&#039;[[BW017|Scraggy-Hatched to be Wild!]]&#039;&#039;. The Egg is similar to the ones seen in the games. However, it retains Scraggy&#039;s color scheme, being tan with brown spots.&lt;br /&gt;
; [[Ash&#039;s Noibat]]&lt;br /&gt;
: Ash&#039;s Noibat&#039;s Egg was found by his {{AP|Hawlucha}} in &#039;&#039;[[XY076|A Not-So-Flying Start!]]&#039;&#039;, and hatched in the same episode. It is lavender with purple markings that resemble a Noibat&#039;s ears.&lt;br /&gt;
; [[Ash&#039;s Froakie]]&lt;br /&gt;
: Ash&#039;s Froakie hatched offscreen. It was shown in a flashback in &#039;&#039;[[XY092|Cloudy Fate, Bright Future!]]&#039;&#039;. It is light blue with white markings that resemble a Froakie&#039;s hands.&lt;br /&gt;
; [[Ash&#039;s Rowlet]]&lt;br /&gt;
: Ash&#039;s Rowlet hatched offscreen. It was shown in a flashback in &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;. Very little of the egg was seen.&lt;br /&gt;
; [[Snowy]]&lt;br /&gt;
: An {{rf|Alolan}} Vulpix Egg was given to {{an|Lillie}} and her classmates to raise in &#039;&#039;[[SM008|Lillie&#039;s Egg-xhilarating Challenge!]]&#039;&#039;. It hatched in &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039; and Lillie caught it in the [[SM014|next episode]]. The Egg was white with a blue pattern that looked like flowers.&lt;br /&gt;
; [[Ash&#039;s Riolu]]&lt;br /&gt;
: Ash received this Egg from the [[Vermilion City]] [[Nurse Joy]] in [[JN021]]. It hatched later in the same episode. This Egg resembled the 10 km Eggs from [[Pokémon GO]], with a color scheme of white with light blue spots.&lt;br /&gt;
&amp;lt;!--Please do not add Eggs that haven&#039;t hatched yet here. This is for hatched Pokémon only.--&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Togepi Egg.png|[[Misty&#039;s Togepi]] Egg&lt;br /&gt;
File:Phanpy Egg.png|[[Ash&#039;s Phanpy]] Egg&lt;br /&gt;
File:Larvitar Egg.png|[[Ash&#039;s Larvitar]] Egg&lt;br /&gt;
File:May Eevee Egg.png|[[May&#039;s Eevee]] Egg&lt;br /&gt;
File:Manaphy Egg anime.png|{{OBP|Manaphy|M09}} Egg&lt;br /&gt;
File:Happiny Egg.png|[[Brock&#039;s Happiny]] Egg&lt;br /&gt;
File:Cyndaquil Egg.png|[[Dawn&#039;s Cyndaquil]] Egg&lt;br /&gt;
File:Scraggy Egg.png|[[Ash&#039;s Scraggy]] Egg&lt;br /&gt;
File:Ash Noibat Egg.png|[[Ash&#039;s Noibat]] Egg&lt;br /&gt;
File:Ash Froakie Egg.png|[[Ash&#039;s Froakie]] Egg&lt;br /&gt;
File:Pikipek Egg.png|[[Ash&#039;s Rowlet]] Egg (far back) among {{p|Pikipek}} Eggs&lt;br /&gt;
File:Lillie Egg.png|{{rf|Alolan}} {{p|Vulpix}} ([[Snowy]]) Egg&lt;br /&gt;
File:Ash Riolu Egg.png|[[Ash&#039;s Riolu]] Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Other Pokémon Eggs in the anime===&lt;br /&gt;
[[File:Mudkip hatching.png|200px|thumb|A {{p|Mudkip}} hatching from its Egg in &#039;&#039;[[AG025|A Mudkip Mission]]&#039;&#039;]]&lt;br /&gt;
* &#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;: An entire breeding house full of Eggs appeared in this episode. Several &amp;quot;dummy&amp;quot; Eggs were used in the race. A large number of the Egg varieties seen, both real and dummy, are unique to this episode. Some of the designs seen are similar to {{p|Beedrill}}, {{p|Farfetch&#039;d}}, {{p|Drowzee}}, {{p|Starmie}}, and {{p|Heracross}}, although Beedrill and Starmie usually cannot hatch from Eggs directly.&lt;br /&gt;
* &#039;&#039;[[AG025|A Mudkip Mission]]&#039;&#039;: This episode showed a home where baby {{p|Mudkip}} were bred and even showed one hatching and spraying May in the face. These Eggs were small and blue with orange spots.&lt;br /&gt;
* &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;: An entire breeding house full of Eggs appeared in this episode. Primarily, it featured an Egg of a {{p|Vulpix}} which was about to hatch, which was two shades of red with a design of curls separating the top from the bottom, reflecting the design of Vulpix&#039;s tails. Many other Eggs appeared in the breeding house. Based on the design, some of the other Eggs were identified as {{p|Aipom}}, {{p|Bellsprout}}, {{p|Chinchou}}, {{p|Cleffa}}, {{p|Elekid}}, {{p|Igglybuff}}, {{p|Ledyba}}, {{p|Magby}}, {{p|Pichu}}, {{p|Sandshrew}}, {{p|Sentret}}, {{p|Smoochum}}, {{p|Spinarak}}, {{p|Swinub}}, {{p|Teddiursa}}, and {{p|Wooper}}. A few of the designs were more difficult to distinguish than others.&lt;br /&gt;
* &#039;&#039;[[DP087|The Psyduck Stops Here!]]&#039;&#039;: {{p|Psyduck}} Eggs were seen in this episode and were the reason why the Psyduck were blocking the road. These Eggs were yellow with patterns that looked like Psyduck&#039;s feet.&lt;br /&gt;
* &#039;&#039;[[SM001|In Alola to New Adventure!]]&#039;&#039;: [[Samson Oak]] received this Vulpix Egg from his cousin, {{an|Professor Oak}}. In &#039;&#039;[[SM008|Lillie&#039;s Egg-xhilarating Challenge!]]&#039;&#039;, Samson offered Ash and his classmates the opportunity to raise either this Egg or a [[Snowy|white one]]. When the latter was chosen, Samson chose to raise the remaining Egg himself. In &#039;&#039;[[SM014|Getting to Know You!]]&#039;&#039;, it hatched into a Vulpix. Unlike the previous Vulpix Egg, this Vulpix Egg was orange in color.&lt;br /&gt;
* &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;: {{p|Pikipek}} Eggs were seen in this episode and were hatched alongside [[Ash&#039;s Rowlet]] by a {{p|Toucannon}}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Elekid Egg.png|An {{p|Elekid}} Egg in &#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;&lt;br /&gt;
File:Sentret Egg.png|A {{p|Sentret}} Egg in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Pichu Egg.png|A {{p|Pichu}} Egg in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Dummy Pokemon Eggs 1.png|&amp;quot;Dummy&amp;quot; Eggs in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Dummy Pokemon Eggs 2.png|&amp;quot;Dummy&amp;quot; Eggs in &#039;&#039;Extreme Pokémon!&#039;&#039;&lt;br /&gt;
File:Aipom Egg.png|An {{p|Aipom}} Egg in &#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;&lt;br /&gt;
File:Bellsprout Egg.png|A {{p|Bellsprout}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Chinchou Egg.png|A {{p|Chinchou}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Cleffa Egg.png|A {{p|Cleffa}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Igglybuff Egg.png|An {{p|Igglybuff}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Ledyba Egg.png|A {{p|Ledyba}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Magby Egg.png|A {{p|Magby}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Sandshrew Egg.png|A {{p|Sandshrew}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Smoochum Egg.png|A {{p|Smoochum}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Spinarak Egg.png|A {{p|Spinarak}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Swinub Egg.png|A {{p|Swinub}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Teddiursa Egg.png|A {{p|Teddiursa}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Wooper Egg.png|A {{p|Wooper}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Vulpix Egg.png|A {{p|Vulpix}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Slowpoke Egg.png|A {{p|Slowpoke}} Egg in &#039;&#039;May&#039;s Egg-Cellent Adventure&#039;&#039;&lt;br /&gt;
File:Psyduck Eggs.png|Three {{p|Psyduck}} with their Eggs in &#039;&#039;[[DP087|The Psyduck Stops Here!]]&#039;&#039;&lt;br /&gt;
File:Samson Egg.png|A {{p|Vulpix}} Egg in &#039;&#039;[[SM014|Getting to Know You!]]&#039;&#039;&lt;br /&gt;
File:Pikipek Egg.png|Five {{p|Pikipek}} Eggs and a {{p|Rowlet}} Egg in &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Gold Pichu Egg Golden Boys.png|thumb|200px|A Pichu Egg in the Pokémon Gold and Silver: The Golden Boys manga]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
* In &#039;&#039;[[PS013|Sigh for Psyduck]]&#039;&#039;, [[Mr. Fuji]]&#039;s deceased {{p|Doduo}} is shown hatching from an Egg in a photograph. Notably, this was before the concept of Pokémon Eggs was introduced, and the Egg seen in the photograph was more similar to a real-life bird egg.&lt;br /&gt;
* In &#039;&#039;[[PS101|Teddiursa&#039;s Picnic]]&#039;&#039;, {{adv|Gold}} received an Egg produced by [[Jasmine]]&#039;s two {{p|Togetic}}, which eventually hatched into a {{p|Togepi}}, nicknamed [[Togebo]].&lt;br /&gt;
* In &#039;&#039;[[PS160|Playful Porygon2]]&#039;&#039;, {{adv|Red}}&#039;s [[Pika]] and {{adv|Yellow}}&#039;s [[Chuchu]] produced an Egg, which later hatched into Gold&#039;s [[Pibu]].&lt;br /&gt;
* In &#039;&#039;[[PS380|Lucky Lucario II]]&#039;&#039;, [[Riley]]&#039;s {{p|Riolu}}&#039;s Egg was put inside a cavern as a final task for {{adv|Diamond}} during his training on [[Iron Island]]. It hatched soon after being found.&lt;br /&gt;
* In &#039;&#039;[[PS441|Alternate Dimension Showdown XI]]&#039;&#039;, Diamond was given a {{p|Manaphy}} Egg by {{adv|Looker}}, who had been entrusted with it during a mission in [[Fiore]]. The Egg later hatched into Manaphy at the [[Pokémon Day Care]]. Manaphy later produced an Egg that hatched into a {{p|Phione}}.&lt;br /&gt;
* In &#039;&#039;[[PS460|All About Arceus IX]]&#039;&#039;, Red&#039;s [[Snor]] and {{adv|Emerald}}&#039;s {{p|Snorlax}} were revealed to have produced an Egg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Mr Fuji Doduo Egg.png|[[Mr Fuji]]&#039;s {{p|Doduo}} hatching from its Egg&lt;br /&gt;
File:Togebo Egg.png|[[Togebo]]&#039;s Egg&lt;br /&gt;
File:Pibu Egg.png|[[Pibu]]&#039;s Egg held by {{adv|Gold}}&lt;br /&gt;
File:Day-Care Couple Azurill Wynaut Adventures.png|An {{p|Igglybuff}} Egg held by the [[Day Care Man]]&lt;br /&gt;
File:Riley Riolu Egg Adventures.png|Riley&#039;s {{p|Riolu}}&#039;s Egg&lt;br /&gt;
File:Roark Cranidos Egg Adventures.png|[[Roark&#039;s Cranidos]]&#039;s Egg&lt;br /&gt;
File:Manaphy Egg Adventures.png|{{p|Manaphy}} Egg&lt;br /&gt;
File:Phione Egg Adventures.png|{{p|Phione}}&#039;s Egg with Manaphy&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Diamond and Pearl Adventure! manga===&lt;br /&gt;
* [[Hareta]] received an Egg from his father, [[Kaisei]], at the end of &#039;&#039;[[DPA27|A Surprise Visit from Hareta&#039;s Father!]]&#039;&#039;. It hatched into a {{TP|Hareta|Minun}} in &#039;&#039;[[DPA30|The Anger of Legendary Pokémon Heatran]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Hareta Minun Egg.png|[[Hareta]]&#039;s {{TP|Hareta|Minun}} Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Gold &amp;amp; Silver: The Golden Boys manga===&lt;br /&gt;
* {{GnB|Gold}} received a Pokémon Egg from the [[Day-Care Couple]] in &#039;&#039;[[GB10|A Huge Mysterious Tree!!]]&#039;&#039;. It hatched into {{p|Pichu}} in &#039;&#039;[[GB16|The New Pokémon Is Hatched!!]]&#039;&#039;.&lt;br /&gt;
* {{GnB|Chris}} hatches a {{p|Togepi}} from an Egg that {{GnB|Gold}} delivered to [[Professor Elm]] in &#039;&#039;[[GB15|Escape From The Mystery Forest!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Chris Togepi Egg Golden Boys.png|{{GnB|Chris}}&#039;s {{p|Togepi}} Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the Pokémon Pocket Monsters manga===&lt;br /&gt;
* {{OBP|Red|Pocket Monsters}} hatched a {{TP|Red|Togepi}} Egg in &#039;&#039;[[PM066|Hatch the Pokémon Egg!!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Red Togepi Egg PM.png|Togepi Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
* {{TCG ID|Challenge from the|_____&#039;s Chansey|Darkness}}: Depicts a {{p|Chansey}} hatching from an Egg, as well as many other generic Eggs in the background.&lt;br /&gt;
* {{TCG ID|Neo Discovery|Fossil Egg|72}}: Used to hatch into any Pokémon that evolves from {{TCG ID|Fossil|Mysterious Fossil|62}}.&lt;br /&gt;
* {{TCG ID|Movie VS Pack|Manaphy&#039;s Egg|16}}: Used to hatch into [[Manaphy (TCG)#Sea&#039;s Manaphy|Sea&#039;s Manaphy]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* The color of a standard Pokémon Egg may be a reference to the standard {{smw|Yoshi Egg}}, as one of its early appearances was in &#039;&#039;{{smw|Yoshi (game)|Yoshi}}&#039;&#039;, a game also developed by [[Game Freak]].&lt;br /&gt;
* The Eggs of {{p|Elekid}} and {{p|Magby}} are the only Eggs whose designs depict those of the Pokémon&#039;s {{p|Electabuzz|evolved}} {{p|Magmar|form}}, rather than the Pokémon it directly hatches into.&lt;br /&gt;
* Aside from {{OBP|Manaphy|M09}}, which is {{pkmn2|Mythical}}, no anime Pokémon that has been seen hatching from an Egg is a Pokémon that is unable to evolve.&lt;br /&gt;
* Even though Eggs are incapable of battling, they have [[base stats]] programmed into the game. Each stat is 10.&lt;br /&gt;
** Through [[Pomeg glitch|a glitch]] in {{game|Emerald}} and [[Generation IV]], Eggs can actually battle in-game.&lt;br /&gt;
* In {{2v2|Ruby|Sapphire}}, there was a minor bug when Pokémon hatched from an Egg in another game was traded to either game. When done, the &amp;quot;Egg&amp;quot; that appears after the location where the Egg hatched in the summary will change to &amp;quot;met&amp;quot; when traded to Ruby or Sapphire. This bug was fixed in {{game|Emerald}}.&lt;br /&gt;
* Another issue with traded Eggs occurred in Generations III, IV, and V : When an Egg is generated, it is given the OT, ID, secret ID, and game identifier of the game which created it. This can cause an Egg which is traded to hatch {{Shiny}} and then be normally colored, or hatch normally colored, and then be Shiny. This is due to the change in OT, ID, and secret ID happening after the hatching cutscene.&lt;br /&gt;
** This issue is also present if a Pokémon is traded between the main and remake games of the third and fourth generations: the game identifier is never changed, meaning that an Azurill Egg generated in Ruby, but then traded to FireRed and hatched will, though identifying itself as having FireRed&#039;s player as its OT, still be marked as having been generated in Ruby. When transferred via Pal Park to Generation IV, it will say that it is from Hoenn, rather than Kanto, as this is determined not by [[List of locations by index number (Generation III)|index number]] of the location hatched, but by game identifier. In Generation IV, this occurs between Sinnoh and Johto games when Pokémon are transferred forward to Generation V. It cannot occur between Kanto/Hoenn and Johto/Sinnoh games, however, as Pokémon Eggs cannot be transferred via Pal Park.&lt;br /&gt;
** This issue was resolved in [[Generation VI]], where an Egg uses its current owner&#039;s OT, ID, secret ID, and game identifier while hatching.&lt;br /&gt;
* The DVs of the Pokémon hatched from the Odd Egg will always be either 0/2/10/10/10 if Shiny or all 0 if non-Shiny, regardless of language version. These are the lowest possible values in Generation II for any Shiny or non-Shiny Pokémon, respectively.&amp;lt;ref&amp;gt;[http://web.archive.org/web/20141231124858/http://upokecenter.dreamhosters.com/articles/pokemon-video-games/pokemon-crystal/pokemon-crystal-odd-egg/ Odd Egg - The Ultimate Pokémon Center (archive)]&amp;lt;/ref&amp;gt;&lt;br /&gt;
* The Odd Egg always hatches with 125 experience points. This matches the base [[experience]] for the {{cat|Pokémon in the Medium Fast experience group|Medium Fast}} experience group (which includes {{p|Pichu}}, {{p|Tyrogue}}, {{p|Smoochum}}, {{p|Elekid}} and {{p|Magby}} in this instance), but exceeds the base experience for the {{cat|Pokémon in the Fast experience group|Fast}} experience group. This makes it possible for a {{p|Cleffa}} or {{p|Igglybuff}} hatched from the Odd Egg to start with more experience points than it would normally have.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color dark}}&lt;br /&gt;
|ja=タマゴ &#039;&#039;Egg&#039;&#039;&lt;br /&gt;
|zh_yue=蛋 &#039;&#039;{{tt|Dáan|Egg}}&#039;&#039;&lt;br /&gt;
|zh_cmn=蛋 &#039;&#039;{{tt|Dàn|Egg}}&#039;&#039;&lt;br /&gt;
|da=Æg&lt;br /&gt;
|nl=Ei&lt;br /&gt;
|fi=Muna&lt;br /&gt;
|fr_eu=Œuf&lt;br /&gt;
|de=Ei&lt;br /&gt;
|hu=Tojás&lt;br /&gt;
|it=Uovo&lt;br /&gt;
|ko=알 &#039;&#039;Egg&#039;&#039;&lt;br /&gt;
|no=Egg&lt;br /&gt;
|pl=Jajo&lt;br /&gt;
|pt_br=Ovo&lt;br /&gt;
|ru=Яйцо &#039;&#039;Yaytso&#039;&#039;&lt;br /&gt;
|es_eu=Huevo&lt;br /&gt;
|sv=Ägg&lt;br /&gt;
|tr=Yumurta&lt;br /&gt;
|vi=Trứng Pokémon&lt;br /&gt;
|th=ไข่ &#039;&#039;Egg&#039;&#039;&lt;br /&gt;
|pt_eu=Ovo{{tt|*|Platinum manual}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* {{cat|Episodes in which a main character obtains a Pokémon Egg}}&lt;br /&gt;
* [[Lucky Egg]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon world]]&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
&lt;br /&gt;
[[de:Ei]]&lt;br /&gt;
[[es:Huevo Pokémon]]&lt;br /&gt;
[[fr:Œuf]]&lt;br /&gt;
[[it:Uova Pokémon]]&lt;br /&gt;
[[ja:タマゴ]]&lt;br /&gt;
[[zh:宝可梦的蛋]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Nomel_Berry&amp;diff=3180668</id>
		<title>Nomel Berry</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Nomel_Berry&amp;diff=3180668"/>
		<updated>2020-06-03T16:18:02Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Locations */ This Berry is not given by the Berry Master&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BerryPrevNext | prev=Rabuta | next=Spelon}}&lt;br /&gt;
{{BerryInfobox&lt;br /&gt;
|bnum=30&lt;br /&gt;
|name=Nomel&lt;br /&gt;
|jname=ノメル&lt;br /&gt;
|tmname=Nomel&lt;br /&gt;
|size=11.2&lt;br /&gt;
|sizecm=28.5&lt;br /&gt;
|firm=Super hard&lt;br /&gt;
|desc=Quite sour. Just one bite makes it impossible to taste for three days.&lt;br /&gt;
|desc4=This Berry is quite sour overall, with the sourness especially concentrated at the pointed end.&lt;br /&gt;
|d3=&amp;lt;sc&amp;gt;&amp;lt;sup&amp;gt;P&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;O&amp;lt;/sub&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;sup&amp;gt;K&amp;lt;/sup&amp;gt;&amp;lt;/sc&amp;gt;&amp;lt;sub&amp;gt;é&amp;lt;/sub&amp;gt;&amp;lt;sc&amp;gt;block&amp;lt;/sc&amp;gt; ingredient. Plant in loamy soil to grow &amp;lt;sc&amp;gt;Nomel&amp;lt;/sc&amp;gt;.{{sup/3|RSE}}&amp;lt;br/&amp;gt;Can be ground up into powder as an ingredient for medicine.{{sup/3|FRLG}}&amp;lt;br/&amp;gt;An item brought over from a faraway place.{{sup/ss|Colo}}{{sup/ss|XD}}&lt;br /&gt;
|d4=A Poffin ingredient. Bury it in soft soil to grow a Nomel Plant.{{sup/4|DPPt}}&amp;lt;br/&amp;gt;In the Sinnoh region, they like to make sweets known as Poffins with this Berry and feed them to their Pokémon.{{sup/4|HGSS}}&lt;br /&gt;
|d5=A Berry which is very rare in the Unova region. A [[Item maniac|maniac]] will buy it for a high price.&lt;br /&gt;
|d6=A Berry to be used in cooking. This Berry is very rare and hard to obtain in the Unova region.{{sup/6|XY}}&amp;lt;br&amp;gt;Used to make Pokéblocks that will enhance your Toughness, this Berry is rare in other regions.{{sup/6|ORAS}}&lt;br /&gt;
|d7=Used to make Pokéblocks that will enhance your Toughness, this Berry is rare in other regions.&lt;br /&gt;
|effect=[[Pokéblock]]/[[Poffin]] ingredient.&lt;br /&gt;
|nameor={{wp|Lemon}}&lt;br /&gt;
|grow3=24&lt;br /&gt;
|grow4=24&lt;br /&gt;
|scoop1=2&lt;br /&gt;
|stick1=2&lt;br /&gt;
|scoop2=1&lt;br /&gt;
|stick2=1&lt;br /&gt;
|scoop3=3&lt;br /&gt;
|stick3=3&lt;br /&gt;
|basis=Lemon&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|power={{tt|90|70 in Generations IV-V}}&lt;br /&gt;
|sour=+1&lt;br /&gt;
|spicy=+1&lt;br /&gt;
|bitter=-2&lt;br /&gt;
|spicytag=yes&lt;br /&gt;
|sourtag=yes&lt;br /&gt;
|sour4=20&lt;br /&gt;
|spicy4=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;Nomel Berry&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ノメルのみ&#039;&#039;&#039; &#039;&#039;Nomel Fruit&#039;&#039;) is a type of [[Berry]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Locations==&lt;br /&gt;
{{Berryloc |&lt;br /&gt;
RSE1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
RSE2=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
DPPt1=Sometimes found in [[Amity Square]] by a partner Pokémon. |&lt;br /&gt;
DPPt2=Sometimes given by a man in [[Amity Square]]{{sup/4|Pt}}. |&lt;br /&gt;
HGSS1=Given by a {{tc|Juggler}} in [[Fuchsia City]] in exchange for a [[Yellow Shard]]. |&lt;br /&gt;
Walk1=Rarely found in {{pw|White Lake}} after 2500+ steps. |&lt;br /&gt;
DW1=Can be found in the {{dwa|Dream Park}}. |&lt;br /&gt;
ORAS1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
ORAS2=Can be given by a fan after competing in a Hyper Rank [[Pokémon Contest|Pokémon Contest Spectacular]]. |&lt;br /&gt;
ORAS3=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Growth and harvest==&lt;br /&gt;
===Generation III===&lt;br /&gt;
A Nomel Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Nomel tree will yield 2-4 Berries.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
A Nomel Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Nomel tree will yield 2-10 Berries.&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
===Berry Blending===&lt;br /&gt;
{{BerryBlender|Olive|Olive|Olive}}&lt;br /&gt;
&lt;br /&gt;
===Berry Crushing===&lt;br /&gt;
At 100% performance, this Berry will contribute 300 units of powder.&lt;br /&gt;
&lt;br /&gt;
===Poffin Cooking===&lt;br /&gt;
At 100% performance, a Nomel Berry can produce a level 11 (probably higher) Spicy-Sour Poffin when cooking alone.&lt;br /&gt;
&lt;br /&gt;
==Artwork==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background: #{{black color dark}}; border: 5px solid #{{black color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| width=&amp;quot;160px&amp;quot; style=&amp;quot;background: #{{sour color}}; {{roundytop|5px}}&amp;quot; | [[File:Dream Nomel Berry Sprite.png]]&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;background: #{{spicy color light}}; {{roundybottom|5px}}&amp;quot; | {{color|{{spicy color dark}}|Dream World artwork}}&lt;br /&gt;
|}{{right clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Nomel Berry anime.png|thumb|250px|Nomel Berries in the {{pkmn|anime}}]]&lt;br /&gt;
The Nomel Berry had a minor appearance in &#039;&#039;[[AG090|Pokéblock, Stock, and Berry]]&#039;&#039;. Slices of it were handed out as free samples. {{AP|Pikachu}} liked it, but {{Ash}} was overwhelmed by its [[Flavor|sourness]].&lt;br /&gt;
&lt;br /&gt;
A Nomel Berry plant appeared in [[PK23]]. {{TP|Ash|Oshawott}} showed {{an|Meloetta}}, Pikachu, and {{AP|Snivy}} the plant in their search for a [[Rinka Berry]], certain that it was a Rinka plant. When they told Oshawott it was the wrong plant, Oshawott stubbornly ate a Nomel Berry, only to find it was too sour. {{MTR}} and {{TP|Jessie|Wobbuffet}}, who were following Meloetta, found the Berries and decided to eat them, only to be overwhelmed by its sourness.&lt;br /&gt;
&lt;br /&gt;
Nomel Berries were one of the many different kinds of Berries seen in &#039;&#039;[[SM025|A Team-on-Team Tussle!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Multiple Nomel Berries appeared in &#039;&#039;[[SM030|The Ol&#039; Raise and Switch!]]&#039;&#039;, as a part of a meal {{an|Lillie}} gave to Pikachu.&lt;br /&gt;
&lt;br /&gt;
A Nomel Berry appeared in [[SM064]], at the nest of a group of wild {{p|Passimian}}.&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Berries PS461 2.png|thumb|150px|A Nomel Berry in Pokémon Adventures]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
===={{chap|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
A Nomel Berry appeared in &#039;&#039;[[PS407|Chancing Upon Chingling]]&#039;&#039;, being one of the Berries that {{adv|Diamond}} and {{adv|Lax}} used to slip a {{tc|Galactic Grunt}} at the [[Team Galactic HQ]] so that Diamond could take his clothes and disguise himself as a Grunt.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Black &amp;amp; White}}====&lt;br /&gt;
A Nomel Berry appeared in &#039;&#039;[[PS461|Fussing and Fighting]]&#039;&#039; as a part of [[Professor Juniper]]&#039;s dinner.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Names==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{electric color light}}; border: 3px solid #{{sour color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Language&lt;br /&gt;
! Name&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Japanese&lt;br /&gt;
|ノメルのみ &#039;&#039;Nomel no Mi&#039;&#039;&lt;br /&gt;
|From &#039;&#039;lemon&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|English&lt;br /&gt;
|Nomel Berry&lt;br /&gt;
|From &#039;&#039;lemon&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|French&lt;br /&gt;
|Baie Tronci&lt;br /&gt;
|From &#039;&#039;citron&#039;&#039;, lemon&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|German&lt;br /&gt;
|Tronzibeere&lt;br /&gt;
|From &#039;&#039;Zitrone&#039;&#039;, lemon&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Italian&lt;br /&gt;
|Baccalemon&lt;br /&gt;
|From &#039;&#039;limone&#039;&#039;, lemon&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Spanish&lt;br /&gt;
|Baya Monli &lt;br /&gt;
|From &#039;&#039;limón&#039;&#039;, lemon&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Korean&lt;br /&gt;
|노멜열매 &#039;&#039;Nomel Yeolmae&#039;&#039;&lt;br /&gt;
|From 레몬 &#039;&#039;lemon&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Chinese ({{tt|Mandarin|Taiwan and Mainland China}})&lt;br /&gt;
|檬檸果 / 檬柠果 &#039;&#039;Méngníng Guǒ&#039;&#039;{{tt|*|Games}}&lt;br /&gt;
|From 檸檬 / 柠檬 &#039;&#039;níngméng&#039;&#039;, lemon&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|酸檸 &#039;&#039;Suānníng&#039;&#039;{{tt|*|Emerald Guidebook}}&lt;br /&gt;
|From 酸 &#039;&#039;suān&#039;&#039; (sour) and 檸檬 &#039;&#039;níngméng&#039;&#039; (lemon)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Chinese ({{tt|Cantonese|Hong Kong}})&lt;br /&gt;
|檬檸果 &#039;&#039;Mùhngnìhng Gwó&#039;&#039;&lt;br /&gt;
|From 檸檬 &#039;&#039;nìhngmùhng&#039;&#039;, lemon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{BerryPrevNext | prev=Rabuta | next=Spelon}}&lt;br /&gt;
{{Project BerryDexnotice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokéblock Berries]]&lt;br /&gt;
&lt;br /&gt;
[[de:Tronzibeere]]&lt;br /&gt;
[[es:Baya Monli]]&lt;br /&gt;
[[fr:Baie Tronci]]&lt;br /&gt;
[[it:Baccalemon]]&lt;br /&gt;
[[ja:ノメルのみ]]&lt;br /&gt;
[[zh:檬柠果（道具）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Rabuta_Berry&amp;diff=3180667</id>
		<title>Rabuta Berry</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Rabuta_Berry&amp;diff=3180667"/>
		<updated>2020-06-03T16:17:40Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Locations */ This Berry is not given by the Berry Master&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BerryPrevNext | prev=Magost | next=Nomel}}&lt;br /&gt;
{{BerryInfobox&lt;br /&gt;
|bnum=29&lt;br /&gt;
|name=Rabuta&lt;br /&gt;
|jname=ラブタ&lt;br /&gt;
|tmname=Rabuta&lt;br /&gt;
|size=8.9&lt;br /&gt;
|sizecm=22.6&lt;br /&gt;
|firm=Soft&lt;br /&gt;
|desc=A rare variety that is overgrown with hair. It is quite bitter.&lt;br /&gt;
|desc4=Even though it is bitter, it should be eaten peel and all. The hair on the peel cleans the stomach from the inside.&lt;br /&gt;
|d3=&amp;lt;sc&amp;gt;&amp;lt;sup&amp;gt;P&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;O&amp;lt;/sub&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;sup&amp;gt;K&amp;lt;/sup&amp;gt;&amp;lt;/sc&amp;gt;&amp;lt;sub&amp;gt;é&amp;lt;/sub&amp;gt;&amp;lt;sc&amp;gt;block&amp;lt;/sc&amp;gt; ingredient. Plant in loamy soil to grow &amp;lt;sc&amp;gt;Rabuta&amp;lt;/sc&amp;gt;.{{sup/3|RSE}}&amp;lt;br/&amp;gt;Can be ground up into powder as an ingredient for medicine.{{sup/3|FRLG}}&amp;lt;br/&amp;gt;An item brought over from a faraway place.{{sup/ss|Colo}}{{sup/ss|XD}}&lt;br /&gt;
|d4=A Poffin ingredient. Bury it in soft soil to grow a Rabuta Plant.{{sup/4|DPPt}}&amp;lt;br/&amp;gt;In the Sinnoh region, they like to make sweets known as Poffins with this Berry and feed them to their Pokémon.{{sup/4|HGSS}}&lt;br /&gt;
|d5=A Berry which is very rare in the Unova region. A [[Item maniac|maniac]] will buy it for a high price.&lt;br /&gt;
|d6=A Berry to be used in cooking. This Berry is very rare and hard to obtain in the Unova region.{{sup/6|XY}}&amp;lt;br&amp;gt;Used to make Pokéblocks that will enhance your Cleverness, this Berry is rare in other regions.{{sup/6|ORAS}}&lt;br /&gt;
|d7=Used to make Pokéblocks that will enhance your Cleverness, this Berry is rare in other regions.&lt;br /&gt;
|effect=[[Pokéblock]]/[[Poffin]] ingredient.&lt;br /&gt;
|nameor={{wp|Rambutan}}&lt;br /&gt;
|basis=Rambutan&lt;br /&gt;
|type=Ghost&lt;br /&gt;
|power={{tt|90|70 in Generations IV-V}}&lt;br /&gt;
|treeimage=Rabuta tree.gif&lt;br /&gt;
|grow3=24&lt;br /&gt;
|grow4=24&lt;br /&gt;
|scoop1=1&lt;br /&gt;
|stick1=1&lt;br /&gt;
|scoop2=3&lt;br /&gt;
|stick2=3&lt;br /&gt;
|scoop3=2&lt;br /&gt;
|stick3=2&lt;br /&gt;
|bitter=+1&lt;br /&gt;
|sour=+1&lt;br /&gt;
|sweet=-2&lt;br /&gt;
|bittertag=yes&lt;br /&gt;
|sourtag=yes&lt;br /&gt;
|bitter4=20&lt;br /&gt;
|sour4=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;Rabuta Berry&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ラブタのみ&#039;&#039;&#039; &#039;&#039;Rabuta Fruit&#039;&#039;) is a type of [[Berry]] that debuted in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Locations==&lt;br /&gt;
{{Berryloc |&lt;br /&gt;
RSE1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
RSE2=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
DPPt1=Sometimes found in [[Amity Square]] by a partner Pokémon. |&lt;br /&gt;
DPPt2=Sometimes given by a man in [[Amity Square]]{{sup/4|Pt}}. |&lt;br /&gt;
Walk1=Rarely found in {{pw|White Lake}} after 2000+ steps. |&lt;br /&gt;
ORAS1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
ORAS2=Can be given by a fan after competing in a Hyper Rank [[Pokémon Contest|Pokémon Contest Spectacular]]. |&lt;br /&gt;
ORAS3=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Growth and harvest==&lt;br /&gt;
===Generation III===&lt;br /&gt;
A Rabuta Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Rabuta tree will yield 2-4 Berries.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
A Rabuta Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Rabuta tree will yield 2-10 Berries.&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
===Berry Blending===&lt;br /&gt;
{{BerryBlender|LiteBlue|LiteBlue|LiteBlue}}&lt;br /&gt;
&lt;br /&gt;
===Berry Crushing===&lt;br /&gt;
At 100% performance, this Berry will contribute 300 units of powder.&lt;br /&gt;
&lt;br /&gt;
===Poffin Cooking===&lt;br /&gt;
At 100% performance, a Rabuta Berry can produce a Level 14 (maybe higher) Bitter-Sour Poffin.&lt;br /&gt;
&lt;br /&gt;
==Artwork==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background: #{{black color dark}}; border: 5px solid #{{black color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| width=&amp;quot;160px&amp;quot; style=&amp;quot;background: #{{bitter color}}; {{roundytop|5px}}&amp;quot; | [[File:Dream Rabuta Berry Sprite.png]]&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;background: #{{sour color light}}; {{roundybottom|5px}}&amp;quot; | {{color|{{sour color dark}}|Dream World artwork}}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Berries PS407.png|thumb|left|150px|A Rabuta Berry in Pokémon Adventures]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
A Rabuta Berry appeared in &#039;&#039;[[PS407|Chancing Upon Chingling]]&#039;&#039;, being one of the Berries that {{adv|Diamond}} and {{adv|Lax}} used to slip a {{tc|Galactic Grunt}} at the [[Team Galactic HQ]] so that Diamond could take his clothes and disguise himself as a Grunt.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Names==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{grass color light}}; border: 3px solid #{{bitter color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Language&lt;br /&gt;
! Name&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Japanese&lt;br /&gt;
| ラブタのみ &#039;&#039;Rabuta no Mi&#039;&#039;&lt;br /&gt;
| From ランブータン &#039;&#039;rambutan&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|English&lt;br /&gt;
|Rabuta Berry&lt;br /&gt;
|From &#039;&#039;rambutan&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|French&lt;br /&gt;
| Baie Rabuta &lt;br /&gt;
|From &#039;&#039;ramboutan&#039;&#039;, rambutan&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|German&lt;br /&gt;
| Rabutabeere &lt;br /&gt;
|From &#039;&#039;Rambutan&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Italian&lt;br /&gt;
|Baccambutan&lt;br /&gt;
|From &#039;&#039;rambutan&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Spanish&lt;br /&gt;
|Baya Rautan&lt;br /&gt;
|From &#039;&#039;rambután&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF;&amp;quot;&lt;br /&gt;
|Korean&lt;br /&gt;
|라부탐열매 &#039;&#039;Rabutam Yeolmae&#039;&#039;&lt;br /&gt;
|From 람부탄 &#039;&#039;rambutan&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Chinese ({{tt|Mandarin|Taiwan and Mainland China}})&lt;br /&gt;
|茸丹果 &#039;&#039;Rōngdān Guǒ&#039;&#039;{{tt|*|Games}}&lt;br /&gt;
|From 紅毛丹 / 红毛丹 &#039;&#039;hóngmáodān&#039;&#039; (rambutan) and 茸毛 &#039;&#039;róngmáo&#039;&#039; (fuzz)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|綠毛丹 &#039;&#039;Lǜmáodān&#039;&#039;{{tt|*|Emerald Guidebook}}&lt;br /&gt;
|From 綠 &#039;&#039;lǜ&#039;&#039; (green) and 紅毛丹 &#039;&#039;hóngmáodān&#039;&#039; (rambutan)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Chinese ({{tt|Cantonese|Hong Kong}})&lt;br /&gt;
|茸丹果 &#039;&#039;Yùhngdāan Gwó&#039;&#039;&lt;br /&gt;
|From 紅毛丹 &#039;&#039;hùhngmòuhdāan&#039;&#039; (rambutan) and 茸毛 &#039;&#039;yùhngmòu&#039;&#039; (fuzz)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{BerryPrevNext | prev=Magost | next=Nomel}}&lt;br /&gt;
{{Project BerryDexnotice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokéblock Berries]]&lt;br /&gt;
&lt;br /&gt;
[[de:Rabutabeere]]&lt;br /&gt;
[[es:Baya Rautan]]&lt;br /&gt;
[[fr:Baie Rabuta]]&lt;br /&gt;
[[it:Baccambutan]]&lt;br /&gt;
[[ja:ラブタのみ]]&lt;br /&gt;
[[zh:茸丹果（道具）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Magost_Berry&amp;diff=3180666</id>
		<title>Magost Berry</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Magost_Berry&amp;diff=3180666"/>
		<updated>2020-06-03T16:17:11Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Locations */ This Berry is not given by the Berry Master&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BerryPrevNext | prev=Cornn | next=Rabuta}}&lt;br /&gt;
{{BerryInfobox&lt;br /&gt;
|bnum=28&lt;br /&gt;
|name=Magost&lt;br /&gt;
|jname=ゴス&lt;br /&gt;
|tmname=Gosu&lt;br /&gt;
|size=5.5&lt;br /&gt;
|sizecm=14&lt;br /&gt;
|firm=Hard&lt;br /&gt;
|desc=A &amp;lt;sc&amp;gt;Berry&amp;lt;/sc&amp;gt; that is widely said to have a finely balanced flavor.&lt;br /&gt;
|desc4=The grown-up flavor and dreamy sweetness of this Berry make it a favorite of Pokémon everywhere.&lt;br /&gt;
|d3=&amp;lt;sc&amp;gt;&amp;lt;sup&amp;gt;P&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;O&amp;lt;/sub&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;sup&amp;gt;K&amp;lt;/sup&amp;gt;&amp;lt;/sc&amp;gt;&amp;lt;sub&amp;gt;é&amp;lt;/sub&amp;gt;&amp;lt;sc&amp;gt;block&amp;lt;/sc&amp;gt; ingredient. Plant in loamy soil to grow &amp;lt;sc&amp;gt;Magost&amp;lt;/sc&amp;gt;.{{sup/3|RSE}}&amp;lt;br/&amp;gt;Can be ground up into powder as an ingredient for medicine.{{sup/3|FRLG}}&amp;lt;br/&amp;gt;An item brought over from a faraway place.{{sup/ss|Colo}}{{sup/ss|XD}}&lt;br /&gt;
|d4=A Poffin ingredient. Bury it in soft soil to grow a Magost Plant.{{sup/4|DPPt}}&amp;lt;br/&amp;gt;In the Sinnoh region, they like to make sweets known as Poffins with this Berry and feed them to their Pokémon.{{sup/4|HGSS}}&lt;br /&gt;
|d5=A Berry which is very rare in the Unova region. A [[Item maniac|maniac]] will buy it for a high price.&lt;br /&gt;
|d6=A Berry to be used in cooking. This Berry is very rare and hard to obtain in the Unova region.{{sup/6|XY}}&amp;lt;br&amp;gt;Used to make Pokéblocks that will enhance your Cuteness, this Berry is rare in other regions. {{sup/6|ORAS}}&lt;br /&gt;
|d7=Used to make Pokéblocks that will enhance your Cuteness, this Berry is rare in other regions.&lt;br /&gt;
|effect=[[Pokéblock]]/[[Poffin]] ingredient.&lt;br /&gt;
|nameor={{wp|Mangosteen}}&lt;br /&gt;
|basis=Mangosteen&lt;br /&gt;
|type=Rock&lt;br /&gt;
|power={{tt|90|70 in Generations IV-V}}&lt;br /&gt;
|treeimage=Magost_tree.gif&lt;br /&gt;
|grow3=24&lt;br /&gt;
|grow4=24&lt;br /&gt;
|sweet=+1&lt;br /&gt;
|bitter=+1&lt;br /&gt;
|dry=-2&lt;br /&gt;
|scoop1=1&lt;br /&gt;
|stick1=1&lt;br /&gt;
|scoop2=2&lt;br /&gt;
|stick2=2&lt;br /&gt;
|scoop3=3&lt;br /&gt;
|stick3=3&lt;br /&gt;
|sweettag=yes&lt;br /&gt;
|bittertag=yes&lt;br /&gt;
|sweet4=20&lt;br /&gt;
|bitter4=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;Magost Berry&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ゴスのみ&#039;&#039;&#039; &#039;&#039;Gosu Fruit&#039;&#039;) is a type of [[Berry]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Locations==&lt;br /&gt;
{{Berryloc |&lt;br /&gt;
RSE1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
RSE2=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
DPPt1=Sometimes found in [[Amity Square]] by a partner Pokémon. |&lt;br /&gt;
DPPt2=Sometimes given by a man in [[Amity Square]]{{sup/4|Pt}}. |&lt;br /&gt;
Walk1=Rarely found in {{pw|White Lake}} after 1000+ steps. |&lt;br /&gt;
DW1=Can be found in the {{dwa|Rugged Mountain}}. | &lt;br /&gt;
ORAS1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
ORAS2=Can be given by a fan after competing in a Hyper Rank [[Pokémon Contest|Pokémon Contest Spectacular]]. |&lt;br /&gt;
ORAS3=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
ORAS4=Held by the traded {{p|Skitty}} in an [[in-game trade]] at [[Fortree City]]. |&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Growth and harvest==&lt;br /&gt;
===Generation III===&lt;br /&gt;
A Magost Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Magost tree will yield 2-4 Berries.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
A Magost Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Magost tree will yield 2-10 Berries.&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
===Berry Blending===&lt;br /&gt;
{{BerryBlender|Brown|Brown|Brown}}&lt;br /&gt;
&lt;br /&gt;
===Berry Crushing===&lt;br /&gt;
At 100% performance, this Berry will contribute 300 units of powder.&lt;br /&gt;
&lt;br /&gt;
===Poffin Cooking===&lt;br /&gt;
At 100% performance, a Magost Berry can produce a Level 14 (maybe higher) Sweet-Bitter Poffin when cooking alone.&lt;br /&gt;
&lt;br /&gt;
==Artwork==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background: #{{black color dark}}; border: 5px solid #{{black color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| width=&amp;quot;160px&amp;quot; style=&amp;quot;background: #{{sweet color}}; {{roundytop|5px}}&amp;quot; | [[File:Dream Magost Berry Sprite.png]]&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;background: #{{bitter color light}}; {{roundybottom|5px}}&amp;quot; | {{color|{{bitter color dark}}|Dream World artwork}}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Berries SM035.png|thumb|220px|left|Magost Berries in the {{pkmn|anime}}]]&lt;br /&gt;
Multiple Magost Berries, among many other Berries, appeared in &#039;&#039;[[SM035|Currying Favor and Flavor!]]&#039;&#039;. {{Ash}} and {{AP|Pikachu}} found them stashed inside a hollowed-out stump in [[Lush Jungle]] while looking for a [[Miracle Seed]] to be used as a dish ingredient.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Magost Berry Adventures.png|thumb|200px|A Magost Berry in Pokémon Adventures]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
===={{chap|Emerald}}====&lt;br /&gt;
In &#039;&#039;[[PS318|Sneaky Like Shedinja II]]&#039;&#039;, {{adv|Emerald}}&#039;s {{TP|Emerald|Sudowoodo}} made some Magost Berry juice for its {{pkmn|Trainer}} to drink.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
In &#039;&#039;[[PS358|Stunning Staravia &amp;amp; Stinky Skuntank I]]&#039;&#039;, a Magost Berry was one of the Berries that fell out of {{adv|Lax}}&#039;s fur when the [[Advanced level Grunt]]&#039;s {{p|Gible}} hit it with {{m|Dragon Rush}}.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Platinum}}====&lt;br /&gt;
In &#039;&#039;[[PS437|The Final Dimensional Duel VII]]&#039;&#039;, [[Jupiter]] used a Magost Berry to turn her {{p|Tangrowth}}&#039;s {{m|Natural Gift}} into a {{type|Rock}} move while battling against [[Marley]]&#039;s {{p|Arcanine}}.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Black &amp;amp; White}}====&lt;br /&gt;
A Magost Berry appeared in &#039;&#039;[[PS461|Fussing and Fighting]]&#039;&#039; as a part of [[Professor Juniper]]&#039;s dinner.&lt;br /&gt;
&lt;br /&gt;
==Names==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{psychic color light}}; border: 3px solid #{{sweet color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Language&lt;br /&gt;
! Name&lt;br /&gt;
! Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Japanese&lt;br /&gt;
|ゴスのみ &#039;&#039;Gosu no Mi&#039;&#039;&lt;br /&gt;
|From マンゴスチン &#039;&#039;mangosteen&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|English&lt;br /&gt;
|Magost Berry&lt;br /&gt;
|From &#039;&#039;mangosteen&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|French&lt;br /&gt;
|Baie Mangou &lt;br /&gt;
|From &#039;&#039;mangoustan&#039;&#039;, mangosteen&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|German&lt;br /&gt;
|Magostbeere &lt;br /&gt;
|From &#039;&#039;Mangostin&#039;&#039;, mangosteen&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Italian&lt;br /&gt;
|Baccagostan&lt;br /&gt;
|From &#039;&#039;mangostan&#039;&#039;, mangosteen&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Spanish&lt;br /&gt;
|Baya Aostan &lt;br /&gt;
|From &#039;&#039;mangostino&#039;&#039;, mangosteen&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Korean&lt;br /&gt;
|고스티열매 &#039;&#039;Gostee Yeolmae&#039;&#039;&lt;br /&gt;
|From 만고스틴 &#039;&#039;mangosteen&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Chinese ({{tt|Mandarin|Taiwan and Mainland China}})&lt;br /&gt;
|岳竹果 &#039;&#039;Yuèzhú Guǒ&#039;&#039;{{tt|*|Games}}&lt;br /&gt;
|From 山竹 &#039;&#039;shānzhú&#039;&#039; (mangosteen) and 山岳 &#039;&#039;shānyuè&#039;&#039; (mountain)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|甜山竹 &#039;&#039;Tiánshānzhú&#039;&#039;{{tt|*|Emerald Guidebook}}&lt;br /&gt;
|From 甜 &#039;&#039;tián&#039;&#039; (sweet) and 山竹 &#039;&#039;shānzhú&#039;&#039; (mangosteen)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Chinese ({{tt|Cantonese|Hong Kong}})&lt;br /&gt;
|岳竹果 &#039;&#039;Ngohkjūk Gwó&#039;&#039;&lt;br /&gt;
|From 山竹 &#039;&#039;sāanjūk&#039;&#039; (mangosteen) and 山岳 &#039;&#039;sāanngohk&#039;&#039; (mountain)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Vietnamese&lt;br /&gt;
|Quả Magost&lt;br /&gt;
|From its English name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{BerryPrevNext | prev=Cornn | next=Rabuta}}&lt;br /&gt;
{{Project BerryDexnotice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokéblock Berries]]&lt;br /&gt;
&lt;br /&gt;
[[de:Magostbeere]]&lt;br /&gt;
[[es:Baya Aostan]]&lt;br /&gt;
[[fr:Baie Mangou]]&lt;br /&gt;
[[it:Baccagostan]]&lt;br /&gt;
[[ja:ゴスのみ]]&lt;br /&gt;
[[zh:岳竹果（道具）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Cornn_Berry&amp;diff=3180665</id>
		<title>Cornn Berry</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Cornn_Berry&amp;diff=3180665"/>
		<updated>2020-06-03T16:16:44Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Locations */ This Berry is not given by the Berry Master&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BerryPrevNext | prev=Tamato | next=Magost}}&lt;br /&gt;
{{BerryInfobox&lt;br /&gt;
|bnum=27&lt;br /&gt;
|name=Cornn&lt;br /&gt;
|jname=モコシ&lt;br /&gt;
|tmname=Mokoshi&lt;br /&gt;
|size=3.0&lt;br /&gt;
|sizecm=7.5&lt;br /&gt;
|firm=Hard&lt;br /&gt;
|desc=A &amp;lt;sc&amp;gt;Berry&amp;lt;/sc&amp;gt; from an ancient era. May not grow unless planted in quantity.&lt;br /&gt;
|desc4=Its dryness is quite strong. As a result, its true deliciousness can&#039;t be appreciated by just eating one or two.&lt;br /&gt;
|d3=&amp;lt;sc&amp;gt;&amp;lt;sup&amp;gt;P&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;O&amp;lt;/sub&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;sup&amp;gt;K&amp;lt;/sup&amp;gt;&amp;lt;/sc&amp;gt;&amp;lt;sub&amp;gt;é&amp;lt;/sub&amp;gt;&amp;lt;sc&amp;gt;block&amp;lt;/sc&amp;gt; ingredient. Plant in loamy soil to grow &amp;lt;sc&amp;gt;Cornn&amp;lt;/sc&amp;gt;.{{sup/3|RSE}}&amp;lt;br/&amp;gt;Can be ground up into powder as an ingredient for medicine.{{sup/3|FRLG}}&amp;lt;br/&amp;gt;An item brought over from a faraway place.{{sup/ss|Colo}}{{sup/ss|XD}}&lt;br /&gt;
|d4=A Poffin ingredient. Bury it in soft soil to grow a Cornn Plant.{{sup/4|DPPt}}&amp;lt;br/&amp;gt;In the Sinnoh region, they like to make sweets known as Poffins with this Berry and feed them to their Pokémon.{{sup/4|HGSS}}&lt;br /&gt;
|d5=A Berry which is very rare in the Unova region. A [[Item maniac|maniac]] will buy it for a high price.&lt;br /&gt;
|d6=A Berry to be used in cooking. This Berry is very rare and hard to obtain in the Unova region.{{sup/6|XY}}&amp;lt;br/&amp;gt;Used to make Pokéblocks that will enhance your Beauty, this berry is rare in other regions.{{sup/6|ORAS}}&lt;br /&gt;
|d7=Used to make Pokéblocks that will enhance your Beauty, this Berry is rare in other regions.&lt;br /&gt;
|effect=[[Pokéblock]]/[[Poffin]] ingredient.&lt;br /&gt;
|nameor={{wp|Maize|Corn}}&lt;br /&gt;
|basis=Corn&lt;br /&gt;
|type=Bug&lt;br /&gt;
|power={{tt|90|70 in Generations IV-V}}&lt;br /&gt;
|treeimage=Cornn tree.gif&lt;br /&gt;
|grow3=24&lt;br /&gt;
|grow4=24&lt;br /&gt;
|scoop1=3&lt;br /&gt;
|stick1=3&lt;br /&gt;
|scoop2=2&lt;br /&gt;
|stick2=2&lt;br /&gt;
|scoop3=1&lt;br /&gt;
|stick3=1&lt;br /&gt;
|dry=+1&lt;br /&gt;
|sweet=+1&lt;br /&gt;
|spicy=-2&lt;br /&gt;
|drytag=yes&lt;br /&gt;
|sweettag=yes&lt;br /&gt;
|dry4=20&lt;br /&gt;
|sweet4=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;Cornn Berry&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;モコシのみ&#039;&#039;&#039; &#039;&#039;Mokoshi Fruit&#039;&#039;) is a type of [[Berry]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Locations==&lt;br /&gt;
{{Berryloc |&lt;br /&gt;
RSE1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
RSE2=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
DPPt1=Sometimes found in [[Amity Square]] by a partner Pokémon. |&lt;br /&gt;
DPPt2=Sometimes given by a man in [[Amity Square]]{{sup/4|Pt}}. |&lt;br /&gt;
HGSS1=Given by a {{tc|Juggler}} in [[Fuchsia City]] in exchange for a [[Blue Shard]]. |&lt;br /&gt;
Walk1=Very commonly found in {{pw|White Lake}} after 0+ steps.|&lt;br /&gt;
DW1=Can be found in the {{dwa|Rugged Mountain}}. |&lt;br /&gt;
ORAS1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
ORAS2=Can be given by a fan after competing in a Hyper Rank [[Pokémon Contest|Pokémon Contest Spectacular]]. |&lt;br /&gt;
ORAS3=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Growth and harvest==&lt;br /&gt;
===Generation III===&lt;br /&gt;
A Cornn Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Cornn tree will yield 2-4 Berries.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
A Cornn Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 24 hours, with 6 hours per stage. A Cornn tree will yield 2-10 Berries.&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
===Berry Blending===&lt;br /&gt;
{{BerryBlender|Indigo|Indigo|Indigo}}&lt;br /&gt;
&lt;br /&gt;
===Berry Crushing===&lt;br /&gt;
At 100% performance, a Cornn Berry will contribute 300 units of powder.&lt;br /&gt;
&lt;br /&gt;
===Poffin Cooking===&lt;br /&gt;
At 100% performance, a Cornn Berry can produce a Level 14 (maybe higher) Dry-Sweet Poffin when cooking alone.&lt;br /&gt;
&lt;br /&gt;
==Artwork==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background: #{{black color dark}}; border: 5px solid #{{black color}}&amp;quot;&lt;br /&gt;
| width=&amp;quot;160px&amp;quot; style=&amp;quot;background: #{{dry color}}; {{roundytop|5px}}&amp;quot; | [[File:Dream Cornn Berry Sprite.png]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background: #{{sweet color light}}; {{roundybottom|5px}}&amp;quot; | {{color|{{sweet color dark}}|Dream World artwork}}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Cornn Berry Adventures.png|thumb|left|100px|A Cornn Berry in Pokémon Adventures]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
In &#039;&#039;[[PS358|Stunning Staravia &amp;amp; Stinky Skuntank I]]&#039;&#039;, a Cornn Berry was one of the Berries that fell out of {{adv|Lax}}&#039;s fur when the [[Advanced level Grunt]]&#039;s {{p|Gible}} hit it with {{m|Dragon Rush}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Names==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{water color light}}; border: 3px solid #{{dry color}}&amp;quot;&lt;br /&gt;
! Language&lt;br /&gt;
! Name&lt;br /&gt;
! Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Japanese&lt;br /&gt;
| モコシのみ &#039;&#039;Mokoshi no Mi&#039;&#039;&lt;br /&gt;
| From モロコシ &#039;&#039;morokoshi&#039;&#039;, {{wp|Sorghum bicolor|sorghum}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| English&lt;br /&gt;
| Cornn Berry&lt;br /&gt;
| From &#039;&#039;corn&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| French&lt;br /&gt;
| Baie Siam&lt;br /&gt;
| From &#039;&#039;maïs&#039;&#039;, {{wp|maize}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| German&lt;br /&gt;
| Saimbeere&lt;br /&gt;
| From &#039;&#039;Mais&#039;&#039;, maize&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Italian&lt;br /&gt;
| Baccavena&lt;br /&gt;
| From the genus &#039;&#039;{{wp|Avena}}&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Spanish&lt;br /&gt;
| Baya Mais&lt;br /&gt;
| From &#039;&#039;maíz&#039;&#039;, maize&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Korean&lt;br /&gt;
| 수숙열매 &#039;&#039;Susuk Yeolmae&#039;&#039;&lt;br /&gt;
| From 수수 &#039;&#039;susu&#039;&#039; (蜀黍), sorghum&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | Chinese ({{tt|Mandarin|Taiwan and Mainland China}})&lt;br /&gt;
| 玉黍果 &#039;&#039;Yùshǔ Guǒ&#039;&#039;{{tt|*|Games}}&lt;br /&gt;
| From 玉米 &#039;&#039;yùmǐ&#039;&#039; (corn) and 蜀黍 &#039;&#039;shǔshǔ&#039;&#039; (sorghum)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 紫黍 &#039;&#039;Zǐshǔ&#039;&#039;{{tt|*|Emerald Guidebook}}&lt;br /&gt;
| From 紫 &#039;&#039;zǐ&#039;&#039; (purple) and 蜀黍 &#039;&#039;shǔshǔ&#039;&#039; (sorghum)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Chinese ({{tt|Cantonese|Hong Kong}})&lt;br /&gt;
| 玉黍果 &#039;&#039;Yuhksyú Gwó&#039;&#039;&lt;br /&gt;
| From 玉米 &#039;&#039;yuhkmáih &#039;&#039; (corn) and 蜀黍 &#039;&#039;suhksyú&#039;&#039; (sorghum)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{BerryPrevNext | prev=Tamato | next=Magost}}&lt;br /&gt;
{{Project BerryDexnotice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokéblock Berries]]&lt;br /&gt;
&lt;br /&gt;
[[de:Saimbeere]]&lt;br /&gt;
[[es:Baya Mais]]&lt;br /&gt;
[[fr:Baie Siam]]&lt;br /&gt;
[[it:Baccavena]]&lt;br /&gt;
[[ja:モコシのみ]]&lt;br /&gt;
[[zh:玉黍果（道具）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_212&amp;diff=3179276</id>
		<title>Sinnoh Route 212</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_212&amp;diff=3179276"/>
		<updated>2020-06-01T18:14:16Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Trivia */ added thunderstorm dates&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{incomplete|2=Missing manga and anime section}}&lt;br /&gt;
{{Route infobox&lt;br /&gt;
|number=212&lt;br /&gt;
|size=290&lt;br /&gt;
|image=Sinnoh Route 212 Pt.png&lt;br /&gt;
|imageIV=Sinnoh Route 212 Pt.png&lt;br /&gt;
|type={{#switch: {{#expr: {{#time: s}} mod 2}}|0=land|1=marsh}}&lt;br /&gt;
|east=Pastoria City&lt;br /&gt;
|north=Hearthome City&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|surf=yes&lt;br /&gt;
|cut=yes&lt;br /&gt;
|bike=yes&lt;br /&gt;
|generation=4&lt;br /&gt;
|mapdesc=A tall, sturdy wall surrounds an expansive estate that takes up nearly half of the road space.&amp;lt;br&amp;gt;Beyond the wall, one can see the stately Pokémon Mansion and the owner&#039;s prized garden behind it.&amp;lt;br&amp;gt;This path weaves among deep puddles made by the unending rainfall. It is wet and miserable for Trainers.&amp;lt;br&amp;gt;There is a house here whose residents offer to trade TMs for Red, Blue, Yellow, or Green Shards.{{sup/4|DP}}&amp;lt;br&amp;gt;There is a house here whose residents offer [[Move Tutor|tutor moves]] to your Pokémon for Red, Blue, Yellow, or Green Shards.{{sup/4|Pt}}&lt;br /&gt;
}}&lt;br /&gt;
[[File:Sinnoh Route 212 DP.png|thumb|Route 212 in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
&#039;&#039;&#039;Route 212&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;２１２ばんどうろ&#039;&#039;&#039; &#039;&#039;Route 212&#039;&#039;) is a route in south-central [[Sinnoh]], connecting [[Hearthome City]] and [[Pastoria City]]. This route features Sinnoh&#039;s {{si|Pokémon Mansion}}.&lt;br /&gt;
&lt;br /&gt;
In {{game|Diamond and Pearl|s}}, the north gate, connecting with [[Hearthome City]], is blocked off by a reporter and cameraman until the {{player}} visits [[Solaceon Town]]. In {{game|Platinum}}, the pair will continue to block it off until the player visits [[Pastoria City]].&lt;br /&gt;
&lt;br /&gt;
==Route description==&lt;br /&gt;
Most of this route is raining, much like {{rt|119|Hoenn}} in [[Generation III]]. Near the eastern end of the route is a house that has different people depending on the version. In {{game|Diamond and Pearl|s}}, there is a woman who used to work in [[Hoenn]]&#039;s [[Weather Institute]] who will trade [[TM]]s for [[weather]]-changing [[move]]s for [[shard]]s, while in {{game|Platinum}} one of the three [[Move Tutor|move tutors]] in this location, offering to tutor moves in exchange for shards. The route is also full of narrow paths suspended in the air. To get across them, the {{player}} has to ride a [[Bicycle]] over the narrow path. As the route approaches [[Pastoria City]], the player may get stuck in the [[marsh tile|marshy areas]].&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
===Northern area (clear)===&lt;br /&gt;
{{itlisth|land}}&lt;br /&gt;
{{Itemlist|Super Potion|In the bushes to the left of the entrance to the Mansion &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Pearl|In the bushes to the left of the entrance to the Mansion &#039;&#039;(hidden)&#039;&#039;|Pt=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Elixir|Behind the trainer tips sign south-west of the Mansion|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|TM Fire|West of the Pokémon Mansion (requires {{m|Cut}} or {{m|Surf}})|D=yes|P=yes|Pt=yes|display={{TM|11|Sunny Day}}}}&lt;br /&gt;
{{Itemlist|Rose Incense|West of the Pokémon Mansion (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Iron|West of the Pokémon Mansion (requires {{m|Surf}})|Pt=yes}}&lt;br /&gt;
{{Itemlist|Aspear Berry|Berry patch next to the Pokémon Mansion|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Sitrus Berry|Berry patch next to the Pokémon Mansion|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Great Ball|In one of the bushes in front of the right wall of the entrance to the Mansion grounds &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Ultra Ball|In one of the bushes in front of the right wall of the entrance to the Mansion grounds &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Green Shard|Just right of the Pokémon Mansion|Pt=yes}}&lt;br /&gt;
{{Itemlist|Lum Berry|West of the pond just north of the stairs leading to the southern area (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Tamato Berry|West of the pond just north of the stairs leading to the southern area (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{itlistfoot|land}}&lt;br /&gt;
&lt;br /&gt;
===Southern area (rainy)===&lt;br /&gt;
{{itlisth|marsh}}&lt;br /&gt;
{{Itemlist|TM Ice|Exchanged for 10 Green Shards at the shard collectors house|D=yes|P=yes|Pt=no|display={{TM|07|Hail}}}}&lt;br /&gt;
{{Itemlist|TM Fire|Exchanged for 10 Red Shards at the shard collectors house|D=yes|P=yes|Pt=no|display={{TM|11|Sunny Day}}}}&lt;br /&gt;
{{Itemlist|TM Water|Exchanged for 10 Blue Shards at the shard collectors house|D=yes|P=yes|Pt=no|display={{TM|18|Rain Dance}}}}&lt;br /&gt;
{{Itemlist|TM Rock|Exchanged for 10 Yellow Shards at the shard collectors house|D=yes|P=yes|Pt=no|display={{TM|37|Sandstorm}}}}&lt;br /&gt;
{{Itemlist|Heart Scale|In the swamp near the shard collectors house &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=no}}&lt;br /&gt;
{{Itemlist|Great Ball|East of the hidden Heart Scale &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Tiny Mushroom|On southwestern-most hill &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display=[[Tiny Mushroom|TinyMushroom]]}}&lt;br /&gt;
{{Itemlist|Big Mushroom|On the smallest hill inside the bicycle bridges complex &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Antidote|Far southwest corner of the route|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Full Heal|&lt;br /&gt;
*Southwestern-most corner of the route&lt;br /&gt;
*In the swamp southeast of Elixir &#039;&#039;(hidden)&#039;&#039;|Pt=yes|display=[[Full Heal]] ×2}}&lt;br /&gt;
{{Itemlist|Blue Shard|Several steps north of the southwestern-most corner of the map|Pt=yes}}&lt;br /&gt;
{{Itemlist|TM Bug|Alone in a small island, near the three fishermen|D=yes|P=yes|Pt=yes|display={{TM|62|Silver Wind}}}}&lt;br /&gt;
{{Itemlist|TM Poison|Southeast corner of the larger swamp|D=yes|P=yes|Pt=yes|display={{TM|06|Toxic}}}}&lt;br /&gt;
{{Itemlist|TM Poison|Behind a tree, in the middle of the square of logs and bridges (requires {{m|Surf}})|D=yes|P=yes|Pt=yes|display={{TM|84|Poison Jab}}}}&lt;br /&gt;
{{Itemlist|Protein|Beyond the southernmost Fisherman near two trees west (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Max Ether|Behind two trees after passing the three Fishermen (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Revive|&lt;br /&gt;
* Between the two hills in the larger swamp &#039;&#039;(hidden)&#039;&#039;&lt;br /&gt;
* Next to the northern hill connected by the easternmost log|D=yes|P=yes|Pt=yes|display=[[Revive]] ×2}}&lt;br /&gt;
{{Itemlist|X Sp. Atk|Near Scientist Shaun (requires {{m|Cut}})|D=yes|P=yes|display=[[X Sp. Atk|X Special]]}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Near Scientist Shaun (requires {{m|Cut}})|Pt=yes}}&lt;br /&gt;
{{Itemlist|Zinc|North-east of the shard collector&#039;s house (requires {{m|Cut}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Hyper Potion|In the swamp by the end of the route &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Ether|In the swamp by the end of the route &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Rare Candy|&lt;br /&gt;
*In the swamp, near Pastoria City &#039;&#039;(hidden)&#039;&#039;{{sup/4|DP}}&lt;br /&gt;
*In the swamp, south of Elixir &#039;&#039;(hidden)&#039;&#039;{{sup/4|Pt}}|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Dawn Stone|In the swamp, near Pastoria City &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Ultra Ball|In the swamp, near Pastoria City &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Max Repel|In the swamp, near the Move Tutor&#039;s house &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Elixir|Southwest of the Honey Tree|Pt=yes|d}}&lt;br /&gt;
{{Itemlist|Pecha Berry|Berry patch near Pastoria City|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Pinap Berry|Berry patch near Pastoria City|D=yes|P=yes|Pt=yes|display=[[Pinap Berry]] ×3}}&lt;br /&gt;
{{itlistfoot|marsh}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
===Northern area (clear)===&lt;br /&gt;
{{Catch/header|land}}&lt;br /&gt;
{{Catch/entry4|183|Marill|no|no|yes|Grass|21-23|25%|25%|45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|280|Ralts|no|no|yes|Grass|22|0%|10%|0%|type1=Psychic}}&lt;br /&gt;
{{Catch/entry4|281|Kirlia|no|no|yes|Grass|22-24|20%|10%|10%|type1=Psychic}}&lt;br /&gt;
{{Catch/entry4|315|Roselia|yes|yes|no|Grass|16-17|all=15%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|315|Roselia|no|no|yes|Grass|22-24|all=35%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|396|Starly|yes|yes|no|Grass|16|all=20%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|397|Staravia|yes|yes|no|Grass|17-18|15%|25%|5%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|397|Staravia|no|no|yes|Grass|21-23|20%|20%|10%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|402|Kricketune|yes|yes|no|Grass|17-19|20%|10%|30%|type1=Bug}}&lt;br /&gt;
{{Catch/entry4|406|Budew|yes|yes|no|Grass|16|all=30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entry4|054|Psyduck|yes|yes|no|Surf|20-40|all=90%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|054|Psyduck|no|no|yes|Surf|20-30|all=90%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|055|Golduck|yes|yes|yes|Surf|20-40|all=10%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entry4|129|Magikarp|yes|yes|yes|Fish Old|3-15|all=100%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|118|Goldeen|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|119|Seaking|yes|yes|yes|Fish Super|20-55|all=35%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|130|Gyarados|yes|yes|yes|Fish Super|30-55|all=65%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Special}}&lt;br /&gt;
{{Catch/entry4|235|Smeargle|yes|yes|no|Poké Radar|16|all=22%|type1=Normal}}&lt;br /&gt;
{{Catch/entry4|235|Smeargle|no|no|yes|Poké Radar|23|all=22%|type1=Normal}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
===Southern area (rainy)=== &lt;br /&gt;
{{Catch/header|marsh}}&lt;br /&gt;
{{Catch/entry4|194|Wooper|yes|yes|no|Grass|18|all=30%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry4|195|Quagsire|no|no|yes|Grass|24-26|all=30%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry4|315|Roselia|yes|yes|no|Grass|18-20|25%|25%|15%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|400|Bibarel|yes|yes|no|Grass|18-20|35%|35%|25%|type1=Normal|type2=Water}}&lt;br /&gt;
{{Catch/entry4|402|Kricketune|yes|yes|no|Grass|18|10%|10%|30%|type1=Bug}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|no|no|yes|Grass|23-25|all=15%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|no|no|yes|Grass|23-26|all=45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|453|Croagunk|no|no|yes|Grass|24-25|all=10%|type1=Poison|type2=Fighting}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entry4|072|Tentacool|no|no|yes|Surf|20-30|all=30%|type1=Water|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|073|Tentacruel|no|no|yes|Surf|20-40|all=1%|type1=Water|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|194|Wooper|yes|yes|no|Surf|20-40|all=90%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry4|195|Quagsire|yes|yes|no|Surf|20-40|all=10%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|no|no|yes|Surf|20-30|all=60%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|423E|Gastrodon|no|no|yes|Surf|20-40|all=9%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|no|no|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|339|Barboach|yes|yes|no|Fish Good|10-25|all=35%|type1=Water|type2=Ground}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|yes|Fish Super|30-55|all=65%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=35%|type1=Water|}}&lt;br /&gt;
{{catch/entry4|340|Whiscash|yes|yes|no|Fish Super|20-50|all=35%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/div|marsh|Special}}&lt;br /&gt;
{{Catch/entry4|023|Ekans|yes|yes|no|FR|18-20|all=8%|type1=Poison}}&lt;br /&gt;
{{Catch/entry4|023|Ekans|no|no|yes|FR|23-26|all=8%|type1=Poison}}&lt;br /&gt;
{{Catch/entry4|088|Grimer|yes|yes|no|Poké Radar|18-20|all=22%|type1=Poison}}&lt;br /&gt;
{{Catch/entry4|088|Grimer|no|no|yes|Poké Radar|24-26|all=22%|type1=Poison}}&lt;br /&gt;
{{Catch/entry4|270|Lotad|yes|yes|no|S|18|all=4%|type1=Water|type2=Grass}}&lt;br /&gt;
{{Catch/entry4|270|Lotad|no|no|yes|S|23|all=4%|type1=Water|type2=Grass}}&lt;br /&gt;
{{Catch/entry4|271|Lombre|yes|yes|no|S|20|all=4%|type1=Water|type2=Grass}}&lt;br /&gt;
{{Catch/entry4|271|Lombre|no|no|yes|S|26|all=4%|type1=Water|type2=Grass}}&lt;br /&gt;
{{Catch/footer|marsh}}&lt;br /&gt;
Additionally, each segment has one [[Honey Tree]] where wild Pokémon can appear.&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
===={{game|Diamond and Pearl|s}}====&lt;br /&gt;
{{trainerheader|land}}&lt;br /&gt;
{{Trainerdiv|land|Northern area (clear)}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Bobby|720&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|18|None|066|Machop|♂|18|None|36=モリツグ|37=Moritsugu}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Alex|720&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|18|None|066|Machop|♂|18|None|36=シュウヘイ|37=Shūhei}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Dylan|720&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|18|None|307|Meditite|♂|18|None|36=ケースケ|37=Keisuke}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Socialite.png|Socialite|Reina|3800&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Jeremy&amp;lt;/small&amp;gt;|1|315|Roselia|♀|19|None|36=ヨシノ|37=Yoshino|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Gentleman.png|Gentleman|Jeremy|3800&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Reina&amp;lt;/small&amp;gt;|1|441|Chatot|♂|19|None|36=サダミツ|37=Sadamitsu|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Caleb|760&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|17|None|307|Meditite|♂|19|None|36=エイタロウ|37=Eitarō}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Rich Boy.png|Rich Boy|Jason|3040&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Melissa&amp;lt;/small&amp;gt;|1|404|Luxio|♂|19|None|36=ユウスケ|37=Yūsuke}}&lt;br /&gt;
{{Trainerentry|Spr DP Lady.png|Lady|Melissa|3040&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Jason&amp;lt;/small&amp;gt;|1|427|Buneary|♀|19|None|36=ユリカ|37=Yurika|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|land|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Socialite.png|Socialite|Reina|{{tt|8000|First rematch}}/{{tt|12000|Second rematch}}|1|315|Roselia|♀|{{tt|40|First rematch}}/{{tt|60|Second rematch}}|None|36=ヨシノ|37=Yoshino|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Gentleman.png|Gentleman|Jeremy|{{tt|8000|First rematch}}/{{tt|12000|Second rematch}}|1|441|Chatot|♂|{{tt|40|First rematch}}/{{tt|60|Second rematch}}|None|36=サダミツ|37=Sadamitsu|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Lady.png|Lady|Melissa{{tt|*|First rematch}}|5000|1|427|Buneary|♀|31|None|36=ユリカ|37=Yurika|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Lady.png|Lady|Melissa|{{tt|7200|Second rematch}}/{{tt|9800|Third rematch}}|1|428|Lopunny|♀|{{tt|40|Second rematch}}/{{tt|60|Third rematch}}|None|36=ユリカ|37=Yurika|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|marsh|Southern area (rainy)}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Jeffrey|1260&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Allison&amp;lt;/small&amp;gt;|2|394|Prinplup|M|21|None|394|Prinplup|M|21|None|36=エイジ|37=Eiji}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger F.png|Pokémon Ranger|Allison|1260&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Jeffrey&amp;lt;/small&amp;gt;|2|190|Aipom|F|21|None|183|Marill|F|21|None|36=スズネ|37=Suzune|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Stefano|1008|1|064|Kadabra|M|21|None|36=ツトム|37=Tsutomu}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny|800&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|M|20|None|066|Machop|M|20|None|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Collector.png|Collector|Dominique|1216|3|074|Geodude|M|18|None|074|Geodude|M|17|None|074|Geodude|M|19|None|36=クリオ|37=Kurio}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Travis|544|4|339|Barboach|M|17|None|339|Barboach|M|18|None|422|Shellos|M|20|None|339|Barboach|M|17|None|36=トモユキ|37=Tomoyuki}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Cameron|608|2|118|Goldeen|M|19|None|339|Barboach|M|19|None|36=ノリカズ|37=Norikazu}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Juan|672|1|130|Gyarados|M|21|None|36=テルヒコ|37=Teruhiko}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa|608|2|118|Goldeen|F|19|None|418|Buizel|F|19|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Taylor|1260|2|404|Luxio|♂|21|None|418|Buizel|♂|21|None|36=ヨシノリ|37=Yoshinori|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun|912|2|063|Abra|♂|19|None|064|Kadabra|♂|19|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Sabrina|672|1|054|Psyduck|♀|21|None|36=ワカナ|37=Wakana}}&lt;br /&gt;
{{Trainerdiv|marsh|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger F.png|Pokémon Ranger|Allison{{tt|*|First rematch}}|1920|2|190|Aipom|F|30|None|183|Marill|F|32|None|36=スズネ|37=Suzune|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger F.png|Pokémon Ranger|Allison{{tt|*|Second rematch}}|2340|2|190|Aipom|F|41|None|184|Azumarill|F|39|None|36=スズネ|37=Suzune|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger F.png|Pokémon Ranger|Allison{{tt|*|Third rematch}}|3540|2|424|Ambipom|F|61|None|184|Azumarill|F|59|None|36=スズネ|37=Suzune|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny{{tt|*|First rematch}}|1200&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|M|28|None|067|Machoke|M|30|None|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny{{tt|*|Second rematch}}|1600&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|164|Noctowl|M|38|None|067|Machoke|M|40|None|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny{{tt|*|Third rematch}}|2200&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|164|Noctowl|M|53|None|068|Machamp|M|55|None|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa{{tt|*|First rematch}}|960|2|118|Goldeen|F|28|None|418|Buizel|F|30|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa{{tt|*|Second rematch}}|1216|2|119|Seaking|F|38|None|418|Buizel|F|38|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa{{tt|*|Third rematch}}|1696|2|119|Seaking|F|53|None|419|Floatzel|F|53|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Taylor{{tt|*|First rematch}}|1860|2|404|Luxio|♂|31|None|418|Buizel|♂|31|None|36=ヨシノリ|37=Yoshinori|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Taylor|{{tt|2400|Second rematch}}/{{tt|3600|Third|rematch}}|2|404|Luxio|♂|{{tt|40|Srcond rematch}}/{{tt|60|Third rematch}}|None|419|Floatzel|♂|{{tt|40|Second rematch}}/{{tt|60|Third rematch}}|None|36=ヨシノリ|37=Yoshinori|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun|{{tt|1440|First rematch}}/{{tt|1920|Second rematch}}|2|064|Kadabra|♂|{{tt|30|First rematch}}/{{tt|40|Second rematch}}|None|064|Kadabra|♂|{{tt|28|First rematch}}/{{tt|36|Second rematch}}|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun{{tt|*|Third rematch}}|2544|2|065|Alakazam|♂|53|None|065|Alakazam|♂|53|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|marsh}}&lt;br /&gt;
&lt;br /&gt;
===={{game|Platinum}}====&lt;br /&gt;
{{trainerheader|land}}&lt;br /&gt;
{{Trainerdiv|land|Northern area (clear)}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Bobby|1040&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|24|None|066|Machop|♂|26|None|36=モリツグ|37=Moritsugu}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Alex|1000&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|25|None|066|Machop|♂|25|None|36=シュウヘイ|37=Shūhei}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Dylan|960&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|26|None|066|Machop|♂|24|None|36=ケースケ|37=Keisuke}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Socialite.png|Socialite|Reina|5400&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Jeremy&amp;lt;/small&amp;gt;|1|315|Roselia|♀|27|36=ヨシノ|37=Yoshino|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Gentleman.png|Gentleman|Jeremy|5400&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Reina&amp;lt;/small&amp;gt;|1|441|Chatot|♂|27|36=サダミツ|37=Sadamitsu|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Caleb|1080&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|23|None|066|Machop|♂|27|None|36=エイタロウ|37=Eitarō}}&lt;br /&gt;
{{Trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Rich Boy.png|Rich Boy|Jason|4320&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Melissa&amp;lt;/small&amp;gt;|1|394|Prinplup|♂|27|None|36=ユウスケ|37=Yūsuke}}&lt;br /&gt;
{{Trainerentry|Spr DP Lady.png|Lady|Melissa|4320&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Jason&amp;lt;/small&amp;gt;|1|420|Cherubi|♀|27|36=ユリカ|37=Yurika|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|land|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Socialite.png|Socialite|Reina|{{tt|9000|First rematch}}/{{tt|12200|Second rematch}}|1|315|Roselia|♀|{{tt|45|First rematch}}/{{tt|61|Second rematch}}|36=ヨシノ|37=Yoshino|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Gentleman.png|Gentleman|Jeremy|{{tt|7000|First rematch}}/{{tt|9000|Second rematch}}/{{tt|12000|Third rematch}}|1|441|Chatot|♂|{{tt|35|First rematch}}/{{tt|45|Second rematch}}/{{tt|61|Third rematch}}|None|36=サダミツ|37=Sadamitsu|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|land}}&lt;br /&gt;
{{Trainerentry|Spr DP Lady.png|Lady|Melissa|{{tt|5600|First rematch}}/{{tt|7200|Second rematch}}|1|421|Cherrim|♀|{{tt|35|First rematch}}/{{tt|45|Second rematch}}|None|36=ユリカ|37=Yurika|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Lady.png|Lady|Melissa{{tt|*|First rematch}}|9280|3|187|Hoppip|♀|58|None|421|Cherrim|♀|58|None|182|Bellossom|♀|58|None|36=ユリカ|37=Yurika|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|marsh|Southern area (rainy)}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Jeffery|1860&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Allison&amp;lt;/small&amp;gt;|1|391|Monferno|♂|31|None|36=エイジ|37=Eiji}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger F.png|Pokémon Ranger|Allison|1740&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Jeffery&amp;lt;/small&amp;gt;|2|183|Marill|♀|29|None|470|Leafeon|♂|29|None|36=スズネ|37=Suzune|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Stefano|1440|1|064|Kadabra|♂|30|None|36=ツトム|37=Tsutomu}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny|1120&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|26|None|066|Machop|♂|28|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Collector.png|Collector|Dean|1728|2|197|Umbreon|♂|27|None|196|Espeon|♂|27|None|36=ゲンヤ|37=Gen&#039;ya}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Travis|800|4|339|Barboach|♂|24|None|339|Barboach|♂|25|None|339|Barboach|♂|25|None|130|Gyarados|♂|26|None|36=トモユキ|37=Tomoyuki}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Josh|864|2|118|Goldeen|♂|27|None|118|Goldeen|♂|27|None|36=ノリカズ|37=Norikazu}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Juan|928|1|130|Gyarados|♂|29|None|36=テルヒコ|37=Teruhiko}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa|864|2|118|Goldeen|♀|27|None|400|Bibarel|♀|27|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Taylor|1800|2|455|Carnivine|♂|28|None|404|Luxio|♂|30|None|36=ヨシノリ|37=Yoshinori|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun|1248|2|081|Magnemite||30|None|064|Kadabra|♂|26|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Sabrina|896|2|194|Wooper|♀|26|None|195|Quagsire|♀|28|None|36=ワカナ|37=Wakana}}&lt;br /&gt;
{{Trainerdiv|marsh|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger F.png|Pokémon Ranger|Allison|{{tt|2100|First rematch}}/{{tt|2700|Second rematch}}/{{tt|3660|Third rematch}}|2|184|Azumarill|♀|{{tt|35|First rematch}}/{{tt|45|Second rematch}}/{{tt|61|Third rematch}}|None|470|Leafeon|♂|{{tt|35|First rematch}}/{{tt|45|Second rematch}}/{{tt|61|Third rematch}}|None|36=スズネ|37=Suzune|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny{{tt|*|First rematch}}|1360&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|163|Hoothoot|♂|32|None|067|Machoke|♂|34|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny{{tt|*|Second rematch}}|1760&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|164|Noctowl|♂|42|None|067|Machoke|♂|44|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Officer.png|Policeman|Danny{{tt|*|Third rematch}}|2120&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;[[Time|Night]] only&amp;lt;/small&amp;gt;|2|164|Noctowl|♂|51|None|068|Machamp|♂|53|36=マサヨシ|37=Masayoshi|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa{{tt|*|First rematch}}|1056|2|118|Goldeen|♀|33|None|400|Bibarel|♀|33|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa{{tt|*|Second rematch}}|1344|3|450|Hippowdon|♀|42|None|400|Bibarel|♀|42|None|119|Seaking|♀|42|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Parasol Lady.png|Parasol Lady|Alexa{{tt|*|Third rematch}}|1600|4|450|Hippowdon|♀|50|None|400|Bibarel|♀|50|None|226|Mantine|♀|50|None|119|Seaking|♀|50|None|36=シズエ|37=Shizue|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Taylor|{{tt|2160|First rematch}}/{{tt|2760|Second rematch}}|2|455|Carnivine|♂|{{tt|34|First rematch}}/{{tt|44|Second rematch}}|None|405|Luxray|♂|{{tt|36|First rematch}}/{{tt|46|Second rematch}}|None|36=ヨシノリ|37=Yoshinori|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Pokémon Ranger M.png|Pokémon Ranger|Taylor{{tt|*|Third rematch}}|3480|3|455|Carnivine|♂|60|None|405|Luxray|♂|62|None|087|Dewgong|♂|58|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|marsh}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun{{tt|*|First rematch}}|1536|2|081|Magnemite|-|36|None|064|Kadabra|♂|32|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun{{tt|*|Second rematch}}|2016|2|082|Magneton|-|46|None|064|Kadabra|♂|42|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Scientist.png|Scientist|Shaun{{tt|*|Third rematch}}|2448|2|082|Magneton|-|55|None|065|Alakazam|♂|51|None|36=トシアキ|37=Toshiaki|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|marsh}}&lt;br /&gt;
&lt;br /&gt;
==[[Trainer Tips]]==&lt;br /&gt;
{{sign|DPtip|header}}&lt;br /&gt;
{{sign|DPtip|title|Trainer Tips}}&lt;br /&gt;
{{sign|DPtip|The items in the Bag can be}}&lt;br /&gt;
{{sign|DPtip|reorganized by pressing &amp;lt;sc&amp;gt;Select&amp;lt;/sc&amp;gt;.}}&lt;br /&gt;
{{sign|DPtip|footer}}&lt;br /&gt;
&lt;br /&gt;
{{sign|DPtip|header}}&lt;br /&gt;
{{sign|DPtip|title|Trainer Tips}}&lt;br /&gt;
{{sign|DPtip|If you get stuck in the bog, you can}}&lt;br /&gt;
{{sign|DPtip|count on being there for a while.}}&lt;br /&gt;
{{sign|DPtip|There&#039;s no need to panic.}}&lt;br /&gt;
{{sign|DPtip|Just struggle and squirm for a bit.}}&lt;br /&gt;
{{sign|DPtip|Bicycles cannot be ridden on marshy}}&lt;br /&gt;
{{sign|DPtip|ground, incidentally.}}&lt;br /&gt;
{{sign|DPtip|footer}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* The north-south then east-west directional layout of Route 212 is somewhat similar to [[Hoenn]] Routes {{rtn|120|Hoenn}} and {{rtn|121|Hoenn}}.&lt;br /&gt;
* On January 5th, June 8th, June 29th, September 2nd, September 29th, December 24th and December 31st, the southern end of Route 212 will experience a thunderstorm.&lt;br /&gt;
** This is similar to {{rt|119|Hoenn}}&#039;s weather, though Route 119 is on a four-day cycle whereas Route 212 is not.&lt;br /&gt;
* This is the longest route in [[Sinnoh]], being seven blocks large on the Town Map. This is only if [[Seabreak Path]] is not considered a [[route]], as it is eight blocks long.&lt;br /&gt;
* The south section of Route 212 will not have rain on May 1 in Diamond and Pearl, although it will still be raining in Platinum.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Move Tutor]]&lt;br /&gt;
&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Routes notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Sinnoh locations|Route 212]]&lt;br /&gt;
[[Category:Routes|Route 212]]&lt;br /&gt;
[[Category:Diamond and Pearl locations|Route 212]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Route 212 (Sinnoh)]]&lt;br /&gt;
[[es:Ruta 212]]&lt;br /&gt;
[[fr:Route 212]]&lt;br /&gt;
[[it:Percorso 212 (Sinnoh)]]&lt;br /&gt;
[[ja:212ばんどうろ (シンオウ地方)]]&lt;br /&gt;
[[zh:２１２号道路（神奥）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Illuminate_(Ability)&amp;diff=3177070</id>
		<title>Illuminate (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Illuminate_(Ability)&amp;diff=3177070"/>
		<updated>2020-05-30T10:27:08Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Outside of battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Illuminate&lt;br /&gt;
|jpname=はっこう&lt;br /&gt;
|jptranslit=Hakkō&lt;br /&gt;
|jptrans=Luminescence&lt;br /&gt;
|colorscheme=electric&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Encounter rate increases. &lt;br /&gt;
|text4=Raises the likelihood of meeting wild Pokémon.&lt;br /&gt;
|text5=Raises the likelihood of meeting wild Pokémon.&lt;br /&gt;
|text6=Raises the likelihood of meeting wild Pokémon.&lt;br /&gt;
|text7=Raises the likelihood of meeting wild Pokémon by illuminating the surroundings. &lt;br /&gt;
|text8=Raises the likelihood of meeting wild Pokémon by illuminating the surroundings.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Illuminate&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;はっこう&#039;&#039;&#039; &#039;&#039;Luminescence&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
Illuminate has no effect during battle.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
If a Pokémon with Illuminate is in the first place in the [[party]] (even if [[fainting|fainted]]), the wild Pokémon encounter rate increases by 100%. From {{game|Emerald}} onwards, it shares this trait with {{a|Arena Trap}} and {{a|No Guard}}.&lt;br /&gt;
&lt;br /&gt;
==Pokémon with Illuminate==&lt;br /&gt;
{{Ability/head|Electric}}&lt;br /&gt;
{{Ability/entry|120|Staryu|Water|Water|Illuminate|Natural Cure|Analytic}}&lt;br /&gt;
{{Ability/entry|121|Starmie|Water|Psychic|Illuminate|Natural Cure|Analytic}}&lt;br /&gt;
{{Ability/entry|170|Chinchou|Water|Electric|Volt Absorb|Illuminate|Water Absorb}}&lt;br /&gt;
{{Ability/entry|171|Lanturn|Water|Electric|Volt Absorb|Illuminate|Water Absorb}}&lt;br /&gt;
{{Ability/entry|313|Volbeat|Bug|Bug|Illuminate|Swarm|Prankster}}&lt;br /&gt;
{{Ability/entry|505|Watchog|Normal|Normal|Illuminate|Keen Eye|Analytic}}&lt;br /&gt;
{{Ability/entry|755|Morelull|Grass|Fairy|Illuminate|Effect Spore|Rain Dish}}&lt;br /&gt;
{{Ability/entry|756|Shiinotic|Grass|Fairy|Illuminate|Effect Spore|Rain Dish}}&lt;br /&gt;
{{Ability/foot|Electric}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Prior to {{g|Super Mystery Dungeon}}, a Pokémon with Illuminate &amp;quot;blinks&amp;quot; after a turn in which it was damaged. The &amp;quot;blink&amp;quot; summons a hostile Pokémon somewhere on the floor.&lt;br /&gt;
&lt;br /&gt;
In {{g|Super Mystery Dungeon}}, the Pokémon obtains the Decoy [[Status conditions in the Mystery Dungeon series|status]] after using an illuminating move. The Decoy status makes enemies preferentially attack the Pokémon instead of other allies.&lt;br /&gt;
&lt;br /&gt;
====Affected moves====&lt;br /&gt;
The table below lists the moves affected by Illuminate, as well as the Pokémon that can have Illuminate and learn those moves.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #{{electric color light}}; border: 5px solid #{{electric color}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; class=&amp;quot;sortable&amp;quot; style=&amp;quot;margin:auto; background: #FFFFFF; border:1px solid #{{electric color light}}; border-collapse:collapse;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #{{electric color light}};&amp;quot;&lt;br /&gt;
! {{color2|000|Move}}&lt;br /&gt;
! {{color2|000|Type}}&lt;br /&gt;
! {{color2|000|Damage category|Cat.}}&lt;br /&gt;
! Pow.&lt;br /&gt;
! Acc.&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot; | Learned by&lt;br /&gt;
{{Movelist|Confuse Ray|Ghost|cat=Status|—|100|{{MSP|120|Staryu}}{{MSP|121|Starmie}}{{MSP|170|Chinchou}}{{MSP|171|Lanturn}}{{MSP|313|Volbeat}}{{MSP|505|Watchog}}}}&lt;br /&gt;
{{Movelist|Dazzling Gleam|Fairy|cat=Special|80|100|{{MSP|120|Staryu}}{{MSP|121|Starmie}}{{MSP|170|Chinchou}}{{MSP|171|Lanturn}}{{MSP|313|Volbeat}}}}&lt;br /&gt;
{{Movelist|Flash|Normal|cat=Status|—|100|{{MSP|120|Staryu}}{{MSP|121|Starmie}}{{MSP|170|Chinchou}}{{MSP|171|Lanturn}}{{MSP|313|Volbeat}}{{MSP|505|Watchog}}}}&lt;br /&gt;
{{Movelist|Light Screen|Psychic|cat=Status|—|—|{{MSP|120|Staryu}}{{MSP|121|Starmie}}{{MSP|313|Volbeat}}{{MSP|505|Watchog}}}}&lt;br /&gt;
{{Movelist|Luster Purge|Psychic|cat=Special|70|100|{{MS|000}}}}&lt;br /&gt;
{{Movelist|Moonlight|Fairy|cat=Status|—|—|{{MSP|313|Volbeat}}}}&lt;br /&gt;
{{Movelist|Morning Sun|Normal|cat=Status|—|—|{{MS|000}}}}&lt;br /&gt;
{{Movelist|Solar Beam|Grass|cat=Special|120|100|{{MSP|313|Volbeat}}}}&lt;br /&gt;
{{Movelist|Shock Wave|Electric|cat=Special|60|—|{{MSP|170|Chinchou}}{{MSP|171|Lanturn}}{{MSP|313|Volbeat}}{{MSP|505|Watchog}}}}&lt;br /&gt;
{{Movelist|Spark|Electric|cat=Physical|65|100|{{MSP|170|Chinchou}}{{MSP|171|Lanturn}}}}&lt;br /&gt;
{{Movelist|Tail Glow|Bug|cat=Status|—|—|{{MSP|313|Volbeat}}}}&lt;br /&gt;
{{Movelist|Volt Tackle|Electric|cat=Physical|120|100|{{MS|000}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Electric}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|If damaged, a wild Pokémon appears on the dungeon floor.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Causes a wild Pokémon to appear on a dungeon floor if the Pokémon is attacked.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|こうげきされると フロアの どこかに ポケモンが あらわれる|Causes a wild Pokémon to appear on a dungeon floor if the Pokémon is attacked.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|When the Pokémon is attacked, an enemy Pokémon appears somewhere on the current floor.{{tt|*|Ability description}}&amp;lt;br&amp;gt;When this Pokémon is attacked, an enemy appears somewhere on the floor.{{tt|*|Used in message log}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|If the Pokémon uses an illuminating move such as Confuse Ray or Light Screen[[File:IconCutsCornersSMD.png]], it will be a decoy!}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
{{moveanime|type=electric|exp=yes|gen=Things hiding in the shadows are revealed.|image1=Lenora Watchog Illuminate.png|image1p=Watchog}}&lt;br /&gt;
{{movep|type=electric|ms=505|pkmn=Watchog|method=Watchog holds out its arms and the yellow parts of its eyes and all the yellow stripes on its body flash yellow extremely brightly. The light then dies down a little, causing any invisible things to appear.}}&lt;br /&gt;
{{movemid|type=electric|user=Lenora|user1=Lenora&#039;s Watchog|startcode=BW014|startname=A Night in the Nacrene City Museum!|notes=Debut}}&lt;br /&gt;
{{movep|type=electric|ms=120|pkmn=Staryu|method=Staryu is able to lure in nearby Pokémon.}}&lt;br /&gt;
{{movebtm|type=electric|user=Toren|user1=Toren&#039;s Staryu|startcode=M21|startname=The Power of Us}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
* [[Misty]]&#039;s {{TP|Misty|Starmie}} and {{p|Chinchou}} are revealed to have Illuminate as their Ability.&lt;br /&gt;
&lt;br /&gt;
===In the Be the Best! Pokémon B+W manga===&lt;br /&gt;
{{movemanga|type=electric|exp=no|gen=The Pokémon glows bright, attracting wild Pokémon.|image1=Monta Watchog Illuminate.png|image1p=Watchog}}&lt;br /&gt;
{{movep|type=electric|ms=505|pkmn=Watchog|method=Watchog glows bright, attracting wild Pokémon.}}&lt;br /&gt;
{{movebtm|type=electric|user=Monta#Watchog|user1=Monta&#039;s Watchog|startcode=PBW5|startname=Let&#039;s Master Pokémon Capturing!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Every Pokémon with this Ability can learn the move {{m|Flash}} and {{m|Confuse Ray}}.&lt;br /&gt;
*Out of the three Abilities that are exclusively used outside of battle, Illuminate is the only one that shares its external effect with other Abilities.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{electric color}}|bordercolor={{electric color dark}}&lt;br /&gt;
|zh_yue=發光 &#039;&#039;{{tt|Faatgwōng|Illuminate}}&#039;&#039;&lt;br /&gt;
|zh_cmn=發光 / 发光 &#039;&#039;{{tt|Fāguāng|Illuminate}}&#039;&#039;&lt;br /&gt;
|fi=Valaisu&lt;br /&gt;
|fr=Lumiattirance&lt;br /&gt;
|de=Erleuchtung&lt;br /&gt;
|it=Risplendi&lt;br /&gt;
|he=הארה &#039;&#039;He&#039;ara&#039;&#039;&lt;br /&gt;
|ko=발광 &#039;&#039;{{tt|Balgwang|Illuminate}}&#039;&#039;&lt;br /&gt;
|pl=Rozświetlenie&lt;br /&gt;
|pt_br=Iluminar&amp;lt;br&amp;gt;Iluminação (TCG)&lt;br /&gt;
|pt_eu=Iluminar&lt;br /&gt;
|ru=Освещение &#039;&#039;Osveshcheniye&#039;&#039;&lt;br /&gt;
|es=Iluminación&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that affect appearance of wild Pokémon]]&lt;br /&gt;
[[Category:Abilities with field effects]]&lt;br /&gt;
[[Category:Abilities with no effect in Trainer battles]]&lt;br /&gt;
&lt;br /&gt;
[[de:Erleuchtung]]&lt;br /&gt;
[[es:Iluminación]]&lt;br /&gt;
[[fr:Lumiattirance]]&lt;br /&gt;
[[it:Risplendi]]&lt;br /&gt;
[[ja:はっこう]]&lt;br /&gt;
[[zh:发光（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Arena_Trap_(Ability)&amp;diff=3177069</id>
		<title>Arena Trap (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Arena_Trap_(Ability)&amp;diff=3177069"/>
		<updated>2020-05-30T10:26:39Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Outside of battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Arena Trap&lt;br /&gt;
|jpname=ありじごく&lt;br /&gt;
|jptrans=Antlion&lt;br /&gt;
|jptranslit=Arijigoku&lt;br /&gt;
|colorscheme=ground&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Prevents fleeing.{{sup/3|RSEFRLG}}&amp;lt;br&amp;gt;Prevents the foe&#039;s escape.{{sup/ss|Colo}}{{sup/ss|XD}}&lt;br /&gt;
|text4=Prevents the foe from fleeing.&lt;br /&gt;
|text5=Prevents the foe from fleeing.&lt;br /&gt;
|text6=Prevents opposing Pokémon from fleeing.&lt;br /&gt;
|text7=Prevents opposing Pokémon from fleeing. &lt;br /&gt;
|text8=Prevents opposing Pokémon from fleeing.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Arena Trap&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ありじごく&#039;&#039;&#039; &#039;&#039;Antlion&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
Arena Trap prevents all [[grounded]] adjacent opponents from [[Escape|fleeing]] (including {{m|Teleport}}) or [[Recall|switching out]] as long as the user remains in battle. However, if a Pokémon with Arena Trap switches in, opponents that decided to switch out at the beginning of that turn but have not yet moved will still switch out.&lt;br /&gt;
&lt;br /&gt;
Using {{m|Baton Pass}}, {{m|U-turn}}, {{m|Volt Switch}}, or {{m|Parting Shot}} will still cause the Pokémon to switch out. Holding a [[Shed Shell]] allows the Pokémon to switch out, but not flee or Teleport. Having the Ability {{a|Run Away}} or holding a [[Smoke Ball]] allows the Pokémon to flee or Teleport, but not switch.&lt;br /&gt;
&lt;br /&gt;
If a wild Pokémon has Arena Trap and the player&#039;s Pokémon faints, if the player attempts to flee instead of sending out another Pokémon, they are unaffected by Arena Trap.&lt;br /&gt;
&lt;br /&gt;
Arena Trap does not affect allies.&lt;br /&gt;
&lt;br /&gt;
====Generation VI====&lt;br /&gt;
{{type|Ghost}} Pokémon who are normally not grounded are now immune to Arena Trap.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
From {{game|Emerald}} onwards, if a Pokémon with Arena Trap is in the first place in the [[party]] (even if [[fainting|fainted]]), the wild Pokémon encounter rate of all Pokémon is doubled. It shares this trait with {{a|Illuminate}} and {{a|No Guard}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon with Arena Trap==&lt;br /&gt;
{{Ability/head|Ground}}&lt;br /&gt;
{{Ability/entry|050|Diglett|Ground|Ground|Sand Veil|Arena Trap|Sand Force}}&lt;br /&gt;
{{Ability/entry|051|Dugtrio|Ground|Ground|Sand Veil|Arena Trap|Sand Force}}&lt;br /&gt;
{{Ability/entry|328|Trapinch|Ground|Ground|Hyper Cutter|Arena Trap|Sheer Force}}&lt;br /&gt;
{{Ability/foot|Ground}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
In [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|Red Rescue Team and Blue Rescue Team]], [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers of Time, Darkness]] and [[Pokémon Mystery Dungeon: Explorers of Sky|Sky]], when an enemy Pokémon attacks a Pokémon with Arena Trap, there is a 12% chance of the attacking Pokémon becoming immobilized. {{type|Flying}} and Pokémon with the Ability Levitate are unaffected. &lt;br /&gt;
&lt;br /&gt;
In {{g|Super Mystery Dungeon}}, any Pokémon adjacent to a Pokémon with the Ability Arena Trap cannot move, but are still able to use moves and items. Flying- and {{type|Ghost}} Pokémon, and Pokémon with the Ability Levitate and Run Away are unaffected.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Ground}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Immobilizes any attacker except Flying-type foes and those with Levitate.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Immobilizes any attacker except Flying-type and levitating foes.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|ひこうタイプ ふゆう いがいの こうげきしてきた あいてを いどうできなくする|Immobilizes any attacker except Flying-type and levitating foes.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Unavailable}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|Enemy Pokémon next to the Pokémon can&#039;t move! It has no effect on Flying- or Ghost-type Pokémon and Pokémon with the Run Away or Levitate Ability!}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|DX}}|Enemies next to the Pokémon can&#039;t walk. This Ability has no effect on Flying- or Ghost-type Pokémon and Pokémon with the Run Away or Levitate Ability.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
{{moveanime|type=ground|exp=yes|gen=The Pokémon can trap the opponent by digging a large hole.|image1=Trapinch Arena Trap.png|image1p=Trapinch}}&lt;br /&gt;
{{movep|type=ground|ms=328|pkmn=Trapinch|method=Trapinch traps the opponent in a big hole.}}&lt;br /&gt;
{{movebtm|type=ground|user=Trapinch (Pokémon)|user1=A wild Trapinch|startcode=DP145|startname=A Rivalry to Gible On!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{langtable|color={{ground color}}|bordercolor={{ground color dark}}&lt;br /&gt;
|zh_yue=沙穴 &#039;&#039;{{tt|Sāyuht|Sandpit}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;獅蟻 &#039;&#039;{{tt|Sī&#039;ngáih|Antlion}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=沙穴 &#039;&#039;{{tt|Shāxué|Sandpit}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;獅蟻 &#039;&#039;{{tt|Shīyǐ|Antlion}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|nl=Valkuil&lt;br /&gt;
|fr=Piège Sable{{tt|*|Generation VII}}&amp;lt;br&amp;gt;Piège{{tt|*|Generation III-VI}}&lt;br /&gt;
|de=Ausweglos&lt;br /&gt;
|it=Trappoarena&lt;br /&gt;
|pt=Arenarmadilha&lt;br /&gt;
|es=Trampa Arena&lt;br /&gt;
|ko=개미지옥 &#039;&#039;Gaemi Jiok&#039;&#039;&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{AbilityVariations|Magnet Pull|Arena Trap|Shadow Tag|color=Ground|1color={{steel color dark}}|2color={{ground color dark}}|3color={{psychic color dark}}}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Trapping Abilities]]&lt;br /&gt;
[[Category:Abilities that affect appearance of wild Pokémon]]&lt;br /&gt;
[[Category:Abilities with field effects]]&lt;br /&gt;
&lt;br /&gt;
[[de:Ausweglos]]&lt;br /&gt;
[[es:Trampa arena]]&lt;br /&gt;
[[fr:Piège Sable]]&lt;br /&gt;
[[it:Trappoarena]]&lt;br /&gt;
[[ja:ありじごく]]&lt;br /&gt;
[[zh:沙穴（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=No_Guard_(Ability)&amp;diff=3177047</id>
		<title>No Guard (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=No_Guard_(Ability)&amp;diff=3177047"/>
		<updated>2020-05-30T09:07:08Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Outside of battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=No Guard&lt;br /&gt;
|jpname=ノーガード&lt;br /&gt;
|jptrans=No Guard&lt;br /&gt;
|jptranslit=Nō Gādo&lt;br /&gt;
|colorscheme=fighting&lt;br /&gt;
|gen=4&lt;br /&gt;
|text4=Ensures the Pokémon and its foe&#039;s attacks land.{{sup/4|DPP}}&amp;lt;br/&amp;gt;Ensures both Pokémon&#039;s and foe&#039;s attacks land.{{sup/4|HGSS}}&lt;br /&gt;
|text5=Ensures attacks by or against the Pokémon land.&lt;br /&gt;
|text6=Ensures attacks by or against the Pokémon land.&lt;br /&gt;
|text7=The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land. &lt;br /&gt;
|text8=The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;No Guard&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ノーガード&#039;&#039;&#039; &#039;&#039;No Guard&#039;&#039;) is an [[Ability]] introduced in [[Generation IV]]. Prior to [[Generation V]], it was the [[signature Ability]] of {{p|Machop}}&#039;s [[evolution]]ary line.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
All [[move]]s used by or against a Pokémon with this Ability cannot miss. It also allows Pokémon to be hit during the {{cat|Moves with a semi-invulnerable turn|semi-invulnerable turn}} of {{m|Fly}}, {{m|Bounce}}, {{m|Dive}}, {{m|Dig}}, {{m|Shadow Force}}, {{m|Sky Drop}}, and {{m|Phantom Force}}.&lt;br /&gt;
&lt;br /&gt;
In {{2v2|Diamond|Pearl}}, a Pokémon with No Guard can successfully hit a Pokémon that has used {{m|Protect}} or {{m|Detect}}, but only if it uses a move with less than 100% accuracy. The lower the initial accuracy of the move, the higher its chance of breaking through Protect or Detect. Thus, when used against Protect or Detect, moves that never miss (such as {{m|Swift}} and {{m|Aerial Ace}}) will always be blocked. [[One-hit knockout move]]s are exempted from this behavior and will be protected against. This battle mechanic was a bug, and was fixed in {{v2|Platinum}} so that most moves are blocked by Protect and Detect.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Outside of battle, if a Pokémon with No Guard is in the first place in the [[party]] (even if [[fainting|fainted]]), the wild Pokémon encounter rate increases by 100%.&lt;br /&gt;
It shares this property with {{a|Arena Trap}} and {{a|Illuminate}}.&lt;br /&gt;
&lt;br /&gt;
==Pokémon with No Guard==&lt;br /&gt;
{{Ability/head|Fighting}}&lt;br /&gt;
{{Ability/entry|018M|Pidgeot|Normal|Flying|No Guard|None|None|Mega Pidgeot}}&lt;br /&gt;
{{Ability/entry|066|Machop|Fighting|Fighting|Guts|No Guard|Steadfast}}&lt;br /&gt;
{{Ability/entry|067|Machoke|Fighting|Fighting|Guts|No Guard|Steadfast}}&lt;br /&gt;
{{Ability/entry|068|Machamp|Fighting|Fighting|Guts|No Guard|Steadfast}}&lt;br /&gt;
{{Ability/entry|588|Karrablast|Bug|Bug|Swarm|Shed Skin|No Guard}}&lt;br /&gt;
{{Ability/entry|622|Golett|Ground|Ghost|Iron Fist|Klutz|No Guard}}&lt;br /&gt;
{{Ability/entry|623|Golurk|Ground|Ghost|Iron Fist|Klutz|No Guard}}&lt;br /&gt;
{{Ability/entry|679|Honedge|Steel|Ghost|No Guard|None|None}}&lt;br /&gt;
{{Ability/entry|680|Doublade|Steel|Ghost|No Guard|None|None}}&lt;br /&gt;
{{Ability/entry|745Mn|Lycanroc|Rock|Rock|Keen Eye|Vital Spirit|No Guard|Midnight Form}}&lt;br /&gt;
{{Ability/foot|Fighting}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Pokémon Mystery Dungeon series===&lt;br /&gt;
In the [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Pokémon Mystery Dungeon: Explorers series]], No Guard causes the Pokémon to ignore both harmful and beneficial modifications to accuracy and evasiveness. This prevents the Pokémon&#039;s own Concentrator and Clutch Performer [[IQ]] skills from working.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Fighting}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TD}}|Allows Pokémon to ignore stat modifications to accuracy and evasion.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|S}}|Allows Pokémon to ignore stat modifications to accuracy and evasiveness.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|めいちゅうと かいひの だんかいを むしする|Allows Pokémon to ignore stat modifications to accuracy and evasiveness.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Unavailable}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The hit rate of moves and attacks won&#039;t be lowered even if accuracy is lowered or evasiveness is boosted! It has the same effects on you as on your enemies. Abilities that boost evasiveness have no effects, either.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|When changes to the Pokémon&#039;s and its target&#039;s accuracy or evasiveness make it more difficult for attacks to land, those changes go away so that the Pokémon can have a fair fight.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{fighting color}}|bordercolor={{fighting color dark}}&lt;br /&gt;
|zh_yue=無防守 &#039;&#039;{{tt|Mòuh Fòhngsáu|No Guard}}&#039;&#039;&amp;lt;br&amp;gt;無防禦 &#039;&#039;{{tt|Mòuh Fòhngyuh|No Defense}}&#039;&#039; {{tt|*|M19 Website}}&lt;br /&gt;
|zh_cmn=無防守 / 无防守 &#039;&#039;{{tt|Wú Fángshǒu|No Guard}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;無防禦 &#039;&#039;{{tt|Wú Fángyù|No Defense}}&#039;&#039; {{tt|*|DP National Pokédex guidebook}}&lt;br /&gt;
|fr=Annule Garde&lt;br /&gt;
|de=Schildlos&lt;br /&gt;
|it=Nullodifesa&lt;br /&gt;
|pt=Sem Proteção&lt;br /&gt;
|es=Indefenso&lt;br /&gt;
|ko=노가드 &#039;&#039;No Guard&#039;&#039;&lt;br /&gt;
|tr=Korumasızlık}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that affect appearance of wild Pokémon]]&lt;br /&gt;
[[Category:Abilities with field effects]]&lt;br /&gt;
[[Category:Abilities with negative effects]]&lt;br /&gt;
&lt;br /&gt;
[[de:Schildlos]]&lt;br /&gt;
[[es:Indefenso]]&lt;br /&gt;
[[fr:Annule Garde]]&lt;br /&gt;
[[it:Nullodifesa]]&lt;br /&gt;
[[ja:ノーガード]]&lt;br /&gt;
[[zh:无防守（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=No_Guard_(Ability)&amp;diff=3177046</id>
		<title>No Guard (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=No_Guard_(Ability)&amp;diff=3177046"/>
		<updated>2020-05-30T09:05:43Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Outside of battle */ Encouter rate changed from 50% to 100%.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=No Guard&lt;br /&gt;
|jpname=ノーガード&lt;br /&gt;
|jptrans=No Guard&lt;br /&gt;
|jptranslit=Nō Gādo&lt;br /&gt;
|colorscheme=fighting&lt;br /&gt;
|gen=4&lt;br /&gt;
|text4=Ensures the Pokémon and its foe&#039;s attacks land.{{sup/4|DPP}}&amp;lt;br/&amp;gt;Ensures both Pokémon&#039;s and foe&#039;s attacks land.{{sup/4|HGSS}}&lt;br /&gt;
|text5=Ensures attacks by or against the Pokémon land.&lt;br /&gt;
|text6=Ensures attacks by or against the Pokémon land.&lt;br /&gt;
|text7=The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land. &lt;br /&gt;
|text8=The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;No Guard&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ノーガード&#039;&#039;&#039; &#039;&#039;No Guard&#039;&#039;) is an [[Ability]] introduced in [[Generation IV]]. Prior to [[Generation V]], it was the [[signature Ability]] of {{p|Machop}}&#039;s [[evolution]]ary line.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
All [[move]]s used by or against a Pokémon with this Ability cannot miss. It also allows Pokémon to be hit during the {{cat|Moves with a semi-invulnerable turn|semi-invulnerable turn}} of {{m|Fly}}, {{m|Bounce}}, {{m|Dive}}, {{m|Dig}}, {{m|Shadow Force}}, {{m|Sky Drop}}, and {{m|Phantom Force}}.&lt;br /&gt;
&lt;br /&gt;
In {{2v2|Diamond|Pearl}}, a Pokémon with No Guard can successfully hit a Pokémon that has used {{m|Protect}} or {{m|Detect}}, but only if it uses a move with less than 100% accuracy. The lower the initial accuracy of the move, the higher its chance of breaking through Protect or Detect. Thus, when used against Protect or Detect, moves that never miss (such as {{m|Swift}} and {{m|Aerial Ace}}) will always be blocked. [[One-hit knockout move]]s are exempted from this behavior and will be protected against. This battle mechanic was a bug, and was fixed in {{v2|Platinum}} so that most moves are blocked by Protect and Detect.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Outside of battle, if a Pokémon with No Guard is in the first place in the [[party]] (even if [[fainting|fainted]]), the wild Pokémon encounter rate increases by 100%.&lt;br /&gt;
It shares this property with [Arena Trap] and [Illuminate].&lt;br /&gt;
&lt;br /&gt;
==Pokémon with No Guard==&lt;br /&gt;
{{Ability/head|Fighting}}&lt;br /&gt;
{{Ability/entry|018M|Pidgeot|Normal|Flying|No Guard|None|None|Mega Pidgeot}}&lt;br /&gt;
{{Ability/entry|066|Machop|Fighting|Fighting|Guts|No Guard|Steadfast}}&lt;br /&gt;
{{Ability/entry|067|Machoke|Fighting|Fighting|Guts|No Guard|Steadfast}}&lt;br /&gt;
{{Ability/entry|068|Machamp|Fighting|Fighting|Guts|No Guard|Steadfast}}&lt;br /&gt;
{{Ability/entry|588|Karrablast|Bug|Bug|Swarm|Shed Skin|No Guard}}&lt;br /&gt;
{{Ability/entry|622|Golett|Ground|Ghost|Iron Fist|Klutz|No Guard}}&lt;br /&gt;
{{Ability/entry|623|Golurk|Ground|Ghost|Iron Fist|Klutz|No Guard}}&lt;br /&gt;
{{Ability/entry|679|Honedge|Steel|Ghost|No Guard|None|None}}&lt;br /&gt;
{{Ability/entry|680|Doublade|Steel|Ghost|No Guard|None|None}}&lt;br /&gt;
{{Ability/entry|745Mn|Lycanroc|Rock|Rock|Keen Eye|Vital Spirit|No Guard|Midnight Form}}&lt;br /&gt;
{{Ability/foot|Fighting}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Pokémon Mystery Dungeon series===&lt;br /&gt;
In the [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Pokémon Mystery Dungeon: Explorers series]], No Guard causes the Pokémon to ignore both harmful and beneficial modifications to accuracy and evasiveness. This prevents the Pokémon&#039;s own Concentrator and Clutch Performer [[IQ]] skills from working.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Fighting}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TD}}|Allows Pokémon to ignore stat modifications to accuracy and evasion.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|S}}|Allows Pokémon to ignore stat modifications to accuracy and evasiveness.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|めいちゅうと かいひの だんかいを むしする|Allows Pokémon to ignore stat modifications to accuracy and evasiveness.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Unavailable}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The hit rate of moves and attacks won&#039;t be lowered even if accuracy is lowered or evasiveness is boosted! It has the same effects on you as on your enemies. Abilities that boost evasiveness have no effects, either.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|When changes to the Pokémon&#039;s and its target&#039;s accuracy or evasiveness make it more difficult for attacks to land, those changes go away so that the Pokémon can have a fair fight.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{fighting color}}|bordercolor={{fighting color dark}}&lt;br /&gt;
|zh_yue=無防守 &#039;&#039;{{tt|Mòuh Fòhngsáu|No Guard}}&#039;&#039;&amp;lt;br&amp;gt;無防禦 &#039;&#039;{{tt|Mòuh Fòhngyuh|No Defense}}&#039;&#039; {{tt|*|M19 Website}}&lt;br /&gt;
|zh_cmn=無防守 / 无防守 &#039;&#039;{{tt|Wú Fángshǒu|No Guard}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;無防禦 &#039;&#039;{{tt|Wú Fángyù|No Defense}}&#039;&#039; {{tt|*|DP National Pokédex guidebook}}&lt;br /&gt;
|fr=Annule Garde&lt;br /&gt;
|de=Schildlos&lt;br /&gt;
|it=Nullodifesa&lt;br /&gt;
|pt=Sem Proteção&lt;br /&gt;
|es=Indefenso&lt;br /&gt;
|ko=노가드 &#039;&#039;No Guard&#039;&#039;&lt;br /&gt;
|tr=Korumasızlık}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that affect appearance of wild Pokémon]]&lt;br /&gt;
[[Category:Abilities with field effects]]&lt;br /&gt;
[[Category:Abilities with negative effects]]&lt;br /&gt;
&lt;br /&gt;
[[de:Schildlos]]&lt;br /&gt;
[[es:Indefenso]]&lt;br /&gt;
[[fr:Annule Garde]]&lt;br /&gt;
[[it:Nullodifesa]]&lt;br /&gt;
[[ja:ノーガード]]&lt;br /&gt;
[[zh:无防守（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3171369</id>
		<title>Friendship</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3171369"/>
		<updated>2020-05-24T08:49:35Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In Generation IV */  added winning a contest, might need more revisions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{samename|Friendship features in {{g|GO}}|Friends (GO)}}&lt;br /&gt;
{{redirect|Happiness|the &amp;quot;Happiness Pokémon&amp;quot; category|Blissey (Pokémon)}}&lt;br /&gt;
{{spading|comment=Still needs research overall, especially regarding values.}}&lt;br /&gt;
{{incomplete|needs=Generation VIII information, manga section}}&lt;br /&gt;
&#039;&#039;&#039;Friendship&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;なつき{{tt|度|ど}}&#039;&#039;&#039; &#039;&#039;degree of emotional attachment&#039;&#039;), also referred to as &#039;&#039;&#039;loyalty&#039;&#039;&#039; in [[Generation II]] core series games, &#039;&#039;&#039;tame&#039;&#039;&#039; in {{game|Yellow}} and [[Pokémon Stadium 2]], and &#039;&#039;&#039;friendliness&#039;&#039;&#039; in [[Pokémon XD: Gale of Darkness]], and commonly referred to by fans as &#039;&#039;&#039;happiness&#039;&#039;&#039;, is a measurement of how much a {{OBP|Pokémon|species}} is attached to its {{pkmn|Trainer}} and enjoys being in their care.&lt;br /&gt;
&lt;br /&gt;
It affects the [[evolution]] of {{cat|Pokémon that evolve by friendship|certain Pokémon}}, the power of {{m|Return}} and {{m|Frustration}}, and the availability of a few in-game [[item]]s and [[Ribbon]]s. Certain events increase a Pokémon&#039;s friendship (gaining a [[level]], walking a certain amount of steps) or decrease it ([[fainting]], using [[herbal medicine]]).&lt;br /&gt;
&lt;br /&gt;
Friendship was introduced in Pokémon Yellow for the {{player}}&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}} only, and expanded to cover all Pokémon in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
In [[Generation VI]], [[Affection]], a separate mechanic, was introduced. However, from [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]] onward, Affection no longer exists and friendship has all of its effects instead.&lt;br /&gt;
&lt;br /&gt;
==In the core series games==&lt;br /&gt;
Friendship debuted in [[Generation I]] as a mechanic that applied only to the {{player}}&#039;s {{p|Pikachu}} in {{game|Yellow}}. In [[Generation II]], it was expanded to cover all Pokémon. In all games, friendship is a value that ranges from 0 to 255 (stored as a single byte). In Pokémon Yellow, Pikachu&#039;s friendship is indicated by the expression it shows when the player talks to it, but in later games, [[#Raters|certain NPCs]] in the games will evaluate the friendship of a Pokémon in the player&#039;s [[party]].&lt;br /&gt;
&lt;br /&gt;
A Pokémon&#039;s friendship is generally set when the player first obtains it. When a Pokémon is first caught from the wild, its friendship starts at its [[List of Pokémon by base friendship|base friendship]] value. Trading a Pokémon also resets its friendship to its base value, unless it is being traded back to its [[original Trainer]] in [[Generation VI]] or later, in which case it regains the friendship it had before being traded away. A Pokémon caught in a [[Friend Ball]] starts with 200 friendship instead of its base friendship, while a Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
Friendship is generally increased by taking good care of a Pokémon. Keeping a Pokémon in the player&#039;s party, raising it, using items on it, and getting it [[Pokémon groomer|groomed]] will all increase a Pokémon&#039;s friendship. Letting it faint and using bitter [[herbal medicine]]s on it will decrease a Pokémon&#039;s friendship.&lt;br /&gt;
&lt;br /&gt;
===Boosting friendship===&lt;br /&gt;
In {{game|Crystal}}, if a Pokémon is leveled up at its met location, it will gain twice as much friendship from that level up as usual. Since only Pokémon caught in Pokémon Crystal have a defined met location, Pokémon caught in the [[Generation I]] games, {{game|Gold and Silver|s}}, and Pokémon from [[in-game trade]]s will not receive this bonus. If a Pokémon that has a defined met location is traded to a Generation I game, this data is permanently erased, so it can no longer receive this bonus.&lt;br /&gt;
&lt;br /&gt;
Starting in Generation III, if a Pokémon was caught in a [[Luxury Ball]] or is currently at the same location where it was {{pkmn2|caught}} (its met location), any increase to its friendship is boosted by an extra point (two points if both apply). If a Pokémon is holding a [[Soothe Bell]], increases to its friendship are boosted by 50% of the change. In Generation III, Soothe Bell applies directly to the original change in friendship, while in later games, it applies to the friendship change after including Luxury Ball and met location bonuses. In Generation IV, being at its met location does not change the amount of friendship a Pokémon gains, but it does from Generation V onward.&lt;br /&gt;
&lt;br /&gt;
In Generation V, the Befriending Power [[Pass Power]] boosts any increase to friendship by one to three points depending on the strength of the power used. In Generation VI, the Befriending Power [[O-Power]] has the same effect. Befriending Power does not exist in [[Generation VII]].&lt;br /&gt;
&lt;br /&gt;
None of these effects change the amount of friendship lost for negative changes or for changes of 0 (such as using an [[X Attack]] on a Pokémon with high friendship).&lt;br /&gt;
&lt;br /&gt;
===Mechanics using friendship===&lt;br /&gt;
In Pokémon Yellow, friendship affected very little beyond the reactions Pikachu would show when interacted with.&lt;br /&gt;
&lt;br /&gt;
Starting in [[Generation II]], there are {{cat|Pokémon that evolve by friendship}}, which can only evolve if they have 220 friendship or more. Additionally, the moves {{m|Return}} and {{m|Frustration}} vary in power depending on how high or low the user&#039;s friendship is.&lt;br /&gt;
&lt;br /&gt;
From [[Generation IV]] onward, there is a [[Ribbon]] for Pokémon with maximum friendship, the {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
Some NPCs also only give gifts or [[Move Tutor|teach moves]] when the player&#039;s Pokémon has a certain amount of friendship.&amp;lt;!--Maybe should be listed. I think the Soothe Bell and Lucky Egg are a couple (sometimes?).--&amp;gt; Specifically, a Pokémon must have maximized friendship to learn {{m|Draco Meteor}}, {{m|Frenzy Plant}}, {{m|Blast Burn}}, {{m|Hydro Cannon}}, {{m|Grass Pledge}}, {{m|Fire Pledge}}, or {{m|Water Pledge}} in any generation.&lt;br /&gt;
&lt;br /&gt;
In {{2v2|Omega Ruby|Alpha Sapphire}}, [[Nameless Cavern]] becomes unlocked once the {{player}} has three Pokémon with maximum friendship on their team.&lt;br /&gt;
&lt;br /&gt;
=====Moves=====&lt;br /&gt;
Friendship affects the following moves.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 5px solid #{{cute color light}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; class=&amp;quot;sortable roundy&amp;quot; style=&amp;quot;text-align:center; background: #FFFFFF; border:1px solid #{{cute color}}; border-collapse:collapse;&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Move&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Type]]&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Damage category|Category]]&lt;br /&gt;
! [[Power]]&lt;br /&gt;
! [[Accuracy]]&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; | Notes&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Frustration}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The lower the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Pika Papow}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
{{statustable|Special}}&lt;br /&gt;
| Varies&lt;br /&gt;
|  —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Return}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Veevee Volley}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===In Generation I===&lt;br /&gt;
[[File:PikachuY-Happy.png|thumb|right|{{ga|Red&#039;s Pikachu|Pikachu}} with high friendship]]&lt;br /&gt;
In {{game|Yellow}}, there is a friendship system exclusively for the player&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}}. Any Pikachu that the player is the [[Original Trainer]] of (according to their Original Trainer name and [[Trainer ID number]]) is treated as the player&#039;s starter Pikachu. Raichu and {{pkmn2|Outsider}} Pikachu are not affected, even if the Raichu was the player&#039;s starter Pokémon but evolved (which can only be done by first [[trade|trading]] it to another game).&lt;br /&gt;
&lt;br /&gt;
The starter Pikachu [[Walking Pokémon|follows the player in the overworld]], if it is in the party and not [[fainting|fainted]] (if the player has multiple, Pikachu will follow if the first starter Pikachu in the party is not fainted). If the player interacts with Pikachu, a window will pop up showing Pikachu&#039;s face, and the expression is affected by Pikachu&#039;s current friendship (though certain special events may elicit special reactions unrelated to Pikachu&#039;s current friendship). At maximum friendship, Pikachu jumps up and down before the window appears.&lt;br /&gt;
&lt;br /&gt;
In [[Cerulean City]], [[Melanie]] gives the player a {{p|Bulbasaur}} if the starter Pikachu&#039;s friendship is 147 or higher. The player does not need to have Pikachu in the party or even in the game itself to receive this Bulbasaur. This is the only significance of friendship outside of interacting with Pikachu.&lt;br /&gt;
&lt;br /&gt;
Pikachu starts with a [[List of Pokémon by base friendship|base friendship]] of 90. Various actions can increase or decrease Pikachu&#039;s friendship level.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! colspan=2 rowspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Starter Pikachu [[level|levels]] up while in the party || rowspan=2 | +5 || rowspan=2 | +3 || rowspan=2 | +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Use [[medicine]] on starter Pikachu (even if unsuccessful),&amp;lt;br&amp;gt;other than [[PP Up]], [[Full Heal]], [[Revive]], [[Max Revive]], [[Ether]], [[Max Ether]], [[Elixir|Elixer]], [[Max Elixir|Max Elixer]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Challenge a [[Gym Leader]] with non-fainted starter Pikachu in the party&amp;lt;br&amp;gt;(if the player has multiple, the first Pikachu in the party must not be fainted)&lt;br /&gt;
|| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walk 255 steps with Pikachu following (50% chance)&lt;br /&gt;
| +2&lt;br /&gt;
| colspan=2 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Teach Pikachu a [[TM]] or [[HM]] move&lt;br /&gt;
| colspan=2 rowspan=2 | +1 || rowspan=2 | 0&lt;br /&gt;
|- style=&amp;quot;background:white&amp;quot;&lt;br /&gt;
| colspan=2 | Use a [[battle item]] on starter Pikachu (even if unsuccessful), other than [[X Accuracy]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | Starter Pikachu [[fainting|faints]]&amp;lt;br&amp;gt;(including during link battles)&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5&lt;br /&gt;
| -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Deposit starter Pikachu in the [[Pokémon Storage System]] from the party&lt;br /&gt;
| colspan=2 | -3 || -5&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Trade]] Pikachu away&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; colspan=2 | -10&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is a single friendship value per game, and it remains even if the starter Pikachu is traded away. Trading away Pikachu will decrease its friendship, but this decreased value will be remembered when it returns. The player can still obtain Bulbasaur from Melanie if Pikachu has the appropriate friendship, even if they no longer have a starter Pikachu in their game. If the player has multiple Pikachu which qualify as their starter Pikachu in a single game, all of these Pikachu share the same friendship value, so any friendship-modifying event applies to all of them.&lt;br /&gt;
&lt;br /&gt;
[[Vitamin]]s, [[battle item]]s and {{cat|HP-restoring items}} increase Pikachu&#039;s friendship even if they have no effect. For example, attempting to use a [[Potion]] on a Pikachu that has [[fainting|fainted]] or has full health, an [[Antidote]] when Pikachu is not {{status|poison}}ed, [[Calcium]] when Pikachu has already reached its maximum {{DL|Statistic|Special}} [[stat experience]], or [[X Special]] when the Special stat has already been [[Statistic#Stat modifiers|raised 6 stages]] in battle. This does not consume the item, so the same item can repeatedly increase Pikachu&#039;s friendship. However, battle items such as [[X Special]] only raise Pikachu&#039;s friendship if they are used in-battle, since they are unusable outside battles in the first place. Waking Pikachu up with the [[Poké Flute]] (either in or out of battle) does not change its friendship.&lt;br /&gt;
&lt;br /&gt;
===In Generation II===&lt;br /&gt;
In [[Generation II]], friendship was expanded to cover all Pokémon. All Pokémon have a [[List of Pokémon by base friendship|base friendship]] of 70, but any Pokémon caught in a [[Friend Ball]] starts with 200 friendship and any Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Gold|Silver|Crystal}}, [[#Gold, Silver, and Crystal|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Goldenrod City]].&lt;br /&gt;
&lt;br /&gt;
The met location boost was first introduced in {{game|Crystal}}.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Pokémon groomer|Grooming]] ([[haircut brothers]])&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (younger brother: 10%)&lt;br /&gt;
| colspan=2 | +10 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (older brother: 20%)&lt;br /&gt;
| colspan=2 | +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot; (older brother: 50%, younger: 30%)&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot; (older brother: 30%, younger: 60%)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Level]] up || Always{{sup/2|GS}}/Anywhere except met location{{sup/2|C}} || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| At met location{{sup/2|C}} || +10 || +6 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, the [[Pokémon Champion|Champion]], or [[Red (game)|Red]] (whole party)&lt;br /&gt;
| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}})&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 512 steps (whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], and [[Carbos]]&lt;br /&gt;
††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], and [[X Sp. Atk|X Special]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation III===&lt;br /&gt;
In [[Generation III]], different [[Pokémon (species)|species]] of Pokémon were given individualized [[List of Pokémon by base friendship|base friendship]] values. The [[Luxury Ball]] and [[Soothe Bell]] boosts were also introduced.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Ruby|Sapphire|Emerald}}, [[#Ruby, Sapphire, and Emerald|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Verdanturf Town]]. In {{game|FireRed and LeafGreen|s}}, [[Daisy Oak]] will perform the [[#FireRed and LeafGreen|same service]] in [[Pallet Town]]. In addition, in Pokémon FireRed and LeafGreen, the degree to which a Pokémon moves towards the screen after an item is used on it will also indicate how high its friendship is.&lt;br /&gt;
&lt;br /&gt;
In the table below, fainting in battle will not alter a Pokémon&#039;s friendship if it fainted from {{status|poison}} at the end of a turn.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}†{{sup/3|E}}&lt;br /&gt;
| +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Vivid Scent]]{{sup/ss|XD}} || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Excite Scent]]{{sup/ss|XD}} || +4 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/3|FRLG}}&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Joy Scent]]{{sup/ss|XD}} || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation IV===&lt;br /&gt;
{{incomplete|section|Figure out the probabilities for the variable massage/grooming events}}&lt;br /&gt;
[[File:Friendship Checker App.png|thumb|200px|right|The [[Pokétch]]&#039;s Friendship Checker app with a {{p|Drifblim}} at maximum friendship.]]&lt;br /&gt;
In Generation IV only, a Pokémon&#039;s met location does not affect the amount of friendship it gains. In Pokémon Diamond, Pearl, and Platinum, the massage at the [[Ribbon Syndicate]] is also not affected by any friendship boosts, and the Soothe Bell does not affect friendship gained when using a [[battle item]].&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl, and Platinum, [[#Diamond, Pearl, and Platinum|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found in [[Hearthome City]], or the player may use the {{DL|Pokétch|Friendship Checker}} app on the [[Pokétch]]. In {{game|HeartGold and SoulSilver|s}}, [[#HeartGold and SoulSilver|an NPC]] in [[Goldenrod City]] will also evaluate the friendship of the first Pokémon in the player&#039;s party, or a [[walking Pokémon]]&#039;s friendship may also be gauged by its reaction when speaking to it.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Ribbon Syndicate]]){{sup/4|DPPt}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;Our treatment has made your pampered baby [...] friendly to you.&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Grooming]] ([[haircut brothers]]){{sup/4|HGSS}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/4|HGSS}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ([[Veilstone City]] [[Massage Girl]]){{sup/4|DPPt}}&lt;br /&gt;
| colspan=3 | +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Winning a [[Contest]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Surviving {{status|poison}} with 1 HP outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation V===&lt;br /&gt;
{{incomplete|section|Effects of Makeups at the {{DL|Join Avenue|Beauty Salon}}; check whether boosts like Luxury Ball apply to Join Avenue events}}&lt;br /&gt;
Generation V introduced Befriending Power as a [[Pass Power]] to boost friendship gains.&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to the massage in [[Castelia City]].&lt;br /&gt;
&lt;br /&gt;
In the Generation V games, [[#Black and White|an NPC]] who will evaluate the friendship of the Pokémon in the player&#039;s [[party]] can be found in [[Icirrus City]], with a second NPC only found in [[Nacrene City]] during {{game|Black and White|s}} who checks the player&#039;s first Pokémon. In {{game|Black and White|s|Pokémon Black 2 and White 2|2}}, the player may also contact [[Bianca]] on the [[Xtransceiver]] to have their Pokémon&#039;s friendship rated.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Royal Cut{{sup/5|W2}}&lt;br /&gt;
| colspan=3 | +50&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Beauty Cut{{sup/5|B2}}&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Smile Cut{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ({{DL|Castelia City|Castelia Street}}{{sup/5|BW}}/{{DL|Castelia City|Medal Office}}{{sup/5|B2W2}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage has made your Pokémon [...] friendly to you!&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Shampoo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Combo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Brushing{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Lunch{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Drink{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation VI===&lt;br /&gt;
{{incomplete|section|Check if [[Pokéblock]]s add friendship and chance of increasing friendship every 128 steps}}&lt;br /&gt;
In Generation VI, Befriending Power becomes an [[O-Power]].&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to massages, drinks from the [[Juice Shoppe]], or the Soothing Bag in [[Super Training]].&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon X and Y]], [[#X and Y|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found early on in [[Santalune City]], or later in [[Laverre City]]. In [[Pokémon Omega Ruby and Alpha Sapphire]], [[#Omega Ruby and Alpha Sapphire|an NPC]] in [[Verdanturf Town]] will also evaluate the friendship of the first Pokémon in the player&#039;s party.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ({{DL|Secret Base|Secret Pals}}){{sup/6|ORAS}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Cyllage City]]{{sup/6|XY}}/[[Mauville City]]{{sup/6|ORAS&lt;br /&gt;
}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage made your Pokémon [...] friendly toward you&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Super Training]]: Soothing Bag&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Juice Shoppe]]: Colorful Shake&lt;br /&gt;
| Custom-made&lt;br /&gt;
| colspan=3 | +12 to 32 (depending on Berries used)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Pre-made&lt;br /&gt;
| colspan=3 | +1 per {{PDollar}}100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Juice Shoppe]]: Rare Soda, Ultra Rare Soda, Perilous Soup, or EV Juices&lt;br /&gt;
| colspan=3 | +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation VII===&lt;br /&gt;
====Pokémon Sun, Moon, Ultra Sun, and Ultra Moon====&lt;br /&gt;
{{incomplete|section|Check [[Festival Plaza]] events and walking mechanics}}&lt;br /&gt;
Friendship boosts do not apply to massages.&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Sun and Moon|Pokémon Sun, Moon]], {{pkmn|Ultra Sun and Ultra Moon}}, [[#Sun, Moon, Ultra Sun, and Ultra Moon|an NPC]] who will evaluate the friendship of a Pokémon in the player&#039;s [[party]] can be found in [[Konikoni City]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Konikoni City]])&lt;br /&gt;
| &amp;quot;&#039;&#039;I think you&#039;ll notice a lot of friendly feelings!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;[It] helped inspire some good, friendly feelings toward you.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;It&#039;s feeling a bit more friendly toward you already, I&#039;d say.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Combo&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Lunch&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Drink&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Poké Pelago|Isle Avue}} hot springs || colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against an [[Island Kahuna]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!====&lt;br /&gt;
{{incomplete|section|How to raise friendship (ie walking or feeding candy) and friendship benefits (ie those seen with affection)}}&lt;br /&gt;
In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], friendship is factored into all of a Pokémon&#039;s stats, except HP. At maximum friendship, a Pokémon will receive a 10% boost to its stats, before [[awakening values|AVs]] are added in. The friendship multiplier scales directly with the level of friendship, starting from a 0% boost at 0 friendship to receiving the full 10% at 255.&lt;br /&gt;
&lt;br /&gt;
===In Generation VIII===&lt;br /&gt;
{{incomplete|section|Chart for means to increase friendship}}&lt;br /&gt;
Increasing friendship with means other than [[Pokémon Camp]] will only maximize a Pokémon&#039;s friendship value at 160, although this is sufficient for friendship-based evolutions. Pokémon Camp is the only means to reach the maximum friendship value of 255.&lt;br /&gt;
&lt;br /&gt;
===Evolutions===&lt;br /&gt;
{{incomplete|section|Friendship value needed for friendship evolution in Sword and Shield}}&lt;br /&gt;
Several {{OBP|Pokémon|species}} [[Evolution|evolve]] after being [[level]]ed up when their friendship value is 220 or higher (before [[Generation VIII]]).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{cute color}}; {{roundy|10px}}; border: 3px solid #{{cute color dark}}&amp;quot; cellpadding=2px&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytl|5px}}&amp;quot; | Previous evolution&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color light}}&amp;quot; | Friendship evolution&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytr|5px}}&amp;quot; | Later evolution&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|041|Zubat}}&amp;lt;br&amp;gt;{{pcolor|Zubat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 22+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|042|Golbat}}&amp;lt;br&amp;gt;{{pcolor|Golbat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|169|Crobat}}&amp;lt;br&amp;gt;{{pcolor|Crobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Crobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Meowth is the lowest in its line&lt;br /&gt;
| {{MSP|052A|Meowth}}&amp;lt;br&amp;gt;{{pcolor|Meowth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;ref name=alolanmeowth/&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|053A|Persian}}&amp;lt;br&amp;gt;{{pcolor|Persian|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Persian does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|440|Happiny}}&amp;lt;br&amp;gt;{{pcolor|Happiny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Oval Stone}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]]&amp;lt;br&amp;gt;holding [[Oval Stone]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|113|Chansey}}&amp;lt;br&amp;gt;{{pcolor|Chansey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|242|Blissey}}&amp;lt;br&amp;gt;{{pcolor|Blissey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Blissey does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;3&amp;quot; | Eevee is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | {{MSP|133|Eevee}}&amp;lt;br&amp;gt;{{pcolor|Eevee|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|196|Espeon}}&amp;lt;br&amp;gt;{{pcolor|Espeon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Espeon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|197|Umbreon}}&amp;lt;br&amp;gt;{{pcolor|Umbreon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Umbreon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|TM Fairy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship while knowing a fairy type move)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→{{sup/8|SwSh}}&lt;br /&gt;
| {{MSP|700|Sylveon}}&amp;lt;br&amp;gt;{{pcolor|Sylveon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Sylveon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;2&amp;quot; | Pichu is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|172|Pichu}}&amp;lt;br&amp;gt;{{pcolor|Pichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|025|Pikachu}}&amp;lt;br&amp;gt;{{pcolor|Pikachu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Thunder Stone}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Thunder Stone}} + {{bag|Town Map}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(in [[Alola]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026A|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Electric}}{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Cleffa is the lowest in its line&lt;br /&gt;
| {{MSP|173|Cleffa}}&amp;lt;br&amp;gt;{{pcolor|Cleffa|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|035|Clefairy}}&amp;lt;br&amp;gt;{{pcolor|Clefairy|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|036|Clefable}}&amp;lt;br&amp;gt;{{pcolor|Clefable|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Igglybuff is the lowest in its line&lt;br /&gt;
| {{MSP|174|Igglybuff}}&amp;lt;br&amp;gt;{{pcolor|Igglybuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|039|Jigglypuff}}&amp;lt;br&amp;gt;{{pcolor|Jigglypuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|040|Wigglytuff}}&amp;lt;br&amp;gt;{{pcolor|Wigglytuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Togepi is the lowest in its line&lt;br /&gt;
| {{MSP|175|Togepi}}&amp;lt;br&amp;gt;{{pcolor|Togepi|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|176|Togetic}}&amp;lt;br&amp;gt;{{pcolor|Togetic|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|468|Togekiss}}&amp;lt;br&amp;gt;{{pcolor|Togekiss|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Azurill is the lowest in its line&lt;br /&gt;
| {{MSP|298|Azurill}}&amp;lt;br&amp;gt;{{pcolor|Azurill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|183|Marill}}&amp;lt;br&amp;gt;{{pcolor|Marill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 18+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|184|Azumarill}}&amp;lt;br&amp;gt;{{pcolor|Azumarill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Budew is the lowest in its line&lt;br /&gt;
| {{MSP|406|Budew}}&amp;lt;br&amp;gt;{{pcolor|Budew|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the morning or [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|315|Roselia}}&amp;lt;br&amp;gt;{{pcolor|Roselia|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|407|Roserade}}&amp;lt;br&amp;gt;{{pcolor|Roserade|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Buneary is the lowest in its line&lt;br /&gt;
| {{MSP|427|Buneary}}&amp;lt;br&amp;gt;{{pcolor|Buneary|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|428|Lopunny}}&amp;lt;br&amp;gt;{{pcolor|Lopunny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lopunny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chingling is the lowest in its line&lt;br /&gt;
| {{MSP|433|Chingling}}&amp;lt;br&amp;gt;{{pcolor|Chingling|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|358|Chimecho}}&amp;lt;br&amp;gt;{{pcolor|Chimecho|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chimecho does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Munchlax is the lowest in its line&lt;br /&gt;
| {{MSP|446|Munchlax}}&amp;lt;br&amp;gt;{{pcolor|Munchlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|143|Snorlax}}&amp;lt;br&amp;gt;{{pcolor|Snorlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Snorlax does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Riolu is the lowest in its line&lt;br /&gt;
| {{MSP|447|Riolu}}&amp;lt;br&amp;gt;{{pcolor|Riolu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|448|Lucario}}&amp;lt;br&amp;gt;{{pcolor|Lucario|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}{{typecolor|Steel}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lucario does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Woobat is the lowest in its line&lt;br /&gt;
| {{MSP|527|Woobat}}&amp;lt;br&amp;gt;{{pcolor|Woobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|528|Swoobat}}&amp;lt;br&amp;gt;{{pcolor|Swoobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Swoobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|540|Sewaddle}}&amp;lt;br&amp;gt;{{pcolor|Sewaddle|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 20+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|541|Swadloon}}&amp;lt;br&amp;gt;{{pcolor|Swadloon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|542|Leavanny}}&amp;lt;br&amp;gt;{{pcolor|Leavanny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Leavanny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Type: Null is the lowest in its line&lt;br /&gt;
| {{MSP|772|Type: Null}}&amp;lt;br&amp;gt;{{pcolor|Type: Null|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|773|Silvally}}&amp;lt;br&amp;gt;{{pcolor|Silvally|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Silvally does not evolve&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybl|5px}}&amp;quot; | Snom is the lowest in its line&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|872|Snom}}&amp;lt;br&amp;gt;{{pcolor|Snom|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|873|Frosmoth}}&amp;lt;br&amp;gt;{{pcolor|Frosmoth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybr|5px}}&amp;quot; | Frosmoth does not evolve&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=alolanmeowth&amp;gt;In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], {{rf|Alolan}} {{p|Meowth}} evolves at [[level]] 28 regardless of friendship level.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Raters===&lt;br /&gt;
Friendship raters are [[Non-player character|NPC]]s that will indicate the friendship of the first {{OBP|Pokémon|species}} in the {{player}}&#039;s [[party]] when spoken to.&lt;br /&gt;
&lt;br /&gt;
====Locations====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Region&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | City&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | Location: NPC&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Distinct evaluations&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Kanto]] || [[Celadon City]]&amp;lt;small&amp;gt; ({{gameabbrev1|Y}})&amp;lt;/small&amp;gt; || [[Celadon Mansion]], first floor || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev3|FRLG}})&amp;lt;/small&amp;gt; || {{ga|Blue}}&#039;s house: {{Daisy}} || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev7|PE}})&amp;lt;/small&amp;gt; || Rival&#039;s house: Rival&#039;s sister || ?&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Johto]] || [[Goldenrod City]] ||  House east of the Department Store: woman || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Goldenrod City]]{{dotw|Sunday}} || [[Goldenrod Department Store]], {{DL|Goldenrod Department Store|Fifth Floor: TM Corner|fifth floor}}: woman || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Hoenn]] || [[Verdanturf Town]] || Southwestern-most house: woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pacifidlog Town]] ||Southwestern-most house: {{tc|Gentleman}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Orre]]&amp;lt;small&amp;gt; ({{gameabbrevss|XD}} only)&amp;lt;/small&amp;gt; || [[Gateon Port]] || [[Krabby Club]], upper floor: the captain || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Sinnoh]] || [[Hearthome City]] || [[Pokémon Fan Club]] (east of the Poké Mart): {{tc|Beauty}} || 6{{sup/4|DP}} or 7{{sup/4|Pt}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| {{rt|213|Sinnoh}} || House south of the [[Pastoria City]] [[gate]]: [[Dr. Footstep]] || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Eterna City]] || Pokémon Center: {{tc|Aroma Lady}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokétch]]: {{DL|Pokétch|Friendship Checker}} app || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Unova]] || [[Icirrus City]] || [[Pokémon Fan Club]] (south of Gym): woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Nacrene City]] || Building east of the [[Pokémon Center]]: woman with a Pokémon&amp;lt;!--It is *not* worth saying what in which versions--&amp;gt; || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{gameabbrev5|B2W2}}: Call [[Bianca]] on the [[Xtransceiver]] || 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; rowspan=2 | [[Kalos]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Santalune City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | House west of the [[Pokémon Center]]: {{tc|Beauty}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Laverre City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Pokémon Fan Club]] (in the northwest): {{tc|Pokémon Breeder}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Alola]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Konikoni City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Female {{tc|Veteran}} next to the TM Shop&#039;s street sign&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Galar]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Hammerlocke]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Young boy in building across the street from the [[Pokémon Center]] closest to the entrance&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | ?&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
The [[Johto]] and [[Hoenn]] raters in the [[Goldenrod Department Store]] and [[Pacifidlog Town]] will give out {{TM|21|Frustration}} or {{TM|27|Return}} (or neither) depending on the friendship of the player&#039;s lead Pokémon.&lt;br /&gt;
&lt;br /&gt;
====Evaluation====&lt;br /&gt;
=====Yellow=====&lt;br /&gt;
The woman will comment on the [[Red&#039;s Pikachu|starter Pikachu]]&#039;s friendship if it is following the player, which requires it to be in the party and not [[fainting|fainted]] (if the player has multiple starter Pikachu in the party, the first one must not be fainted).&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You look like a fantastic duo. You&#039;re making me jealous!&amp;quot;&lt;br /&gt;
| 201-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Your &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt; looks happy with you.&amp;quot;&lt;br /&gt;
| 161-200&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Your &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt; seems tamed.&amp;quot;&lt;br /&gt;
| 131-160&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must be happy to have a &amp;lt;sc&amp;gt;Pokemon&amp;lt;/sc&amp;gt; that cute.&amp;quot;&lt;br /&gt;
| 101-130&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Why don&#039;t you take more care with &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt;?&amp;quot;&lt;br /&gt;
| 51-100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems like it hasn&#039;t been tamed at all.&amp;quot;&lt;br /&gt;
| 0-50&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Gold, Silver, and Crystal=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 150-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 50-149&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Stadium 2=====&lt;br /&gt;
While there is no [[Non-player character|NPC]] that rates friendship, when viewing a table with {{OBP|Pokémon|species}}, its value is listed there (along other elements such as [[type]], [[Trainer ID number]] or [[item]]), in levels. Pokémon data read from a [[Generation I]] game will always be rated as &#039;&#039;Not quite&#039;&#039;, even for {{ga|Red&#039;s Pikachu}} in {{game|Yellow}}, which does have its friendship tracked.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Pretty good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | A little bit&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not quite&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Not at all&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Ruby, Sapphire, and Emerald=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It adores you. It can&#039;t possibly love you any more. I even feel happy seeing it.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It obviously likes you a whole lot.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a lot. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has scary viciousness in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say&amp;amp;hellip; Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It clearly likes you very much. A &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not bad, but it&#039;s also not good. You, as the &amp;lt;sc&amp;gt;Trainer&amp;lt;/sc&amp;gt;, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Box: Ruby and Sapphire=====&lt;br /&gt;
In [[Pokémon Box: Ruby and Sapphire]], when viewing a table of Pokémon, the Pokémon&#039;s friendship rating is listed, along with other properties (e.g. [[type]], [[level]], etc.).&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | So-so&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not good&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Meager &lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====FireRed and LeafGreen=====&lt;br /&gt;
{{main|Daisy Oak}}&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It couldn&#039;t possibly love you any more than it does now. Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; is happy beyond words.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks very happy. I wish {{ga|Blue|&amp;lt;rival&amp;gt;}} could see this and learn something from it.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly with you. Keep being good to it!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. Trust must be growing between you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not quite familiar with you yet. &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; are all quite wary when you first get them.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&amp;lt;Player&amp;gt;, I don&#039;t like the way it glares at you. Could you try being a little nicer to it?&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip;Um, it&#039;s not easy for me to say this, but&amp;amp;hellip; Is there some reason why your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; would hate you so much?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====XD: Gale of Darkness=====&lt;br /&gt;
The friendship rater is located inside the [[Krabby Club]] in [[Gateon Port]]. He is upstairs, straight to the rear of the club (not the ones backstage) and standing near the bartender. He looks like a boat captain. He is present after starting the events in [[Pyrite Town]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! It couldn&#039;t possibly get to like you more. This is wonderful!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you very much. Your [[Pokémon]] seems to be very happy that it&#039;s with you.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a bit. It wants to be pampered by you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s growing friendly toward you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to be used to you yet. You should treat it kindly.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not friendly toward you. The look in its eyes is frightening. You should treat it more kindly.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip; This is awful. It detests you to a degree I hardly ever see. Are you sure you&#039;ll be okay?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Diamond, Pearl, and Platinum=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{cute color light}}|Dr. Footstep}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center&amp;quot; | Refer to [[Dr. Footstep#Friendship levels|Dr. Footstep &amp;amp;rarr; Friendship levels]].&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Pokétch#Friendship Checker|Friendship Checker (Pokétch app)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two large hearts&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two small hearts&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| One small heart&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves towards stylus)&lt;br /&gt;
| 70-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves away from stylus)&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Eterna City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s becoming comfortable around you, I think.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It needs to get used to you more.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |  {{color2|{{sinnoh color light}}|Hearthome City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! Why, I feel like I am intruding!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you. I can tell you treat it kindly.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly to you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. That&#039;s my impression.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s feeling neutral toward you. It&#039;s up to you to change that.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It seems to dislike you a little.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;Oh, my&amp;amp;hellip; I think this one really hasn&#039;t taken too kindly to you.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====HeartGold and SoulSilver=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 149-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 51-148&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-50&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Black and White=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Nacrene City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you! It must be happy with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may still take some time.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Black 2 and White 2=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{white color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{white color light}}|Bianca}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What great friends you are! It&#039;s so nice how you trust each other! It makes me kinda jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You two sure get along great! It looks like you are having fun together! You seem bright and cheerful!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You seem really close! You look so, so happy! It&#039;s enough to make me happy too!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You&#039;re starting to get to be friends. Just maybe, walking along the same path has made you understand one another.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You still have room for improvement. How nice! I mean, you can become even better friends!&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You aren&#039;t getting along, are you? It&#039;s glaring at you with a look that&#039;s kinda scary.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;You aren&#039;t getting along, are you? It doesn&#039;t look like it&#039;s having fun even when you&#039;re together.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====X and Y=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Santalune City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Very connected to each other! That&#039;s what it looks like to me!&amp;quot;&lt;br /&gt;
|120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Just getting to know each other… Yes, I think that&#039;s how I&#039;d put it.&amp;quot;&lt;br /&gt;
|70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Capable of understanding each other much more than now. Look forward to that, OK?&amp;quot;&lt;br /&gt;
|0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Laverre City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s amazingly friendly toward you! It must be so happy spending every day with you!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must really like your &amp;lt;Pokémon&amp;gt; and always keep it by your side!&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Well, I think you and &amp;lt;Pokémon&amp;gt; will be an even greater combo someday!&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip;I think you have a lot of time ahead of you to get to know one another better.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Don&#039;t tell me! Are you just letting it get knocked out in Pokémon battles?!&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;What&#039;s this? Are you a disciplinarian? Or do you plan to use the move Frustration?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Omega Ruby and Alpha Sapphire=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s extremely friendly toward you. It couldn&#039;t possibly love you more. It&#039;s a pleasure to see!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It&#039;s obviously friendly toward you.&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly toward you. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has a scary look in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say… Your Pokémon simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
|0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s clearly very friendly toward you. A Pokémon that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It&#039;s not bad, but it’s also not good. You, as the Trainer, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening Pokémon like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Sun, Moon, Ultra Sun, and Ultra Moon=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;My! It feels incredibly close to you! Nothing makes it happier than being with you!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|-style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You clearly love your &amp;lt;Pokémon&amp;gt;, and you must spend a lot of time together.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hm. I&#039;d say that you and &amp;lt;Pokémon&amp;gt; have the potential to be an even greater combo.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm. I think…it feels friendly toward you. At least a little…&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm… I&#039;d say that you and your Pokémon still have a long way to go.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What is going on here? Do you let it get knocked out a lot in battles or something? This is bad.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Oh dear. You must be a merciless Trainer… Do you use Frustration or just not know better?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Misconceptions===&lt;br /&gt;
Although frequently reported to the contrary, the following factors do &#039;&#039;not&#039;&#039; affect friendship&lt;br /&gt;
====Generation I====&lt;br /&gt;
* Trying to release the starter Pikachu&lt;br /&gt;
* Trying to evolve the starter Pikachu with a Thunder Stone&lt;br /&gt;
* Battling against an [[Elite Four]] member or the [[Pokémon Champion|Champion]]&lt;br /&gt;
&lt;br /&gt;
====Generation II onwards====&lt;br /&gt;
* Depositing a {{OBP|Pokémon|species}} in the [[Pokémon Storage System]]&lt;br /&gt;
* Healing a Pokémon with low {{stat|HP}} or with a [[status condition]]&lt;br /&gt;
* Giving a Pokémon an [[Held item|item to hold]] (except the [[Soothe Bell]])&lt;br /&gt;
* [[Evolution|Evolving]] a Pokémon, regardless of method ([[level]] up, [[held item]], or [[Evolution stone]], with the exception of [[Methods of evolution#evolution via trading|trade evolutions]], which reset the Pokémon&#039;s friendship)&lt;br /&gt;
* Using a Pokémon in {{pkmn|battle}}&lt;br /&gt;
* Winning battles with a Pokémon&lt;br /&gt;
* Letting a Pokémon&#039;s HP fall to critical status&lt;br /&gt;
* Letting the {{player}}&#039;s Pokémon get a status condition like {{status|paralysis}}&lt;br /&gt;
* Walking when the player&#039;s Pokémon has a status condition&lt;br /&gt;
* Increasing [[Affection]]&lt;br /&gt;
&lt;br /&gt;
==In spin-off games==&lt;br /&gt;
{{incomplete|section|Pokémon Pikachu and Pokémon Pikachu 2 GS}}&lt;br /&gt;
===Pokémon Ranger: Shadows of Almia===&lt;br /&gt;
[[File:Happy Mood SoA.png|frame|Two {{OBP|Pokémon|species}} in a &#039;&#039;Happy Mood&#039;&#039;]]&lt;br /&gt;
Friendship also has an effect in the second game of the [[Pokémon Ranger]] series. {{ra|Partner Pokémon}} can have the condition of &#039;&#039;Fine&#039;&#039;, &#039;&#039;Happy&#039;&#039;, or &#039;&#039;Very Happy&#039;&#039;. When it is in a &#039;&#039;Happy Mood&#039;&#039;, black musical notes appear to come out of it. Multicolored musical notes come out when it is &#039;&#039;Very Happy&#039;&#039;. This may happen whether or not it is with the {{player}}. This state of mind increases the speed the Partner Gauge fills up due to more Partner Energy being provided.&lt;br /&gt;
&lt;br /&gt;
===In Pokémon Pinball: Ruby &amp;amp; Sapphire===&lt;br /&gt;
{{incomplete|section|How the player obtains heart symbols}}&lt;br /&gt;
In [[Pokémon Pinball: Ruby &amp;amp; Sapphire]], the player gets three friendship heart symbols in order to evolve any of the following Pokémon, which would normally evolve by friendship in the [[core series]] games.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;background:#{{cute color light}}; border:5px solid #{{cute color}}&amp;quot;&lt;br /&gt;
! Evolves from !! Evolves into&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Golbat}}&lt;br /&gt;
| {{p|Crobat}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Pichu}}&lt;br /&gt;
| {{p|Pikachu}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Igglybuff}}&lt;br /&gt;
| {{p|Jigglypuff}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Azurill}}&lt;br /&gt;
| {{p|Marill}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Gallery====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color light}}; width:80px; height:20px&amp;quot; | [[File:Pinball RS Friendship.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Friendship sprite&amp;lt;br/&amp;gt;from {{color2|000|Pokémon Pinball: Ruby &amp;amp; Sapphire|Pinball: Ruby &amp;amp; Sapphire}}&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Ash and Pikachu.png|thumb|250px|Ash and Pikachu]]&lt;br /&gt;
In the {{pkmn|anime}}, the bond between {{pkmn|Trainer}}s and their {{OBP|Pokémon|species}} has been a theme since [[EP001|the first episode]], in which {{Ash}} had trouble to form a friendship with his newly obtained {{AP|Pikachu}}. After risking his own safety to protect his [[starter Pokémon]] from a flock of angry {{p|Spearow}}, Ash earned Pikachu&#039;s trust, and the two have been inseparable ever since.&lt;br /&gt;
&lt;br /&gt;
Pokémon that have friendly relationships with their Trainers are said to perform better in {{pkmn|battle}}s. Ash believes that befriending a Pokémon will make it grow stronger, and he treats {{cat|Ash&#039;s Pokémon|all his Pokémon}} with utmost care and respect. However, over the course of the series, some Trainers have been shown to focus on raw strength alone, disregarding their Pokémon&#039;s feelings and well being. Examples include [[Paul]] and [[Cross]].&lt;br /&gt;
&lt;br /&gt;
Aside from regular battles, friendship is valued in [[Pokémon Contest]]s, since the level of cooperation between {{pkmn|Coordinator}} and Pokémon is observed by the [[Contest Judge|panel of judges]] during the [[Appeal|Performance Stage]]. Additionally, in the [[Contest Battle|Battle Stage]], Coordinators are expected to be in synchronicity with their Pokémon the entire time. In &#039;&#039;[[AG078|Cruisin&#039; for a Losin&#039;]]&#039;&#039;, the Director of the {{pkmn|Activities Committee|Contest Committee}}, [[Raoul Contesta|Mr. Contesta]], stated that a Pokémon&#039;s well being must be the number one priority of a Coordinator.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP075|Our Cup Runneth Over!]]&#039;&#039;, Contest Master [[Wallace]] stressed out the importance of kinship. He also said that playing with Pokémon can help Trainers and Coordinators in learning how to bring out the potential of their Pokémon. In addition to enhancing a Pokémon&#039;s appearance, {{pkmn|groomer|Pokémon grooming}} is said to make them happier. Trainers who devote themselves to the development of techniques that improve a Pokémon&#039;s health and happiness are known as {{tc|Pokémon Breeder}}s. There are also people who study to become [[Pokémon Connoisseur]]s in order to be able to identify the compatibility between Trainers and Pokémon, and then offer advice on how to strengthen their friendship.&lt;br /&gt;
&lt;br /&gt;
As in the {{pkmn|games}}, friendship affects the [[power]] of {{m|Frustration}}. This was shown in &#039;&#039;[[AG175|Going for Choke!]]&#039;&#039;, in which [[Harley]]&#039;s {{p|Banette}} received a boost while using the [[move]] under the command of [[Jessie]], a Trainer it does not like. Although the concept of {{cat|Pokémon that evolve by friendship|Evolution by friendship}} has not been addressed directly, the [[Soothe Bell]] has appeared in the anime. In the {{series|XY}}, the friendship between Ash and his {{AP|Greninja}} triggered a temporary transformation known as [[Bond Phenomenon]].&lt;br /&gt;
&lt;br /&gt;
In contrast with the games, where a Pokémon of a certain [[level]] will only obey its Trainer if the trainer possesses specific achievements, disobedient Pokémon in the anime will gain respect for their Trainers after realizing how far the Trainer is willing to go to befriend, protect, and care for the Pokémon.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{cute color light}}|bordercolor={{cute color dark}}&lt;br /&gt;
|zh_yue=親密度 &#039;&#039;{{tt|Chānmahtdouh|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|zh_cmn=親密度 / 亲密度 &#039;&#039;{{tt|Qīnmìdù|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|fr=Amitié&lt;br /&gt;
|de=Zuneigung&amp;lt;br&amp;gt;Freundschaft&lt;br /&gt;
|it=Affetto&lt;br /&gt;
|ko=친밀도 &#039;&#039;Chinmildo&#039;&#039;&lt;br /&gt;
|pl=Przyjaźń&lt;br /&gt;
|es=Amistad&lt;br /&gt;
|vi = Độ thân thiết&lt;br /&gt;
|pt=Amizade{{tt|*|Manuals}} &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Pokémon by base friendship]]&lt;br /&gt;
*[[Affection]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://www.gamefaqs.com/gbc/198308-pokemon-gold-version/faqs/11568 GameFAQs: Pokemon Gold Version (GBC) Happiness Points FAQ by IDeLucas]&lt;br /&gt;
* [http://web.archive.org/web/20070830225419/http://www.gamefaqs.com/portable/ds/file/925601/48344 Generation IV Friendship FAQ by Ruimound]&lt;br /&gt;
* [http://www.psypokes.com/gsc/happiness.php Pokemon Gold, Silver and Crystal :: Happiness Guide]&lt;br /&gt;
{{Pokémon individuality|cute}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
[[Category:Terminology]]&lt;br /&gt;
&lt;br /&gt;
[[de:Freundschaft]]&lt;br /&gt;
[[es:Amistad]]&lt;br /&gt;
[[fr:Bonheur]]&lt;br /&gt;
[[it:Affetto]]&lt;br /&gt;
[[ja:なつき度]]&lt;br /&gt;
[[zh:亲密度]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3170835</id>
		<title>Friendship</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3170835"/>
		<updated>2020-05-23T14:16:06Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In Generation IV */  &amp;quot;255&amp;quot; steps changed to &amp;quot;128&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{samename|Friendship features in {{g|GO}}|Friends (GO)}}&lt;br /&gt;
{{redirect|Happiness|the &amp;quot;Happiness Pokémon&amp;quot; category|Blissey (Pokémon)}}&lt;br /&gt;
{{spading|comment=Still needs research overall, especially regarding values.}}&lt;br /&gt;
{{incomplete|needs=Generation VIII information, manga section}}&lt;br /&gt;
&#039;&#039;&#039;Friendship&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;なつき{{tt|度|ど}}&#039;&#039;&#039; &#039;&#039;degree of emotional attachment&#039;&#039;), also referred to as &#039;&#039;&#039;loyalty&#039;&#039;&#039; in [[Generation II]] core series games, &#039;&#039;&#039;tame&#039;&#039;&#039; in {{game|Yellow}} and [[Pokémon Stadium 2]], and &#039;&#039;&#039;friendliness&#039;&#039;&#039; in [[Pokémon XD: Gale of Darkness]], and commonly referred to by fans as &#039;&#039;&#039;happiness&#039;&#039;&#039;, is a measurement of how much a {{OBP|Pokémon|species}} is attached to its {{pkmn|Trainer}} and enjoys being in their care.&lt;br /&gt;
&lt;br /&gt;
It affects the [[evolution]] of {{cat|Pokémon that evolve by friendship|certain Pokémon}}, the power of {{m|Return}} and {{m|Frustration}}, and the availability of a few in-game [[item]]s and [[Ribbon]]s. Certain events increase a Pokémon&#039;s friendship (gaining a [[level]], walking a certain amount of steps) or decrease it ([[fainting]], using [[herbal medicine]]).&lt;br /&gt;
&lt;br /&gt;
Friendship was introduced in Pokémon Yellow for the {{player}}&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}} only, and expanded to cover all Pokémon in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
In [[Generation VI]], [[Affection]], a separate mechanic, was introduced. However, from [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]] onward, Affection no longer exists and friendship has all of its effects instead.&lt;br /&gt;
&lt;br /&gt;
==In the core series games==&lt;br /&gt;
Friendship debuted in [[Generation I]] as a mechanic that applied only to the {{player}}&#039;s {{p|Pikachu}} in {{game|Yellow}}. In [[Generation II]], it was expanded to cover all Pokémon. In all games, friendship is a value that ranges from 0 to 255 (stored as a single byte). In Pokémon Yellow, Pikachu&#039;s friendship is indicated by the expression it shows when the player talks to it, but in later games, [[#Raters|certain NPCs]] in the games will evaluate the friendship of a Pokémon in the player&#039;s [[party]].&lt;br /&gt;
&lt;br /&gt;
A Pokémon&#039;s friendship is generally set when the player first obtains it. When a Pokémon is first caught from the wild, its friendship starts at its [[List of Pokémon by base friendship|base friendship]] value. Trading a Pokémon also resets its friendship to its base value, unless it is being traded back to its [[original Trainer]] in [[Generation VI]] or later, in which case it regains the friendship it had before being traded away. A Pokémon caught in a [[Friend Ball]] starts with 200 friendship instead of its base friendship, while a Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
Friendship is generally increased by taking good care of a Pokémon. Keeping a Pokémon in the player&#039;s party, raising it, using items on it, and getting it [[Pokémon groomer|groomed]] will all increase a Pokémon&#039;s friendship. Letting it faint and using bitter [[herbal medicine]]s on it will decrease a Pokémon&#039;s friendship.&lt;br /&gt;
&lt;br /&gt;
===Boosting friendship===&lt;br /&gt;
In {{game|Crystal}}, if a Pokémon is leveled up at its met location, it will gain twice as much friendship from that level up as usual. Since only Pokémon caught in Pokémon Crystal have a defined met location, Pokémon caught in the [[Generation I]] games, {{game|Gold and Silver|s}}, and Pokémon from [[in-game trade]]s will not receive this bonus. If a Pokémon that has a defined met location is traded to a Generation I game, this data is permanently erased, so it can no longer receive this bonus.&lt;br /&gt;
&lt;br /&gt;
Starting in Generation III, if a Pokémon was caught in a [[Luxury Ball]] or is currently at the same location where it was {{pkmn2|caught}} (its met location), any increase to its friendship is boosted by an extra point (two points if both apply). If a Pokémon is holding a [[Soothe Bell]], increases to its friendship are boosted by 50% of the change. In Generation III, Soothe Bell applies directly to the original change in friendship, while in later games, it applies to the friendship change after including Luxury Ball and met location bonuses. In Generation IV, being at its met location does not change the amount of friendship a Pokémon gains, but it does from Generation V onward.&lt;br /&gt;
&lt;br /&gt;
In Generation V, the Befriending Power [[Pass Power]] boosts any increase to friendship by one to three points depending on the strength of the power used. In Generation VI, the Befriending Power [[O-Power]] has the same effect. Befriending Power does not exist in [[Generation VII]].&lt;br /&gt;
&lt;br /&gt;
None of these effects change the amount of friendship lost for negative changes or for changes of 0 (such as using an [[X Attack]] on a Pokémon with high friendship).&lt;br /&gt;
&lt;br /&gt;
===Mechanics using friendship===&lt;br /&gt;
In Pokémon Yellow, friendship affected very little beyond the reactions Pikachu would show when interacted with.&lt;br /&gt;
&lt;br /&gt;
Starting in [[Generation II]], there are {{cat|Pokémon that evolve by friendship}}, which can only evolve if they have 220 friendship or more. Additionally, the moves {{m|Return}} and {{m|Frustration}} vary in power depending on how high or low the user&#039;s friendship is.&lt;br /&gt;
&lt;br /&gt;
From [[Generation IV]] onward, there is a [[Ribbon]] for Pokémon with maximum friendship, the {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
Some NPCs also only give gifts or [[Move Tutor|teach moves]] when the player&#039;s Pokémon has a certain amount of friendship.&amp;lt;!--Maybe should be listed. I think the Soothe Bell and Lucky Egg are a couple (sometimes?).--&amp;gt; Specifically, a Pokémon must have maximized friendship to learn {{m|Draco Meteor}}, {{m|Frenzy Plant}}, {{m|Blast Burn}}, {{m|Hydro Cannon}}, {{m|Grass Pledge}}, {{m|Fire Pledge}}, or {{m|Water Pledge}} in any generation.&lt;br /&gt;
&lt;br /&gt;
In {{2v2|Omega Ruby|Alpha Sapphire}}, [[Nameless Cavern]] becomes unlocked once the {{player}} has three Pokémon with maximum friendship on their team.&lt;br /&gt;
&lt;br /&gt;
=====Moves=====&lt;br /&gt;
Friendship affects the following moves.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 5px solid #{{cute color light}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; class=&amp;quot;sortable roundy&amp;quot; style=&amp;quot;text-align:center; background: #FFFFFF; border:1px solid #{{cute color}}; border-collapse:collapse;&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Move&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Type]]&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Damage category|Category]]&lt;br /&gt;
! [[Power]]&lt;br /&gt;
! [[Accuracy]]&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; | Notes&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Frustration}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The lower the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Pika Papow}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
{{statustable|Special}}&lt;br /&gt;
| Varies&lt;br /&gt;
|  —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Return}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Veevee Volley}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===In Generation I===&lt;br /&gt;
[[File:PikachuY-Happy.png|thumb|right|{{ga|Red&#039;s Pikachu|Pikachu}} with high friendship]]&lt;br /&gt;
In {{game|Yellow}}, there is a friendship system exclusively for the player&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}}. Any Pikachu that the player is the [[Original Trainer]] of (according to their Original Trainer name and [[Trainer ID number]]) is treated as the player&#039;s starter Pikachu. Raichu and {{pkmn2|Outsider}} Pikachu are not affected, even if the Raichu was the player&#039;s starter Pokémon but evolved (which can only be done by first [[trade|trading]] it to another game).&lt;br /&gt;
&lt;br /&gt;
The starter Pikachu [[Walking Pokémon|follows the player in the overworld]], if it is in the party and not [[fainting|fainted]] (if the player has multiple, Pikachu will follow if the first starter Pikachu in the party is not fainted). If the player interacts with Pikachu, a window will pop up showing Pikachu&#039;s face, and the expression is affected by Pikachu&#039;s current friendship (though certain special events may elicit special reactions unrelated to Pikachu&#039;s current friendship). At maximum friendship, Pikachu jumps up and down before the window appears.&lt;br /&gt;
&lt;br /&gt;
In [[Cerulean City]], [[Melanie]] gives the player a {{p|Bulbasaur}} if the starter Pikachu&#039;s friendship is 147 or higher. The player does not need to have Pikachu in the party or even in the game itself to receive this Bulbasaur. This is the only significance of friendship outside of interacting with Pikachu.&lt;br /&gt;
&lt;br /&gt;
Pikachu starts with a [[List of Pokémon by base friendship|base friendship]] of 90. Various actions can increase or decrease Pikachu&#039;s friendship level.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! colspan=2 rowspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Starter Pikachu [[level|levels]] up while in the party || rowspan=2 | +5 || rowspan=2 | +3 || rowspan=2 | +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Use [[medicine]] on starter Pikachu (even if unsuccessful),&amp;lt;br&amp;gt;other than [[PP Up]], [[Full Heal]], [[Revive]], [[Max Revive]], [[Ether]], [[Max Ether]], [[Elixir|Elixer]], [[Max Elixir|Max Elixer]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Challenge a [[Gym Leader]] with non-fainted starter Pikachu in the party&amp;lt;br&amp;gt;(if the player has multiple, the first Pikachu in the party must not be fainted)&lt;br /&gt;
|| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walk 255 steps with Pikachu following (50% chance)&lt;br /&gt;
| +2&lt;br /&gt;
| colspan=2 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Teach Pikachu a [[TM]] or [[HM]] move&lt;br /&gt;
| colspan=2 rowspan=2 | +1 || rowspan=2 | 0&lt;br /&gt;
|- style=&amp;quot;background:white&amp;quot;&lt;br /&gt;
| colspan=2 | Use a [[battle item]] on starter Pikachu (even if unsuccessful), other than [[X Accuracy]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | Starter Pikachu [[fainting|faints]]&amp;lt;br&amp;gt;(including during link battles)&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5&lt;br /&gt;
| -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Deposit starter Pikachu in the [[Pokémon Storage System]] from the party&lt;br /&gt;
| colspan=2 | -3 || -5&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Trade]] Pikachu away&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; colspan=2 | -10&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is a single friendship value per game, and it remains even if the starter Pikachu is traded away. Trading away Pikachu will decrease its friendship, but this decreased value will be remembered when it returns. The player can still obtain Bulbasaur from Melanie if Pikachu has the appropriate friendship, even if they no longer have a starter Pikachu in their game. If the player has multiple Pikachu which qualify as their starter Pikachu in a single game, all of these Pikachu share the same friendship value, so any friendship-modifying event applies to all of them.&lt;br /&gt;
&lt;br /&gt;
[[Vitamin]]s, [[battle item]]s and {{cat|HP-restoring items}} increase Pikachu&#039;s friendship even if they have no effect. For example, attempting to use a [[Potion]] on a Pikachu that has [[fainting|fainted]] or has full health, an [[Antidote]] when Pikachu is not {{status|poison}}ed, [[Calcium]] when Pikachu has already reached its maximum {{DL|Statistic|Special}} [[stat experience]], or [[X Special]] when the Special stat has already been [[Statistic#Stat modifiers|raised 6 stages]] in battle. This does not consume the item, so the same item can repeatedly increase Pikachu&#039;s friendship. However, battle items such as [[X Special]] only raise Pikachu&#039;s friendship if they are used in-battle, since they are unusable outside battles in the first place. Waking Pikachu up with the [[Poké Flute]] (either in or out of battle) does not change its friendship.&lt;br /&gt;
&lt;br /&gt;
===In Generation II===&lt;br /&gt;
In [[Generation II]], friendship was expanded to cover all Pokémon. All Pokémon have a [[List of Pokémon by base friendship|base friendship]] of 70, but any Pokémon caught in a [[Friend Ball]] starts with 200 friendship and any Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Gold|Silver|Crystal}}, [[#Gold, Silver, and Crystal|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Goldenrod City]].&lt;br /&gt;
&lt;br /&gt;
The met location boost was first introduced in {{game|Crystal}}.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Pokémon groomer|Grooming]] ([[haircut brothers]])&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (younger brother: 10%)&lt;br /&gt;
| colspan=2 | +10 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (older brother: 20%)&lt;br /&gt;
| colspan=2 | +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot; (older brother: 50%, younger: 30%)&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot; (older brother: 30%, younger: 60%)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Level]] up || Always{{sup/2|GS}}/Anywhere except met location{{sup/2|C}} || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| At met location{{sup/2|C}} || +10 || +6 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, the [[Pokémon Champion|Champion]], or [[Red (game)|Red]] (whole party)&lt;br /&gt;
| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}})&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 512 steps (whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], and [[Carbos]]&lt;br /&gt;
††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], and [[X Sp. Atk|X Special]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation III===&lt;br /&gt;
In [[Generation III]], different [[Pokémon (species)|species]] of Pokémon were given individualized [[List of Pokémon by base friendship|base friendship]] values. The [[Luxury Ball]] and [[Soothe Bell]] boosts were also introduced.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Ruby|Sapphire|Emerald}}, [[#Ruby, Sapphire, and Emerald|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Verdanturf Town]]. In {{game|FireRed and LeafGreen|s}}, [[Daisy Oak]] will perform the [[#FireRed and LeafGreen|same service]] in [[Pallet Town]]. In addition, in Pokémon FireRed and LeafGreen, the degree to which a Pokémon moves towards the screen after an item is used on it will also indicate how high its friendship is.&lt;br /&gt;
&lt;br /&gt;
In the table below, fainting in battle will not alter a Pokémon&#039;s friendship if it fainted from {{status|poison}} at the end of a turn.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}†{{sup/3|E}}&lt;br /&gt;
| +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Vivid Scent]]{{sup/ss|XD}} || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Excite Scent]]{{sup/ss|XD}} || +4 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/3|FRLG}}&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Joy Scent]]{{sup/ss|XD}} || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation IV===&lt;br /&gt;
{{incomplete|section|Figure out the probabilities for the variable massage/grooming events}}&lt;br /&gt;
[[File:Friendship Checker App.png|thumb|200px|right|The [[Pokétch]]&#039;s Friendship Checker app with a {{p|Drifblim}} at maximum friendship.]]&lt;br /&gt;
In Generation IV only, a Pokémon&#039;s met location does not affect the amount of friendship it gains. In Pokémon Diamond, Pearl, and Platinum, the massage at the [[Ribbon Syndicate]] is also not affected by any friendship boosts, and the Soothe Bell does not affect friendship gained when using a [[battle item]].&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl, and Platinum, [[#Diamond, Pearl, and Platinum|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found in [[Hearthome City]], or the player may use the {{DL|Pokétch|Friendship Checker}} app on the [[Pokétch]]. In {{game|HeartGold and SoulSilver|s}}, [[#HeartGold and SoulSilver|an NPC]] in [[Goldenrod City]] will also evaluate the friendship of the first Pokémon in the player&#039;s party, or a [[walking Pokémon]]&#039;s friendship may also be gauged by its reaction when speaking to it.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Ribbon Syndicate]]){{sup/4|DPPt}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;Our treatment has made your pampered baby [...] friendly to you.&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Grooming]] ([[haircut brothers]]){{sup/4|HGSS}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/4|HGSS}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ([[Veilstone City]] [[Massage Girl]]){{sup/4|DPPt}}&lt;br /&gt;
| colspan=3 | +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Surviving {{status|poison}} with 1 HP outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation V===&lt;br /&gt;
{{incomplete|section|Effects of Makeups at the {{DL|Join Avenue|Beauty Salon}}; check whether boosts like Luxury Ball apply to Join Avenue events}}&lt;br /&gt;
Generation V introduced Befriending Power as a [[Pass Power]] to boost friendship gains.&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to the massage in [[Castelia City]].&lt;br /&gt;
&lt;br /&gt;
In the Generation V games, [[#Black and White|an NPC]] who will evaluate the friendship of the Pokémon in the player&#039;s [[party]] can be found in [[Icirrus City]], with a second NPC only found in [[Nacrene City]] during {{game|Black and White|s}} who checks the player&#039;s first Pokémon. In {{game|Black and White|s|Pokémon Black 2 and White 2|2}}, the player may also contact [[Bianca]] on the [[Xtransceiver]] to have their Pokémon&#039;s friendship rated.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Royal Cut{{sup/5|W2}}&lt;br /&gt;
| colspan=3 | +50&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Beauty Cut{{sup/5|B2}}&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Smile Cut{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ({{DL|Castelia City|Castelia Street}}{{sup/5|BW}}/{{DL|Castelia City|Medal Office}}{{sup/5|B2W2}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage has made your Pokémon [...] friendly to you!&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Shampoo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Combo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Brushing{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Lunch{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Drink{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation VI===&lt;br /&gt;
{{incomplete|section|Check if [[Pokéblock]]s add friendship and chance of increasing friendship every 128 steps}}&lt;br /&gt;
In Generation VI, Befriending Power becomes an [[O-Power]].&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to massages, drinks from the [[Juice Shoppe]], or the Soothing Bag in [[Super Training]].&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon X and Y]], [[#X and Y|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found early on in [[Santalune City]], or later in [[Laverre City]]. In [[Pokémon Omega Ruby and Alpha Sapphire]], [[#Omega Ruby and Alpha Sapphire|an NPC]] in [[Verdanturf Town]] will also evaluate the friendship of the first Pokémon in the player&#039;s party.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ({{DL|Secret Base|Secret Pals}}){{sup/6|ORAS}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Cyllage City]]{{sup/6|XY}}/[[Mauville City]]{{sup/6|ORAS&lt;br /&gt;
}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage made your Pokémon [...] friendly toward you&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Super Training]]: Soothing Bag&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Juice Shoppe]]: Colorful Shake&lt;br /&gt;
| Custom-made&lt;br /&gt;
| colspan=3 | +12 to 32 (depending on Berries used)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Pre-made&lt;br /&gt;
| colspan=3 | +1 per {{PDollar}}100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Juice Shoppe]]: Rare Soda, Ultra Rare Soda, Perilous Soup, or EV Juices&lt;br /&gt;
| colspan=3 | +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation VII===&lt;br /&gt;
====Pokémon Sun, Moon, Ultra Sun, and Ultra Moon====&lt;br /&gt;
{{incomplete|section|Check [[Festival Plaza]] events and walking mechanics}}&lt;br /&gt;
Friendship boosts do not apply to massages.&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Sun and Moon|Pokémon Sun, Moon]], {{pkmn|Ultra Sun and Ultra Moon}}, [[#Sun, Moon, Ultra Sun, and Ultra Moon|an NPC]] who will evaluate the friendship of a Pokémon in the player&#039;s [[party]] can be found in [[Konikoni City]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Konikoni City]])&lt;br /&gt;
| &amp;quot;&#039;&#039;I think you&#039;ll notice a lot of friendly feelings!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;[It] helped inspire some good, friendly feelings toward you.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;It&#039;s feeling a bit more friendly toward you already, I&#039;d say.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Combo&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Lunch&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Drink&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Poké Pelago|Isle Avue}} hot springs || colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against an [[Island Kahuna]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!====&lt;br /&gt;
{{incomplete|section|How to raise friendship (ie walking or feeding candy) and friendship benefits (ie those seen with affection)}}&lt;br /&gt;
In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], friendship is factored into all of a Pokémon&#039;s stats, except HP. At maximum friendship, a Pokémon will receive a 10% boost to its stats, before [[awakening values|AVs]] are added in. The friendship multiplier scales directly with the level of friendship, starting from a 0% boost at 0 friendship to receiving the full 10% at 255.&lt;br /&gt;
&lt;br /&gt;
===In Generation VIII===&lt;br /&gt;
{{incomplete|section|Chart for means to increase friendship}}&lt;br /&gt;
Increasing friendship with means other than [[Pokémon Camp]] will only maximize a Pokémon&#039;s friendship value at 160, although this is sufficient for friendship-based evolutions. Pokémon Camp is the only means to reach the maximum friendship value of 255.&lt;br /&gt;
&lt;br /&gt;
===Evolutions===&lt;br /&gt;
{{incomplete|section|Friendship value needed for friendship evolution in Sword and Shield}}&lt;br /&gt;
Several {{OBP|Pokémon|species}} [[Evolution|evolve]] after being [[level]]ed up when their friendship value is 220 or higher (before [[Generation VIII]]).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{cute color}}; {{roundy|10px}}; border: 3px solid #{{cute color dark}}&amp;quot; cellpadding=2px&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytl|5px}}&amp;quot; | Previous evolution&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color light}}&amp;quot; | Friendship evolution&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytr|5px}}&amp;quot; | Later evolution&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|041|Zubat}}&amp;lt;br&amp;gt;{{pcolor|Zubat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 22+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|042|Golbat}}&amp;lt;br&amp;gt;{{pcolor|Golbat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|169|Crobat}}&amp;lt;br&amp;gt;{{pcolor|Crobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Crobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Meowth is the lowest in its line&lt;br /&gt;
| {{MSP|052A|Meowth}}&amp;lt;br&amp;gt;{{pcolor|Meowth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;ref name=alolanmeowth/&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|053A|Persian}}&amp;lt;br&amp;gt;{{pcolor|Persian|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Persian does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|440|Happiny}}&amp;lt;br&amp;gt;{{pcolor|Happiny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Oval Stone}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]]&amp;lt;br&amp;gt;holding [[Oval Stone]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|113|Chansey}}&amp;lt;br&amp;gt;{{pcolor|Chansey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|242|Blissey}}&amp;lt;br&amp;gt;{{pcolor|Blissey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Blissey does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;3&amp;quot; | Eevee is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | {{MSP|133|Eevee}}&amp;lt;br&amp;gt;{{pcolor|Eevee|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|196|Espeon}}&amp;lt;br&amp;gt;{{pcolor|Espeon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Espeon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|197|Umbreon}}&amp;lt;br&amp;gt;{{pcolor|Umbreon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Umbreon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|TM Fairy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship while knowing a fairy type move)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→{{sup/8|SwSh}}&lt;br /&gt;
| {{MSP|700|Sylveon}}&amp;lt;br&amp;gt;{{pcolor|Sylveon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Sylveon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;2&amp;quot; | Pichu is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|172|Pichu}}&amp;lt;br&amp;gt;{{pcolor|Pichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|025|Pikachu}}&amp;lt;br&amp;gt;{{pcolor|Pikachu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Thunder Stone}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Thunder Stone}} + {{bag|Town Map}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(in [[Alola]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026A|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Electric}}{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Cleffa is the lowest in its line&lt;br /&gt;
| {{MSP|173|Cleffa}}&amp;lt;br&amp;gt;{{pcolor|Cleffa|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|035|Clefairy}}&amp;lt;br&amp;gt;{{pcolor|Clefairy|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|036|Clefable}}&amp;lt;br&amp;gt;{{pcolor|Clefable|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Igglybuff is the lowest in its line&lt;br /&gt;
| {{MSP|174|Igglybuff}}&amp;lt;br&amp;gt;{{pcolor|Igglybuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|039|Jigglypuff}}&amp;lt;br&amp;gt;{{pcolor|Jigglypuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|040|Wigglytuff}}&amp;lt;br&amp;gt;{{pcolor|Wigglytuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Togepi is the lowest in its line&lt;br /&gt;
| {{MSP|175|Togepi}}&amp;lt;br&amp;gt;{{pcolor|Togepi|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|176|Togetic}}&amp;lt;br&amp;gt;{{pcolor|Togetic|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|468|Togekiss}}&amp;lt;br&amp;gt;{{pcolor|Togekiss|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Azurill is the lowest in its line&lt;br /&gt;
| {{MSP|298|Azurill}}&amp;lt;br&amp;gt;{{pcolor|Azurill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|183|Marill}}&amp;lt;br&amp;gt;{{pcolor|Marill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 18+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|184|Azumarill}}&amp;lt;br&amp;gt;{{pcolor|Azumarill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Budew is the lowest in its line&lt;br /&gt;
| {{MSP|406|Budew}}&amp;lt;br&amp;gt;{{pcolor|Budew|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the morning or [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|315|Roselia}}&amp;lt;br&amp;gt;{{pcolor|Roselia|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|407|Roserade}}&amp;lt;br&amp;gt;{{pcolor|Roserade|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Buneary is the lowest in its line&lt;br /&gt;
| {{MSP|427|Buneary}}&amp;lt;br&amp;gt;{{pcolor|Buneary|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|428|Lopunny}}&amp;lt;br&amp;gt;{{pcolor|Lopunny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lopunny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chingling is the lowest in its line&lt;br /&gt;
| {{MSP|433|Chingling}}&amp;lt;br&amp;gt;{{pcolor|Chingling|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|358|Chimecho}}&amp;lt;br&amp;gt;{{pcolor|Chimecho|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chimecho does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Munchlax is the lowest in its line&lt;br /&gt;
| {{MSP|446|Munchlax}}&amp;lt;br&amp;gt;{{pcolor|Munchlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|143|Snorlax}}&amp;lt;br&amp;gt;{{pcolor|Snorlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Snorlax does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Riolu is the lowest in its line&lt;br /&gt;
| {{MSP|447|Riolu}}&amp;lt;br&amp;gt;{{pcolor|Riolu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|448|Lucario}}&amp;lt;br&amp;gt;{{pcolor|Lucario|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}{{typecolor|Steel}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lucario does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Woobat is the lowest in its line&lt;br /&gt;
| {{MSP|527|Woobat}}&amp;lt;br&amp;gt;{{pcolor|Woobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|528|Swoobat}}&amp;lt;br&amp;gt;{{pcolor|Swoobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Swoobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|540|Sewaddle}}&amp;lt;br&amp;gt;{{pcolor|Sewaddle|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 20+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|541|Swadloon}}&amp;lt;br&amp;gt;{{pcolor|Swadloon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|542|Leavanny}}&amp;lt;br&amp;gt;{{pcolor|Leavanny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Leavanny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Type: Null is the lowest in its line&lt;br /&gt;
| {{MSP|772|Type: Null}}&amp;lt;br&amp;gt;{{pcolor|Type: Null|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|773|Silvally}}&amp;lt;br&amp;gt;{{pcolor|Silvally|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Silvally does not evolve&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybl|5px}}&amp;quot; | Snom is the lowest in its line&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|872|Snom}}&amp;lt;br&amp;gt;{{pcolor|Snom|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|873|Frosmoth}}&amp;lt;br&amp;gt;{{pcolor|Frosmoth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybr|5px}}&amp;quot; | Frosmoth does not evolve&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=alolanmeowth&amp;gt;In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], {{rf|Alolan}} {{p|Meowth}} evolves at [[level]] 28 regardless of friendship level.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Raters===&lt;br /&gt;
Friendship raters are [[Non-player character|NPC]]s that will indicate the friendship of the first {{OBP|Pokémon|species}} in the {{player}}&#039;s [[party]] when spoken to.&lt;br /&gt;
&lt;br /&gt;
====Locations====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Region&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | City&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | Location: NPC&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Distinct evaluations&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Kanto]] || [[Celadon City]]&amp;lt;small&amp;gt; ({{gameabbrev1|Y}})&amp;lt;/small&amp;gt; || [[Celadon Mansion]], first floor || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev3|FRLG}})&amp;lt;/small&amp;gt; || {{ga|Blue}}&#039;s house: {{Daisy}} || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev7|PE}})&amp;lt;/small&amp;gt; || Rival&#039;s house: Rival&#039;s sister || ?&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Johto]] || [[Goldenrod City]] ||  House east of the Department Store: woman || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Goldenrod City]]{{dotw|Sunday}} || [[Goldenrod Department Store]], {{DL|Goldenrod Department Store|Fifth Floor: TM Corner|fifth floor}}: woman || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Hoenn]] || [[Verdanturf Town]] || Southwestern-most house: woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pacifidlog Town]] ||Southwestern-most house: {{tc|Gentleman}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Orre]]&amp;lt;small&amp;gt; ({{gameabbrevss|XD}} only)&amp;lt;/small&amp;gt; || [[Gateon Port]] || [[Krabby Club]], upper floor: the captain || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Sinnoh]] || [[Hearthome City]] || [[Pokémon Fan Club]] (east of the Poké Mart): {{tc|Beauty}} || 6{{sup/4|DP}} or 7{{sup/4|Pt}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| {{rt|213|Sinnoh}} || House south of the [[Pastoria City]] [[gate]]: [[Dr. Footstep]] || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Eterna City]] || Pokémon Center: {{tc|Aroma Lady}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokétch]]: {{DL|Pokétch|Friendship Checker}} app || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Unova]] || [[Icirrus City]] || [[Pokémon Fan Club]] (south of Gym): woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Nacrene City]] || Building east of the [[Pokémon Center]]: woman with a Pokémon&amp;lt;!--It is *not* worth saying what in which versions--&amp;gt; || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{gameabbrev5|B2W2}}: Call [[Bianca]] on the [[Xtransceiver]] || 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; rowspan=2 | [[Kalos]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Santalune City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | House west of the [[Pokémon Center]]: {{tc|Beauty}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Laverre City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Pokémon Fan Club]] (in the northwest): {{tc|Pokémon Breeder}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Alola]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Konikoni City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Female {{tc|Veteran}} next to the TM Shop&#039;s street sign&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Galar]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Hammerlocke]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Young boy in building across the street from the [[Pokémon Center]] closest to the entrance&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | ?&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
The [[Johto]] and [[Hoenn]] raters in the [[Goldenrod Department Store]] and [[Pacifidlog Town]] will give out {{TM|21|Frustration}} or {{TM|27|Return}} (or neither) depending on the friendship of the player&#039;s lead Pokémon.&lt;br /&gt;
&lt;br /&gt;
====Evaluation====&lt;br /&gt;
=====Yellow=====&lt;br /&gt;
The woman will comment on the [[Red&#039;s Pikachu|starter Pikachu]]&#039;s friendship if it is following the player, which requires it to be in the party and not [[fainting|fainted]] (if the player has multiple starter Pikachu in the party, the first one must not be fainted).&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You look like a fantastic duo. You&#039;re making me jealous!&amp;quot;&lt;br /&gt;
| 201-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Your &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt; looks happy with you.&amp;quot;&lt;br /&gt;
| 161-200&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Your &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt; seems tamed.&amp;quot;&lt;br /&gt;
| 131-160&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must be happy to have a &amp;lt;sc&amp;gt;Pokemon&amp;lt;/sc&amp;gt; that cute.&amp;quot;&lt;br /&gt;
| 101-130&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Why don&#039;t you take more care with &amp;lt;sc&amp;gt;Pikachu&amp;lt;/sc&amp;gt;?&amp;quot;&lt;br /&gt;
| 51-100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems like it hasn&#039;t been tamed at all.&amp;quot;&lt;br /&gt;
| 0-50&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Gold, Silver, and Crystal=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 150-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 50-149&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Stadium 2=====&lt;br /&gt;
While there is no [[Non-player character|NPC]] that rates friendship, when viewing a table with {{OBP|Pokémon|species}}, its value is listed there (along other elements such as [[type]], [[Trainer ID number]] or [[item]]), in levels. Pokémon data read from a [[Generation I]] game will always be rated as &#039;&#039;Not quite&#039;&#039;, even for {{ga|Red&#039;s Pikachu}} in {{game|Yellow}}, which does have its friendship tracked.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Pretty good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | A little bit&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not quite&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Not at all&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Ruby, Sapphire, and Emerald=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It adores you. It can&#039;t possibly love you any more. I even feel happy seeing it.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It obviously likes you a whole lot.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a lot. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has scary viciousness in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say&amp;amp;hellip; Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It clearly likes you very much. A &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not bad, but it&#039;s also not good. You, as the &amp;lt;sc&amp;gt;Trainer&amp;lt;/sc&amp;gt;, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Box: Ruby and Sapphire=====&lt;br /&gt;
In [[Pokémon Box: Ruby and Sapphire]], when viewing a table of Pokémon, the Pokémon&#039;s friendship rating is listed, along with other properties (e.g. [[type]], [[level]], etc.).&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | So-so&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not good&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Meager &lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====FireRed and LeafGreen=====&lt;br /&gt;
{{main|Daisy Oak}}&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It couldn&#039;t possibly love you any more than it does now. Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; is happy beyond words.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks very happy. I wish {{ga|Blue|&amp;lt;rival&amp;gt;}} could see this and learn something from it.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly with you. Keep being good to it!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. Trust must be growing between you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not quite familiar with you yet. &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; are all quite wary when you first get them.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&amp;lt;Player&amp;gt;, I don&#039;t like the way it glares at you. Could you try being a little nicer to it?&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip;Um, it&#039;s not easy for me to say this, but&amp;amp;hellip; Is there some reason why your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; would hate you so much?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====XD: Gale of Darkness=====&lt;br /&gt;
The friendship rater is located inside the [[Krabby Club]] in [[Gateon Port]]. He is upstairs, straight to the rear of the club (not the ones backstage) and standing near the bartender. He looks like a boat captain. He is present after starting the events in [[Pyrite Town]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! It couldn&#039;t possibly get to like you more. This is wonderful!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you very much. Your [[Pokémon]] seems to be very happy that it&#039;s with you.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a bit. It wants to be pampered by you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s growing friendly toward you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to be used to you yet. You should treat it kindly.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not friendly toward you. The look in its eyes is frightening. You should treat it more kindly.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip; This is awful. It detests you to a degree I hardly ever see. Are you sure you&#039;ll be okay?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Diamond, Pearl, and Platinum=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{cute color light}}|Dr. Footstep}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center&amp;quot; | Refer to [[Dr. Footstep#Friendship levels|Dr. Footstep &amp;amp;rarr; Friendship levels]].&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Pokétch#Friendship Checker|Friendship Checker (Pokétch app)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two large hearts&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two small hearts&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| One small heart&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves towards stylus)&lt;br /&gt;
| 70-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves away from stylus)&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Eterna City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s becoming comfortable around you, I think.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It needs to get used to you more.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |  {{color2|{{sinnoh color light}}|Hearthome City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! Why, I feel like I am intruding!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you. I can tell you treat it kindly.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly to you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. That&#039;s my impression.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s feeling neutral toward you. It&#039;s up to you to change that.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It seems to dislike you a little.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;Oh, my&amp;amp;hellip; I think this one really hasn&#039;t taken too kindly to you.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====HeartGold and SoulSilver=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 149-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 51-148&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-50&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Black and White=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Nacrene City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you! It must be happy with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may still take some time.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Black 2 and White 2=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{white color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{white color light}}|Bianca}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What great friends you are! It&#039;s so nice how you trust each other! It makes me kinda jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You two sure get along great! It looks like you are having fun together! You seem bright and cheerful!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You seem really close! You look so, so happy! It&#039;s enough to make me happy too!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You&#039;re starting to get to be friends. Just maybe, walking along the same path has made you understand one another.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You still have room for improvement. How nice! I mean, you can become even better friends!&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You aren&#039;t getting along, are you? It&#039;s glaring at you with a look that&#039;s kinda scary.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;You aren&#039;t getting along, are you? It doesn&#039;t look like it&#039;s having fun even when you&#039;re together.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====X and Y=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Santalune City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Very connected to each other! That&#039;s what it looks like to me!&amp;quot;&lt;br /&gt;
|120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Just getting to know each other… Yes, I think that&#039;s how I&#039;d put it.&amp;quot;&lt;br /&gt;
|70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Capable of understanding each other much more than now. Look forward to that, OK?&amp;quot;&lt;br /&gt;
|0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Laverre City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s amazingly friendly toward you! It must be so happy spending every day with you!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must really like your &amp;lt;Pokémon&amp;gt; and always keep it by your side!&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Well, I think you and &amp;lt;Pokémon&amp;gt; will be an even greater combo someday!&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip;I think you have a lot of time ahead of you to get to know one another better.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Don&#039;t tell me! Are you just letting it get knocked out in Pokémon battles?!&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;What&#039;s this? Are you a disciplinarian? Or do you plan to use the move Frustration?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Omega Ruby and Alpha Sapphire=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s extremely friendly toward you. It couldn&#039;t possibly love you more. It&#039;s a pleasure to see!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It&#039;s obviously friendly toward you.&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly toward you. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has a scary look in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say… Your Pokémon simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
|0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s clearly very friendly toward you. A Pokémon that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It&#039;s not bad, but it’s also not good. You, as the Trainer, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening Pokémon like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Sun, Moon, Ultra Sun, and Ultra Moon=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;My! It feels incredibly close to you! Nothing makes it happier than being with you!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|-style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You clearly love your &amp;lt;Pokémon&amp;gt;, and you must spend a lot of time together.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hm. I&#039;d say that you and &amp;lt;Pokémon&amp;gt; have the potential to be an even greater combo.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm. I think…it feels friendly toward you. At least a little…&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm… I&#039;d say that you and your Pokémon still have a long way to go.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What is going on here? Do you let it get knocked out a lot in battles or something? This is bad.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Oh dear. You must be a merciless Trainer… Do you use Frustration or just not know better?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Misconceptions===&lt;br /&gt;
Although frequently reported to the contrary, the following factors do &#039;&#039;not&#039;&#039; affect friendship&lt;br /&gt;
====Generation I====&lt;br /&gt;
* Trying to release the starter Pikachu&lt;br /&gt;
* Trying to evolve the starter Pikachu with a Thunder Stone&lt;br /&gt;
* Battling against an [[Elite Four]] member or the [[Pokémon Champion|Champion]]&lt;br /&gt;
&lt;br /&gt;
====Generation II onwards====&lt;br /&gt;
* Depositing a {{OBP|Pokémon|species}} in the [[Pokémon Storage System]]&lt;br /&gt;
* Healing a Pokémon with low {{stat|HP}} or with a [[status condition]]&lt;br /&gt;
* Giving a Pokémon an [[Held item|item to hold]] (except the [[Soothe Bell]])&lt;br /&gt;
* [[Evolution|Evolving]] a Pokémon, regardless of method ([[level]] up, [[held item]], or [[Evolution stone]], with the exception of [[Methods of evolution#evolution via trading|trade evolutions]], which reset the Pokémon&#039;s friendship)&lt;br /&gt;
* Using a Pokémon in {{pkmn|battle}}&lt;br /&gt;
* Winning battles with a Pokémon&lt;br /&gt;
* Letting a Pokémon&#039;s HP fall to critical status&lt;br /&gt;
* Letting the {{player}}&#039;s Pokémon get a status condition like {{status|paralysis}}&lt;br /&gt;
* Walking when the player&#039;s Pokémon has a status condition&lt;br /&gt;
* Increasing [[Affection]]&lt;br /&gt;
&lt;br /&gt;
==In spin-off games==&lt;br /&gt;
{{incomplete|section|Pokémon Pikachu and Pokémon Pikachu 2 GS}}&lt;br /&gt;
===Pokémon Ranger: Shadows of Almia===&lt;br /&gt;
[[File:Happy Mood SoA.png|frame|Two {{OBP|Pokémon|species}} in a &#039;&#039;Happy Mood&#039;&#039;]]&lt;br /&gt;
Friendship also has an effect in the second game of the [[Pokémon Ranger]] series. {{ra|Partner Pokémon}} can have the condition of &#039;&#039;Fine&#039;&#039;, &#039;&#039;Happy&#039;&#039;, or &#039;&#039;Very Happy&#039;&#039;. When it is in a &#039;&#039;Happy Mood&#039;&#039;, black musical notes appear to come out of it. Multicolored musical notes come out when it is &#039;&#039;Very Happy&#039;&#039;. This may happen whether or not it is with the {{player}}. This state of mind increases the speed the Partner Gauge fills up due to more Partner Energy being provided.&lt;br /&gt;
&lt;br /&gt;
===In Pokémon Pinball: Ruby &amp;amp; Sapphire===&lt;br /&gt;
{{incomplete|section|How the player obtains heart symbols}}&lt;br /&gt;
In [[Pokémon Pinball: Ruby &amp;amp; Sapphire]], the player gets three friendship heart symbols in order to evolve any of the following Pokémon, which would normally evolve by friendship in the [[core series]] games.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;background:#{{cute color light}}; border:5px solid #{{cute color}}&amp;quot;&lt;br /&gt;
! Evolves from !! Evolves into&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Golbat}}&lt;br /&gt;
| {{p|Crobat}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Pichu}}&lt;br /&gt;
| {{p|Pikachu}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Igglybuff}}&lt;br /&gt;
| {{p|Jigglypuff}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Azurill}}&lt;br /&gt;
| {{p|Marill}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Gallery====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color light}}; width:80px; height:20px&amp;quot; | [[File:Pinball RS Friendship.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Friendship sprite&amp;lt;br/&amp;gt;from {{color2|000|Pokémon Pinball: Ruby &amp;amp; Sapphire|Pinball: Ruby &amp;amp; Sapphire}}&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Ash and Pikachu.png|thumb|250px|Ash and Pikachu]]&lt;br /&gt;
In the {{pkmn|anime}}, the bond between {{pkmn|Trainer}}s and their {{OBP|Pokémon|species}} has been a theme since [[EP001|the first episode]], in which {{Ash}} had trouble to form a friendship with his newly obtained {{AP|Pikachu}}. After risking his own safety to protect his [[starter Pokémon]] from a flock of angry {{p|Spearow}}, Ash earned Pikachu&#039;s trust, and the two have been inseparable ever since.&lt;br /&gt;
&lt;br /&gt;
Pokémon that have friendly relationships with their Trainers are said to perform better in {{pkmn|battle}}s. Ash believes that befriending a Pokémon will make it grow stronger, and he treats {{cat|Ash&#039;s Pokémon|all his Pokémon}} with utmost care and respect. However, over the course of the series, some Trainers have been shown to focus on raw strength alone, disregarding their Pokémon&#039;s feelings and well being. Examples include [[Paul]] and [[Cross]].&lt;br /&gt;
&lt;br /&gt;
Aside from regular battles, friendship is valued in [[Pokémon Contest]]s, since the level of cooperation between {{pkmn|Coordinator}} and Pokémon is observed by the [[Contest Judge|panel of judges]] during the [[Appeal|Performance Stage]]. Additionally, in the [[Contest Battle|Battle Stage]], Coordinators are expected to be in synchronicity with their Pokémon the entire time. In &#039;&#039;[[AG078|Cruisin&#039; for a Losin&#039;]]&#039;&#039;, the Director of the {{pkmn|Activities Committee|Contest Committee}}, [[Raoul Contesta|Mr. Contesta]], stated that a Pokémon&#039;s well being must be the number one priority of a Coordinator.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP075|Our Cup Runneth Over!]]&#039;&#039;, Contest Master [[Wallace]] stressed out the importance of kinship. He also said that playing with Pokémon can help Trainers and Coordinators in learning how to bring out the potential of their Pokémon. In addition to enhancing a Pokémon&#039;s appearance, {{pkmn|groomer|Pokémon grooming}} is said to make them happier. Trainers who devote themselves to the development of techniques that improve a Pokémon&#039;s health and happiness are known as {{tc|Pokémon Breeder}}s. There are also people who study to become [[Pokémon Connoisseur]]s in order to be able to identify the compatibility between Trainers and Pokémon, and then offer advice on how to strengthen their friendship.&lt;br /&gt;
&lt;br /&gt;
As in the {{pkmn|games}}, friendship affects the [[power]] of {{m|Frustration}}. This was shown in &#039;&#039;[[AG175|Going for Choke!]]&#039;&#039;, in which [[Harley]]&#039;s {{p|Banette}} received a boost while using the [[move]] under the command of [[Jessie]], a Trainer it does not like. Although the concept of {{cat|Pokémon that evolve by friendship|Evolution by friendship}} has not been addressed directly, the [[Soothe Bell]] has appeared in the anime. In the {{series|XY}}, the friendship between Ash and his {{AP|Greninja}} triggered a temporary transformation known as [[Bond Phenomenon]].&lt;br /&gt;
&lt;br /&gt;
In contrast with the games, where a Pokémon of a certain [[level]] will only obey its Trainer if the trainer possesses specific achievements, disobedient Pokémon in the anime will gain respect for their Trainers after realizing how far the Trainer is willing to go to befriend, protect, and care for the Pokémon.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{cute color light}}|bordercolor={{cute color dark}}&lt;br /&gt;
|zh_yue=親密度 &#039;&#039;{{tt|Chānmahtdouh|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|zh_cmn=親密度 / 亲密度 &#039;&#039;{{tt|Qīnmìdù|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|fr=Amitié&lt;br /&gt;
|de=Zuneigung&amp;lt;br&amp;gt;Freundschaft&lt;br /&gt;
|it=Affetto&lt;br /&gt;
|ko=친밀도 &#039;&#039;Chinmildo&#039;&#039;&lt;br /&gt;
|pl=Przyjaźń&lt;br /&gt;
|es=Amistad&lt;br /&gt;
|vi = Độ thân thiết&lt;br /&gt;
|pt=Amizade{{tt|*|Manuals}} &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Pokémon by base friendship]]&lt;br /&gt;
*[[Affection]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://www.gamefaqs.com/gbc/198308-pokemon-gold-version/faqs/11568 GameFAQs: Pokemon Gold Version (GBC) Happiness Points FAQ by IDeLucas]&lt;br /&gt;
* [http://web.archive.org/web/20070830225419/http://www.gamefaqs.com/portable/ds/file/925601/48344 Generation IV Friendship FAQ by Ruimound]&lt;br /&gt;
* [http://www.psypokes.com/gsc/happiness.php Pokemon Gold, Silver and Crystal :: Happiness Guide]&lt;br /&gt;
{{Pokémon individuality|cute}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
[[Category:Terminology]]&lt;br /&gt;
&lt;br /&gt;
[[de:Freundschaft]]&lt;br /&gt;
[[es:Amistad]]&lt;br /&gt;
[[fr:Bonheur]]&lt;br /&gt;
[[it:Affetto]]&lt;br /&gt;
[[ja:なつき度]]&lt;br /&gt;
[[zh:亲密度]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sunyshore_City&amp;diff=3160858</id>
		<title>Sunyshore City</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sunyshore_City&amp;diff=3160858"/>
		<updated>2020-05-06T10:31:40Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Pokémon */  Fishing super rod encounter slots were wrong&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Town infobox&lt;br /&gt;
|name=Sunyshore City&lt;br /&gt;
|jpname=ナギサシティ&lt;br /&gt;
|jptrans=Nagisa City&lt;br /&gt;
|image=Sunyshore City Pt.png&lt;br /&gt;
|slogan=Solar Powered!&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|west=Route 222&lt;br /&gt;
|regionwest=Sinnoh&lt;br /&gt;
|north=Route 223&lt;br /&gt;
|regionnorth=Sinnoh&lt;br /&gt;
|mapdesc=A port city that was built around the bay portion of the cape. It is criss-crossed by elevated walkways.&amp;lt;br&amp;gt;The Gym is located atop a rocky outcropping. Down on the beach is a festive bazaar.&amp;lt;br&amp;gt;The Vista Lighthouse&#039;s bright beacon illuminates the Sinnoh region.&lt;br /&gt;
|gym=Sunyshore Gym&lt;br /&gt;
|gymno=8&lt;br /&gt;
|leader=Volkner&lt;br /&gt;
|leadervs=VSVolkner.png&lt;br /&gt;
|badge=Beacon&lt;br /&gt;
|gymtype=Electric&lt;br /&gt;
|colordark=FFA500&lt;br /&gt;
|colormed=ffd100&lt;br /&gt;
|colorlight=FF0&lt;br /&gt;
|generation=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sunyshore City&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ナギサシティ&#039;&#039;&#039; &#039;&#039;Nagisa City&#039;&#039;) is a city in the [[Sinnoh]] [[region]], and the location of the region&#039;s final Pokémon [[Gym]]. Sunyshore City is known as a major port town and the gateway to Sinnoh&#039;s Pokémon League. It is situated on a narrow spit of land bordered by the sea and the mountains. To make up for the lack of space, the city built solar panels to use for power and roads. There are suspended roads throughout the city that collect solar energy to power the city.&lt;br /&gt;
&lt;br /&gt;
[[Jasmine]], [[Olivine City]]&#039;s [[Gym Leader]], is seen in this city. She states that Sunyshore reminds her of home, because they both are by the sea, and both have a rather large lighthouse. After beating [[Volkner]], Jasmine will give the {{player}} {{HM|07|Waterfall}}.&lt;br /&gt;
&lt;br /&gt;
Until after [[Team Galactic]] is defeated and {{p|Dialga}}{{sup/4|D}}, {{p|Palkia}}{{sup/4|P}}, or {{p|Giratina}}{{sup/4|Pt}} is caught or defeated, the city experiences a massive blackout, and a man in [[Valor Lakefront]] prevents anyone from entering {{rt|222|Sinnoh}}, the only way to Sunyshore from the rest of Sinnoh.&lt;br /&gt;
&lt;br /&gt;
==Slogan==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Solar Powered!&#039;&#039;&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{j|たいようが てらす まち}}&#039;&#039;&#039; &#039;&#039;The town where the sun shines.&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
==Places of interest==&lt;br /&gt;
===Sunyshore Market===&lt;br /&gt;
{{main|Sunyshore Market}}&lt;br /&gt;
[[File:Sunyshore Market DP.png|thumb|left|Sunyshore Market]]&lt;br /&gt;
The Sunyshore Market is a small building located in Sunyshore City. It is located in the center of Sunyshore City, just north of the [[Poké Mart]], by the beach. The Sunyshore Market is one of the world&#039;s largest [[Seal]] centers. It is well known for its big selection of Seals from around the world. The building is always stacked with boxes of products. There are four desks and only three are occupied, though the player can only purchase items from the Seal shop by the man at the back of the room. The man at the stand will sell the {{player}} [[Poké Ball]] Seals. To buy these Seals, the player first must have obtained the [[Seal Case]] from the house just west of the [[Solaceon Ruins]]. The Seals he sells change every day. There is also a lady on the left to the entrance at the market giving away an {{DL|List of Ribbons in the games|Effort Ribbon}} to certain Pokémon, that have 510 [[Effort values]].&lt;br /&gt;
&lt;br /&gt;
===Walkway===&lt;br /&gt;
This city is also famous for its walkway, which is necessary for traveling around the city.&lt;br /&gt;
&lt;br /&gt;
===Vista Lighthouse===&lt;br /&gt;
[[File:Vista Lighthouse DPPt.png|thumb|Vista Lighthouse]]&lt;br /&gt;
{{main|Vista Lighthouse}}&lt;br /&gt;
The Vista Lighthouse can be found in the far southeastern corner of Sunyshore City. While not as spectacular as the [[Glitter Lighthouse|lighthouse in Johto]], consisting only of an elevator and an observation deck, it has a similarity in that it is the location in which the city&#039;s [[Gym Leader]], [[Volkner]], is found before appearing in the [[Gym|Pokémon Gym]]. The player can see the Sinnoh Pokémon League building if they look into the binoculars. Volkner, unlike [[Jasmine]], however, is not caring for an ailing Pokémon, merely contemplating remaining a Gym Leader or going to the {{si|Pokémon League}} to challenge the [[Elite Four]], since he has had no worthy challengers for a while.&lt;br /&gt;
&lt;br /&gt;
===Julia===&lt;br /&gt;
There is also a lonely woman named [[Julia]] who will hand out {{DL|List of Ribbons in the games|Memorial Ribbons|seven}} [[Ribbon]]s, one for each day of the week. The Ribbons she hands out differ according to her mood, which changes every day. The {{DL|List of Ribbons in the games|Memorial Ribbons|Ribbons}} she hands out are as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; border: 3px solid #{{platinum color}}; background: #{{pearl color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}; {{roundytl|5px}}&amp;quot;| Day&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}&amp;quot; colspan=&amp;quot;2&amp;quot; | Ribbon&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}; {{roundytr|5px}}&amp;quot; | Description&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 1|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Monday&lt;br /&gt;
| [[File:Alert Ribbon.png]]&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
| A Ribbon for recalling an invigorating event that created life energy.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 2|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Tuesday&lt;br /&gt;
| [[File:Shock Ribbon.png]]&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
| A Ribbon for recalling a thrilling event that made life more exciting.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 3|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Wednesday&lt;br /&gt;
| [[File:Downcast Ribbon.png]]&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
| A Ribbon for recalling feelings of sadness that added spice to life.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 4|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Thursday&lt;br /&gt;
| [[File:Careless Ribbon.png]]&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
| A Ribbon for recalling a careless error that helped steer life decisions.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 5|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Friday&lt;br /&gt;
| [[File:Relax Ribbon.png]]&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
| A Ribbon for recalling a refreshing event that added sparkle to life.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 6|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Saturday&lt;br /&gt;
| [[File:Snooze Ribbon.png]]&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
| A Ribbon for recalling a deep slumber that made life soothing.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}; {{roundybl|5px}}&amp;quot; | Sunday&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}&amp;quot; | [[File:Smile Ribbon.png]]&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}&amp;quot; | Smile Ribbon&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}; {{roundybr|5px}}&amp;quot; | A Ribbon for recalling that smiles enrich the quality of life.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Pokétch developer===&lt;br /&gt;
In the house only reachable by {{m|Rock Climb}}, a lone scientist has been given the okay by the [[Pokétch Company]] to develop original [[Pokétch]] applications. If he is shown a Pokémon with one of three Natures, he will give away one of three different applications.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Serious&#039;&#039;&#039; - {{DL|Pokétch|Calendar}} app&lt;br /&gt;
*&#039;&#039;&#039;Naive&#039;&#039;&#039; - {{DL|Pokétch|Dot Artist}} app&lt;br /&gt;
*&#039;&#039;&#039;Quirky&#039;&#039;&#039; - {{DL|Pokétch|Roulette}} app&lt;br /&gt;
&lt;br /&gt;
===Pokémon Rock===&lt;br /&gt;
Pokémon Rock is a giant rock formation found on the east side of the city. Pokémon Rock is one of the city&#039;s famous landmarks, famous for its strange shape that resembles a {{p|Munchlax}} standing in the bay, with the water covering its feet.&lt;br /&gt;
&lt;br /&gt;
===Sunyshore Gym===&lt;br /&gt;
{{main|Sunyshore Gym}}&lt;br /&gt;
The Sunyshore Gym is the official [[Gym]] of Sunyshore City. It is based on {{type|Electric}} {{OBP|Pokémon|species}}. The [[Gym Leader]] is [[Volkner]]. {{pkmn|Trainer}}s who defeat him receive the {{badge|Beacon}}. The Sunyshore Gym is a three-room Gym where the main floor is made up of gigantic gears and clockwork suspending platforms operated by buttons. To get through, Trainers need to rotate the platforms in a correct order to create a path. The Gym has exposed dynamos that use up a large amount of electrical power, prompting the town to renovate the pathways into solar energy collectors. For defeating Volkner, Trainers receive the {{badge|Beacon}}, {{TM|57|Charge Beam}}, and the ability to use {{m|Waterfall}} outside of battle.&lt;br /&gt;
&lt;br /&gt;
{{sign|DPtip|header}}&lt;br /&gt;
{{sign|DPtip|title|Sunyshore City Pokémon Gym}}&lt;br /&gt;
{{sign|DPtip|title|Leader: Volkner}}&lt;br /&gt;
{{sign|DPtip|&amp;quot;The Shining, Shocking Star&amp;quot;}}&lt;br /&gt;
{{sign|DPtip|footer}}&lt;br /&gt;
&lt;br /&gt;
==Demographics==&lt;br /&gt;
[[File:Sunyshore City DP.png|thumb|250px|Sunyshore City in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
===Pokémon Diamond and Pearl===&lt;br /&gt;
In {{game|Diamond and Pearl|s}}, the population of Sunyshore City is 47, the same as that of [[Pastoria City]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Platinum===&lt;br /&gt;
In {{game|Platinum}}, the population of Sunyshore City is 48.&lt;br /&gt;
&lt;br /&gt;
==Poké Mart==&lt;br /&gt;
{{shop|Left cashier}}&lt;br /&gt;
{{shoprow|{{shopitem|Steel Mail|50}}|{{shopitem|Luxury Ball|1000}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Right cashier}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Ball (item)|200|5=Poké Ball|display=Poké Ball}}|{{shopitem|Great Ball|600}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ultra Ball|1200}}|{{shopitem|Potion|300}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Super Potion|700}}|{{shopitem|Hyper Potion|1200}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Max Potion|2500}}|{{shopitem|Full Restore|3000|note=&amp;lt;sup&amp;gt;8 {{color2|000|Badge|Badges}}&amp;lt;/sup&amp;gt;}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Revive|1500}}|{{shopitem|Antidote|100}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Paralyze Heal|display=Parlyz Heal|200}}|{{shopitem|Awakening|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Burn Heal|250}}|{{shopitem|Ice Heal|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Full Heal|600}}|{{shopitem|Escape Rope|550}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Repel|350}}|{{shopitem|Super Repel|500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Max Repel|700}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{itlisth|city}}&lt;br /&gt;
{{Itemlist|HM Water|From [[Jasmine]] at the beach after defeating [[Volkner]]|D=yes|P=yes|Pt=yes|display={{HM|07|Waterfall}}}}&lt;br /&gt;
{{Itemlist|Pearl|Between the Sunyshore Market and the blank sign painted white &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Carbos|Between the Sunyshore Market and the blank sign painted white &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Thunder Stone|Behind the [[Vista Lighthouse]]|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Zap Plate|In front of the Vista Lighthouse &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|none|sprite=Alert Ribbon|From Julia to the leading Pokémon in the [[party]]{{dotw|Mo}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Alert Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Shock Ribbon|From Julia to the leading Pokémon in the party{{dotw|Tu}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Shock Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Downcast Ribbon|From Julia to the leading Pokémon in the party{{dotw|We}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Downcast Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Careless Ribbon|From Julia to the leading Pokémon in the party{{dotw|Th}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Careless Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Relax Ribbon|From Julia to the leading Pokémon in the party{{dotw|Fr}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Relax Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Snooze Ribbon|From Julia to the leading Pokémon in the party{{dotw|Sa}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Snooze Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Smile Ribbon|From Julia to the leading Pokémon in the party{{dotw|Su}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Smile Ribbon}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the [[Pokétch]] app developer if shown a Pokémon with a Serious [[Nature]] (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Calendar}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the Pokétch app developer if shown a Pokémon with a Naive Nature (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Dot Artist}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the Pokétch app developer if shown a Pokémon with a Quirky Nature (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Roulette}}}}&lt;br /&gt;
{{itlistfoot|city}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{catch/header|city|4}}&lt;br /&gt;
{{catch/div|water|Surfing}}&lt;br /&gt;
{{catch/entry4|072|Tentacool|no|no|yes|Surf|30-40|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|yes|yes|no|Surf|35-45|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|no|no|yes|Surf|30-50|all=9%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|278|Wingull|no|no|yes|Surf|30-40|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|yes|yes|no|Surf|35-43|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|no|no|yes|Surf|30-50|all=1%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|458|Mantyke|yes|yes|no|Surf|30-45|all=10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|no|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|no|no|yes|Fish Old|3-15|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|120|Staryu|yes|yes|no|Fish Super|20-40|all=15%|type1=Water}}&lt;br /&gt;
{{catch/entry4|120|Staryu|no|no|yes|Fish Super|20-50|all=15%|type1=Water}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|no|Fish Super|30-40|all=40%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|no|no|yes|Fish Super|30-55|all=40%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|yes|yes|no|Fish Super|20-50|all=45%|type1=Water}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=45%|type1=Water}}&lt;br /&gt;
{{catch/footer|city}}&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
===Pokémon Platinum===&lt;br /&gt;
On certain days, the player can challenge a Trainer who appears in the Pokémon Center. Depending on the game progress, the Trainer will have teams with higher leveled Pokémon upon rematch.&lt;br /&gt;
&lt;br /&gt;
{{trainerheader|building}}&lt;br /&gt;
{{trainerdiv|building|Thursday and Friday}}&lt;br /&gt;
{{Trainerentry|Spr DP Guitarist.png|Guitarist|Arturo|{{tt|552|Initial battle}}/{{tt|840|First rematch}}/{{tt|1128|Second rematch}}/{{tt|1248|Third rematch}}/{{tt|1416|Fourth rematch}}|1|402|Kricketune|♂|{{tt|23|Initial battle}}/{{tt|35|First rematch}}/{{tt|47|Second rematch}}/{{tt|52|Third rematch}}/{{tt|59|Fourth rematch}}|None|36=ポール|37=Paul}}&lt;br /&gt;
{{Trainerfooter|building}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Sunyshore City Lighthouse.png|thumb|220px|Sunyshore City Lighthouse]]&lt;br /&gt;
[[File:Sunyshore City anime.png|thumb|left|250px|Sunyshore City in the {{pkmn|anime}}]]&lt;br /&gt;
Sunyshore City, like the {{pkmn|games}}, is shown to be a city built around solar energy, with numerous solar panels and [[Sunyshore Tower]] powering various technological machines in the city. Many escalators and roads made up of moving tiles are found throughout the city, and a lighthouse is also situated at the city&#039;s shore. Sunyshore [[Gym Leader]] [[Volkner]] is responsible for the city&#039;s now shining vision, however in the past the city was plagued by criminal gangs and [[Pokémon poacher]]s. &lt;br /&gt;
&lt;br /&gt;
{{Ash}} and {{ashfr}} first arrived in Sunyshore City in &#039;&#039;[[DP165|Flint Sparks the Fire!]]&#039;&#039;, where Ash visited the [[Sunyshore Gym]], only to find the [[Gym]] was handing out free [[Badge]]s. Angered, Ash met {{EF|Flint}} of the [[Elite Four]], who brought him to the disenchanted Volkner. Despite Ash personally requesting a Gym {{pkmn|battle}}, Volkner still refused to battle him. Flint decided to battle Ash, and they were able to renew the spark for battling within Volkner.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP166|The Fleeing Tower of Sunyshore!]]&#039;&#039;, as Ash and Volkner prepared to have their Gym battle, the electricity was cut off unexpectedly. They realized that this was due to {{TRT}} stealing Sunyshore Tower. Ash and Volkner successfully fought off Team Rocket, but Ash&#039;s Gym battle had to be postponed as the tower needed repairs. Ash and his friends decided to take this opportunity to head to [[Valor Lakefront]] for the [[Sinnoh Grand Festival]].&lt;br /&gt;
&lt;br /&gt;
Ash returned to Sunyshore City for his Gym battle in &#039;&#039;[[DP179|The Eighth Wonder of the Sinnoh World!]]&#039;&#039;, and he earned himself the [[Beacon Badge]]. In &#039;&#039;[[DP180|Four Roads Diverged in a Pokémon Port!]]&#039;&#039; Ash missed the boat to [[Lily of the Valley Island]] and stayed in Sunyshore City, only to meet {{si|Kenny}}, [[Jasmine]], and Flint. Jasmine, who was on a journey of discovery, challenged Flint to a battle but lost, while Ash battled Kenny to decide who {{an|Dawn}} should travel with from now on. Ash and his friends later left for the [[Lily of the Valley Conference|Sinnoh League]].&lt;br /&gt;
&lt;br /&gt;
===Gallery===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background:#FFD100; {{roundy}}; border:3px solid #FFA500&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#FF0&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | {{color2|000|Sunyshore Gym}}&lt;br /&gt;
! {{color2|000|Sunyshore Tower}}&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | {{color2|000|Proprietor|The Proprietor&#039;s café}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[File:Sunyshore Gym anime.png|x150px]]&lt;br /&gt;
| [[File:Sunyshore Tower.png|x150px]]&lt;br /&gt;
| [[File:The Propreitor&#039;s Cafe.png|x150px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the [[Pokémon Adventures]] manga===&lt;br /&gt;
===={{chap|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
Sunyshore City first appeared when the manager of [[Valley Windworks]] visited the city to investigate a blackout.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Platinum}}====&lt;br /&gt;
Sunyshore City was where {{p|Giratina}} emerged from the [[Distortion World]] at the end of this chapter, but it was immediately struck down by a {{m|Draco Meteor}} commanded by [[Cynthia]]&#039;s {{p|Garchomp}}. Everyone who was at the Distortion World got out safely, with the portal only closing after Giratina went through it.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Sunyshore is [[Cyrus]]&#039;s hometown.&lt;br /&gt;
* The layout of the city is very similar to [[Olivine City]] with exits to the north and west of the city, two houses in the northeastern corner, Gym in the northwestern corner and a lighthouse in the southeastern corner.&lt;br /&gt;
** This city is also similar to [[Vermilion City]] in [[Kanto]]. Both&#039;s Gym Leaders use Electric-type Pokémon, and both are port cities.&lt;br /&gt;
* As [[Jasmine]] leaves the player with HM07, she walks back to the shore saying &amp;quot;...Um... I... I don&#039;t know how I should say this, but good luck.&amp;quot; This is the same phrase she gives players that defeat her in [[Olivine Gym]].&lt;br /&gt;
&lt;br /&gt;
===Name origin===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background:#FFD100; border:3px solid #FFA500&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Language&lt;br /&gt;
! Name&lt;br /&gt;
! Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Japanese&lt;br /&gt;
| ナギサシティ &#039;&#039;Nagisa City&#039;&#039;&lt;br /&gt;
| From 渚 &#039;&#039;nagisa&#039;&#039; (shore).&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| English&lt;br /&gt;
| Sunyshore City&lt;br /&gt;
| Derives from &#039;&#039;sunny&#039;&#039;, referring to its weather, and &#039;&#039;shore&#039;&#039;, as it is on Sinnoh&#039;s coastline.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| French&lt;br /&gt;
| Rivamar&lt;br /&gt;
| From Italian &#039;&#039;riva&#039;&#039;, shore, and &#039;&#039;mar&#039;&#039;, sea.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| German&lt;br /&gt;
| Sonnewik&lt;br /&gt;
| From &#039;&#039;Sonne&#039;&#039;, sun, and the suffix &#039;&#039;-wik&#039;&#039; (bay, gulf).&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Italian&lt;br /&gt;
| Arenipoli&lt;br /&gt;
| From &#039;&#039;arena&#039;&#039;, sand, and the suffix &#039;&#039;-poli&#039;&#039;, meaning city.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Spanish&lt;br /&gt;
| Ciudad Marina&lt;br /&gt;
| Means &#039;&#039;city of the sea&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Korean&lt;br /&gt;
| 물가시티 &#039;&#039;Mulga City&#039;&#039;&lt;br /&gt;
| 물가 &#039;&#039;mulga&#039;&#039; means &#039;&#039;shore&#039;&#039; or &#039;&#039;waterside&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Chinese ({{tt|Mandarin|Taiwan}})&lt;br /&gt;
| 濱海市 &#039;&#039;Bīnhǎi Shì&#039;&#039; ({{tt|manga|Adventures and DPA}})&amp;lt;br&amp;gt;湖濱市 &#039;&#039;Hú​bīn​ Shì​&#039;&#039; (anime)&lt;br /&gt;
| 濱海 means &#039;&#039;seashore&#039;&#039;.&amp;lt;br&amp;gt;湖濱 literally means &#039;&#039;lakeshore&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Polish&lt;br /&gt;
| Sunyshore&lt;br /&gt;
| From its English name&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Vietnamese&lt;br /&gt;
| Thành phố Nagisa&lt;br /&gt;
| Transliteration of Japanese name.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Cities and Towns notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Diamond and Pearl locations]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
[[Category:Cities]]&lt;br /&gt;
&lt;br /&gt;
[[de:Sonnewik]]&lt;br /&gt;
[[es:Ciudad Marina]]&lt;br /&gt;
[[fr:Rivamar]]&lt;br /&gt;
[[it:Arenipoli]]&lt;br /&gt;
[[ja:ナギサシティ]]&lt;br /&gt;
[[zh:滨海市]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sunyshore_City&amp;diff=3160850</id>
		<title>Sunyshore City</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sunyshore_City&amp;diff=3160850"/>
		<updated>2020-05-06T10:28:24Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Pokémon */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Town infobox&lt;br /&gt;
|name=Sunyshore City&lt;br /&gt;
|jpname=ナギサシティ&lt;br /&gt;
|jptrans=Nagisa City&lt;br /&gt;
|image=Sunyshore City Pt.png&lt;br /&gt;
|slogan=Solar Powered!&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|west=Route 222&lt;br /&gt;
|regionwest=Sinnoh&lt;br /&gt;
|north=Route 223&lt;br /&gt;
|regionnorth=Sinnoh&lt;br /&gt;
|mapdesc=A port city that was built around the bay portion of the cape. It is criss-crossed by elevated walkways.&amp;lt;br&amp;gt;The Gym is located atop a rocky outcropping. Down on the beach is a festive bazaar.&amp;lt;br&amp;gt;The Vista Lighthouse&#039;s bright beacon illuminates the Sinnoh region.&lt;br /&gt;
|gym=Sunyshore Gym&lt;br /&gt;
|gymno=8&lt;br /&gt;
|leader=Volkner&lt;br /&gt;
|leadervs=VSVolkner.png&lt;br /&gt;
|badge=Beacon&lt;br /&gt;
|gymtype=Electric&lt;br /&gt;
|colordark=FFA500&lt;br /&gt;
|colormed=ffd100&lt;br /&gt;
|colorlight=FF0&lt;br /&gt;
|generation=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sunyshore City&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ナギサシティ&#039;&#039;&#039; &#039;&#039;Nagisa City&#039;&#039;) is a city in the [[Sinnoh]] [[region]], and the location of the region&#039;s final Pokémon [[Gym]]. Sunyshore City is known as a major port town and the gateway to Sinnoh&#039;s Pokémon League. It is situated on a narrow spit of land bordered by the sea and the mountains. To make up for the lack of space, the city built solar panels to use for power and roads. There are suspended roads throughout the city that collect solar energy to power the city.&lt;br /&gt;
&lt;br /&gt;
[[Jasmine]], [[Olivine City]]&#039;s [[Gym Leader]], is seen in this city. She states that Sunyshore reminds her of home, because they both are by the sea, and both have a rather large lighthouse. After beating [[Volkner]], Jasmine will give the {{player}} {{HM|07|Waterfall}}.&lt;br /&gt;
&lt;br /&gt;
Until after [[Team Galactic]] is defeated and {{p|Dialga}}{{sup/4|D}}, {{p|Palkia}}{{sup/4|P}}, or {{p|Giratina}}{{sup/4|Pt}} is caught or defeated, the city experiences a massive blackout, and a man in [[Valor Lakefront]] prevents anyone from entering {{rt|222|Sinnoh}}, the only way to Sunyshore from the rest of Sinnoh.&lt;br /&gt;
&lt;br /&gt;
==Slogan==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Solar Powered!&#039;&#039;&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{j|たいようが てらす まち}}&#039;&#039;&#039; &#039;&#039;The town where the sun shines.&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
==Places of interest==&lt;br /&gt;
===Sunyshore Market===&lt;br /&gt;
{{main|Sunyshore Market}}&lt;br /&gt;
[[File:Sunyshore Market DP.png|thumb|left|Sunyshore Market]]&lt;br /&gt;
The Sunyshore Market is a small building located in Sunyshore City. It is located in the center of Sunyshore City, just north of the [[Poké Mart]], by the beach. The Sunyshore Market is one of the world&#039;s largest [[Seal]] centers. It is well known for its big selection of Seals from around the world. The building is always stacked with boxes of products. There are four desks and only three are occupied, though the player can only purchase items from the Seal shop by the man at the back of the room. The man at the stand will sell the {{player}} [[Poké Ball]] Seals. To buy these Seals, the player first must have obtained the [[Seal Case]] from the house just west of the [[Solaceon Ruins]]. The Seals he sells change every day. There is also a lady on the left to the entrance at the market giving away an {{DL|List of Ribbons in the games|Effort Ribbon}} to certain Pokémon, that have 510 [[Effort values]].&lt;br /&gt;
&lt;br /&gt;
===Walkway===&lt;br /&gt;
This city is also famous for its walkway, which is necessary for traveling around the city.&lt;br /&gt;
&lt;br /&gt;
===Vista Lighthouse===&lt;br /&gt;
[[File:Vista Lighthouse DPPt.png|thumb|Vista Lighthouse]]&lt;br /&gt;
{{main|Vista Lighthouse}}&lt;br /&gt;
The Vista Lighthouse can be found in the far southeastern corner of Sunyshore City. While not as spectacular as the [[Glitter Lighthouse|lighthouse in Johto]], consisting only of an elevator and an observation deck, it has a similarity in that it is the location in which the city&#039;s [[Gym Leader]], [[Volkner]], is found before appearing in the [[Gym|Pokémon Gym]]. The player can see the Sinnoh Pokémon League building if they look into the binoculars. Volkner, unlike [[Jasmine]], however, is not caring for an ailing Pokémon, merely contemplating remaining a Gym Leader or going to the {{si|Pokémon League}} to challenge the [[Elite Four]], since he has had no worthy challengers for a while.&lt;br /&gt;
&lt;br /&gt;
===Julia===&lt;br /&gt;
There is also a lonely woman named [[Julia]] who will hand out {{DL|List of Ribbons in the games|Memorial Ribbons|seven}} [[Ribbon]]s, one for each day of the week. The Ribbons she hands out differ according to her mood, which changes every day. The {{DL|List of Ribbons in the games|Memorial Ribbons|Ribbons}} she hands out are as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; border: 3px solid #{{platinum color}}; background: #{{pearl color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}; {{roundytl|5px}}&amp;quot;| Day&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}&amp;quot; colspan=&amp;quot;2&amp;quot; | Ribbon&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}; {{roundytr|5px}}&amp;quot; | Description&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 1|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Monday&lt;br /&gt;
| [[File:Alert Ribbon.png]]&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
| A Ribbon for recalling an invigorating event that created life energy.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 2|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Tuesday&lt;br /&gt;
| [[File:Shock Ribbon.png]]&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
| A Ribbon for recalling a thrilling event that made life more exciting.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 3|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Wednesday&lt;br /&gt;
| [[File:Downcast Ribbon.png]]&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
| A Ribbon for recalling feelings of sadness that added spice to life.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 4|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Thursday&lt;br /&gt;
| [[File:Careless Ribbon.png]]&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
| A Ribbon for recalling a careless error that helped steer life decisions.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 5|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Friday&lt;br /&gt;
| [[File:Relax Ribbon.png]]&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
| A Ribbon for recalling a refreshing event that added sparkle to life.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 6|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Saturday&lt;br /&gt;
| [[File:Snooze Ribbon.png]]&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
| A Ribbon for recalling a deep slumber that made life soothing.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}; {{roundybl|5px}}&amp;quot; | Sunday&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}&amp;quot; | [[File:Smile Ribbon.png]]&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}&amp;quot; | Smile Ribbon&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}; {{roundybr|5px}}&amp;quot; | A Ribbon for recalling that smiles enrich the quality of life.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Pokétch developer===&lt;br /&gt;
In the house only reachable by {{m|Rock Climb}}, a lone scientist has been given the okay by the [[Pokétch Company]] to develop original [[Pokétch]] applications. If he is shown a Pokémon with one of three Natures, he will give away one of three different applications.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Serious&#039;&#039;&#039; - {{DL|Pokétch|Calendar}} app&lt;br /&gt;
*&#039;&#039;&#039;Naive&#039;&#039;&#039; - {{DL|Pokétch|Dot Artist}} app&lt;br /&gt;
*&#039;&#039;&#039;Quirky&#039;&#039;&#039; - {{DL|Pokétch|Roulette}} app&lt;br /&gt;
&lt;br /&gt;
===Pokémon Rock===&lt;br /&gt;
Pokémon Rock is a giant rock formation found on the east side of the city. Pokémon Rock is one of the city&#039;s famous landmarks, famous for its strange shape that resembles a {{p|Munchlax}} standing in the bay, with the water covering its feet.&lt;br /&gt;
&lt;br /&gt;
===Sunyshore Gym===&lt;br /&gt;
{{main|Sunyshore Gym}}&lt;br /&gt;
The Sunyshore Gym is the official [[Gym]] of Sunyshore City. It is based on {{type|Electric}} {{OBP|Pokémon|species}}. The [[Gym Leader]] is [[Volkner]]. {{pkmn|Trainer}}s who defeat him receive the {{badge|Beacon}}. The Sunyshore Gym is a three-room Gym where the main floor is made up of gigantic gears and clockwork suspending platforms operated by buttons. To get through, Trainers need to rotate the platforms in a correct order to create a path. The Gym has exposed dynamos that use up a large amount of electrical power, prompting the town to renovate the pathways into solar energy collectors. For defeating Volkner, Trainers receive the {{badge|Beacon}}, {{TM|57|Charge Beam}}, and the ability to use {{m|Waterfall}} outside of battle.&lt;br /&gt;
&lt;br /&gt;
{{sign|DPtip|header}}&lt;br /&gt;
{{sign|DPtip|title|Sunyshore City Pokémon Gym}}&lt;br /&gt;
{{sign|DPtip|title|Leader: Volkner}}&lt;br /&gt;
{{sign|DPtip|&amp;quot;The Shining, Shocking Star&amp;quot;}}&lt;br /&gt;
{{sign|DPtip|footer}}&lt;br /&gt;
&lt;br /&gt;
==Demographics==&lt;br /&gt;
[[File:Sunyshore City DP.png|thumb|250px|Sunyshore City in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
===Pokémon Diamond and Pearl===&lt;br /&gt;
In {{game|Diamond and Pearl|s}}, the population of Sunyshore City is 47, the same as that of [[Pastoria City]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Platinum===&lt;br /&gt;
In {{game|Platinum}}, the population of Sunyshore City is 48.&lt;br /&gt;
&lt;br /&gt;
==Poké Mart==&lt;br /&gt;
{{shop|Left cashier}}&lt;br /&gt;
{{shoprow|{{shopitem|Steel Mail|50}}|{{shopitem|Luxury Ball|1000}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Right cashier}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Ball (item)|200|5=Poké Ball|display=Poké Ball}}|{{shopitem|Great Ball|600}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ultra Ball|1200}}|{{shopitem|Potion|300}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Super Potion|700}}|{{shopitem|Hyper Potion|1200}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Max Potion|2500}}|{{shopitem|Full Restore|3000|note=&amp;lt;sup&amp;gt;8 {{color2|000|Badge|Badges}}&amp;lt;/sup&amp;gt;}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Revive|1500}}|{{shopitem|Antidote|100}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Paralyze Heal|display=Parlyz Heal|200}}|{{shopitem|Awakening|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Burn Heal|250}}|{{shopitem|Ice Heal|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Full Heal|600}}|{{shopitem|Escape Rope|550}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Repel|350}}|{{shopitem|Super Repel|500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Max Repel|700}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{itlisth|city}}&lt;br /&gt;
{{Itemlist|HM Water|From [[Jasmine]] at the beach after defeating [[Volkner]]|D=yes|P=yes|Pt=yes|display={{HM|07|Waterfall}}}}&lt;br /&gt;
{{Itemlist|Pearl|Between the Sunyshore Market and the blank sign painted white &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Carbos|Between the Sunyshore Market and the blank sign painted white &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Thunder Stone|Behind the [[Vista Lighthouse]]|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Zap Plate|In front of the Vista Lighthouse &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|none|sprite=Alert Ribbon|From Julia to the leading Pokémon in the [[party]]{{dotw|Mo}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Alert Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Shock Ribbon|From Julia to the leading Pokémon in the party{{dotw|Tu}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Shock Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Downcast Ribbon|From Julia to the leading Pokémon in the party{{dotw|We}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Downcast Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Careless Ribbon|From Julia to the leading Pokémon in the party{{dotw|Th}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Careless Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Relax Ribbon|From Julia to the leading Pokémon in the party{{dotw|Fr}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Relax Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Snooze Ribbon|From Julia to the leading Pokémon in the party{{dotw|Sa}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Snooze Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Smile Ribbon|From Julia to the leading Pokémon in the party{{dotw|Su}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Smile Ribbon}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the [[Pokétch]] app developer if shown a Pokémon with a Serious [[Nature]] (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Calendar}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the Pokétch app developer if shown a Pokémon with a Naive Nature (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Dot Artist}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the Pokétch app developer if shown a Pokémon with a Quirky Nature (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Roulette}}}}&lt;br /&gt;
{{itlistfoot|city}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{catch/header|city|4}}&lt;br /&gt;
{{catch/div|water|Surfing}}&lt;br /&gt;
{{catch/entry4|072|Tentacool|no|no|yes|Surf|30-40|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|yes|yes|no|Surf|35-45|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|no|no|yes|Surf|30-50|all=9%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|278|Wingull|no|no|yes|Surf|30-40|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|yes|yes|no|Surf|35-43|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|no|no|yes|Surf|30-50|all=1%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|458|Mantyke|yes|yes|no|Surf|30-45|all=10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|no|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|no|no|yes|Fish Old|3-15|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|120|Staryu|yes|yes|no|Fish Super|20-40|all=15%|type1=Water}}&lt;br /&gt;
{{catch/entry4|120|Staryu|no|no|yes|Fish Super|20-50|all=15%|type1=Water}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|no|Fish Super|30-40|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|no|no|yes|Fish Super|30-55|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|yes|yes|no|Fish Super|20-50|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=35%|type1=Water}}&lt;br /&gt;
{{catch/footer|city}}&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
===Pokémon Platinum===&lt;br /&gt;
On certain days, the player can challenge a Trainer who appears in the Pokémon Center. Depending on the game progress, the Trainer will have teams with higher leveled Pokémon upon rematch.&lt;br /&gt;
&lt;br /&gt;
{{trainerheader|building}}&lt;br /&gt;
{{trainerdiv|building|Thursday and Friday}}&lt;br /&gt;
{{Trainerentry|Spr DP Guitarist.png|Guitarist|Arturo|{{tt|552|Initial battle}}/{{tt|840|First rematch}}/{{tt|1128|Second rematch}}/{{tt|1248|Third rematch}}/{{tt|1416|Fourth rematch}}|1|402|Kricketune|♂|{{tt|23|Initial battle}}/{{tt|35|First rematch}}/{{tt|47|Second rematch}}/{{tt|52|Third rematch}}/{{tt|59|Fourth rematch}}|None|36=ポール|37=Paul}}&lt;br /&gt;
{{Trainerfooter|building}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Sunyshore City Lighthouse.png|thumb|220px|Sunyshore City Lighthouse]]&lt;br /&gt;
[[File:Sunyshore City anime.png|thumb|left|250px|Sunyshore City in the {{pkmn|anime}}]]&lt;br /&gt;
Sunyshore City, like the {{pkmn|games}}, is shown to be a city built around solar energy, with numerous solar panels and [[Sunyshore Tower]] powering various technological machines in the city. Many escalators and roads made up of moving tiles are found throughout the city, and a lighthouse is also situated at the city&#039;s shore. Sunyshore [[Gym Leader]] [[Volkner]] is responsible for the city&#039;s now shining vision, however in the past the city was plagued by criminal gangs and [[Pokémon poacher]]s. &lt;br /&gt;
&lt;br /&gt;
{{Ash}} and {{ashfr}} first arrived in Sunyshore City in &#039;&#039;[[DP165|Flint Sparks the Fire!]]&#039;&#039;, where Ash visited the [[Sunyshore Gym]], only to find the [[Gym]] was handing out free [[Badge]]s. Angered, Ash met {{EF|Flint}} of the [[Elite Four]], who brought him to the disenchanted Volkner. Despite Ash personally requesting a Gym {{pkmn|battle}}, Volkner still refused to battle him. Flint decided to battle Ash, and they were able to renew the spark for battling within Volkner.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP166|The Fleeing Tower of Sunyshore!]]&#039;&#039;, as Ash and Volkner prepared to have their Gym battle, the electricity was cut off unexpectedly. They realized that this was due to {{TRT}} stealing Sunyshore Tower. Ash and Volkner successfully fought off Team Rocket, but Ash&#039;s Gym battle had to be postponed as the tower needed repairs. Ash and his friends decided to take this opportunity to head to [[Valor Lakefront]] for the [[Sinnoh Grand Festival]].&lt;br /&gt;
&lt;br /&gt;
Ash returned to Sunyshore City for his Gym battle in &#039;&#039;[[DP179|The Eighth Wonder of the Sinnoh World!]]&#039;&#039;, and he earned himself the [[Beacon Badge]]. In &#039;&#039;[[DP180|Four Roads Diverged in a Pokémon Port!]]&#039;&#039; Ash missed the boat to [[Lily of the Valley Island]] and stayed in Sunyshore City, only to meet {{si|Kenny}}, [[Jasmine]], and Flint. Jasmine, who was on a journey of discovery, challenged Flint to a battle but lost, while Ash battled Kenny to decide who {{an|Dawn}} should travel with from now on. Ash and his friends later left for the [[Lily of the Valley Conference|Sinnoh League]].&lt;br /&gt;
&lt;br /&gt;
===Gallery===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background:#FFD100; {{roundy}}; border:3px solid #FFA500&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#FF0&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | {{color2|000|Sunyshore Gym}}&lt;br /&gt;
! {{color2|000|Sunyshore Tower}}&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | {{color2|000|Proprietor|The Proprietor&#039;s café}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[File:Sunyshore Gym anime.png|x150px]]&lt;br /&gt;
| [[File:Sunyshore Tower.png|x150px]]&lt;br /&gt;
| [[File:The Propreitor&#039;s Cafe.png|x150px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the [[Pokémon Adventures]] manga===&lt;br /&gt;
===={{chap|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
Sunyshore City first appeared when the manager of [[Valley Windworks]] visited the city to investigate a blackout.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Platinum}}====&lt;br /&gt;
Sunyshore City was where {{p|Giratina}} emerged from the [[Distortion World]] at the end of this chapter, but it was immediately struck down by a {{m|Draco Meteor}} commanded by [[Cynthia]]&#039;s {{p|Garchomp}}. Everyone who was at the Distortion World got out safely, with the portal only closing after Giratina went through it.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Sunyshore is [[Cyrus]]&#039;s hometown.&lt;br /&gt;
* The layout of the city is very similar to [[Olivine City]] with exits to the north and west of the city, two houses in the northeastern corner, Gym in the northwestern corner and a lighthouse in the southeastern corner.&lt;br /&gt;
** This city is also similar to [[Vermilion City]] in [[Kanto]]. Both&#039;s Gym Leaders use Electric-type Pokémon, and both are port cities.&lt;br /&gt;
* As [[Jasmine]] leaves the player with HM07, she walks back to the shore saying &amp;quot;...Um... I... I don&#039;t know how I should say this, but good luck.&amp;quot; This is the same phrase she gives players that defeat her in [[Olivine Gym]].&lt;br /&gt;
&lt;br /&gt;
===Name origin===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background:#FFD100; border:3px solid #FFA500&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Language&lt;br /&gt;
! Name&lt;br /&gt;
! Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Japanese&lt;br /&gt;
| ナギサシティ &#039;&#039;Nagisa City&#039;&#039;&lt;br /&gt;
| From 渚 &#039;&#039;nagisa&#039;&#039; (shore).&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| English&lt;br /&gt;
| Sunyshore City&lt;br /&gt;
| Derives from &#039;&#039;sunny&#039;&#039;, referring to its weather, and &#039;&#039;shore&#039;&#039;, as it is on Sinnoh&#039;s coastline.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| French&lt;br /&gt;
| Rivamar&lt;br /&gt;
| From Italian &#039;&#039;riva&#039;&#039;, shore, and &#039;&#039;mar&#039;&#039;, sea.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| German&lt;br /&gt;
| Sonnewik&lt;br /&gt;
| From &#039;&#039;Sonne&#039;&#039;, sun, and the suffix &#039;&#039;-wik&#039;&#039; (bay, gulf).&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Italian&lt;br /&gt;
| Arenipoli&lt;br /&gt;
| From &#039;&#039;arena&#039;&#039;, sand, and the suffix &#039;&#039;-poli&#039;&#039;, meaning city.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Spanish&lt;br /&gt;
| Ciudad Marina&lt;br /&gt;
| Means &#039;&#039;city of the sea&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Korean&lt;br /&gt;
| 물가시티 &#039;&#039;Mulga City&#039;&#039;&lt;br /&gt;
| 물가 &#039;&#039;mulga&#039;&#039; means &#039;&#039;shore&#039;&#039; or &#039;&#039;waterside&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Chinese ({{tt|Mandarin|Taiwan}})&lt;br /&gt;
| 濱海市 &#039;&#039;Bīnhǎi Shì&#039;&#039; ({{tt|manga|Adventures and DPA}})&amp;lt;br&amp;gt;湖濱市 &#039;&#039;Hú​bīn​ Shì​&#039;&#039; (anime)&lt;br /&gt;
| 濱海 means &#039;&#039;seashore&#039;&#039;.&amp;lt;br&amp;gt;湖濱 literally means &#039;&#039;lakeshore&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Polish&lt;br /&gt;
| Sunyshore&lt;br /&gt;
| From its English name&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Vietnamese&lt;br /&gt;
| Thành phố Nagisa&lt;br /&gt;
| Transliteration of Japanese name.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Cities and Towns notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Diamond and Pearl locations]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
[[Category:Cities]]&lt;br /&gt;
&lt;br /&gt;
[[de:Sonnewik]]&lt;br /&gt;
[[es:Ciudad Marina]]&lt;br /&gt;
[[fr:Rivamar]]&lt;br /&gt;
[[it:Arenipoli]]&lt;br /&gt;
[[ja:ナギサシティ]]&lt;br /&gt;
[[zh:滨海市]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sunyshore_City&amp;diff=3160845</id>
		<title>Sunyshore City</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sunyshore_City&amp;diff=3160845"/>
		<updated>2020-05-06T10:26:54Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Pokémon */  Staryu levels was invalid, corrected from 20-40 to 20-50&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Town infobox&lt;br /&gt;
|name=Sunyshore City&lt;br /&gt;
|jpname=ナギサシティ&lt;br /&gt;
|jptrans=Nagisa City&lt;br /&gt;
|image=Sunyshore City Pt.png&lt;br /&gt;
|slogan=Solar Powered!&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|west=Route 222&lt;br /&gt;
|regionwest=Sinnoh&lt;br /&gt;
|north=Route 223&lt;br /&gt;
|regionnorth=Sinnoh&lt;br /&gt;
|mapdesc=A port city that was built around the bay portion of the cape. It is criss-crossed by elevated walkways.&amp;lt;br&amp;gt;The Gym is located atop a rocky outcropping. Down on the beach is a festive bazaar.&amp;lt;br&amp;gt;The Vista Lighthouse&#039;s bright beacon illuminates the Sinnoh region.&lt;br /&gt;
|gym=Sunyshore Gym&lt;br /&gt;
|gymno=8&lt;br /&gt;
|leader=Volkner&lt;br /&gt;
|leadervs=VSVolkner.png&lt;br /&gt;
|badge=Beacon&lt;br /&gt;
|gymtype=Electric&lt;br /&gt;
|colordark=FFA500&lt;br /&gt;
|colormed=ffd100&lt;br /&gt;
|colorlight=FF0&lt;br /&gt;
|generation=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sunyshore City&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ナギサシティ&#039;&#039;&#039; &#039;&#039;Nagisa City&#039;&#039;) is a city in the [[Sinnoh]] [[region]], and the location of the region&#039;s final Pokémon [[Gym]]. Sunyshore City is known as a major port town and the gateway to Sinnoh&#039;s Pokémon League. It is situated on a narrow spit of land bordered by the sea and the mountains. To make up for the lack of space, the city built solar panels to use for power and roads. There are suspended roads throughout the city that collect solar energy to power the city.&lt;br /&gt;
&lt;br /&gt;
[[Jasmine]], [[Olivine City]]&#039;s [[Gym Leader]], is seen in this city. She states that Sunyshore reminds her of home, because they both are by the sea, and both have a rather large lighthouse. After beating [[Volkner]], Jasmine will give the {{player}} {{HM|07|Waterfall}}.&lt;br /&gt;
&lt;br /&gt;
Until after [[Team Galactic]] is defeated and {{p|Dialga}}{{sup/4|D}}, {{p|Palkia}}{{sup/4|P}}, or {{p|Giratina}}{{sup/4|Pt}} is caught or defeated, the city experiences a massive blackout, and a man in [[Valor Lakefront]] prevents anyone from entering {{rt|222|Sinnoh}}, the only way to Sunyshore from the rest of Sinnoh.&lt;br /&gt;
&lt;br /&gt;
==Slogan==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Solar Powered!&#039;&#039;&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;{{j|たいようが てらす まち}}&#039;&#039;&#039; &#039;&#039;The town where the sun shines.&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
==Places of interest==&lt;br /&gt;
===Sunyshore Market===&lt;br /&gt;
{{main|Sunyshore Market}}&lt;br /&gt;
[[File:Sunyshore Market DP.png|thumb|left|Sunyshore Market]]&lt;br /&gt;
The Sunyshore Market is a small building located in Sunyshore City. It is located in the center of Sunyshore City, just north of the [[Poké Mart]], by the beach. The Sunyshore Market is one of the world&#039;s largest [[Seal]] centers. It is well known for its big selection of Seals from around the world. The building is always stacked with boxes of products. There are four desks and only three are occupied, though the player can only purchase items from the Seal shop by the man at the back of the room. The man at the stand will sell the {{player}} [[Poké Ball]] Seals. To buy these Seals, the player first must have obtained the [[Seal Case]] from the house just west of the [[Solaceon Ruins]]. The Seals he sells change every day. There is also a lady on the left to the entrance at the market giving away an {{DL|List of Ribbons in the games|Effort Ribbon}} to certain Pokémon, that have 510 [[Effort values]].&lt;br /&gt;
&lt;br /&gt;
===Walkway===&lt;br /&gt;
This city is also famous for its walkway, which is necessary for traveling around the city.&lt;br /&gt;
&lt;br /&gt;
===Vista Lighthouse===&lt;br /&gt;
[[File:Vista Lighthouse DPPt.png|thumb|Vista Lighthouse]]&lt;br /&gt;
{{main|Vista Lighthouse}}&lt;br /&gt;
The Vista Lighthouse can be found in the far southeastern corner of Sunyshore City. While not as spectacular as the [[Glitter Lighthouse|lighthouse in Johto]], consisting only of an elevator and an observation deck, it has a similarity in that it is the location in which the city&#039;s [[Gym Leader]], [[Volkner]], is found before appearing in the [[Gym|Pokémon Gym]]. The player can see the Sinnoh Pokémon League building if they look into the binoculars. Volkner, unlike [[Jasmine]], however, is not caring for an ailing Pokémon, merely contemplating remaining a Gym Leader or going to the {{si|Pokémon League}} to challenge the [[Elite Four]], since he has had no worthy challengers for a while.&lt;br /&gt;
&lt;br /&gt;
===Julia===&lt;br /&gt;
There is also a lonely woman named [[Julia]] who will hand out {{DL|List of Ribbons in the games|Memorial Ribbons|seven}} [[Ribbon]]s, one for each day of the week. The Ribbons she hands out differ according to her mood, which changes every day. The {{DL|List of Ribbons in the games|Memorial Ribbons|Ribbons}} she hands out are as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; border: 3px solid #{{platinum color}}; background: #{{pearl color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}; {{roundytl|5px}}&amp;quot;| Day&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}&amp;quot; colspan=&amp;quot;2&amp;quot; | Ribbon&lt;br /&gt;
! style=&amp;quot;background:#{{diamond color}}; {{roundytr|5px}}&amp;quot; | Description&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 1|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Monday&lt;br /&gt;
| [[File:Alert Ribbon.png]]&lt;br /&gt;
| Alert Ribbon&lt;br /&gt;
| A Ribbon for recalling an invigorating event that created life energy.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 2|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Tuesday&lt;br /&gt;
| [[File:Shock Ribbon.png]]&lt;br /&gt;
| Shock Ribbon&lt;br /&gt;
| A Ribbon for recalling a thrilling event that made life more exciting.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 3|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Wednesday&lt;br /&gt;
| [[File:Downcast Ribbon.png]]&lt;br /&gt;
| Downcast Ribbon&lt;br /&gt;
| A Ribbon for recalling feelings of sadness that added spice to life.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 4|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Thursday&lt;br /&gt;
| [[File:Careless Ribbon.png]]&lt;br /&gt;
| Careless Ribbon&lt;br /&gt;
| A Ribbon for recalling a careless error that helped steer life decisions.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 5|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Friday&lt;br /&gt;
| [[File:Relax Ribbon.png]]&lt;br /&gt;
| Relax Ribbon&lt;br /&gt;
| A Ribbon for recalling a refreshing event that added sparkle to life.&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 6|C0C0C0|FFF}}&amp;quot;&lt;br /&gt;
| Saturday&lt;br /&gt;
| [[File:Snooze Ribbon.png]]&lt;br /&gt;
| Snooze Ribbon&lt;br /&gt;
| A Ribbon for recalling a deep slumber that made life soothing.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}; {{roundybl|5px}}&amp;quot; | Sunday&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}&amp;quot; | [[File:Smile Ribbon.png]]&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}&amp;quot; | Smile Ribbon&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|C0C0C0|FFF}}; {{roundybr|5px}}&amp;quot; | A Ribbon for recalling that smiles enrich the quality of life.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Pokétch developer===&lt;br /&gt;
In the house only reachable by {{m|Rock Climb}}, a lone scientist has been given the okay by the [[Pokétch Company]] to develop original [[Pokétch]] applications. If he is shown a Pokémon with one of three Natures, he will give away one of three different applications.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Serious&#039;&#039;&#039; - {{DL|Pokétch|Calendar}} app&lt;br /&gt;
*&#039;&#039;&#039;Naive&#039;&#039;&#039; - {{DL|Pokétch|Dot Artist}} app&lt;br /&gt;
*&#039;&#039;&#039;Quirky&#039;&#039;&#039; - {{DL|Pokétch|Roulette}} app&lt;br /&gt;
&lt;br /&gt;
===Pokémon Rock===&lt;br /&gt;
Pokémon Rock is a giant rock formation found on the east side of the city. Pokémon Rock is one of the city&#039;s famous landmarks, famous for its strange shape that resembles a {{p|Munchlax}} standing in the bay, with the water covering its feet.&lt;br /&gt;
&lt;br /&gt;
===Sunyshore Gym===&lt;br /&gt;
{{main|Sunyshore Gym}}&lt;br /&gt;
The Sunyshore Gym is the official [[Gym]] of Sunyshore City. It is based on {{type|Electric}} {{OBP|Pokémon|species}}. The [[Gym Leader]] is [[Volkner]]. {{pkmn|Trainer}}s who defeat him receive the {{badge|Beacon}}. The Sunyshore Gym is a three-room Gym where the main floor is made up of gigantic gears and clockwork suspending platforms operated by buttons. To get through, Trainers need to rotate the platforms in a correct order to create a path. The Gym has exposed dynamos that use up a large amount of electrical power, prompting the town to renovate the pathways into solar energy collectors. For defeating Volkner, Trainers receive the {{badge|Beacon}}, {{TM|57|Charge Beam}}, and the ability to use {{m|Waterfall}} outside of battle.&lt;br /&gt;
&lt;br /&gt;
{{sign|DPtip|header}}&lt;br /&gt;
{{sign|DPtip|title|Sunyshore City Pokémon Gym}}&lt;br /&gt;
{{sign|DPtip|title|Leader: Volkner}}&lt;br /&gt;
{{sign|DPtip|&amp;quot;The Shining, Shocking Star&amp;quot;}}&lt;br /&gt;
{{sign|DPtip|footer}}&lt;br /&gt;
&lt;br /&gt;
==Demographics==&lt;br /&gt;
[[File:Sunyshore City DP.png|thumb|250px|Sunyshore City in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
===Pokémon Diamond and Pearl===&lt;br /&gt;
In {{game|Diamond and Pearl|s}}, the population of Sunyshore City is 47, the same as that of [[Pastoria City]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Platinum===&lt;br /&gt;
In {{game|Platinum}}, the population of Sunyshore City is 48.&lt;br /&gt;
&lt;br /&gt;
==Poké Mart==&lt;br /&gt;
{{shop|Left cashier}}&lt;br /&gt;
{{shoprow|{{shopitem|Steel Mail|50}}|{{shopitem|Luxury Ball|1000}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Right cashier}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Ball (item)|200|5=Poké Ball|display=Poké Ball}}|{{shopitem|Great Ball|600}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ultra Ball|1200}}|{{shopitem|Potion|300}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Super Potion|700}}|{{shopitem|Hyper Potion|1200}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Max Potion|2500}}|{{shopitem|Full Restore|3000|note=&amp;lt;sup&amp;gt;8 {{color2|000|Badge|Badges}}&amp;lt;/sup&amp;gt;}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Revive|1500}}|{{shopitem|Antidote|100}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Paralyze Heal|display=Parlyz Heal|200}}|{{shopitem|Awakening|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Burn Heal|250}}|{{shopitem|Ice Heal|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Full Heal|600}}|{{shopitem|Escape Rope|550}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Repel|350}}|{{shopitem|Super Repel|500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Max Repel|700}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{itlisth|city}}&lt;br /&gt;
{{Itemlist|HM Water|From [[Jasmine]] at the beach after defeating [[Volkner]]|D=yes|P=yes|Pt=yes|display={{HM|07|Waterfall}}}}&lt;br /&gt;
{{Itemlist|Pearl|Between the Sunyshore Market and the blank sign painted white &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Carbos|Between the Sunyshore Market and the blank sign painted white &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Thunder Stone|Behind the [[Vista Lighthouse]]|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Zap Plate|In front of the Vista Lighthouse &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|none|sprite=Alert Ribbon|From Julia to the leading Pokémon in the [[party]]{{dotw|Mo}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Alert Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Shock Ribbon|From Julia to the leading Pokémon in the party{{dotw|Tu}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Shock Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Downcast Ribbon|From Julia to the leading Pokémon in the party{{dotw|We}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Downcast Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Careless Ribbon|From Julia to the leading Pokémon in the party{{dotw|Th}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Careless Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Relax Ribbon|From Julia to the leading Pokémon in the party{{dotw|Fr}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Relax Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Snooze Ribbon|From Julia to the leading Pokémon in the party{{dotw|Sa}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Snooze Ribbon}}}}&lt;br /&gt;
{{Itemlist|none|sprite=Smile Ribbon|From Julia to the leading Pokémon in the party{{dotw|Su}}|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Smile Ribbon}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the [[Pokétch]] app developer if shown a Pokémon with a Serious [[Nature]] (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Calendar}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the Pokétch app developer if shown a Pokémon with a Naive Nature (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Dot Artist}}}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From the Pokétch app developer if shown a Pokémon with a Quirky Nature (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Roulette}}}}&lt;br /&gt;
{{itlistfoot|city}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{catch/header|city|4}}&lt;br /&gt;
{{catch/div|water|Surfing}}&lt;br /&gt;
{{catch/entry4|072|Tentacool|no|no|yes|Surf|30-40|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|yes|yes|no|Surf|35-45|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|no|no|yes|Surf|30-50|all=9%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|278|Wingull|no|no|yes|Surf|30-40|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|yes|yes|no|Surf|35-43|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|no|no|yes|Surf|30-50|all=1%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|458|Mantyke|yes|yes|no|Surf|30-45|all=10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|no|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|no|no|yes|Fish Old|3-15|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|120|Staryu|yes|yes|yes|Fish Super|20-50|all=5%|type1=Water}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|no|Fish Super|30-40|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|no|no|yes|Fish Super|30-55|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|yes|yes|no|Fish Super|20-50|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=35%|type1=Water}}&lt;br /&gt;
{{catch/footer|city}}&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
===Pokémon Platinum===&lt;br /&gt;
On certain days, the player can challenge a Trainer who appears in the Pokémon Center. Depending on the game progress, the Trainer will have teams with higher leveled Pokémon upon rematch.&lt;br /&gt;
&lt;br /&gt;
{{trainerheader|building}}&lt;br /&gt;
{{trainerdiv|building|Thursday and Friday}}&lt;br /&gt;
{{Trainerentry|Spr DP Guitarist.png|Guitarist|Arturo|{{tt|552|Initial battle}}/{{tt|840|First rematch}}/{{tt|1128|Second rematch}}/{{tt|1248|Third rematch}}/{{tt|1416|Fourth rematch}}|1|402|Kricketune|♂|{{tt|23|Initial battle}}/{{tt|35|First rematch}}/{{tt|47|Second rematch}}/{{tt|52|Third rematch}}/{{tt|59|Fourth rematch}}|None|36=ポール|37=Paul}}&lt;br /&gt;
{{Trainerfooter|building}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Sunyshore City Lighthouse.png|thumb|220px|Sunyshore City Lighthouse]]&lt;br /&gt;
[[File:Sunyshore City anime.png|thumb|left|250px|Sunyshore City in the {{pkmn|anime}}]]&lt;br /&gt;
Sunyshore City, like the {{pkmn|games}}, is shown to be a city built around solar energy, with numerous solar panels and [[Sunyshore Tower]] powering various technological machines in the city. Many escalators and roads made up of moving tiles are found throughout the city, and a lighthouse is also situated at the city&#039;s shore. Sunyshore [[Gym Leader]] [[Volkner]] is responsible for the city&#039;s now shining vision, however in the past the city was plagued by criminal gangs and [[Pokémon poacher]]s. &lt;br /&gt;
&lt;br /&gt;
{{Ash}} and {{ashfr}} first arrived in Sunyshore City in &#039;&#039;[[DP165|Flint Sparks the Fire!]]&#039;&#039;, where Ash visited the [[Sunyshore Gym]], only to find the [[Gym]] was handing out free [[Badge]]s. Angered, Ash met {{EF|Flint}} of the [[Elite Four]], who brought him to the disenchanted Volkner. Despite Ash personally requesting a Gym {{pkmn|battle}}, Volkner still refused to battle him. Flint decided to battle Ash, and they were able to renew the spark for battling within Volkner.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP166|The Fleeing Tower of Sunyshore!]]&#039;&#039;, as Ash and Volkner prepared to have their Gym battle, the electricity was cut off unexpectedly. They realized that this was due to {{TRT}} stealing Sunyshore Tower. Ash and Volkner successfully fought off Team Rocket, but Ash&#039;s Gym battle had to be postponed as the tower needed repairs. Ash and his friends decided to take this opportunity to head to [[Valor Lakefront]] for the [[Sinnoh Grand Festival]].&lt;br /&gt;
&lt;br /&gt;
Ash returned to Sunyshore City for his Gym battle in &#039;&#039;[[DP179|The Eighth Wonder of the Sinnoh World!]]&#039;&#039;, and he earned himself the [[Beacon Badge]]. In &#039;&#039;[[DP180|Four Roads Diverged in a Pokémon Port!]]&#039;&#039; Ash missed the boat to [[Lily of the Valley Island]] and stayed in Sunyshore City, only to meet {{si|Kenny}}, [[Jasmine]], and Flint. Jasmine, who was on a journey of discovery, challenged Flint to a battle but lost, while Ash battled Kenny to decide who {{an|Dawn}} should travel with from now on. Ash and his friends later left for the [[Lily of the Valley Conference|Sinnoh League]].&lt;br /&gt;
&lt;br /&gt;
===Gallery===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background:#FFD100; {{roundy}}; border:3px solid #FFA500&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#FF0&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | {{color2|000|Sunyshore Gym}}&lt;br /&gt;
! {{color2|000|Sunyshore Tower}}&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | {{color2|000|Proprietor|The Proprietor&#039;s café}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[File:Sunyshore Gym anime.png|x150px]]&lt;br /&gt;
| [[File:Sunyshore Tower.png|x150px]]&lt;br /&gt;
| [[File:The Propreitor&#039;s Cafe.png|x150px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the [[Pokémon Adventures]] manga===&lt;br /&gt;
===={{chap|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
Sunyshore City first appeared when the manager of [[Valley Windworks]] visited the city to investigate a blackout.&lt;br /&gt;
&lt;br /&gt;
===={{chap|Platinum}}====&lt;br /&gt;
Sunyshore City was where {{p|Giratina}} emerged from the [[Distortion World]] at the end of this chapter, but it was immediately struck down by a {{m|Draco Meteor}} commanded by [[Cynthia]]&#039;s {{p|Garchomp}}. Everyone who was at the Distortion World got out safely, with the portal only closing after Giratina went through it.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Sunyshore is [[Cyrus]]&#039;s hometown.&lt;br /&gt;
* The layout of the city is very similar to [[Olivine City]] with exits to the north and west of the city, two houses in the northeastern corner, Gym in the northwestern corner and a lighthouse in the southeastern corner.&lt;br /&gt;
** This city is also similar to [[Vermilion City]] in [[Kanto]]. Both&#039;s Gym Leaders use Electric-type Pokémon, and both are port cities.&lt;br /&gt;
* As [[Jasmine]] leaves the player with HM07, she walks back to the shore saying &amp;quot;...Um... I... I don&#039;t know how I should say this, but good luck.&amp;quot; This is the same phrase she gives players that defeat her in [[Olivine Gym]].&lt;br /&gt;
&lt;br /&gt;
===Name origin===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background:#FFD100; border:3px solid #FFA500&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Language&lt;br /&gt;
! Name&lt;br /&gt;
! Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Japanese&lt;br /&gt;
| ナギサシティ &#039;&#039;Nagisa City&#039;&#039;&lt;br /&gt;
| From 渚 &#039;&#039;nagisa&#039;&#039; (shore).&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| English&lt;br /&gt;
| Sunyshore City&lt;br /&gt;
| Derives from &#039;&#039;sunny&#039;&#039;, referring to its weather, and &#039;&#039;shore&#039;&#039;, as it is on Sinnoh&#039;s coastline.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| French&lt;br /&gt;
| Rivamar&lt;br /&gt;
| From Italian &#039;&#039;riva&#039;&#039;, shore, and &#039;&#039;mar&#039;&#039;, sea.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| German&lt;br /&gt;
| Sonnewik&lt;br /&gt;
| From &#039;&#039;Sonne&#039;&#039;, sun, and the suffix &#039;&#039;-wik&#039;&#039; (bay, gulf).&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Italian&lt;br /&gt;
| Arenipoli&lt;br /&gt;
| From &#039;&#039;arena&#039;&#039;, sand, and the suffix &#039;&#039;-poli&#039;&#039;, meaning city.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Spanish&lt;br /&gt;
| Ciudad Marina&lt;br /&gt;
| Means &#039;&#039;city of the sea&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Korean&lt;br /&gt;
| 물가시티 &#039;&#039;Mulga City&#039;&#039;&lt;br /&gt;
| 물가 &#039;&#039;mulga&#039;&#039; means &#039;&#039;shore&#039;&#039; or &#039;&#039;waterside&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Chinese ({{tt|Mandarin|Taiwan}})&lt;br /&gt;
| 濱海市 &#039;&#039;Bīnhǎi Shì&#039;&#039; ({{tt|manga|Adventures and DPA}})&amp;lt;br&amp;gt;湖濱市 &#039;&#039;Hú​bīn​ Shì​&#039;&#039; (anime)&lt;br /&gt;
| 濱海 means &#039;&#039;seashore&#039;&#039;.&amp;lt;br&amp;gt;湖濱 literally means &#039;&#039;lakeshore&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Polish&lt;br /&gt;
| Sunyshore&lt;br /&gt;
| From its English name&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Vietnamese&lt;br /&gt;
| Thành phố Nagisa&lt;br /&gt;
| Transliteration of Japanese name.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Cities and Towns notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Diamond and Pearl locations]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
[[Category:Cities]]&lt;br /&gt;
&lt;br /&gt;
[[de:Sonnewik]]&lt;br /&gt;
[[es:Ciudad Marina]]&lt;br /&gt;
[[fr:Rivamar]]&lt;br /&gt;
[[it:Arenipoli]]&lt;br /&gt;
[[ja:ナギサシティ]]&lt;br /&gt;
[[zh:滨海市]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_213&amp;diff=3125072</id>
		<title>Sinnoh Route 213</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_213&amp;diff=3125072"/>
		<updated>2020-02-29T12:38:02Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Trivia */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{incomplete|2=Missing manga section}}&lt;br /&gt;
{{Route infobox&lt;br /&gt;
|number=213&lt;br /&gt;
|size=290&lt;br /&gt;
|imageIV=Sinnoh Route 213 Pt.png&lt;br /&gt;
|type=sand&lt;br /&gt;
|image=Sinnoh Route 213 Pt.png&lt;br /&gt;
|north=Valor Lakefront&lt;br /&gt;
|west=Pastoria City&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|generation=4&lt;br /&gt;
|surf=yes&lt;br /&gt;
|rockclimb=yes&lt;br /&gt;
|rocksmash=yes&lt;br /&gt;
|mapdesc=Offshore boulders form a jetty that becalms waves reaching the beach. A resort hotel overlooks the water.&amp;lt;br&amp;gt;In a small house on the beach lives a single man who refers to himself as Dr. Footstep.&lt;br /&gt;
}}&lt;br /&gt;
[[File:Sinnoh Route 213 DP.png|thumb|Route 213 in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
&#039;&#039;&#039;Route 213&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;２１３ばんどうろ&#039;&#039;&#039; &#039;&#039;Route 213&#039;&#039;) is a route in southeastern [[Sinnoh]] that connects [[Pastoria City]] and [[Valor Lakefront]]. The route is home to Sinnoh&#039;s famous [[Hotel Grand Lake]].&lt;br /&gt;
&lt;br /&gt;
==Route description==&lt;br /&gt;
When leaving [[Valor Lakefront]], the {{player}} can see three suites and a hotel. In the suite on the left, a clown will give the player {{TM|92|Trick Room}}, and in the suite requiring {{m|Rock Climb}} to get to, a lady will give the player the [[Pokétch#Coin Toss|Coin Toss Pokétch App]]. In the hotel, if the player talks to the police officer he will heal their Pokémon. South of the hotel, there is a beach with two Trainers. Following the sandy beach west, the player will find Dr. Footstep&#039;s house. South of the house, there is a hidden [[Heart Scale]]. North of the house, there is a {{m|Rock Climb|climbable ledge}} leading to a grass patch and item, and a [[breakable rock]] hiding a [[Honey Tree]] on the right and left respectively. Further north, there is a grass patch leading the player to {{ci|Pastoria}}. North of the grass patch, there is a Berry patch.&lt;br /&gt;
&amp;lt;!--[[File:Sinnoh Route 213 DP.png|thumb|Route 213 in Diamond and Pearl]]--&amp;gt;&lt;br /&gt;
===Dr. Footstep&#039;s House===&lt;br /&gt;
[[Dr. Footstep]] will examine a Trainer&#039;s leading Pokémon&#039;s footprints and check its [[Friendship]] level. As a reward for a high Friendship level, he will give the Pokémon a {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{itlisth|sand}}&lt;br /&gt;
{{Itemlist|Protein|East of the Hotel Grand Lake southern entrance (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Awakening|Near the Honey Tree (requires {{m|Rock Smash}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Near the Honey Tree (requires {{m|Rock Smash}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Big Pearl|In the south-east corner of the route (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|TM Normal|Up in the highest mountain looking at the beach (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{TM|05|Roar}}}}&lt;br /&gt;
{{Itemlist|Water Stone|At the easternmost shallow water at the southern part of Route 213, north of Swimmers Evan and Mary (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Max Revive |&lt;br /&gt;
*Western islet (requires {{m|Surf}})&lt;br /&gt;
*Up in the highest mountain looking at the beach (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;{{sup/4|DP}}&lt;br /&gt;
*Under the parasol by the pool, south of the Game Director&#039;s suite &#039;&#039;(hidden)&#039;&#039;{{sup/4|Pt}}&lt;br /&gt;
|D=yes|P=yes|Pt=yes|display=[[Max Revive]] ×2}}&lt;br /&gt;
{{Itemlist|Big Pearl|In the islet to the west of Swimmer Sheltin (same islet as the Max Revive) (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|PP Up|Left of Hotel Grand Lake|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|HP Up|Up in the highest mountain looking at the beach (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Heart Scale|On east side of the east beach &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Heart Scale|At the very edge of the west beach directly below Dr. Footstep&#039;s house &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Super Potion|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Great Ball|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Calcium|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Red Shard|West of the entrance to Hotel Grand Lake|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Yellow Shard|West of the entrance to Hotel Grand Lake|Pt=yes}}&lt;br /&gt;
{{Itemlist|Suite Key|Immediately northwest of northern reception entrance &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Pearl|Near Fisherman Kenneth &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Pearl|In the wall northwest of the Max Revive islet (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Pearl|&lt;br /&gt;
* South of TM40 &#039;&#039;(hidden)&#039;&#039;&lt;br /&gt;
* Near Tuber Chelsea (×2) &#039;&#039;(hidden)&#039;&#039;|Pt=yes|display={{i|Pearl}} ×3}}&lt;br /&gt;
{{Itemlist|TM Flying|East of Dr. Footstep&#039;s house (requires {{m|Rock Smash}})|D=yes|P=yes|Pt=yes|display={{TM|40|Aerial Ace}}}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Under the parasol by the pool, south of the Game Director&#039;s suite &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist||sprite=Footprint Ribbon|From [[Dr. Footstep]] if the player shows him a Pokémon whose [[level]] is at least 30 higher than the level at which it was caught or received|D=yes|P=yes|Pt=yes|display={{DL|List of Ribbons in the games|Footprint Ribbon}}}}&lt;br /&gt;
{{Itemlist|Aguav Berry|In the Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Rawst Berry|In the Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes|display=[[Rawst Berry]] ×2}}&lt;br /&gt;
{{Itemlist|Iapapa Berry|In the Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{itlistfoot|sand}}&lt;br /&gt;
&lt;br /&gt;
===Hotel Grand Lake===&lt;br /&gt;
These are items found inside [[Hotel Grand Lake]] buildings located on Route 213; however, they are technically found in a location called &amp;quot;Grand Lake&amp;quot;, not Route 213.&lt;br /&gt;
&lt;br /&gt;
{{itlisth|sand}}&lt;br /&gt;
{{Itemlist|TM Psychic|Gift from the {{tc|Clown}} in the bungalow to the northwest of the hotel entrance|D=yes|P=yes|Pt=yes|display={{TM|92|Trick Room}}}}&lt;br /&gt;
{{Itemlist|Max Revive|Inside a trash can in the bungalow to the northeast of the hotel entrance (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From a {{tc|Rich Boy}} inside a bungalow to the northeast of the hotel entrance (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Coin Toss}}}}&lt;br /&gt;
{{itlistfoot|sand}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{Catch/header|sand}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|yes|yes|no|Grass|20|20%|20%|10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|no|no|yes|Grass|24-26|all=20%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|yes|yes|no|Grass|20-21|all=30%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|no|no|yes|Grass|23-25|25%|25%|35%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|419|Floatzel|yes|yes|no|Grass|22|all=10%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|yes|yes|no|Grass|20-22|40%|40%|50%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|no|no|yes|Grass|24-26|35%|35%|45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|441|Chatot|no|no|yes|Grass|23-25|20%|20%|0%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{catch/entry4|072|Tentacool|yes|yes|yes|Surf|20-30|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|yes|yes|yes|Surf|20-40|all=5%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|278|Wingull|yes|yes|yes|Surf|20-30|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|yes|yes|no|Surf|20-40|all=5%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|422E|Shellos|no|no|yes|Surf|20-30|all=4%|type1=Water}}&lt;br /&gt;
{{catch/entry4|423E|Gastrodon|no|no|yes|Surf|20-40|all=1%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|no|Fish Super|30-40|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|no|no|yes|Fish Super|30-55|all=65%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|yes|yes|no|Fish Super|20-50|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|319|Sharpedo|yes|yes|no|Fish Super|40-55|all=5%|type1=Water|type2=Dark}}&lt;br /&gt;
{{Catch/div|sand|Swarm}}&lt;br /&gt;
{{Catch/entry4|359|Absol|yes|yes|no|Swarm|20|all=40%|type1=Dark}}&lt;br /&gt;
{{Catch/div|sand|Special}}&lt;br /&gt;
{{Catch/entry4|277|Swellow|yes|yes|no|Poké Radar|20-22|all=22%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|277|Swellow|no|no|yes|Poké Radar|21-25|all=22%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/footer|sand}}&lt;br /&gt;
Additionally, wild Pokémon can appear on the [[Honey Tree]].&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
==={{game|Diamond and Pearl|s}}===&lt;br /&gt;
{{trainerheader|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy|1288|1|431|Glameow|♀|23|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Kenneth|704|3|129|Magikarp|♂|19|None|223|Remoraid|♂|19|None|130|Gyarados|♂|22|None|36=タカフミ|37=Takafumi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|92|1|400|Bibarel|♀|23|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared|80|3|422|Shellos|♂|19|None|422|Shellos|♂|21|None|422|Shellos|♂|20|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand|Requires Surf}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Haley|496|2|183|Marill|♀|31|None|184|Azumarill|♀|31|None|36=ナオミ|37=Naomi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Sheltin|496|3|130|Gyarados|♂|30|None|130|Gyarados|♂|29|None|130|Gyarados|♂|31|None|36=エイサク|37=Eisaku}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Sailor.png|Sailor|Paul|992|2|130|Gyarados|♂|31|None|066|Machop|♂|31|None|36=ヨウヘイ|37=Yōhei}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Evan|512&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Mary&amp;lt;/small&amp;gt;|2|055|Golduck|♂|30|None|055|Golduck|♂|32|None|36=キョウジ|37=Kyōji}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Mary|480&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Evan&amp;lt;/small&amp;gt;|2|183|Marill|♀|32|None|279|Pelipper|♀|30|None|36=エリコ|37=Eriko}}&lt;br /&gt;
{{Trainerdiv|sand|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|First rematch}}|2240|1|431|Glameow|♀|40|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|Second rematch}}|3360|1|432|Purugly|♀|60|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|{{tt|160|First rematch}}/{{tt|220|Second rematch}}|1|400|Bibarel|♀|{{tt|40|First rematch}}/{{tt|55|Second rematch}}|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|First rematch}}|116|3|422|Shellos|♂|28|None|422|Shellos|♂|27|None|422|Shellos|♂|29|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|Second rematch}}|204|3|423|Gastrodon|♂|52|None|423|Gastrodon|♂|53|None|423|Gastrodon|♂|51|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|sand}}&lt;br /&gt;
&lt;br /&gt;
==={{game|Platinum}}===&lt;br /&gt;
{{trainerheader|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy|1624|1|431|Glameow|♀|29|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Kenneth|896|3|223|Remoraid|♂|25|None|223|Remoraid|♂|25|None|130|Gyarados|♂|28|None|36=タカフミ|37=Takafumi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|112|1|183|Marill|♀|28|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared|104|3|422E|Shellos|♂|25|None|422E|Shellos|♂|25|None|422|Shellos|♂|26|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand|Requires Surf}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Haley|560|2|054|Psyduck|♀|31|None|184|Azumarill|♀|35|None|36=ナオミ|37=Naomi}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Sheltin|512|3|130|Gyarados|♂|32|None|130|Gyarados|♂|32|None|130|Gyarados|♂|32||36=エイサク|37=Eisaku}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Sailor.png|Sailor|Paul|1088|3|072|Tentacool|♂|31|None|279|Pelipper|♂|31|None|067|Machoke|♂|34||36=ヨウヘイ|37=Yōhei}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Evan|544&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Mary&amp;lt;/small&amp;gt;|2|055|Golduck|♂|32|None|055|Golduck|♂|34|None|36=キョウジ|37=Kyōji}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Mary|528&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Evan&amp;lt;/small&amp;gt;|2|456|Finneon|♀|33|None|279|Pelipper|♀|33|None|36=エリコ|37=Eriko}}&lt;br /&gt;
{{Trainerdiv|sand|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|First rematch}}|2520|1|431|Glameow|♀|45|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|Second rematch}}|3304|3|052|Meowth|♀|59|None|431|Glameow|♀|59|None|300|Skitty|♀|59|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|{{tt|176|First rematch}}/{{tt|212|Second rematch}}|1|184|Azumarill|♀|{{tt|44|First rematch}}/{{tt|53|Second rematch}}|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|First rematch}}|128|3|422E|Shellos|♂|32|None|422E|Shellos|♂|32|None|422|Shellos|♂|32|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|Second rematch}}|204|3|423E|Gastrodon|♂|51|None|423E|Gastrodon|♂|51|None|423|Gastrodon|♂|51|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|sand}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* On January 24, March 13, May 11, July 11, August 9, August 20, October 18, November 10, December 2, and December 31, it [[rain]]s on this route.&lt;br /&gt;
* On January 5, February 15, February 29, April 15, June 15, July 26, September 2, September 13, October 3, and December 25, the route is cloudy.&lt;br /&gt;
* In {{2v2|Diamond|Pearl}}, {{p|Absol}} can be {{pkmn2|caught}} here, possibly a reference to the route&#039;s name ending in 13.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Valor Lakefront]]&lt;br /&gt;
&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Routes notice}}&lt;br /&gt;
[[Category:Sinnoh locations|Route 213]]&lt;br /&gt;
[[Category:Routes|Route 213]]&lt;br /&gt;
[[Category:Diamond and Pearl locations|Route 213]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Route 213 (Sinnoh)]]&lt;br /&gt;
[[es:Ruta 213]]&lt;br /&gt;
[[fr:Route 213]]&lt;br /&gt;
[[it:Percorso 213 (Sinnoh)]]&lt;br /&gt;
[[ja:213ばんどうろ (シンオウ地方)]]&lt;br /&gt;
[[zh:２１３号道路（神奥）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3121161</id>
		<title>Friendship</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Friendship&amp;diff=3121161"/>
		<updated>2020-02-23T08:44:39Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Evolutions */  added morning for Budew&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{samename|Friendship features in {{g|GO}}|Friends (GO)}}&lt;br /&gt;
{{redirect|Happiness|the &amp;quot;Happiness Pokémon&amp;quot; category|Blissey (Pokémon)}}&lt;br /&gt;
{{spading|comment=Still needs research overall, especially regarding values.}}&lt;br /&gt;
{{incomplete|needs=Generation VIII information, manga section}}&lt;br /&gt;
&#039;&#039;&#039;Friendship&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;なつき{{tt|度|ど}}&#039;&#039;&#039; &#039;&#039;degree of emotional attachment&#039;&#039;), also referred to as &#039;&#039;&#039;loyalty&#039;&#039;&#039; in [[Generation II]] core series games, &#039;&#039;&#039;tame&#039;&#039;&#039; in [[Pokémon Stadium 2]] and &#039;&#039;&#039;friendliness&#039;&#039;&#039; in [[Pokémon XD: Gale of Darkness]], and commonly referred to by fans as &#039;&#039;&#039;happiness&#039;&#039;&#039;, is a measurement of how much a {{OBP|Pokémon|species}} is attached to its {{pkmn|Trainer}} and enjoys being in their care.&lt;br /&gt;
&lt;br /&gt;
It affects the [[evolution]] of {{cat|Pokémon that evolve by friendship|certain Pokémon}}, the power of {{m|Return}} and {{m|Frustration}}, and the availability of a few in-game [[item]]s and [[Ribbon]]s. Certain events increase a Pokémon&#039;s friendship (gaining a [[level]], walking a certain amount of steps) or decrease it ([[fainting]], using [[herbal medicine]]).&lt;br /&gt;
&lt;br /&gt;
Friendship was introduced in {{game|Yellow}} for the {{player}}&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}} only, and expanded to cover all Pokémon in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
In [[Generation VI]], [[Affection]], a separate mechanic, was introduced. However, from [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]] onward, Affection no longer exists and friendship has all of its effects instead.&lt;br /&gt;
&lt;br /&gt;
==In the core series games==&lt;br /&gt;
Friendship debuted in [[Generation I]] as a mechanic that applied only to the {{player}}&#039;s {{p|Pikachu}} in {{game|Yellow}}. In [[Generation II]], it was expanded to cover all Pokémon. In all games, friendship is a value that ranges from 0 to 255 (stored as a single byte). In Pokémon Yellow, Pikachu&#039;s friendship is indicated by the expression it shows when the player talks to it, but in later games, [[#Raters|certain NPCs]] in the games will evaluate the friendship of a Pokémon in the player&#039;s [[party]].&lt;br /&gt;
&lt;br /&gt;
A Pokémon&#039;s friendship is generally set when the player first obtains it. When a Pokémon is first caught from the wild, its friendship starts at its [[List of Pokémon by base friendship|base friendship]] value. Trading a Pokémon also resets its friendship to its base value, unless it is being traded back to its [[original Trainer]] in [[Generation VI]] or later, in which case it regains the friendship it had before being traded away. A Pokémon caught in a [[Friend Ball]] starts with 200 friendship instead of its base friendship, while a Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
Friendship is generally increased by taking good care of a Pokémon. Keeping a Pokémon in the player&#039;s party, raising it, using items on it, and getting it [[Pokémon groomer|groomed]] will all increase a Pokémon&#039;s friendship. Letting it faint and using bitter [[herbal medicine]]s on it will decrease a Pokémon&#039;s friendship.&lt;br /&gt;
&lt;br /&gt;
===Boosting friendship===&lt;br /&gt;
In {{game|Crystal}}, if a Pokémon is leveled up at its met location, it will gain twice as much friendship from that level up as usual. Since only Pokémon caught in Pokémon Crystal have a defined met location, Pokémon caught in the [[Generation I]] games, {{game|Gold and Silver|s}}, and Pokémon from [[in-game trade]]s will not receive this bonus. If a Pokémon that has a defined met location is traded to a Generation I game, this data is permanently erased, so it can no longer receive this bonus.&lt;br /&gt;
&lt;br /&gt;
Starting in Generation III, if a Pokémon was caught in a [[Luxury Ball]] or is currently at the same location where it was {{pkmn2|caught}} (its met location), any increase to its friendship is boosted by an extra point (two points if both apply). If a Pokémon is holding a [[Soothe Bell]], increases to its friendship are boosted by 50% of the change. In Generation III, Soothe Bell applies directly to the original change in friendship, while in later games, it applies to the friendship change after including Luxury Ball and met location bonuses. In Generation IV, being at its met location does not change the amount of friendship a Pokémon gains, but it does from Generation V onward.&lt;br /&gt;
&lt;br /&gt;
In Generation V, the Befriending Power [[Pass Power]] boosts any increase to friendship by one to three points depending on the strength of the power used. In Generation VI, the Befriending Power [[O-Power]] has the same effect. Befriending Power does not exist in [[Generation VII]].&lt;br /&gt;
&lt;br /&gt;
None of these effects change the amount of friendship lost for negative changes or for changes of 0 (such as using an [[X Attack]] on a Pokémon with high friendship).&lt;br /&gt;
&lt;br /&gt;
===Mechanics using friendship===&lt;br /&gt;
In Pokémon Yellow, friendship affected very little beyond the reactions Pikachu would show when interacted with.&lt;br /&gt;
&lt;br /&gt;
Starting in [[Generation II]], there are {{cat|Pokémon that evolve by friendship}}, which can only evolve if they have 220 friendship or more. Additionally, the moves {{m|Return}} and {{m|Frustration}} vary in power depending on how high or low the user&#039;s friendship is.&lt;br /&gt;
&lt;br /&gt;
From [[Generation IV]] onward, there is a [[Ribbon]] for Pokémon with maximum friendship, the {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
Some NPCs also only give gifts or [[Move Tutor|teach moves]] when the player&#039;s Pokémon has a certain amount of friendship.&amp;lt;!--Maybe should be listed. I think the Soothe Bell and Lucky Egg are a couple (sometimes?).--&amp;gt; Specifically, a Pokémon must have maximized friendship to learn {{m|Draco Meteor}}, {{m|Frenzy Plant}}, {{m|Blast Burn}}, {{m|Hydro Cannon}}, {{m|Grass Pledge}}, {{m|Fire Pledge}}, or {{m|Water Pledge}} in any generation.&lt;br /&gt;
&lt;br /&gt;
In {{2v2|Omega Ruby|Alpha Sapphire}}, [[Nameless Cavern]] becomes unlocked once the {{player}} has three Pokémon with maximum friendship on their team.&lt;br /&gt;
&lt;br /&gt;
=====Moves=====&lt;br /&gt;
Friendship affects the following moves.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 5px solid #{{cute color light}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; class=&amp;quot;sortable roundy&amp;quot; style=&amp;quot;text-align:center; background: #FFFFFF; border:1px solid #{{cute color}}; border-collapse:collapse;&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Move&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Type]]&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; | [[Damage category|Category]]&lt;br /&gt;
! [[Power]]&lt;br /&gt;
! [[Accuracy]]&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; | Notes&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Frustration}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The lower the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Pika Papow}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
{{statustable|Special}}&lt;br /&gt;
| Varies&lt;br /&gt;
|  —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Return}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| 100%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | {{m|Veevee Volley}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
{{statustable|Physical}}&lt;br /&gt;
| Varies&lt;br /&gt;
| —%&lt;br /&gt;
| class=&amp;quot;l&amp;quot; | The greater the user&#039;s friendship, the greater the base power&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===In Generation I===&lt;br /&gt;
[[File:PikachuY-Happy.png|thumb|right|{{ga|Red&#039;s Pikachu|Pikachu}} with high friendship]]&lt;br /&gt;
In {{game|Yellow}}, there is a friendship system exclusively for the player&#039;s {{ga|Red&#039;s Pikachu|starter Pikachu}}. Any Pikachu that the player is the [[Original Trainer]] of (according to their Original Trainer name and [[Trainer ID number]]) is treated as the player&#039;s starter Pikachu. Raichu and {{pkmn2|Outsider}} Pikachu are not affected, even if the Raichu was the player&#039;s starter Pokémon but evolved (which can only be done by first [[trade|trading]] it to another game).&lt;br /&gt;
&lt;br /&gt;
The starter Pikachu [[Walking Pokémon|follows the player in the overworld]], if it is in the party and not [[fainting|fainted]] (if the player has multiple, Pikachu will follow if the first starter Pikachu in the party is not fainted). If the player interacts with Pikachu, a window will pop up showing Pikachu&#039;s face, and the expression is affected by Pikachu&#039;s current friendship (though certain special events may elicit special reactions unrelated to Pikachu&#039;s current friendship). At maximum friendship, Pikachu jumps up and down before the window appears.&lt;br /&gt;
&lt;br /&gt;
In [[Cerulean City]], [[Melanie]] gives the player a {{p|Bulbasaur}} if the starter Pikachu&#039;s friendship is 147 or higher. Pikachu does not need to be in the player&#039;s party or even in the game itself to receive this Bulbasaur. This is the only significance of friendship outside of interacting with Pikachu.&lt;br /&gt;
&lt;br /&gt;
Pikachu starts with a [[List of Pokémon by base friendship|base friendship]] of 90. Various actions can increase or decrease Pikachu&#039;s friendship level.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! colspan=2 rowspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Starter Pikachu [[level|levels]] up while in the party || rowspan=2 | +5 || rowspan=2 | +3 || rowspan=2 | +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Use [[medicine]] on starter Pikachu (even if unsuccessful),&amp;lt;br&amp;gt;other than [[PP Up]], [[Full Heal]], [[Revive]], [[Max Revive]], [[Ether]], [[Max Ether]], [[Elixir|Elixer]], [[Max Elixir|Max Elixer]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Challenge a [[Gym Leader]] with non-fainted starter Pikachu in the party&amp;lt;br&amp;gt;(if the player has multiple, the first Pikachu in the party must not be fainted)&lt;br /&gt;
|| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walk 255 steps with Pikachu following (50% chance)&lt;br /&gt;
| +2&lt;br /&gt;
| colspan=2 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Teach Pikachu a [[TM]] or [[HM]] move&lt;br /&gt;
| colspan=2 rowspan=2 | +1 || rowspan=2 | 0&lt;br /&gt;
|- style=&amp;quot;background:white&amp;quot;&lt;br /&gt;
| colspan=2 | Use a [[battle item]] on starter Pikachu (even if unsuccessful), other than [[X Accuracy]]&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | Starter Pikachu [[fainting|faints]]&amp;lt;br&amp;gt;(including during link battles)&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5&lt;br /&gt;
| -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Deposit starter Pikachu in the [[Pokémon Storage System]] from the party&lt;br /&gt;
| colspan=2 | -3 || -5&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Trade]] Pikachu away&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; colspan=2 | -10&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is a single friendship value per game, and it remains even if the starter Pikachu is traded away. Trading away Pikachu will decrease its friendship, but this decreased value will be remembered when it returns. The player can still obtain Bulbasaur from Melanie if Pikachu has the appropriate friendship, even if they no longer have a starter Pikachu in their game. If the player has multiple Pikachu which qualify as their starter Pikachu in a single game, all of these Pikachu share the same friendship value, so any friendship-modifying event applies to all of them.&lt;br /&gt;
&lt;br /&gt;
[[Vitamin]]s, [[battle item]]s and {{cat|HP-restoring items}} increase Pikachu&#039;s friendship even if they have no effect. For example, attempting to use a [[Potion]] on a Pikachu that has [[fainting|fainted]] or has full health, an [[Antidote]] when Pikachu is not {{status|poison}}ed, [[Calcium]] when Pikachu has already reached its maximum {{DL|Statistic|Special}} [[stat experience]], or [[X Special]] when the Special stat has already been [[Statistic#Stat modifiers|raised 6 stages]] in battle. This does not consume the item, so the same item can repeatedly increase Pikachu&#039;s friendship. However, battle items such as [[X Special]] only raise Pikachu&#039;s friendship if they are used in-battle, since they are unusable outside battles in the first place. Waking Pikachu up with the [[Poké Flute]] (either in or out of battle) does not change its friendship.&lt;br /&gt;
&lt;br /&gt;
===In Generation II===&lt;br /&gt;
In [[Generation II]], friendship was expanded to cover all Pokémon. All Pokémon have a [[List of Pokémon by base friendship|base friendship]] of 70, but any Pokémon caught in a [[Friend Ball]] starts with 200 friendship and any Pokémon hatched from an {{pkmn|Egg}} starts with 120 friendship.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Gold|Silver|Crystal}}, [[#Gold, Silver, and Crystal|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Goldenrod City]].&lt;br /&gt;
&lt;br /&gt;
The met location boost was first introduced in {{game|Crystal}}.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Pokémon groomer|Grooming]] ([[haircut brothers]])&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (younger brother: 50%)&lt;br /&gt;
| colspan=2 | +10 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot; (older brother: 30%)&lt;br /&gt;
| colspan=2 | +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy!&#039;&#039;&amp;quot; (older brother: 10%, younger: 20%)&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot; (older brother: 60%, younger: 30%)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Level]] up || Always{{sup/2|GS}}/Anywhere except met location{{sup/2|C}} || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| At met location{{sup/2|C}} || +10 || +6 || +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, the [[Pokémon Champion|Champion]], or [[Red (game)|Red]] (whole party)&lt;br /&gt;
| +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}})&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 512 steps (whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], and [[Carbos]]&lt;br /&gt;
††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], and [[X Sp. Atk|X Special]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation III===&lt;br /&gt;
In [[Generation III]], different [[Pokémon (species)|species]] of Pokémon were given individualized [[List of Pokémon by base friendship|base friendship]] values. The [[Luxury Ball]] and [[Soothe Bell]] boosts were also introduced.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Ruby|Sapphire|Emerald}}, [[#Ruby, Sapphire, and Emerald|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found at [[Verdanturf Town]]. In {{game|FireRed and LeafGreen|s}}, [[Daisy Oak]] will perform the [[#FireRed and LeafGreen|same service]] in [[Pallet Town]]. In addition, in Pokémon FireRed and LeafGreen, the degree to which a Pokémon moves towards the screen after an item is used on it will also indicate how high its friendship is.&lt;br /&gt;
&lt;br /&gt;
In the table below, fainting in battle will not alter a Pokémon&#039;s friendship if it fainted from {{status|poison}} at the end of a turn.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}†{{sup/3|E}}&lt;br /&gt;
| +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Vivid Scent]]{{sup/ss|XD}} || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Excite Scent]]{{sup/ss|XD}} || +4 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/3|FRLG}}&lt;br /&gt;
| colspan=2 | +3 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Joy Scent]]{{sup/ss|XD}} || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher, or outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation IV===&lt;br /&gt;
{{incomplete|section|Figure out the probabilities for the variable massage/grooming events}}&lt;br /&gt;
[[File:Friendship Checker App.png|thumb|200px|right|The [[Pokétch]]&#039;s Friendship Checker app with a {{p|Drifblim}} at maximum friendship.]]&lt;br /&gt;
In Generation IV only, a Pokémon&#039;s met location does not affect the amount of friendship it gains. In Pokémon Diamond, Pearl, and Platinum, the massage at the [[Ribbon Syndicate]] is also not affected by any friendship boosts, and the Soothe Bell does not affect friendship gained when using a [[battle item]].&lt;br /&gt;
&lt;br /&gt;
In Pokémon Diamond, Pearl, and Platinum, [[#Diamond, Pearl, and Platinum|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found in [[Hearthome City]], or the player may use the {{DL|Pokétch|Friendship Checker}} app on the [[Pokétch]]. In {{game|HeartGold and SoulSilver|s}}, [[#HeartGold and SoulSilver|an NPC]] in [[Goldenrod City]] will also evaluate the friendship of the first Pokémon in the player&#039;s party, or a [[walking Pokémon]]&#039;s friendship may also be gauged by its reaction when speaking to it.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Ribbon Syndicate]]){{sup/4|DPPt}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;Our treatment has made your pampered baby [...] friendly to you.&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little more&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Grooming]] ([[haircut brothers]]){{sup/4|HGSS}}&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;&amp;lt;Pokémon&amp;gt; looks [...]&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;delighted!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;happy.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little happier.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Grooming]] ({{Daisy}}){{sup/4|HGSS}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ([[Veilstone City]] [[Massage Girl]]){{sup/4|DPPt}}&lt;br /&gt;
| colspan=3 | +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=3 | +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Surviving {{status|poison}} with 1 HP outside of battle&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation V===&lt;br /&gt;
{{incomplete|section|Effects of Makeups at the {{DL|Join Avenue|Beauty Salon}}; check whether boosts like Luxury Ball apply to Join Avenue events}}&lt;br /&gt;
Generation V introduced Befriending Power as a [[Pass Power]] to boost friendship gains.&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to the massage in [[Castelia City]].&lt;br /&gt;
&lt;br /&gt;
In the Generation V games, [[#Black and White|an NPC]] who will evaluate the friendship of the Pokémon in the player&#039;s [[party]] can be found in [[Icirrus City]], with a second NPC only found in [[Nacrene City]] during {{game|Black and White|s}} who checks the player&#039;s first Pokémon. In {{game|Black and White|s|Pokémon Black 2 and White 2|2}}, the player may also contact [[Bianca]] on the [[Xtransceiver]] to have their Pokémon&#039;s friendship rated.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Royal Cut{{sup/5|W2}}&lt;br /&gt;
| colspan=3 | +50&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Beauty Cut{{sup/5|B2}}&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Smile Cut{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ({{DL|Castelia City|Castelia Street}}{{sup/5|BW}}/{{DL|Castelia City|Medal Office}}{{sup/5|B2W2}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage has made your Pokémon [...] friendly to you!&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Shampoo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Combo{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Beauty Salon}}: getting a Brushing{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Lunch{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Join Avenue|Café}}: getting a Friendly Drink{{sup/5|B2W2}}&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 255 steps (50% chance, whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Learn a [[TM]] or [[HM]]&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder|EnergyPowder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense|X Defend]], [[X Speed]], [[X Sp. Atk|X Special]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation VI===&lt;br /&gt;
{{incomplete|section|Check if [[Pokéblock]]s add friendship and chance of increasing friendship every 128 steps}}&lt;br /&gt;
In Generation VI, Befriending Power becomes an [[O-Power]].&lt;br /&gt;
&lt;br /&gt;
Friendship boosts do not apply to massages, drinks from the [[Juice Shoppe]], or the Soothing Bag in [[Super Training]].&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon X and Y]], [[#X and Y|an NPC]] who will evaluate the friendship of the first Pokémon in the player&#039;s [[party]] can be found early on in [[Santalune City]], or later in [[Laverre City]]. In [[Pokémon Omega Ruby and Alpha Sapphire]], [[#Omega Ruby and Alpha Sapphire|an NPC]] in [[Verdanturf Town]] will also evaluate the friendship of the first Pokémon in the player&#039;s party.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokémon groomer|Massage]] ({{DL|Secret Base|Secret Pals}}){{sup/6|ORAS}}&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Cyllage City]]{{sup/6|XY}}/[[Mauville City]]{{sup/6|ORAS&lt;br /&gt;
}})&amp;lt;br&amp;gt;&amp;quot;&#039;&#039;The massage made your Pokémon [...] friendly toward you&#039;&#039;&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;much more&#039;&#039;&amp;quot; (6%)&lt;br /&gt;
| colspan=3 | +30&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;more&#039;&#039;&amp;quot; (20%)&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;a little bit more&#039;&#039;&amp;quot; (74%)&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Super Training]]: Soothing Bag&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Juice Shoppe]]: Colorful Shake&lt;br /&gt;
| Custom-made&lt;br /&gt;
| colspan=3 | +12 to 32 (depending on Berries used)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Pre-made&lt;br /&gt;
| colspan=3 | +1 per {{PDollar}}100&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against a [[Gym Leader]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Juice Shoppe]]: Rare Soda, Ultra Rare Soda, Perilous Soup, or EV Juices&lt;br /&gt;
| colspan=3 | +4&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In Generation VII===&lt;br /&gt;
====Pokémon Sun, Moon, Ultra Sun, and Ultra Moon====&lt;br /&gt;
{{incomplete|section|Check [[Festival Plaza]] events and walking mechanics}}&lt;br /&gt;
Friendship boosts do not apply to massages.&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Sun and Moon|Pokémon Sun, Moon]], {{pkmn|Ultra Sun and Ultra Moon}}, [[#Sun, Moon, Ultra Sun, and Ultra Moon|an NPC]] who will evaluate the friendship of a Pokémon in the player&#039;s [[party]] can be found in [[Konikoni City]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center&amp;quot;&lt;br /&gt;
! rowspan=2 colspan=2 style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Event&lt;br /&gt;
! colspan=3 style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Change based on current friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color light}}&amp;quot;&lt;br /&gt;
! 0 to 99&lt;br /&gt;
! 100 to 199&lt;br /&gt;
! 200 to 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Pokémon groomer|Massage]] ([[Konikoni City]])&lt;br /&gt;
| &amp;quot;&#039;&#039;I think you&#039;ll notice a lot of friendly feelings!&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +40&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;[It] helped inspire some good, friendly feelings toward you.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&#039;&#039;It&#039;s feeling a bit more friendly toward you already, I&#039;d say.&#039;&#039;&amp;quot;&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Combo&lt;br /&gt;
| colspan=3 | +20&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Lunch&lt;br /&gt;
| colspan=3 | +10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Festival Plaza|Food stalls}}: getting a Friendly Drink&lt;br /&gt;
| colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using {{cat|friendship-raising Berries}}† || +10 || +5 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{DL|Poké Pelago|Isle Avue}} hot springs || colspan=3 | +5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Level]] up in battle || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Battling against an [[Island Kahuna]], [[Elite Four]] member, or the [[Pokémon Champion|Champion]] (whole party) || +5 || +4 || +3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[vitamin]]†† || +5 || +3 || +2&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[wing]] || +3 || +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Walking 128 steps (sometimes; for whole party)&lt;br /&gt;
| colspan=2 | +2 || +1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using a [[battle item]]†††&lt;br /&gt;
| colspan=2 | +1 || 0&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Fainting]]&lt;br /&gt;
| If opponent is less than 30 levels higher&lt;br /&gt;
| colspan=3 | -1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| If opponent is at least 30 levels higher&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Powder]] or [[Heal Powder]]&lt;br /&gt;
| colspan=2 | -5 || -10&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | Using [[Energy Root]]&lt;br /&gt;
| colspan=2 | -10 || -15&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | Using [[Revival Herb]]&lt;br /&gt;
| colspan=2 style=&amp;quot;background:#fff&amp;quot; | -15&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | -20&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ab&amp;gt;†: Berries affected include [[Pomeg Berry]], [[Kelpsy Berry]], [[Qualot Berry]], [[Hondew Berry]], [[Grepa Berry]], and [[Tamato Berry]] (No. 21-26)&lt;br /&gt;
††: Vitamins affected include [[HP Up]], [[Protein]], [[Iron]], [[Calcium]], [[Zinc]], [[Carbos]], [[PP Up]], [[PP Max]], and [[Rare Candy]]&lt;br /&gt;
†††: Battle items affected include [[X Attack]], [[X Defense]], [[X Speed]], [[X Sp. Atk]], [[X Sp. Def]], [[X Accuracy]], [[Dire Hit]], and [[Guard Spec.]]&amp;lt;/ab&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!====&lt;br /&gt;
{{incomplete|section|How to raise friendship (ie walking or feeding candy) and friendship benefits (ie those seen with affection)}}&lt;br /&gt;
In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], friendship is factored into all of a Pokémon&#039;s stats, except HP. At maximum friendship, a Pokémon will receive a 10% boost to its stats, before [[awakening values|AVs]] are added in. The friendship multiplier scales directly with the level of friendship, starting from a 0% boost at 0 friendship to receiving the full 10% at 255.&lt;br /&gt;
&lt;br /&gt;
===In Generation VIII===&lt;br /&gt;
{{incomplete|section|Chart for means to increase friendship}}&lt;br /&gt;
Increasing friendship with means other than [[Pokémon Camp]] will only maximize a Pokémon&#039;s friendship value at 160, although this is sufficient for friendship-based evolutions. Pokémon Camp is the only means to reach the maximum friendship value of 255.&lt;br /&gt;
&lt;br /&gt;
===Evolutions===&lt;br /&gt;
{{incomplete|section|Friendship value needed for friendship evolution in Sword and Shield}}&lt;br /&gt;
Several {{OBP|Pokémon|species}} [[Evolution|evolve]] after being [[level]]ed up when their friendship value is 220 or higher (before [[Generation VIII]]).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{cute color}}; {{roundy|10px}}; border: 3px solid #{{cute color dark}}&amp;quot; cellpadding=2px&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytl|5px}}&amp;quot; | Previous evolution&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color light}}&amp;quot; | Friendship evolution&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{cute color light}}; {{roundytr|5px}}&amp;quot; | Later evolution&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|041|Zubat}}&amp;lt;br&amp;gt;{{pcolor|Zubat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 22+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|042|Golbat}}&amp;lt;br&amp;gt;{{pcolor|Golbat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|169|Crobat}}&amp;lt;br&amp;gt;{{pcolor|Crobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Poison}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Crobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Meowth is the lowest in its line&lt;br /&gt;
| {{MSP|052A|Meowth}}&amp;lt;br&amp;gt;{{pcolor|Meowth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;ref name=alolanmeowth/&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|053A|Persian}}&amp;lt;br&amp;gt;{{pcolor|Persian|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Persian does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|440|Happiny}}&amp;lt;br&amp;gt;{{pcolor|Happiny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Oval Stone}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]]&amp;lt;br&amp;gt;holding [[Oval Stone]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|113|Chansey}}&amp;lt;br&amp;gt;{{pcolor|Chansey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|242|Blissey}}&amp;lt;br&amp;gt;{{pcolor|Blissey|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Blissey does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;2&amp;quot; | Eevee is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|133|Eevee}}&amp;lt;br&amp;gt;{{pcolor|Eevee|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|196|Espeon}}&amp;lt;br&amp;gt;{{pcolor|Espeon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Espeon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|197|Umbreon}}&amp;lt;br&amp;gt;{{pcolor|Umbreon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Dark}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Umbreon does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; rowspan=&amp;quot;2&amp;quot; | Pichu is the lowest in its line&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|172|Pichu}}&amp;lt;br&amp;gt;{{pcolor|Pichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | {{MSP|025|Pikachu}}&amp;lt;br&amp;gt;{{pcolor|Pikachu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Thunder Stone}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Electric}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{bag|Thunder Stone}} + {{bag|Town Map}}&amp;lt;br&amp;gt;{{color2|000|Thunder Stone}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(in [[Alola]])&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|026A|Raichu}}&amp;lt;br&amp;gt;{{pcolor|Raichu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{color2|000|Regional form#Alolan Form|Alolan Form}}&amp;lt;br&amp;gt;{{typecolor|Electric}}{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Cleffa is the lowest in its line&lt;br /&gt;
| {{MSP|173|Cleffa}}&amp;lt;br&amp;gt;{{pcolor|Cleffa|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|035|Clefairy}}&amp;lt;br&amp;gt;{{pcolor|Clefairy|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|036|Clefable}}&amp;lt;br&amp;gt;{{pcolor|Clefable|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Igglybuff is the lowest in its line&lt;br /&gt;
| {{MSP|174|Igglybuff}}&amp;lt;br&amp;gt;{{pcolor|Igglybuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|039|Jigglypuff}}&amp;lt;br&amp;gt;{{pcolor|Jigglypuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Moon Stone}}&amp;lt;br&amp;gt;{{color2|000|Moon Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|040|Wigglytuff}}&amp;lt;br&amp;gt;{{pcolor|Wigglytuff|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Togepi is the lowest in its line&lt;br /&gt;
| {{MSP|175|Togepi}}&amp;lt;br&amp;gt;{{pcolor|Togepi|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|176|Togetic}}&amp;lt;br&amp;gt;{{pcolor|Togetic|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|468|Togekiss}}&amp;lt;br&amp;gt;{{pcolor|Togekiss|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fairy}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Azurill is the lowest in its line&lt;br /&gt;
| {{MSP|298|Azurill}}&amp;lt;br&amp;gt;{{pcolor|Azurill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|183|Marill}}&amp;lt;br&amp;gt;{{pcolor|Marill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 18+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|184|Azumarill}}&amp;lt;br&amp;gt;{{pcolor|Azumarill|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Water}}{{typecolor|Fairy}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Budew is the lowest in its line&lt;br /&gt;
| {{MSP|406|Budew}}&amp;lt;br&amp;gt;{{pcolor|Budew|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the morning or [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|315|Roselia}}&amp;lt;br&amp;gt;{{pcolor|Roselia|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Shiny Stone}}&amp;lt;br&amp;gt;{{color2|000|Shiny Stone}}&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|407|Roserade}}&amp;lt;br&amp;gt;{{pcolor|Roserade|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Grass}}{{typecolor|Poison}}&amp;lt;/small&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Buneary is the lowest in its line&lt;br /&gt;
| {{MSP|427|Buneary}}&amp;lt;br&amp;gt;{{pcolor|Buneary|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|428|Lopunny}}&amp;lt;br&amp;gt;{{pcolor|Lopunny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lopunny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chingling is the lowest in its line&lt;br /&gt;
| {{MSP|433|Chingling}}&amp;lt;br&amp;gt;{{pcolor|Chingling|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|358|Chimecho}}&amp;lt;br&amp;gt;{{pcolor|Chimecho|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Chimecho does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Munchlax is the lowest in its line&lt;br /&gt;
| {{MSP|446|Munchlax}}&amp;lt;br&amp;gt;{{pcolor|Munchlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|143|Snorlax}}&amp;lt;br&amp;gt;{{pcolor|Snorlax|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Snorlax does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Riolu is the lowest in its line&lt;br /&gt;
| {{MSP|447|Riolu}}&amp;lt;br&amp;gt;{{pcolor|Riolu|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + [[File:Day Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Day|daytime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|448|Lucario}}&amp;lt;br&amp;gt;{{pcolor|Lucario|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Fighting}}{{typecolor|Steel}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Lucario does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Woobat is the lowest in its line&lt;br /&gt;
| {{MSP|527|Woobat}}&amp;lt;br&amp;gt;{{pcolor|Woobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|528|Swoobat}}&amp;lt;br&amp;gt;{{pcolor|Swoobat|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Psychic}}{{typecolor|Flying}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Swoobat does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| {{MSP|540|Sewaddle}}&amp;lt;br&amp;gt;{{pcolor|Sewaddle|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}}&amp;lt;br&amp;gt;[[Level]] 20+&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|541|Swadloon}}&amp;lt;br&amp;gt;{{pcolor|Swadloon|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|542|Leavanny}}&amp;lt;br&amp;gt;{{pcolor|Leavanny|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Bug}}{{typecolor|Grass}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Leavanny does not evolve&lt;br /&gt;
|- style=&amp;quot;background: #fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Type: Null is the lowest in its line&lt;br /&gt;
| {{MSP|772|Type: Null}}&amp;lt;br&amp;gt;{{pcolor|Type: Null|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| {{bag|Rare Candy}} + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| {{MSP|773|Silvally}}&amp;lt;br&amp;gt;{{pcolor|Silvally|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Normal}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | Silvally does not evolve&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybl|5px}}&amp;quot; | Snom is the lowest in its line&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|872|Snom}}&amp;lt;br&amp;gt;{{pcolor|Snom|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{bag|Rare Candy}} + [[File:Night Icon.png|24px]] + {{bag|Soothe Bell}}&amp;lt;br&amp;gt;[[Level]] Up&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(during the [[Night|nighttime]] with high friendship)&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;→&lt;br /&gt;
| style=&amp;quot;background: #fff&amp;quot; | {{MSP|873|Frosmoth}}&amp;lt;br&amp;gt;{{pcolor|Frosmoth|000}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;{{typecolor|Ice}}{{typecolor|Bug}}&amp;lt;/small&amp;gt;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #fff; {{roundybr|5px}}&amp;quot; | Frosmoth does not evolve&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;all&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=alolanmeowth&amp;gt;In [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], {{rf|Alolan}} {{p|Meowth}} evolves at [[level]] 28 regardless of friendship level.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Raters===&lt;br /&gt;
Friendship raters are [[Non-player character|NPC]]s that will indicate the friendship of the first {{OBP|Pokémon|species}} in the {{player}}&#039;s [[party]] when spoken to.&lt;br /&gt;
&lt;br /&gt;
====Locations====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Region&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | City&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}&amp;quot; | Location: NPC&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Distinct evaluations&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Kanto]] || [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev3|FRLG}})&amp;lt;/small&amp;gt; || {{ga|Blue}}&#039;s house: {{Daisy}} || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pallet Town]]&amp;lt;small&amp;gt; ({{gameabbrev7|PE}})&amp;lt;/small&amp;gt; || Rival&#039;s house: Rival&#039;s sister || ?&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Johto]] || [[Goldenrod City]] ||  House east of the Department Store: woman || 6&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Goldenrod City]]{{dotw|Sunday}} || [[Goldenrod Department Store]], {{DL|Goldenrod Department Store|Fifth Floor: TM Corner|fifth floor}}: woman || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=2 | [[Hoenn]] || [[Verdanturf Town]] || Southwestern-most house: woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Pacifidlog Town]] ||Southwestern-most house: {{tc|Gentleman}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Orre]]&amp;lt;small&amp;gt; ({{gameabbrevss|XD}} only)&amp;lt;/small&amp;gt; || [[Gateon Port]] || [[Krabby Club]], upper floor: the captain || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=4 | [[Sinnoh]] || [[Hearthome City]] || [[Pokémon Fan Club]] (east of the Poké Mart): {{tc|Beauty}} || 6{{sup/4|DP}} or 7{{sup/4|Pt}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| {{rt|213|Sinnoh}} || House south of the [[Pastoria City]] [[gate]]: [[Dr. Footstep]] || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Eterna City]] || Pokémon Center: {{tc|Aroma Lady}} || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | [[Pokétch]]: {{DL|Pokétch|Friendship Checker}} app || 5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| rowspan=3 | [[Unova]] || [[Icirrus City]] || [[Pokémon Fan Club]] (south of Gym): woman || 7&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[Nacrene City]] || Building east of the [[Pokémon Center]]: woman with a Pokémon&amp;lt;!--It is *not* worth saying what in which versions--&amp;gt; || 3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=2 | {{gameabbrev5|B2W2}}: Call [[Bianca]] on the [[Xtransceiver]] || 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; rowspan=2 | [[Kalos]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Santalune City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | House west of the [[Pokémon Center]]: {{tc|Beauty}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Laverre City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Pokémon Fan Club]] (in the northwest): {{tc|Pokémon Breeder}}&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Alola]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Konikoni City]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Female {{tc|Veteran}} next to the TM Shop&#039;s street sign&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | 7&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | [[Galar]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | [[Hammerlocke]]&lt;br /&gt;
| style=&amp;quot;background:#fff&amp;quot; | Young boy in building across the street from the [[Pokémon Center]] closest to the entrance&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
The [[Johto]] and [[Hoenn]] raters in the [[Goldenrod Department Store]] and [[Pacifidlog Town]] will give out {{TM|21|Frustration}} or {{TM|27|Return}} (or neither) depending on the friendship of the player&#039;s lead Pokémon.&lt;br /&gt;
&lt;br /&gt;
====Evaluation====&lt;br /&gt;
=====Gold, Silver, and Crystal=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 150-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 50-149&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Stadium 2=====&lt;br /&gt;
While there is no [[Non-player character|NPC]] that rates friendship, when viewing a table with {{OBP|Pokémon|species}}, its value is listed there (along other elements such as [[type]], [[Trainer ID number]] or [[item]]), in levels. Pokémon data read from a [[Generation I]] game will always be rated as &#039;&#039;Not quite&#039;&#039;, even for {{ga|Red&#039;s Pikachu}} in {{game|Yellow}}, which does have its friendship tracked.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Pretty good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | A little bit&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not quite&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Not at all&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Ruby, Sapphire, and Emerald=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It adores you. It can&#039;t possibly love you any more. I even feel happy seeing it.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It obviously likes you a whole lot.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a lot. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has scary viciousness in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say&amp;amp;hellip; Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It clearly likes you very much. A &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not bad, but it&#039;s also not good. You, as the &amp;lt;sc&amp;gt;Trainer&amp;lt;/sc&amp;gt;, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Box: Ruby and Sapphire=====&lt;br /&gt;
In [[Pokémon Box: Ruby and Sapphire]], when viewing a table of Pokémon, the Pokémon&#039;s friendship rating is listed, along with other properties (e.g. [[type]], [[level]], etc.).&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Rating&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#AAA&amp;quot; |&amp;lt;font color=FFE100&amp;gt;Excellent&amp;lt;/font&amp;gt; &amp;lt;!--- the background is to make the bright text more suitable for eyes !---&amp;gt;&lt;br /&gt;
|250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF9600&amp;quot; | Very good&lt;br /&gt;
|200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF826E&amp;quot; | Good&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#FF78C8&amp;quot; | So-so&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! style=&amp;quot;color:#B484FF&amp;quot; | Not good&lt;br /&gt;
|50-99&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#fff; color:#6464A0; {{roundybl|5px}}&amp;quot; | Meager &lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0-49&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====FireRed and LeafGreen=====&lt;br /&gt;
{{main|Daisy Oak}}&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It couldn&#039;t possibly love you any more than it does now. Your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; is happy beyond words.&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks very happy. I wish {{ga|Blue|&amp;lt;rival&amp;gt;}} could see this and learn something from it.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly with you. Keep being good to it!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. Trust must be growing between you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not quite familiar with you yet. &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; are all quite wary when you first get them.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;&amp;lt;Player&amp;gt;, I don&#039;t like the way it glares at you. Could you try being a little nicer to it?&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip;Um, it&#039;s not easy for me to say this, but&amp;amp;hellip; Is there some reason why your &amp;lt;sc&amp;gt;Pok&amp;lt;/sc&amp;gt;é&amp;lt;sc&amp;gt;mon&amp;lt;/sc&amp;gt; would hate you so much?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====XD: Gale of Darkness=====&lt;br /&gt;
The friendship rater is located inside the [[Krabby Club]] in [[Gateon Port]]. He is upstairs, straight to the rear of the club (not the ones backstage) and standing near the bartender. He looks like a boat captain. He is present after starting the events in [[Pyrite Town]].&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! It couldn&#039;t possibly get to like you more. This is wonderful!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you very much. Your [[Pokémon]] seems to be very happy that it&#039;s with you.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It likes you quite a bit. It wants to be pampered by you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s growing friendly toward you. It seems to believe in you.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to be used to you yet. You should treat it kindly.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip; It&#039;s not friendly toward you. The look in its eyes is frightening. You should treat it more kindly.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;&amp;amp;hellip; This is awful. It detests you to a degree I hardly ever see. Are you sure you&#039;ll be okay?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Diamond, Pearl, and Platinum=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{cute color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{cute color light}}|Dr. Footstep}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align: center&amp;quot; | Refer to [[Dr. Footstep#Friendship levels|Dr. Footstep &amp;amp;rarr; Friendship levels]].&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Pokétch#Friendship Checker|Friendship Checker (Pokétch app)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two large hearts&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two small hearts&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| One small heart&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves towards stylus)&lt;br /&gt;
| 70-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves away from stylus)&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{sinnoh color light}}|Eterna City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to like you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s becoming comfortable around you, I think.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It needs to get used to you more.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{sinnoh color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; |  {{color2|{{sinnoh color light}}|Hearthome City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It simply adores you! Why, I feel like I am intruding!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you. I can tell you treat it kindly.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly to you. It must be happy being with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s warming up to you. That&#039;s my impression.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s feeling neutral toward you. It&#039;s up to you to change that.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It seems to dislike you a little.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;Oh, my&amp;amp;hellip; I think this one really hasn&#039;t taken too kindly to you.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====HeartGold and SoulSilver=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It looks really happy! It must love you a lot.&amp;quot;&lt;br /&gt;
| 250-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;I get the feeling that it really trusts you.&amp;quot;&lt;br /&gt;
| 200-249&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s friendly toward you. It looks sort of happy.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite cute.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You should treat it better. It&#039;s not used to you.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It doesn&#039;t seem to like you at all. It looks mean.&amp;quot;&lt;br /&gt;
| 0-49&lt;br /&gt;
|- style=&amp;quot;background:#{{johto color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{johto color light}}|Goldenrod Department Store}} (Sunday only)&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very attached to you. {{m|Return|This move}} should be perfect for a pair like you.&amp;quot;&lt;br /&gt;
| 149-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s adorable! You should teach it good TM moves.&amp;quot;&lt;br /&gt;
| 51-148&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It looks evil. How about [[TM21|this TM]] for it?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-50&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Black and White=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Nacrene City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very friendly toward you! It must be happy with you.&amp;quot;&lt;br /&gt;
| 120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
| 70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may still take some time.&amp;quot;&lt;br /&gt;
| 0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Black 2 and White 2=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{unova color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{unova color light}}|Icirrus City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is super friendly to you! I&#039;m a bit jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is quite friendly to you! You must be a kind person!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is friendly to you. It must be happy with you.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It is a little friendly to you&amp;amp;hellip; That&#039;s what I&#039;m getting.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;The relationship is neither good nor bad&amp;amp;hellip; It looks neutral.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm&amp;amp;hellip; It may not like you very much.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;By any chance, you&amp;amp;hellip; Are you a very strict person? I feel that it really doesn&#039;t like you&amp;amp;hellip;&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|- style=&amp;quot;background:#{{white color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{white color light}}|Bianca}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What great friends you are! It&#039;s so nice how you trust each other! It makes me kinda jealous!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You two sure get along great! It looks like you are having fun together! You seem bright and cheerful!&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You seem really close! You look so, so happy! It&#039;s enough to make me happy too!&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You&#039;re starting to get to be friends. Just maybe, walking along the same path has made you understand one another.&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You still have room for improvement. How nice! I mean, you can become even better friends!&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You aren&#039;t getting along, are you? It&#039;s glaring at you with a look that&#039;s kinda scary.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;You aren&#039;t getting along, are you? It doesn&#039;t look like it&#039;s having fun even when you&#039;re together.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====X and Y=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Santalune City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Very connected to each other! That&#039;s what it looks like to me!&amp;quot;&lt;br /&gt;
|120-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Just getting to know each other… Yes, I think that&#039;s how I&#039;d put it.&amp;quot;&lt;br /&gt;
|70-119&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Let&#039;s see, you and &amp;lt;Pokémon&amp;gt; are… Capable of understanding each other much more than now. Look forward to that, OK?&amp;quot;&lt;br /&gt;
|0-69&lt;br /&gt;
|- style=&amp;quot;background:#{{kalos color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{kalos color light}}|Laverre City}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s amazingly friendly toward you! It must be so happy spending every day with you!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You must really like your &amp;lt;Pokémon&amp;gt; and always keep it by your side!&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Well, I think you and &amp;lt;Pokémon&amp;gt; will be an even greater combo someday!&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s a little bit friendly to you&amp;amp;hellip; Something like that.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm&amp;amp;hellip;I think you have a lot of time ahead of you to get to know one another better.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Don&#039;t tell me! Are you just letting it get knocked out in Pokémon battles?!&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;What&#039;s this? Are you a disciplinarian? Or do you plan to use the move Frustration?&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; |0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
=====Omega Ruby and Alpha Sapphire=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Verdanturf Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s extremely friendly toward you. It couldn&#039;t possibly love you more. It&#039;s a pleasure to see!&amp;quot;&lt;br /&gt;
|255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It seems to be very happy. It&#039;s obviously friendly toward you.&amp;quot;&lt;br /&gt;
|200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s quite friendly toward you. It seems to want to be babied a little.&amp;quot;&lt;br /&gt;
|150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s getting used to you. It seems to believe in you.&amp;quot;&lt;br /&gt;
|100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s not very used to you yet. It neither loves nor hates you.&amp;quot;&lt;br /&gt;
|50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s very wary. It has a scary look in its eyes. It doesn&#039;t like you much at all.&amp;quot;&lt;br /&gt;
|1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;This is a little hard for me to say… Your Pokémon simply detests you. Doesn&#039;t that make you uncomfortable?&amp;quot;&lt;br /&gt;
|0&lt;br /&gt;
|- style=&amp;quot;background:#{{hoenn color dark}}&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; | {{color2|{{hoenn color light}}|Pacifidlog Town}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;It&#039;s clearly very friendly toward you. A Pokémon that adoring and adorable deserves a [[TM27|TM]] {{m|Return|like this}}, no?&amp;quot;&lt;br /&gt;
| 151-255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmm… It&#039;s not bad, but it’s also not good. You, as the Trainer, need to put in some more effort.&amp;quot;&lt;br /&gt;
| 100-150&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | &amp;quot;It has a vicious look to it. A frightening Pokémon like that deserves a [[TM21|TM]] {{m|Frustration|like this}}.&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-99&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Sun, Moon, Ultra Sun, and Ultra Moon=====&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Statement&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;My! It feels incredibly close to you! Nothing makes it happier than being with you!&amp;quot;&lt;br /&gt;
| 255&lt;br /&gt;
|-style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;You clearly love your &amp;lt;Pokémon&amp;gt;, and you must spend a lot of time together.&amp;quot;&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hm. I&#039;d say that you and &amp;lt;Pokémon&amp;gt; have the potential to be an even greater combo.&amp;quot;&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm. I think…it feels friendly toward you. At least a little…&amp;quot;&lt;br /&gt;
| 100-149&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Hmmm… I&#039;d say that you and your Pokémon still have a long way to go.&amp;quot;&lt;br /&gt;
| 50-99&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;What is going on here? Do you let it get knocked out a lot in battles or something? This is bad.&amp;quot;&lt;br /&gt;
| 1-49&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| &amp;quot;Oh dear. You must be a merciless Trainer… Do you use Frustration or just not know better?&amp;quot;&lt;br /&gt;
| 0&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Misconceptions===&lt;br /&gt;
Although frequently reported to the contrary, the following factors do &#039;&#039;not&#039;&#039; affect friendship (note that these are focused on the system that has been in place since [[Generation II]]):&lt;br /&gt;
* Depositing a {{OBP|Pokémon|species}} in the [[Pokémon Storage System]]&lt;br /&gt;
* Healing a Pokémon with low {{stat|HP}} or with a [[status condition]]&lt;br /&gt;
* Giving a Pokémon an [[Held item|item to hold]] (except the [[Soothe Bell]])&lt;br /&gt;
* [[Evolution|Evolving]] a Pokémon, regardless of method ([[level]] up, [[held item]], or [[evolutionary stone]], with the exception of [[Methods of evolution#evolution via trading|trade evolutions]], which reset the Pokémon&#039;s friendship)&lt;br /&gt;
* Using a Pokémon in {{pkmn|battle}}&lt;br /&gt;
* Winning battles with a Pokémon&lt;br /&gt;
* Letting a Pokémon&#039;s HP fall to critical status&lt;br /&gt;
* Letting the {{player}}&#039;s Pokémon get a status condition like {{status|paralysis}}&lt;br /&gt;
* Walking when the player&#039;s Pokémon has a status condition&lt;br /&gt;
* Increasing [[Affection]]&lt;br /&gt;
&lt;br /&gt;
In {{v2|Yellow}} only, these actions fail if attempted and cause Pikachu to complain, but they don&#039;t affect its friendship:&lt;br /&gt;
* Trying to release the starter Pikachu&lt;br /&gt;
* Trying to evolve the starter Pikachu with a Thunder Stone&lt;br /&gt;
&lt;br /&gt;
==In spin-off games==&lt;br /&gt;
{{incomplete|section|Pokémon Pikachu and Pokémon Pikachu 2 GS}}&lt;br /&gt;
===Pokémon Ranger: Shadows of Almia===&lt;br /&gt;
[[File:Happy Mood SoA.png|frame|Two {{OBP|Pokémon|species}} in a &#039;&#039;Happy Mood&#039;&#039;]]&lt;br /&gt;
Friendship also has an effect in the second game of the [[Pokémon Ranger]] series. {{ra|Partner Pokémon}} can have the condition of &#039;&#039;Fine&#039;&#039;, &#039;&#039;Happy&#039;&#039;, or &#039;&#039;Very Happy&#039;&#039;. When it is in a &#039;&#039;Happy Mood&#039;&#039;, black musical notes appear to come out of it. Multicolored musical notes come out when it is &#039;&#039;Very Happy&#039;&#039;. This may happen whether or not it is with the {{player}}. This state of mind increases the speed the Partner Gauge fills up due to more Partner Energy being provided.&lt;br /&gt;
&lt;br /&gt;
===In Pokémon Pinball: Ruby &amp;amp; Sapphire===&lt;br /&gt;
{{incomplete|section|How the player obtains heart symbols}}&lt;br /&gt;
In [[Pokémon Pinball: Ruby &amp;amp; Sapphire]], the player gets three friendship heart symbols in order to evolve any of the following Pokémon, which would normally evolve by friendship in the [[core series]] games.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;background:#{{cute color light}}; border:5px solid #{{cute color}}&amp;quot;&lt;br /&gt;
! Evolves from !! Evolves into&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Golbat}}&lt;br /&gt;
| {{p|Crobat}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Pichu}}&lt;br /&gt;
| {{p|Pikachu}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Igglybuff}}&lt;br /&gt;
| {{p|Jigglypuff}}&lt;br /&gt;
|-&lt;br /&gt;
| {{p|Azurill}}&lt;br /&gt;
| {{p|Marill}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Gallery====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|10px}} border: 2px solid #{{cute color dark}}; background: #{{cute color light}}; width:80px; height:20px&amp;quot; | [[File:Pinball RS Friendship.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Friendship sprite&amp;lt;br/&amp;gt;from {{color2|000|Pokémon Pinball: Ruby &amp;amp; Sapphire|Pinball: Ruby &amp;amp; Sapphire}}&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Ash and Pikachu.png|thumb|250px|Ash and Pikachu]]&lt;br /&gt;
In the {{pkmn|anime}}, the bond between {{pkmn|Trainer}}s and their {{OBP|Pokémon|species}} has been a theme since [[EP001|the first episode]], in which {{Ash}} had trouble to form a friendship with his newly obtained {{AP|Pikachu}}. After risking his own safety to protect his [[starter Pokémon]] from a flock of angry {{p|Spearow}}, Ash earned Pikachu&#039;s trust, and the two have been inseparable ever since.&lt;br /&gt;
&lt;br /&gt;
Pokémon that have friendly relationships with their Trainers are said to perform better in {{pkmn|battle}}s. Ash believes that befriending a Pokémon will make it grow stronger, and he treats {{cat|Ash&#039;s Pokémon|all his Pokémon}} with utmost care and respect. However, over the course of the series, some Trainers have been shown to focus on raw strength alone, disregarding their Pokémon&#039;s feelings and well being. Examples include [[Paul]] and [[Cross]].&lt;br /&gt;
&lt;br /&gt;
Aside from regular battles, friendship is valued in [[Pokémon Contest]]s, since the level of cooperation between {{pkmn|Coordinator}} and Pokémon is observed by the [[Contest Judge|panel of judges]] during the [[Appeal|Performance Stage]]. Additionally, in the [[Contest Battle|Battle Stage]], Coordinators are expected to be in synchronicity with their Pokémon the entire time. In &#039;&#039;[[AG078|Cruisin&#039; for a Losin&#039;]]&#039;&#039;, the Director of the {{pkmn|Activities Committee|Contest Committee}}, [[Raoul Contesta|Mr. Contesta]], stated that a Pokémon&#039;s well being must be the number one priority of a Coordinator.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP075|Our Cup Runneth Over!]]&#039;&#039;, Contest Master [[Wallace]] stressed out the importance of kinship. He also said that playing with Pokémon can help Trainers and Coordinators in learning how to bring out the potential of their Pokémon. In addition to enhancing a Pokémon&#039;s appearance, {{pkmn|groomer|Pokémon grooming}} is said to make them happier. Trainers who devote themselves to the development of techniques that improve a Pokémon&#039;s health and happiness are known as {{tc|Pokémon Breeder}}s. There are also people who study to become [[Pokémon Connoisseur]]s in order to be able to identify the compatibility between Trainers and Pokémon, and then offer advice on how to strengthen their friendship.&lt;br /&gt;
&lt;br /&gt;
As in the {{pkmn|games}}, friendship affects the [[power]] of {{m|Frustration}}. This was shown in &#039;&#039;[[AG175|Going for Choke!]]&#039;&#039;, in which [[Harley]]&#039;s {{p|Banette}} received a boost while using the [[move]] under the command of [[Jessie]], a Trainer it does not like. Although the concept of {{cat|Pokémon that evolve by friendship|Evolution by friendship}} has not been addressed directly, the [[Soothe Bell]] has appeared in the anime. In the {{series|XY}}, the friendship between Ash and his {{AP|Greninja}} triggered a temporary transformation known as [[Bond Phenomenon]].&lt;br /&gt;
&lt;br /&gt;
In contrast with the games, where a Pokémon of a certain [[level]] will only obey its Trainer if the trainer possesses specific achievements, disobedient Pokémon in the anime will gain respect for their Trainers after realizing how far the Trainer is willing to go to befriend, protect, and care for the Pokémon.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{cute color light}}|bordercolor={{cute color dark}}&lt;br /&gt;
|zh_yue=親密度 &#039;&#039;{{tt|Chānmahtdouh|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|zh_cmn=親密度 / 亲密度 &#039;&#039;{{tt|Qīnmìdù|degree of intimacy}}&#039;&#039;&lt;br /&gt;
|fr=Amitié&lt;br /&gt;
|de=Zuneigung&amp;lt;br&amp;gt;Freundschaft&lt;br /&gt;
|it=Affetto&lt;br /&gt;
|ko=친밀도 &#039;&#039;Chinmildo&#039;&#039;&lt;br /&gt;
|pl=Przyjaźń&lt;br /&gt;
|es=Amistad&lt;br /&gt;
|vi = Độ thân thiết&lt;br /&gt;
|pt=Amizade{{tt|*|Manuals}} &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Pokémon by base friendship]]&lt;br /&gt;
*[[Affection]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://www.gamefaqs.com/gbc/198308-pokemon-gold-version/faqs/11568 GameFAQs: Pokemon Gold Version (GBC) Happiness Points FAQ by IDeLucas]&lt;br /&gt;
* [http://web.archive.org/web/20070830225419/http://www.gamefaqs.com/portable/ds/file/925601/48344 Generation IV Friendship FAQ by Ruimound]&lt;br /&gt;
* [http://www.psypokes.com/gsc/happiness.php Pokemon Gold, Silver and Crystal :: Happiness Guide]&lt;br /&gt;
{{Pokémon individuality|cute}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
[[Category:Terminology]]&lt;br /&gt;
&lt;br /&gt;
[[de:Freundschaft]]&lt;br /&gt;
[[es:Amistad]]&lt;br /&gt;
[[fr:Bonheur]]&lt;br /&gt;
[[it:Affetto]]&lt;br /&gt;
[[ja:なつき度]]&lt;br /&gt;
[[zh:亲密度]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Speed_Boost_(Ability)&amp;diff=3085082</id>
		<title>Speed Boost (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Speed_Boost_(Ability)&amp;diff=3085082"/>
		<updated>2019-12-30T14:45:20Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In battle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Speed Boost&lt;br /&gt;
|jpname=かそく&lt;br /&gt;
|jptrans=Acceleration&lt;br /&gt;
|jptranslit=Kasoku&lt;br /&gt;
|colorscheme=speed&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Gradually boosts &amp;lt;sc&amp;gt;Speed&amp;lt;/sc&amp;gt;.&lt;br /&gt;
|text4=The Pokémon&#039;s Speed stat is gradually boosted.{{sup/4|DPP}}&amp;lt;br/&amp;gt;Its Speed stat is gradually boosted.{{sup/4|HGSS}}&lt;br /&gt;
|text5=Its Speed stat is gradually boosted.&lt;br /&gt;
|text6=Its Speed stat is gradually boosted.&lt;br /&gt;
|text7=Its Speed stat is boosted every turn.&lt;br /&gt;
|text8=Its Speed stat is boosted every turn.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Speed Boost&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;かそく&#039;&#039;&#039; &#039;&#039;Acceleration&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
At the end of each turn, Speed Boost raises the {{stat|Speed}} stat of the Pokémon with this Ability by one stage.&lt;br /&gt;
&lt;br /&gt;
Speed Boost will not activate on the turn the Pokémon with the Ability is switched in (even if it gains the Ability after switching in). It will activate if the Pokémon is switched in due to a previous Pokémon fainting.&lt;br /&gt;
&lt;br /&gt;
Starting from [[Generation V]], Speed Boost will not activate at the end of the turn if the user failed to escape from a wild encounter during that turn.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Speed Boost has no effect outside of battle.&lt;br /&gt;
&lt;br /&gt;
==Pokémon with Speed Boost==&lt;br /&gt;
{{Ability/head|speed}}&lt;br /&gt;
{{Ability/entry|193|Yanma|Bug|Flying|Speed Boost|Compound Eyes|Frisk}}&lt;br /&gt;
{{Ability/entry|255|Torchic|Fire|Fire|Blaze|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|256|Combusken|Fire|Fighting|Blaze|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|257|Blaziken|Fire|Fighting|Blaze|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|257M|Blaziken|Fire|Fighting|Speed Boost|None|None|Mega Blaziken}}&lt;br /&gt;
{{Ability/entry|291|Ninjask|Bug|Flying|Speed Boost|None|Infiltrator}}&lt;br /&gt;
{{Ability/entry|318|Carvanha|Water|Dark|Rough Skin|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|319|Sharpedo|Water|Dark|Rough Skin|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|469|Yanmega|Bug|Flying|Speed Boost|Tinted Lens|Frisk}}&lt;br /&gt;
{{Ability/entry|543|Venipede|Bug|Poison|Poison Point|Swarm|Speed Boost}}&lt;br /&gt;
{{Ability/entry|544|Whirlipede|Bug|Poison|Poison Point|Swarm|Speed Boost}}&lt;br /&gt;
{{Ability/entry|545|Scolipede|Bug|Poison|Poison Point|Swarm|Speed Boost}}&lt;br /&gt;
{{Ability/foot|speed}}&lt;br /&gt;
&lt;br /&gt;
* In [[Generation V]], {{p|Venipede}}, {{p|Whirlipede}}, and {{p|Scolipede}} have {{a|Quick Feet}} instead of Speed Boost as their Hidden Ability.&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Prior to {{pkmn|Super Mystery Dungeon}}, Pokémon with Speed Boost receive a boost to [[Travel Speed|Movement Speed]] every 250 turns, lasting for the remainder of the floor.&lt;br /&gt;
&lt;br /&gt;
In Super Mystery Dungeon, Speed Boost increases the Travel Speed of a Pokémon with this Ability by one after one turn of being on the floor, and again every 20 turns afterwards. The boost wears off after five turns.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|speed}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|The Pokémon&#039;s Movement Speed accelerates.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Accelerates the Pokémon&#039;s Movement Speed.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|いどうそくどが あがっていく|Accelerates the Pokémon&#039;s Movement Speed.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Unavailable}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The Pokémon&#039;s Travel Speed goes up after a certain number of turns!}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
{{moveanime|type=speed|exp=yes|gen=The Pokémon&#039;s speed increases dramatically when the Ability activates.|image1=Jessie Yanmega Speed Boost.png|image1p=Yanmega|image2=Paul Ninjask Speed Boost.png|image2p=Ninjask}}&lt;br /&gt;
{{movep|type=speed|ms=469|pkmn=Yanmega|method=Yanmega&#039;s body glows green and it can fly extremely fast. While flying, it leaves behind a green trail of energy.}}&lt;br /&gt;
{{movemid|type=speed|user=Jessie&#039;s Yanmega|startcode=DP114|startname=Another One Gabites the Dust!|notes=Debut}}&lt;br /&gt;
{{movep|type=speed|ms=291|pkmn=Ninjask|method=Ninjask&#039;s outlines glow white and it can fly around extremely fast. However, if Ninjask takes a lot of damage, then it doesn&#039;t get a speed increase anymore.}}&lt;br /&gt;
{{movebtm|type=speed|user=Paul|user1=Paul&#039;s Ninjask|startcode=DP187|startname=A Real Rival Rouser!}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
{{movemanga|type=speed|exp=yes|gen=The Pokémon&#039;s speed increases dramatically when activated.|image1=Amber Ninjask Speed Boost Adventures.png|image1p=Ninjask}}&lt;br /&gt;
{{movep|type=speed|ms=291|pkmn=Ninjask|method=As time progresses, Ninjask gets faster and faster.}}&lt;br /&gt;
{{movebtmManga|type=speed|user=Aqua Admin Amber|user1=Amber&#039;s Ninjask|startcode=PS246|startname=Can I Ninjask You a Question?|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{speed color}}|bordercolor={{speed color dark}}&lt;br /&gt;
|zh_yue=加速 &#039;&#039;{{tt|Gāchūk|Accelerate}}&#039;&#039;&lt;br /&gt;
|zh_cmn=加速 &#039;&#039;{{tt|Jiā​sù​|Accelerate}}&#039;&#039;&lt;br /&gt;
|nl=Turboboost&lt;br /&gt;
|fi=Nopeus&lt;br /&gt;
|fr=Turbo&lt;br /&gt;
|de=Temposchub&lt;br /&gt;
|it=Acceleratore&lt;br /&gt;
|ko=가속 &#039;&#039;Gasok&#039;&#039;&lt;br /&gt;
|pl=Przyspieszenie&lt;br /&gt;
|pt=Acelerador&lt;br /&gt;
|es=Impulso&lt;br /&gt;
|ro=Super Boost&lt;br /&gt;
|tr=Hız Arttırıcı&lt;br /&gt;
|vi=Tăng tốc&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Stat raising Abilities]]&lt;br /&gt;
[[Category:Abilities that activate at the end of the turn]]&lt;br /&gt;
&lt;br /&gt;
[[de:Temposchub]]&lt;br /&gt;
[[es:Impulso]]&lt;br /&gt;
[[fr:Turbo]]&lt;br /&gt;
[[it:Acceleratore]]&lt;br /&gt;
[[ja:かそく]]&lt;br /&gt;
[[zh:加速（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Speed_Boost_(Ability)&amp;diff=3085081</id>
		<title>Speed Boost (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Speed_Boost_(Ability)&amp;diff=3085081"/>
		<updated>2019-12-30T14:44:14Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* In battle */  Starting from Generation V, Speed Boost will not activate at the end of the turn if the user failed to escape from a wild encounter during that turn.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox&lt;br /&gt;
|name=Speed Boost&lt;br /&gt;
|jpname=かそく&lt;br /&gt;
|jptrans=Acceleration&lt;br /&gt;
|jptranslit=Kasoku&lt;br /&gt;
|colorscheme=speed&lt;br /&gt;
|gen=3&lt;br /&gt;
|text3=Gradually boosts &amp;lt;sc&amp;gt;Speed&amp;lt;/sc&amp;gt;.&lt;br /&gt;
|text4=The Pokémon&#039;s Speed stat is gradually boosted.{{sup/4|DPP}}&amp;lt;br/&amp;gt;Its Speed stat is gradually boosted.{{sup/4|HGSS}}&lt;br /&gt;
|text5=Its Speed stat is gradually boosted.&lt;br /&gt;
|text6=Its Speed stat is gradually boosted.&lt;br /&gt;
|text7=Its Speed stat is boosted every turn.&lt;br /&gt;
|text8=Its Speed stat is boosted every turn.&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Speed Boost&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;かそく&#039;&#039;&#039; &#039;&#039;Acceleration&#039;&#039;) is an [[Ability]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
At the end of each turn, Speed Boost raises the {{stat|Speed}} stat of the Pokémon with this Ability by one stage.&lt;br /&gt;
&lt;br /&gt;
Speed Boost will not activate on the turn the Pokémon with the Ability is switched in (even if it gains the Ability after switching in). It will activate if the Pokémon is switched in due to a previous Pokémon fainting.&lt;br /&gt;
&lt;br /&gt;
Starting from Generation V, Speed Boost will not activate at the end of the turn if the user failed to escape from a wild encounter during that turn.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Speed Boost has no effect outside of battle.&lt;br /&gt;
&lt;br /&gt;
==Pokémon with Speed Boost==&lt;br /&gt;
{{Ability/head|speed}}&lt;br /&gt;
{{Ability/entry|193|Yanma|Bug|Flying|Speed Boost|Compound Eyes|Frisk}}&lt;br /&gt;
{{Ability/entry|255|Torchic|Fire|Fire|Blaze|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|256|Combusken|Fire|Fighting|Blaze|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|257|Blaziken|Fire|Fighting|Blaze|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|257M|Blaziken|Fire|Fighting|Speed Boost|None|None|Mega Blaziken}}&lt;br /&gt;
{{Ability/entry|291|Ninjask|Bug|Flying|Speed Boost|None|Infiltrator}}&lt;br /&gt;
{{Ability/entry|318|Carvanha|Water|Dark|Rough Skin|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|319|Sharpedo|Water|Dark|Rough Skin|None|Speed Boost}}&lt;br /&gt;
{{Ability/entry|469|Yanmega|Bug|Flying|Speed Boost|Tinted Lens|Frisk}}&lt;br /&gt;
{{Ability/entry|543|Venipede|Bug|Poison|Poison Point|Swarm|Speed Boost}}&lt;br /&gt;
{{Ability/entry|544|Whirlipede|Bug|Poison|Poison Point|Swarm|Speed Boost}}&lt;br /&gt;
{{Ability/entry|545|Scolipede|Bug|Poison|Poison Point|Swarm|Speed Boost}}&lt;br /&gt;
{{Ability/foot|speed}}&lt;br /&gt;
&lt;br /&gt;
* In [[Generation V]], {{p|Venipede}}, {{p|Whirlipede}}, and {{p|Scolipede}} have {{a|Quick Feet}} instead of Speed Boost as their Hidden Ability.&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Prior to {{pkmn|Super Mystery Dungeon}}, Pokémon with Speed Boost receive a boost to [[Travel Speed|Movement Speed]] every 250 turns, lasting for the remainder of the floor.&lt;br /&gt;
&lt;br /&gt;
In Super Mystery Dungeon, Speed Boost increases the Travel Speed of a Pokémon with this Ability by one after one turn of being on the floor, and again every 20 turns afterwards. The boost wears off after five turns.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|speed}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|The Pokémon&#039;s Movement Speed accelerates.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Accelerates the Pokémon&#039;s Movement Speed.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|いどうそくどが あがっていく|Accelerates the Pokémon&#039;s Movement Speed.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Unavailable}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The Pokémon&#039;s Travel Speed goes up after a certain number of turns!}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
{{moveanime|type=speed|exp=yes|gen=The Pokémon&#039;s speed increases dramatically when the Ability activates.|image1=Jessie Yanmega Speed Boost.png|image1p=Yanmega|image2=Paul Ninjask Speed Boost.png|image2p=Ninjask}}&lt;br /&gt;
{{movep|type=speed|ms=469|pkmn=Yanmega|method=Yanmega&#039;s body glows green and it can fly extremely fast. While flying, it leaves behind a green trail of energy.}}&lt;br /&gt;
{{movemid|type=speed|user=Jessie&#039;s Yanmega|startcode=DP114|startname=Another One Gabites the Dust!|notes=Debut}}&lt;br /&gt;
{{movep|type=speed|ms=291|pkmn=Ninjask|method=Ninjask&#039;s outlines glow white and it can fly around extremely fast. However, if Ninjask takes a lot of damage, then it doesn&#039;t get a speed increase anymore.}}&lt;br /&gt;
{{movebtm|type=speed|user=Paul|user1=Paul&#039;s Ninjask|startcode=DP187|startname=A Real Rival Rouser!}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
{{movemanga|type=speed|exp=yes|gen=The Pokémon&#039;s speed increases dramatically when activated.|image1=Amber Ninjask Speed Boost Adventures.png|image1p=Ninjask}}&lt;br /&gt;
{{movep|type=speed|ms=291|pkmn=Ninjask|method=As time progresses, Ninjask gets faster and faster.}}&lt;br /&gt;
{{movebtmManga|type=speed|user=Aqua Admin Amber|user1=Amber&#039;s Ninjask|startcode=PS246|startname=Can I Ninjask You a Question?|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{speed color}}|bordercolor={{speed color dark}}&lt;br /&gt;
|zh_yue=加速 &#039;&#039;{{tt|Gāchūk|Accelerate}}&#039;&#039;&lt;br /&gt;
|zh_cmn=加速 &#039;&#039;{{tt|Jiā​sù​|Accelerate}}&#039;&#039;&lt;br /&gt;
|nl=Turboboost&lt;br /&gt;
|fi=Nopeus&lt;br /&gt;
|fr=Turbo&lt;br /&gt;
|de=Temposchub&lt;br /&gt;
|it=Acceleratore&lt;br /&gt;
|ko=가속 &#039;&#039;Gasok&#039;&#039;&lt;br /&gt;
|pl=Przyspieszenie&lt;br /&gt;
|pt=Acelerador&lt;br /&gt;
|es=Impulso&lt;br /&gt;
|ro=Super Boost&lt;br /&gt;
|tr=Hız Arttırıcı&lt;br /&gt;
|vi=Tăng tốc&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Stat raising Abilities]]&lt;br /&gt;
[[Category:Abilities that activate at the end of the turn]]&lt;br /&gt;
&lt;br /&gt;
[[de:Temposchub]]&lt;br /&gt;
[[es:Impulso]]&lt;br /&gt;
[[fr:Turbo]]&lt;br /&gt;
[[it:Acceleratore]]&lt;br /&gt;
[[ja:かそく]]&lt;br /&gt;
[[zh:加速（特性）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Glimwood_Tangle&amp;diff=3083758</id>
		<title>Talk:Glimwood Tangle</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Glimwood_Tangle&amp;diff=3083758"/>
		<updated>2019-12-28T12:33:04Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Additional info for the page */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Additional info for the page ==&lt;br /&gt;
&lt;br /&gt;
I don&#039;t know where to go to tell the editors and what not missing info and I don&#039;t know how to add info properly to the page, so I added the talk thingy.&lt;br /&gt;
- You can encounter Spritzee in Shield (idk about Sword)&lt;br /&gt;
- You can encounter Impidimp at more than one mushroom for the Static Encounters (I&#039;ve found it at 2 mushrooms so far)&lt;br /&gt;
- Galarian Ponyta is missing&lt;br /&gt;
--[[User:Naxame|Naxame]] ([[User talk:Naxame|talk]]) 08:34, 28 December 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Max_Move&amp;diff=3083747</id>
		<title>Talk:Max Move</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Max_Move&amp;diff=3083747"/>
		<updated>2019-12-28T11:48:00Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Add regular move power column */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==New Max Moves==&lt;br /&gt;
There&#039;s a water-type move called Max Geyser, you should add that. [[User:Salamence1993|Salamence1993]] ([[User talk:Salamence1993|talk]]) 18:29, 15 June 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Ice-type Max Move ==&lt;br /&gt;
&lt;br /&gt;
Well, I created an article about {{m|Dai Ice|ダイアイス}}, an {{type|Ice}} Max Move. It should be linked on this list. --[[User:TheICTLiker4|&amp;lt;span style=&amp;quot;color:#7b7&amp;quot;&amp;gt;&#039;&#039;&#039;TheICT&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[Special:Contributions/TheICTLiker4|&amp;lt;span style=&amp;quot;color:#585&amp;quot;&amp;gt;&#039;&#039;&#039;Liker4&#039;&#039;&#039;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:TheICTLiker4|&amp;lt;span style=&amp;quot;color:#363&amp;quot;&amp;gt;&#039;&#039;&#039;piszże do mnie&#039;&#039;&#039;&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 19:36, 11 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Add regular move power column ==&lt;br /&gt;
&lt;br /&gt;
Maybe add a column that displays the moves regular power, would be nice to compare the before and after max boost.&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_213&amp;diff=3004276</id>
		<title>Sinnoh Route 213</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_213&amp;diff=3004276"/>
		<updated>2019-07-26T15:48:46Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Trivia */  added another date to the &amp;quot;cloudy&amp;quot; trivia&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{incomplete|2=Missing manga section}}&lt;br /&gt;
{{Route infobox&lt;br /&gt;
|number=213&lt;br /&gt;
|size=290&lt;br /&gt;
|imageIV=Sinnoh Route 213 Pt.png&lt;br /&gt;
|type=sand&lt;br /&gt;
|image=Sinnoh Route 213 Pt.png&lt;br /&gt;
|north=Valor Lakefront&lt;br /&gt;
|west=Pastoria City&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|generation=4&lt;br /&gt;
|surf=yes&lt;br /&gt;
|rockclimb=yes&lt;br /&gt;
|rocksmash=yes&lt;br /&gt;
|mapdesc=Offshore boulders form a jetty that becalms waves reaching the beach. A resort hotel overlooks the water.&amp;lt;br&amp;gt;In a small house on the beach lives a single man who refers to himself as Dr. Footstep.&lt;br /&gt;
}}&lt;br /&gt;
[[File:Sinnoh Route 213 DP.png|thumb|Route 213 in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
&#039;&#039;&#039;Route 213&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;２１３ばんどうろ&#039;&#039;&#039; &#039;&#039;Route 213&#039;&#039;) is a route in southeastern [[Sinnoh]] that connects [[Pastoria City]] and [[Valor Lakefront]]. The route is home to Sinnoh&#039;s famous [[Hotel Grand Lake]].&lt;br /&gt;
&lt;br /&gt;
==Route description==&lt;br /&gt;
When leaving [[Valor Lakefront]], the {{player}} can see three suites and a hotel. In the suite on the left, a clown will give the player {{TM|92|Trick Room}}, and in the suite requiring {{m|Rock Climb}} to get to, a lady will give the player the [[Pokétch#Coin Flip|Coin Toss Pokétch App]]. In the hotel, if the player talks to the police officer he will heal his or her Pokémon. South of the hotel, there is a beach with two Trainers. Following the sandy beach west, the player will find Dr. Footstep&#039;s house. South of the house, there is a hidden [[Heart Scale]]. North of the house, there is a {{m|Rock Climb|climbable ledge}} leading to a grass patch and item, and a [[breakable rock]] hiding a [[Honey Tree]] on the right and left respectively. Further north, there is a grass patch leading the player to {{ci|Pastoria}}. North of the grass patch, there is a Berry patch.&lt;br /&gt;
&amp;lt;!--[[File:Sinnoh Route 213 DP.png|thumb|Route 213 in Diamond and Pearl]]--&amp;gt;&lt;br /&gt;
===Dr. Footstep&#039;s House===&lt;br /&gt;
[[Dr. Footstep]] will examine a Trainer&#039;s leading Pokémon&#039;s footprints and check its [[Friendship]] level. As a reward for a high Friendship level, he will give the Pokémon a {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{itlisth|sand}}&lt;br /&gt;
{{Itemlist|Protein|East of the Hotel Grand Lake southern entrance (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Awakening|Near the Honey Tree (requires {{m|Rock Smash}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Near the Honey Tree (requires {{m|Rock Smash}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Big Pearl|In the south-east corner of the route (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|TM Normal|Up in the highest mountain looking at the beach (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{TM|05|Roar}}}}&lt;br /&gt;
{{Itemlist|Water Stone|At the easternmost shallow water at the southern part of Route 213, north of Swimmers Evan and Mary (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Max Revive |&lt;br /&gt;
*Western islet (requires {{m|Surf}})&lt;br /&gt;
*Up in the highest mountain looking at the beach (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;{{sup/4|DP}}&lt;br /&gt;
*Under the parasol by the pool, south of the Game Director&#039;s suite &#039;&#039;(hidden)&#039;&#039;{{sup/4|Pt}}&lt;br /&gt;
|D=yes|P=yes|Pt=yes|display=[[Max Revive]] ×2}}&lt;br /&gt;
{{Itemlist|Big Pearl|In the islet to the west of Swimmer Sheltin (same islet as the Max Revive) (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|PP Up|Left of Hotel Grand Lake|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|HP Up|Up in the highest mountain looking at the beach (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Heart Scale|On east side of the east beach &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Heart Scale|At the very edge of the west beach directly below Dr. Footstep&#039;s house &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Super Potion|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Great Ball|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Calcium|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Red Shard|West of the entrance to Hotel Grand Lake|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Yellow Shard|West of the entrance to Hotel Grand Lake|Pt=yes}}&lt;br /&gt;
{{Itemlist|Suite Key|Immediately northwest of northern reception entrance &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Pearl|Near Fisherman Kenneth &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Pearl|In the wall northwest of the Max Revive and Big Pearl islet (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{i|Pearl}}}}&lt;br /&gt;
{{Itemlist|Pearl|&lt;br /&gt;
* South of TM40 &#039;&#039;(hidden)&#039;&#039;&lt;br /&gt;
* Near Tuber Chelsea (×2) &#039;&#039;(hidden)&#039;&#039;|Pt=yes|display={{i|Pearl}} ×3}}&lt;br /&gt;
{{Itemlist|TM Flying|East of Dr. Footstep&#039;s house (requires {{m|Rock Smash}})|D=yes|P=yes|Pt=yes|display={{TM|40|Aerial Ace}}}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Under the parasol by the pool, south of the Game Director&#039;s suite &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Aguav Berry|Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Rawst Berry|Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes|display=[[Rawst Berry]] ×2}}&lt;br /&gt;
{{Itemlist|Iapapa Berry|Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{itlistfoot|sand}}&lt;br /&gt;
&lt;br /&gt;
===Hotel Grand Lake===&lt;br /&gt;
These are items found inside [[Hotel Grand Lake]] buildings located on Route 213; however, they are technically found in a location called &amp;quot;Grand Lake&amp;quot;, not Route 213.&lt;br /&gt;
&lt;br /&gt;
{{itlisth|sand}}&lt;br /&gt;
{{Itemlist|TM Psychic|Gift from the {{tc|Clown}} in the bungalow to the northwest of the hotel entrance|D=yes|P=yes|Pt=yes|display={{TM|92|Trick Room}}}}&lt;br /&gt;
{{Itemlist|Max Revive|Inside a trash can in the bungalow to the northeast of the hotel entrance (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From a {{tc|Rich Boy}} inside a bungalow to the northeast of the hotel entrance (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Coin Toss}}}}&lt;br /&gt;
{{itlistfoot|sand}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{Catch/header|sand}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|yes|yes|no|Grass|20|20%|20%|10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|no|no|yes|Grass|24-26|all=20%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|yes|yes|no|Grass|20-21|all=30%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|no|no|yes|Grass|23-25|25%|25%|35%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|419|Floatzel|yes|yes|no|Grass|22|all=10%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|yes|yes|no|Grass|20-22|40%|40%|50%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|no|no|yes|Grass|24-26|35%|35%|45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|441|Chatot|no|no|yes|Grass|23-25|20%|20%|0%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{catch/entry4|072|Tentacool|yes|yes|yes|Surf|20-30|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|yes|yes|yes|Surf|20-40|all=5%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|278|Wingull|yes|yes|yes|Surf|20-30|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|yes|yes|no|Surf|20-40|all=5%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|422E|Shellos|no|no|yes|Surf|20-30|all=4%|type1=Water}}&lt;br /&gt;
{{catch/entry4|423E|Gastrodon|no|no|yes|Surf|20-40|all=1%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|no|Fish Super|30-40|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|no|no|yes|Fish Super|30-55|all=65%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|yes|yes|no|Fish Super|20-50|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|319|Sharpedo|yes|yes|no|Fish Super|40-55|all=5%|type1=Water|type2=Dark}}&lt;br /&gt;
{{Catch/div|sand|Swarm}}&lt;br /&gt;
{{Catch/entry4|359|Absol|yes|yes|no|Swarm|20|all=40%|type1=Dark}}&lt;br /&gt;
{{Catch/div|sand|Special}}&lt;br /&gt;
{{Catch/entry4|277|Swellow|yes|yes|no|Poké Radar|20-22|all=22%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|277|Swellow|no|no|yes|Poké Radar|21-25|all=22%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/footer|sand}}&lt;br /&gt;
Additionally, wild Pokémon can appear on the [[Honey Tree]].&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
==={{game|Diamond and Pearl|s}}===&lt;br /&gt;
{{trainerheader|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy|1288|1|431|Glameow|♀|23|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Kenneth|704|3|129|Magikarp|♂|19|None|223|Remoraid|♂|19|None|130|Gyarados|♂|22|None|36=タカフミ|37=Takafumi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|92|1|400|Bibarel|♀|23|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared|80|3|422|Shellos|♂|19|None|422|Shellos|♂|21|None|422|Shellos|♂|20|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand|Requires Surf}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Haley|496|2|183|Marill|♀|31|None|184|Azumarill|♀|31|None|36=ナオミ|37=Naomi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Sheltin|496|3|130|Gyarados|♂|30|None|130|Gyarados|♂|29|None|130|Gyarados|♂|31|None|36=エイサク|37=Eisaku}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Sailor.png|Sailor|Paul|992|2|130|Gyarados|♂|31|None|066|Machop|♂|31|None|36=ヨウヘイ|37=Yōhei}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Evan|512&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Mary&amp;lt;/small&amp;gt;|2|055|Golduck|♂|30|None|055|Golduck|♂|32|None|36=キョウジ|37=Kyōji}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Mary|480&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Evan&amp;lt;/small&amp;gt;|2|183|Marill|♀|32|None|279|Pelipper|♀|30|None|36=エリコ|37=Eriko}}&lt;br /&gt;
{{Trainerdiv|sand|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|First rematch}}|2240|1|431|Glameow|♀|40|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|Second rematch}}|3360|1|432|Purugly|♀|60|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|{{tt|160|First rematch}}/{{tt|220|Second rematch}}|1|400|Bibarel|♀|{{tt|40|First rematch}}/{{tt|55|Second rematch}}|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|First rematch}}|116|3|422|Shellos|♂|28|None|422|Shellos|♂|27|None|422|Shellos|♂|29|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|Second rematch}}|204|3|423|Gastrodon|♂|52|None|423|Gastrodon|♂|53|None|423|Gastrodon|♂|51|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|sand}}&lt;br /&gt;
&lt;br /&gt;
==={{game|Platinum}}===&lt;br /&gt;
{{trainerheader|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy|1624|1|431|Glameow|♀|29|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Kenneth|896|3|223|Remoraid|♂|25|None|223|Remoraid|♂|25|None|130|Gyarados|♂|28|None|36=タカフミ|37=Takafumi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|112|1|183|Marill|♀|28|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared|104|3|422E|Shellos|♂|25|None|422E|Shellos|♂|25|None|422|Shellos|♂|26|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand|Requires Surf}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Haley|560|2|054|Psyduck|♀|31|None|184|Azumarill|♀|35|None|36=ナオミ|37=Naomi}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Sheltin|512|3|130|Gyarados|♂|32|None|130|Gyarados|♂|32|None|130|Gyarados|♂|32||36=エイサク|37=Eisaku}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Sailor.png|Sailor|Paul|1088|3|072|Tentacool|♂|31|None|279|Pelipper|♂|31|None|067|Machoke|♂|34||36=ヨウヘイ|37=Yōhei}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Evan|544&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Mary&amp;lt;/small&amp;gt;|2|055|Golduck|♂|32|None|055|Golduck|♂|34|None|36=キョウジ|37=Kyōji}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Mary|528&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Evan&amp;lt;/small&amp;gt;|2|456|Finneon|♀|33|None|279|Pelipper|♀|33|None|36=エリコ|37=Eriko}}&lt;br /&gt;
{{Trainerdiv|sand|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|First rematch}}|2520|1|431|Glameow|♀|45|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|Second rematch}}|3304|3|052|Meowth|♀|59|None|431|Glameow|♀|59|None|300|Skitty|♀|59|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|{{tt|176|First rematch}}/{{tt|212|Second rematch}}|1|184|Azumarill|♀|{{tt|44|First rematch}}/{{tt|53|Second rematch}}|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|First rematch}}|128|3|422E|Shellos|♂|32|None|422E|Shellos|♂|32|None|422|Shellos|♂|32|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|Second rematch}}|204|3|423E|Gastrodon|♂|51|None|423E|Gastrodon|♂|51|None|423|Gastrodon|♂|51|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|sand}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* On May 11, July 11, August 9, August 20, October 18, December 2, and December 31, it [[Easter egg|rains on this route]].&lt;br /&gt;
* On February 15, July 26 (and possibly other unknown dates), the route is cloudy.&lt;br /&gt;
* In Diamond and Pearl, Absol can be caught here, possibly a reference to the route&#039;s name ending in 13.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Valor Lakefront]]&lt;br /&gt;
&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Routes notice}}&lt;br /&gt;
[[Category:Sinnoh locations|Route 213]]&lt;br /&gt;
[[Category:Routes|Route 213]]&lt;br /&gt;
[[Category:Diamond and Pearl locations|Route 213]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Route 213 (Sinnoh)]]&lt;br /&gt;
[[es:Ruta 213]]&lt;br /&gt;
[[fr:Route 213]]&lt;br /&gt;
[[it:Percorso 213 (Sinnoh)]]&lt;br /&gt;
[[ja:213ばんどうろ (シンオウ地方)]]&lt;br /&gt;
[[zh:２１３号道路（神奥）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pomeg_Berry&amp;diff=3001274</id>
		<title>Pomeg Berry</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pomeg_Berry&amp;diff=3001274"/>
		<updated>2019-07-19T09:35:59Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Locations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BerryPrevNext | prev=Pinap | next=Kelpsy}}&lt;br /&gt;
{{BerryInfobox&lt;br /&gt;
|bnum=21&lt;br /&gt;
|name=Pomeg&lt;br /&gt;
|jname=ザロク&lt;br /&gt;
|tmname=Zaroku&lt;br /&gt;
|size=5.3&lt;br /&gt;
|sizecm=13.5&lt;br /&gt;
|firm=Very hard&lt;br /&gt;
|grow3=12&lt;br /&gt;
|grow4=32&lt;br /&gt;
|desc=However much it is watered, it only grows up to six &amp;lt;sc&amp;gt;Berries&amp;lt;/sc&amp;gt;.&lt;br /&gt;
|desc4=When this sweetly spicy Berry&#039;s thick skin is peeled, many pieces of the fruit spill out.&lt;br /&gt;
|d3=&amp;lt;sc&amp;gt;&amp;lt;sup&amp;gt;P&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;O&amp;lt;/sub&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;sup&amp;gt;K&amp;lt;/sup&amp;gt;&amp;lt;/sc&amp;gt;&amp;lt;sub&amp;gt;é&amp;lt;/sub&amp;gt;&amp;lt;sc&amp;gt;block&amp;lt;/sc&amp;gt; ingredient. Plant in loamy soil to grow &amp;lt;sc&amp;gt;Pomeg&amp;lt;/sc&amp;gt;.{{sup/3|RS}}&amp;lt;br/&amp;gt;Can be ground up into powder as an ingredient for medicine.{{sup/3|FRLG}}&amp;lt;br/&amp;gt;Makes a &amp;lt;sc&amp;gt;Pokémon&amp;lt;/sc&amp;gt; friendly but lowers base HP.{{sup/3|E}}&amp;lt;br/&amp;gt;An item brought over from a faraway place.{{sup/ss|Colo}}{{sup/ss|XD}}&lt;br /&gt;
|d4=A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base HP.{{sup/4|DPPt}}&amp;lt;br/&amp;gt;Using it on a Pokémon makes it more friendly, but it also lowers its base HP.{{sup/4|HGSS}}&lt;br /&gt;
|d5=Using it on a Pokémon makes it more friendly, but it also lowers its base HP.&lt;br /&gt;
|d6=A Berry to be consumed by Pokémon. Using it on a Pokémon makes it more friendly but lowers its base HP.&lt;br /&gt;
|d7=A Berry to be consumed by Pokémon. Using it on a Pokémon makes it more friendly but lowers its base HP.&lt;br /&gt;
|effect=Makes a Pokémon more [[friendship|friendly]], but lowers HP [[effort values|EVs]].{{sup/3|E}}&amp;lt;sup&amp;gt;, [[Generation IV|Gen. IV]]+&amp;lt;/sup&amp;gt;&lt;br /&gt;
|nameor={{wp|Pomegranate}}&lt;br /&gt;
|basis=Pomegranate&lt;br /&gt;
|type=Ice&lt;br /&gt;
|power={{tt|90|70 in Generations IV-V}}&lt;br /&gt;
|scoop1=2&lt;br /&gt;
|stick1=5&lt;br /&gt;
|scoop2=4&lt;br /&gt;
|stick2=1&lt;br /&gt;
|scoop3=5&lt;br /&gt;
|stick3=2&lt;br /&gt;
|treeimage=Pomeg_tree.gif&lt;br /&gt;
|spicytag=yes&lt;br /&gt;
|sweettag=yes&lt;br /&gt;
|bittertag=yes&lt;br /&gt;
|spicy=+1&lt;br /&gt;
|bitter=+1&lt;br /&gt;
|dry=-1&lt;br /&gt;
|sour=-1&lt;br /&gt;
|spicy4=10&lt;br /&gt;
|sweet4=10&lt;br /&gt;
|bitter4=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;Pomeg Berry&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ザロクのみ&#039;&#039;&#039; &#039;&#039;Zaroku Fruit&#039;&#039;) is a type of [[Berry]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
==Locations==&lt;br /&gt;
{{Berryloc |&lt;br /&gt;
RSE1=Growing on [[Route]]s {{rtn|119|Hoenn}} and {{rtn|123|Hoenn}} when the {{player}} first arrives there. |&lt;br /&gt;
RSE2=Sometimes given by the [[Berry Master]]. |&lt;br /&gt;
RSE3=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
DPPt1=Growing in [[soft soil]] in {{rt|214|Sinnoh}} and [[Fight Area]] when the {{player}} first arrives there. |&lt;br /&gt;
DPPt2=Sometimes given by the [[Berry Master]]. |&lt;br /&gt;
DPPt3=Sometimes awarded after earning above 3500 points at [[Pal Park]]. |&lt;br /&gt;
DPPt4=Chance of winning from Scratch-Off Cards in the {{gdis|Battle Frontier|IV}}. |&lt;br /&gt;
HGSS1=Given by a {{tc|Juggler}} in [[Fuchsia City]] in exchange for a [[Red Shard]]. |&lt;br /&gt;
HGSS2=Chance of winning from Scratch-Off Cards in the {{gdis|Battle Frontier|IV}}. |&lt;br /&gt;
Walk1=Rarely found in {{pw|Hoenn Field}} after 1000+ steps. |&lt;br /&gt;
Walk2=Rarely found in {{pw|Beyond the Sea}} after 1000+ steps. |&lt;br /&gt;
Walk3=Always held by level 5 {{p|Happiny}}; commonly found in {{pw|Amity Meadow}} after 2000+ steps.|&lt;br /&gt;
B2W21=[[Join Avenue]] ({{DL|Join Avenue|Flower Shop}}). |&lt;br /&gt;
B2W22=Buyable from a {{tc|Pokémon Breeder}} on {{rt|5|Unova}}. |&lt;br /&gt;
B2W23=[[Black Tower]]/[[White Treehollow]] (Area 10 reward). |&lt;br /&gt;
DW1=Can be found in the {{dwa|Windswept Sky}}. | &lt;br /&gt;
XY1={{DL|Berry fields (Kalos)|Mutation}} of {{b|Iapapa}} and {{b|Mago}} {{Berries}}. |&lt;br /&gt;
ORAS1=Sometimes given by the [[Berry Master]] on {{rt|123|Hoenn}}. |&lt;br /&gt;
ORAS2=Can be given by a fan after competing in a Hyper Rank [[Pokémon Contest|Pokémon Contest Spectacular]]. |&lt;br /&gt;
ORAS3=Sometimes given by [[Kiri]] in [[Sootopolis City]]. |&lt;br /&gt;
MC1=Can be obtained through the Lv. 3 {{DL|PokéMileage Club|Balloon Popping}} attraction. |&lt;br /&gt;
SM1=Can be found in the Berry pile in {{rt|10|Alola}}. |&lt;br /&gt;
USUM1=Can be found in the Berry pile in {{rt|10|Alola}}. |&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Growth and harvest==&lt;br /&gt;
===Generation III===&lt;br /&gt;
A Pomeg Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 12 hours, with 3 hours per stage. A Pomeg tree will yield 2-6 Berries.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
A Pomeg Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 32 hours, with 8 hours per stage. A Pomeg tree will yield 1-5 Berries.&lt;br /&gt;
&lt;br /&gt;
===Generation VI===&lt;br /&gt;
A Pomeg Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 48 hours, with 8 hours per stage. A Pomeg tree will yield 1-20 Berries. During its growth, watering the plant will add 0.5 Berries to the final harvest, weeding it will add 1.5, and removing a pest will add 3.&lt;br /&gt;
&lt;br /&gt;
===Generation VII===&lt;br /&gt;
A Pomeg Berry will mature from a planted seed to a full-grown, fruit-bearing tree in 48 hours. A Pomeg tree will yield 5-14 Berries.&lt;br /&gt;
&lt;br /&gt;
==Uses==&lt;br /&gt;
===Berry Blending===&lt;br /&gt;
{{BerryBlender|Purple|Gray|Purple}}&lt;br /&gt;
&lt;br /&gt;
===Berry Crushing===&lt;br /&gt;
At 100% performance, this Berry will contribute 200 units of powder.&lt;br /&gt;
&lt;br /&gt;
===Poffin Cooking===&lt;br /&gt;
At 100% performance, a Pomeg Berry can produce a Level 12 (maybe higher) Spicy-Bitter Poffin when cooking alone.&lt;br /&gt;
&lt;br /&gt;
===Used on a Pokémon===&lt;br /&gt;
This Berry increases a Pokémon&#039;s [[friendship]] by and lowers its HP [[Effort values|EVs]] by ten points (but not below 0). It can only be used outside of battle, and only has this effect in {{game|Emerald}} and later games. In [[Generation IV]] only, this Berry reduces the EV to 100 if it was above 100 when used.&lt;br /&gt;
&lt;br /&gt;
==Artwork==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background: #{{black color dark}}; border: 5px solid #{{black color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| width=&amp;quot;160px&amp;quot; style=&amp;quot;background: #{{spicy color}}; {{roundytop|5px}}&amp;quot; | [[File:Dream Pomeg Berry Sprite.png]]&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;background: #{{bitter color light}}; {{roundybottom|5px}}&amp;quot; | {{color|{{bitter color dark}}|Dream World artwork}}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Pomeg flowers anime.png|thumb|250px|Pomeg flowers in the anime]]&lt;br /&gt;
While the Pomeg Berry itself has never been featured in the {{pkmn|anime}}, its flowers were seen in &#039;&#039;[[DP031|The Grass-Type is Always Greener!]]&#039;&#039;, where {{Ash}}, {{ashfr}}, and [[Cheryl]] found a {{p|Combee}} residing near them, thus giving them their first lead to the [[Amber Castle]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Pomeg Berry Adventures.png|thumb|150px|A Pomeg Berry in Pokémon Adventures]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
A Pomeg Berry appeared in &#039;&#039;[[PS342|A Conk on Cranidos&#039;s Cranium]]&#039;&#039; as a part of {{adv|Diamond}} and {{adv|Pearl}}&#039;s comedy routine. In the [[Chuang Yi]] translation, it was referred to as a [[Rowap Berry]] instead.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PS369|Problematic Probopass and Mad Magnezone II]]&#039;&#039;, a Pomeg Berry was seen among the many Berries that [[Cyrus]]&#039;s {{p|Probopass}}&#039;s Mini-Noses dug out of {{adv|Lax}}&#039;s fur while trying to retrieve Cyrus&#039;s camera.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Due to its ability to lower a Pokémon&#039;s {{stat|HP}} {{EV}}s, it is famous for the [[Pomeg glitch]], which can lower the HP of a Pokémon which has low HP so that it becomes a negative value.&lt;br /&gt;
&lt;br /&gt;
==Names==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;background: #{{spicy color light}}; border: 3px solid #{{spicy color}}&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Language&lt;br /&gt;
! Name&lt;br /&gt;
! Origin&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Japanese&lt;br /&gt;
| ザロクのみ  &#039;&#039;Zaroku no Mi&#039;&#039;&lt;br /&gt;
| From 石榴 &#039;&#039;zakuro&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|English&lt;br /&gt;
|Pomeg Berry&lt;br /&gt;
|From &#039;&#039;pomegranate&#039;&#039;&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|French&lt;br /&gt;
|Baie Grena &lt;br /&gt;
|From &#039;&#039;grenade&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|German&lt;br /&gt;
|Granabeere &lt;br /&gt;
|From &#039;&#039;Granatapfel&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Italian&lt;br /&gt;
|Baccagrana&lt;br /&gt;
|From &#039;&#039;melagrana&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Spanish&lt;br /&gt;
|Baya Grana &lt;br /&gt;
|From &#039;&#039;granada&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Korean&lt;br /&gt;
|유석열매 &#039;&#039;Yuseok Yeolmae&#039;&#039;&lt;br /&gt;
|From 석류 (石榴) &#039;&#039;seokryu&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Chinese ({{tt|Mandarin|Taiwan and Mainland China}})&lt;br /&gt;
|榴石果 &#039;&#039;Liúshí Guǒ&#039;&#039;{{tt|*|Games}}&lt;br /&gt;
|From 石榴 &#039;&#039;shíliú&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|紅榴 &#039;&#039;Hóngliú&#039;&#039;{{tt|*|Emerald Guidebook}}&lt;br /&gt;
|From 紅 &#039;&#039;hóng&#039;&#039; (red) and 石榴 &#039;&#039;shíliú&#039;&#039; (pomegranate)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Chinese ({{tt|Cantonese|Hong Kong}})&lt;br /&gt;
|榴石果 &#039;&#039;Làuhsehk Gwó&#039;&#039;&lt;br /&gt;
|From 石榴 &#039;&#039;sehklàuh&#039;&#039;, pomegranate&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|rowspan=2 | Vietnamese&lt;br /&gt;
|Quả Pomeg{{tt|*|PS220}}&lt;br /&gt;
|From its English name&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
|Quả Lựu&lt;br /&gt;
|From &#039;&#039;lựu&#039;&#039;, pomegranate&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{BerryPrevNext | prev=Pinap | next=Kelpsy}}&lt;br /&gt;
{{Project BerryDexnotice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Friendship-raising Berries]]&lt;br /&gt;
&lt;br /&gt;
[[de:Granabeere]]&lt;br /&gt;
[[es:Baya Grana]]&lt;br /&gt;
[[fr:Baie Grena]]&lt;br /&gt;
[[it:Baccagrana]]&lt;br /&gt;
[[ja:ザロクのみ]]&lt;br /&gt;
[[zh:榴石果（道具）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_218&amp;diff=3001272</id>
		<title>Sinnoh Route 218</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_218&amp;diff=3001272"/>
		<updated>2019-07-19T09:29:37Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Items */  there&amp;#039;s only one Pinap Berry, not 2, so I removed the &amp;quot;x2&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Route infobox&lt;br /&gt;
|number=218&lt;br /&gt;
|size=300&lt;br /&gt;
|type=water&lt;br /&gt;
|image=Sinnoh Route 218 Pt.png&lt;br /&gt;
|imageIV=Sinnoh Route 218 Pt.png&lt;br /&gt;
|west=Canalave City&lt;br /&gt;
|east=Jubilife City&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|generation=4&lt;br /&gt;
|surf=yes&lt;br /&gt;
|mapdesc=Despite its shortness, this road is revered by fishing enthusiasts as a great, yet little known, fishing spot. &lt;br /&gt;
}}&lt;br /&gt;
[[File:Sinnoh Route 218 DP.png|thumb|300px|Route 218 in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
&#039;&#039;&#039;Route 218&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;２１８ばんどうろ&#039;&#039;&#039; &#039;&#039;Route 218&#039;&#039;) is a route in western [[Sinnoh]], connecting [[Jubilife City]] and [[Canalave City]].&lt;br /&gt;
&lt;br /&gt;
==Route description==&lt;br /&gt;
Heading west from Jubilife City, the route follows a short path over land before reaching a body of water with a small island in the middle. A pair of bridges take travelers partway across the water, but do not go all the way to the other side; the only way to travel across is on a {{m|surf}}ing Pokémon. Wild Pokémon live within the flowing current, which bring the area great renown throughout the fishing community.&lt;br /&gt;
&lt;br /&gt;
Traveling north from the central island yields a short journey to the far side of the stream where long grass grows. From here, a gateway leads to Canalave City. Surfing south will take travelers to the same landmass as the northern route, but a row of tall trees prevents further passage. A [[Honey Tree]] can be found here.&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{Itlisth|water}}&lt;br /&gt;
{{Itemlist|X Accuracy|At the north end of the pier|Pt=yes|display={{DL|Battle item|X Accuracy}}}}&lt;br /&gt;
{{Itemlist|Rare Candy|On a small patch of land in the very northeast corner (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Honey|On the strip of land directly west of the first pier (requires {{m|Surf}})|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Hyper Potion|On the strip of land directly west of the first pier (requires {{m|Surf}})|Pt=yes|display={{DL|Potion|Hyper Potion}}}}&lt;br /&gt;
{{Itemlist|Rawst Berry|Soft soil above the grassy area|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Persim Berry|Soft soil above the grassy area|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Figy Berry|Soft soil above the grassy area|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Pinap Berry|Soft soil above the grassy area|D=yes|P=yes|Pt=yes|display=[[Pinap Berry]]}}&lt;br /&gt;
{{Itlistfoot|water}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{Catch/header|water|4}}&lt;br /&gt;
{{Catch/entry4|122|Mr. Mime|yes|no|no|Grass|29-30|all=15%|type1=Psychic}}&lt;br /&gt;
{{Catch/entry4|122|Mr. Mime|no|no|yes|Grass|29-31|all=25%|type1=Psychic}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|yes|yes|no|Grass|29|all=10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|419|Floatzel|yes|yes|no|Grass|28-30|all=35%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|419|Floatzel|no|no|yes|Grass|29-31|30%|30%|40%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422|Shellos|yes|yes|no|Grass|28|all=20%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|423|Gastrodon|yes|yes|no|Grass|28-30|all=20%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry4|423|Gastrodon|no|no|yes|Grass|28, 30|25%|25%|35%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry4|431|Glameow|no|yes|no|Grass|29-30|all=15%|type1=Normal}}&lt;br /&gt;
{{Catch/entry4|441|Chatot|no|no|yes|Grass|28-30|20%|20%|0%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entry4|072|Tentacool|yes|yes|yes|Surf|20-30|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|073|Tentacruel|yes|yes|no|Surf|20-40|all=5%|type1=Water|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|073|Tentacruel|no|no|yes|Surf|20-40|all=9%|type1=Water|type2=Poison}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|yes|yes|no|Surf|20-30|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|279|Pelipper|yes|yes|no|Surf|20-40|all=5%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|422|Shellos|no|no|yes|Surf|20-30|all=30%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|423|Gastrodon|no|no|yes|Surf|20-40|all=1%|type1=Water|type2=Ground}}&lt;br /&gt;
{{catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entry4|129|Magikarp|yes|yes|no|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|129|Magikarp|no|no|yes|Fish Old|3-15|all=100%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=55%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|456|Finneon|yes|yes|yes|Fish Good|10-25|all=45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|130|Gyarados|yes|yes|yes|Fish Super|30-55|all=55%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|457|Lumineon|yes|yes|no|Fish Super|20-50|all=45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|457|Lumineon|no|no|yes|Fish Super|30-55|all=45%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Swarm}}&lt;br /&gt;
{{Catch/entry4|100|Voltorb|yes|yes|no|Swarm|28|all=40%|type1=Electric}}&lt;br /&gt;
{{Catch/entry4|100|Voltorb|no|no|yes|Swarm|28-29|all=40%|type1=Electric}}&lt;br /&gt;
{{Catch/div|water|Special}}&lt;br /&gt;
{{Catch/entry4|132|Ditto|yes|yes|no|Poké Radar|29-30|all=22%|type1=Normal}}&lt;br /&gt;
{{Catch/footer|water}}&lt;br /&gt;
Additionally, wild Pokémon can appear on the [[Honey Tree]].&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
==={{game|Diamond and Pearl|s}}===&lt;br /&gt;
{{trainerheader|water}}&lt;br /&gt;
{{trainerentry|Spr DP Fisherman.png|Fisherman|Miguel|928&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Requires {{m|Surf}}&amp;lt;/small&amp;gt;|2|130|Gyarados|♂|29||130|Gyarados|♂|29|36=ユタカ|37=Yutaka|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Fisherman.png|Fisherman|Luc|832&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Requires {{m|Surf}}&amp;lt;/small&amp;gt;|5|129|Magikarp|♂|26||130|Gyarados|♂|31||129|Magikarp|♂|26||129|Magikarp|♂|26||129|Magikarp|♂|26|36=センジ|37=Senji}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Sailor.png|Sailor|Skyler|992|2|458|Mantyke|♂|27||130|Gyarados|♂|31|36=ケンゴ|37=Kengo}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Guitarist.png|Guitarist|Tony|744|1|404|Luxio|♂|31|36=ジョニー|37=Johnny|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|water|Rematch}}&lt;br /&gt;
{{trainerentry|Spr DP Fisherman.png|Fisherman|Miguel{{tt|*|First rematch}}|1696&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Requires {{m|Surf}}&amp;lt;/small&amp;gt;|2|130|Gyarados|♂|53||130|Gyarados|♂|53|36=ユタカ|37=Yutaka|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Guitarist.png|Guitarist|Tony{{tt|*|First rematch}}|1320|1|404|Luxio|♂|55|36=ジョニー|37=Johnny|38=Vs. Seeker}}&lt;br /&gt;
{{trainerfooter|water}}&lt;br /&gt;
&lt;br /&gt;
==={{game|Platinum}}===&lt;br /&gt;
{{trainerheader|water}}&lt;br /&gt;
{{trainerentry|Spr DP Fisherman.png|Fisherman|Miguel|1056&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Requires {{m|Surf}}&amp;lt;/small&amp;gt;|2|130|Gyarados|♂|33|None|130|Gyarados|♂|33|None|36=ユタカ|37=Yutaka|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Fisherman.png|Fisherman|Luc|992&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Requires {{m|Surf}}&amp;lt;/small&amp;gt;|5|223|Remoraid|♂|29|None|130|Gyarados|♂|31|None|223|Remoraid|♂|29|None|223|Remoraid|♂|30|None|223|Remoraid|♂|31|None|36=センジ|37=Senji}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Sailor.png|Sailor|Skyler|1088|2|458|Mantyke|♂|32|None|067|Machoke|♂|34|None|36=ケンゴ|37=Kengo}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Guitarist.png|Guitarist|Tony|792|2|402|Kricketune|♂|33|None|081|Magnemite||33|None|36=ジョニー|37=Johnny|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|water|Rematch}}&lt;br /&gt;
{{trainerentry|Spr DP Fisherman.png|Fisherman|Miguel{{tt|*|First rematch}}|1632|3|130|Gyarados|♂|51|None|130|Gyarados|♂|51|None|224|Octillery|♂|51|None|36=ユタカ|37=Yutaka|38=Vs. Seeker}}&lt;br /&gt;
{{trainerdiv|water}}&lt;br /&gt;
{{trainerentry|Spr DP Guitarist.png|Guitarist|Tony{{tt|*|First rematch}}|1248|2|402|Kricketune|♂|52|None|082|Magneton||52|None|36=ジョニー|37=Johnny|38=Vs. Seeker}}&lt;br /&gt;
{{trainerfooter|water}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* A policeman in the [[gate]] to Canalave City says &amp;quot;&#039;&#039;Boy... I sure am thirsty...&#039;&#039;&amp;quot; This is a reference to the thirsty guards in the gates on {{rt|5|Kanto}}, {{rtn|6|Kanto}}, {{rtn|7|Kanto}}, and {{rtn|8|Kanto}}, who prevented access to [[Saffron City]] in [[Generation I]] and {{game|FireRed and LeafGreen|s}}.&lt;br /&gt;
* After being defeated, {{tc|Guitarist}} Tony states, &amp;quot;&#039;&#039;Do you hear that? It is my guitar weeping...&#039;&#039;&amp;quot; This may be a reference to the popular song by {{wp|The Beatles}}, &#039;&#039;{{wp|While My Guitar Gently Weeps}}&#039;&#039;.&lt;br /&gt;
** His Japanese name is a reference to {{wp|John Lennon}}.&lt;br /&gt;
* The [[Town Map]] does not show the waterway in the middle of this route. A similar error is made with Canalave City.&lt;br /&gt;
&lt;br /&gt;
{{Sinnoh}}&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Project Routes notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Sinnoh locations|Route 218]]&lt;br /&gt;
[[Category:Routes|Route 218]]&lt;br /&gt;
[[Category:Diamond and Pearl locations|Route 218]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Route 218 (Sinnoh)]]&lt;br /&gt;
[[es:Ruta 218]]&lt;br /&gt;
[[fr:Route 218]]&lt;br /&gt;
[[it:Percorso 218 (Sinnoh)]]&lt;br /&gt;
[[ja:218ばんどうろ (シンオウ地方)]]&lt;br /&gt;
[[zh:２１８号道路（神奥）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9tch&amp;diff=2974346</id>
		<title>Pokétch</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9tch&amp;diff=2974346"/>
		<updated>2019-05-29T09:57:12Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Day-Care Checker */  The man is inside the Day Care, not outside&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Pokétch.png|thumb|250px|The original Pokétch]]&lt;br /&gt;
[[File:Poketch2.png‎|thumb|250px|The latest model of Pokétch]]&lt;br /&gt;
The &#039;&#039;&#039;Pokémon Watch&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケモンウォッチ&#039;&#039;&#039; &#039;&#039;Pokémon Watch&#039;&#039;), or &#039;&#039;&#039;Pokétch&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケッチ&#039;&#039;&#039; &#039;&#039;Pokétch&#039;&#039;) for short, is an electronic device found in [[Sinnoh]]. It was manufactured by the [[Pokétch Company]] and appears to be a watch with a touch screen.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Diamond|Pearl|Platinum}}, the {{player}} obtains it in [[Jubilife City]] after obtaining three [[Coupon]]s from {{tc|Clown}}s. The Pokétch was redesigned for Pokémon Platinum. This revision added another button to the Pokétch; the bottom button has the same function as the Pokétch button in Diamond and Pearl, while the top button cycles backwards through the various apps.&lt;br /&gt;
&lt;br /&gt;
Similar devices are the [[Pokégear]], the [[PokéNav]], and the [[C-Gear]].&lt;br /&gt;
&lt;br /&gt;
==Apps==&lt;br /&gt;
The Pokétch&#039;s functionality comes from the applications, or Pokétch apps, that are installed in it, making it extensible. The Pokétch Company, as well as independent developers, periodically create new apps. The user scrolls through a Pokétch&#039;s apps by tapping a button on the side of its screen.&lt;br /&gt;
&lt;br /&gt;
In Diamond and Pearl, there are 25 available apps, four of which are included with the Pokétch. The rest are not available at the start but can be received at a later time, and a few must be obtained by showing a certain species of Pokémon to another character. Listed in each section below is the [[Pokémon games|in-game]] description of its app, followed by its in-game location and further information about it. In {{v2|Platinum}}, the apps are ordered in the same order as they are on the Pokétch in Diamond and Pearl.&lt;br /&gt;
&lt;br /&gt;
===Digital Watch===&lt;br /&gt;
[[File:Digital Watch App.png|frame|The Digital Watch in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Digital Watch displays the current time. Don&#039;t be late for meetings with your friends!&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Digital Watch&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;デジタルどけい&#039;&#039;&#039; &#039;&#039;Digital Clock&#039;&#039;) is included in Diamond, Pearl, and Platinum with the Pokétch. As its most basic feature, the Pokétch will {{wp|digital clock|digitally}} display the time of day, much like the [[Pokégear]] of [[Johto]] had, only this time running in {{wp|24-hour clock|24-hour format}}, instead of {{wp|12-hour clock|12-hour AM/PM format}}. It runs off the [[Nintendo DS]]&#039;s internal clock, and through this, can keep track of the date of a Pokémon&#039;s capture as well as the time of day. There is also an [[#Analog Watch|analog clock app]], which unlike its digital version is not available from the beginning.&lt;br /&gt;
&lt;br /&gt;
When the screen is touched, it brightens slightly.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Calculator===&lt;br /&gt;
[[File:Calculator App.png|frame|The Calculator in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Calculator can handle up to ten digits. It&#039;s perfect for figuring out math questions that might pop up.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Calculator&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;けいさんき&#039;&#039;&#039; &#039;&#039;Calculator&#039;&#039;) is included in Diamond, Pearl, and Platinum with the Pokétch. It is a basic calculator, with addition, subtraction, multiplication, and division apps usable. When an answer is displayed, if the player has a {{OBP|Pokémon|species}} whose [[Sinnoh Pokédex]] number matches the answer rounded down to the whole number below it, the calculator will play that Pokémon&#039;s [[cry]]. Once the [[National Pokédex]] has been obtained, it will instead use those numberings.&lt;br /&gt;
&lt;br /&gt;
The [[Hearthome Gym]] in Diamond and Pearl asks the player basic math questions to figure out the proper path to the Gym Leader. Getting them wrong results in Trainer battles; most of them wonder why the player didn&#039;t just use the Calculator app to get the right answer.&lt;br /&gt;
&lt;br /&gt;
If the calculator attempts to display an answer that is above ten digits, or one that is invalid (like a dividing by 0 error), it will show question marks.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Memo Pad===&lt;br /&gt;
[[File:Memo Pad App.png|frame|The Memo Pad in {{game|Diamond and Pearl|s}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Memo Pad is useful for jotting down a note, or just doodling. There&#039;s an eraser, too, just in case you make a mistake.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Memo Pad&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;メモようし&#039;&#039;&#039; &#039;&#039;Memo Pad&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from the president of the Pokétch Company after obtaining the {{Badge|Coal}}. It is a notepad for {{pkmn|Trainer}}s to use while out in the field to draw or write (e.g., to jot down notes on the area or on which {{OBP|Pokémon|species}} to get to beat the next Gym), however the memo is erased if the application is changed or the game is turned off.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Pedometer===&lt;br /&gt;
[[File:Pedometer App.png|frame|The Pedometer in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Pedometer keeps a count of the number of steps traveled. It automatically counts steps. Touch the button to reset it.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Pedometer&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ほすうカウンター&#039;&#039;&#039; &#039;&#039;Step Counter&#039;&#039;) is included in Diamond, Pearl, and Platinum with the Pokétch. It is most useful for out-of-battle poison damage, Egg hatching, [[Amity Square]] items fetching, battling with the [[Vs. Seeker]], and [[Great Marsh]] excursions. It is also instrumental in accessing the [[Surf glitch]]. When the counter reaches 99,999, it simply rolls back to 0.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Pokémon List===&lt;br /&gt;
[[File:Pokémon List App.png|frame|The Pokémon List in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Pokémon List indicates the statuses of your [[party|team]]&#039;s {{OBP|Pokémon|species}}. Touch them to hear their [[Cry|cries]]. Their {{stat|HP}} bar is also displayed.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Pokémon List&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケモンリスト&#039;&#039;&#039; &#039;&#039;Pokémon List&#039;&#039;) is included in Diamond, Pearl, and Platinum with the Pokétch. It displays the icons of the Pokémon in the {{pkmn|Trainer}}&#039;s current party and indicates their HP level and whether or not they are holding an [[item]]. Touching the screen resets and updates the display. Note that if a Pokémon is inflicted with a [[status condition]], it has a different cry, and is shown as a gray silhouette. If the Pokémon has fainted, then it will have the grey sprite as if it had a status condition but the Pokémon will not respond when touched. If a Pokémon with less than full health is healed at a [[Pokémon Center]] while the Pokémon List is open, the HP bar on the screen won&#039;t be updated until the player switches to another app and back.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Friendship Checker===&lt;br /&gt;
[[File:Friendship Checker App.png|frame|The Friendship Checker in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Friendship Checker indicates how [[friendship|friendly]] your {{OBP|Pokémon|species}} are to you. Touch the screen. The Pokémon that like you will come closer.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Friendship Checker&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;なつきチェッカー&#039;&#039;&#039; &#039;&#039;Friendship Checker&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a woman in [[Eterna City]]&#039;s [[Pokémon Center]]. It displays the icons of Pokémon in the {{pkmn|Trainer}}&#039;s [[party]] milling about. Touching and holding on a Pokémon will play its [[cry]] and display zero, one, or two large or small hearts around it corresponding to its [[friendship]]. If a Pokémon is at maximum friendship, it will have 2 giant hearts, whereas if it is not friendly with the user, it will move away from the point where the [[Nintendo DS]] screen is being touched.&lt;br /&gt;
&lt;br /&gt;
Double-tapping makes all the Pokémon displayed jump.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background: #{{cute color}}; border: 3px solid #{{cute color dark}}; {{roundy|10px}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytl|5px}}&amp;quot; | Reaction&lt;br /&gt;
! style=&amp;quot;background:#{{cute color light}}; {{roundytr|5px}}&amp;quot; | Friendship&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two large hearts&lt;br /&gt;
| 255&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| Two small hearts&lt;br /&gt;
| 200-254&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| One small heart&lt;br /&gt;
| 150-199&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| No hearts (moves towards stylus)&lt;br /&gt;
| 70-149&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | No hearts (moves away from stylus)&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | 0-69&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Dowsing Machine===&lt;br /&gt;
[[File:Dowsing Machine App.png|frame|The Dowsing Machine in {{game|Diamond and Pearl|s}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Dowsing Machine searches for hidden or obscured [[item]]s. Touch the radar screen. If there is an item nearby, it will respond.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Dowsing Machine&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ダウジングマシン&#039;&#039;&#039; &#039;&#039;Dowsing Machine&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from {{ga|Dawn}}/{{ga|Lucas}} upon arriving at the {{rt|207|Sinnoh}} entrance to [[Mt. Coronet]] (Platinum), or near the {{rt|206|Sinnoh}} junction (Diamond and Pearl). Similarly to the [[Dowsing Machine|Itemfinder]] and [[Dowsing Machine]], it displays a radar field divided into four quadrants corresponding to northwest, southwest, etc. Touching the field sends out a &amp;quot;ping&amp;quot;, and if a hidden item is near where it was touched, a ping will repeatedly show or a dot will blink, indicating where it is relative to the user. The user must then position themselves to be beside the hidden spot (not directly on top of it), then face the item and press &amp;quot;A&amp;quot;. When done properly, the player will find the item.&lt;br /&gt;
&lt;br /&gt;
Some hidden items can only be revealed by touching their exact location on the Dowsing Machine, instead of just nearby it. These include the [[Odd Keystone]] hidden in [[Twinleaf Town]], the [[Suite Key]] at the Hotel Grand Lake, and hidden [[Max Revive]]s.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Berry Searcher===&lt;br /&gt;
[[File:Berry Searcher App.png|frame|The Berry Searcher in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Berry Searcher is a map that shows the locations of {{Berries}}. It indicates the presence of Berries in areas you have already visited.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Berry Searcher&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;きのみサーチャー&#039;&#039;&#039; &#039;&#039;Berry Searcher&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a girl in the [[Berry Master]]&#039;s house in {{rt|208|Sinnoh}} after answering &amp;quot;yes&amp;quot; to her question. It displays a basic [[Sinnoh]] map similar to the [[#Marking Map|Marking Map]] and shows where mature Berry trees are located in any areas already visited. Touching the screen resets and updates the display.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Day-Care Checker===&lt;br /&gt;
[[File:Day Care Checker App.png‎|frame|The Day-Care Checker in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Day-Care Checker shows the {{OBP|Pokémon|species}} you have in the {{pkmn|Day Care}}.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Day-Care Checker&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;そだてやチェッカー&#039;&#039;&#039; &#039;&#039;Day-Care Checker&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a man inside of [[Solaceon Town]]&#039;s Day Care. A result of a collaboration between the Day Care and the Pokétch Company, this app allows {{pkmn|Trainer}}s to see the [[level]]s, [[gender]]s, and species of the {{OBP|Pokémon|species}} (up to two) located in [[Solaceon Town]]&#039;s Day Care, and will show whether or not an Egg has yet been produced. This is unlike previous generations&#039; games, where Trainers attempting to {{pkmn|breeding|breed}} two Pokémon would need to stay near a Day Care to make sure that they got an {{pkmn|Egg}} as soon as it was ready.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon History===&lt;br /&gt;
[[File:Pokémon History App.png|frame|The Pokémon History in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Pokémon History keeps track of the {{OBP|Pokémon|species}} you have obtained. It shows the last kind of Pokémon you obtained.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Pokémon History&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケモンヒストリー&#039;&#039;&#039; &#039;&#039;Pokémon History&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a resident of [[Solaceon Town]]. The app displays icons of the twelve most recent Pokémon {{pkmn2|caught|captured}}, [[evolution|evolved]], [[Pokémon Egg|hatched]], or [[trade]]d into the game. Touching an icon plays the Pokémon&#039;s [[cry]].&lt;br /&gt;
{{-}}&lt;br /&gt;
===Counter===&lt;br /&gt;
[[File:Counter App.png|frame|The Counter in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Counter is used for counting things one at a time. Touch the button and count whatever needs counting.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Counter&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;カウンター&#039;&#039;&#039; &#039;&#039;Counter&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from the [[Veilstone Department Store]] at the counter on the second floor. It counts anything players choose to; upon press of the button on the bottom screen, the number goes up by one. It resets when the player switches Pokétch apps or turns off the game.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Analog Watch===&lt;br /&gt;
[[File:Analog Watch App.png|frame|The Analog Watch in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Analog Watch displays the current time. The short hand indicates the hour, and the long hand shows the minute!&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Analog Watch&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;アナログどけい&#039;&#039;&#039; &#039;&#039;Analog Watch&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a resident of [[Celestic Town]]. It is an alternative to the digital watch, with the same touch-light feature.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Marking Map===&lt;br /&gt;
[[File:Marking Map App.png|frame|The Marking Map in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Marking Map lets you mark intriguing locations. Drag marks to places on the map that you want to remember.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Marking Map&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;マーキングマップ&#039;&#039;&#039; &#039;&#039;Marking Map&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from the president of the Pokétch Company after obtaining three [[Badge|Gym Badges]]. Not to be confused with the more in-depth [[Town Map]], it displays a basic [[Sinnoh]] map similar to the [[#Berry Searcher|Berry Searcher]]&#039;s and allows players to drag and drop different markings (●, ▲, ■, ♥, ★ and ♦) on the map. It also displays the current locations of the two [[roaming Pokémon|Pokémon that travel around Sinnoh]], {{p|Cresselia}} and {{p|Mesprit}}. In {{v2|Platinum}}, the [[legendary birds]] can also be seen after they begin roaming.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Link Searcher===&lt;br /&gt;
[[File:Link Searcher App.png|frame|The Link Searcher in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Link Searcher searches for players on wireless communications. Touch the screen to get a list of people using wireless communications.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Link Searcher&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;つうしんサーチャー&#039;&#039;&#039; &#039;&#039;Communication Searcher&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from the president of the Pokétch Company after obtaining five Gym Badges. Once touched, it lists the number of Pokémon games nearby participating in [[Nintendo DS|DS Wireless Communications]], such as in [[Union Room]], [[The Underground|Underground]], Colosseum, and other links. A wireless signal icon is also displayed in the upper-right corner of the screen. While active, until the menu is opened, the player moves, or something is talked to, DS Wireless Communications are enabled and so the [[Nintendo DS|DS]]&#039;s battery drains somewhat faster. The Link Searcher can only be used while standing still. Moving will cause the Wireless Communications to end.&lt;br /&gt;
&lt;br /&gt;
It is very similar to the [[C-Gear]].&lt;br /&gt;
{{-}}&lt;br /&gt;
===Coin Toss===&lt;br /&gt;
[[File:Coin Toss App.png|frame|The Coin Toss in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Coin Toss flips a coin that comes up heads or tails. If you can&#039;t choose between two choices, a coin toss might be handy.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Coin Toss&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;コイントス&#039;&#039;&#039; &#039;&#039;Coin Toss&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a guest in one of [[Hotel Grand Lake]]&#039;s suites at [[Valor Lakefront]]. When the screen is tapped, a {{p|Magikarp}} coin will be flipped.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Move Tester===&lt;br /&gt;
[[File:Move Tester App.png|frame|The Move Tester in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Move Tester checks how effective moves are by type. Switch the attacker and defender types to see what is effective.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Move Tester&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;わざこうかチェッカー&#039;&#039;&#039; &#039;&#039;Move Effectiveness Checker&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from the president of the Pokétch Company after obtaining the {{Badge|Icicle}}. It allows the user to simulate a [[type]]&#039;s effectiveness in battle by choosing the type of the [[move|attack]] and the type(s) of the target {{OBP|Pokémon|species}}, and displays whether the attack is super effective, regularly effective, not very effective, or ineffective against an opponent and a number of {{wp|exclamation mark}}s corresponding to the damage multiplier - three being &amp;quot;regularly effective&amp;quot;, and each additional or missing mark corresponding to a factor of two.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Calendar===&lt;br /&gt;
[[File:Calendar App.png‎|frame|The Calendar in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;Use the monthly Calendar to make a note of important dates. Touch any date to change its color. Touch it again to change it back.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Calendar&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;カレンダー&#039;&#039;&#039; &#039;&#039;Calendar&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a Pokétch developer by Pokémon Rock in [[Sunyshore City]] after showing him a Pokémon with a [[Nature|serious nature]] ({{m|Rock Climb}} is required). The current day is boxed.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Dot Artist===&lt;br /&gt;
[[File:Dot Artist App.png‎|frame|The Dot Artist in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Dot Artist lets you draw pictures in a mosaic style. Touching the same dot makes its color turn darker.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Dot Artist&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ドットアート&#039;&#039;&#039; &#039;&#039;Dot Art&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a Pokétch developer by Pokémon Rock in [[Sunyshore City]] after showing him a Pokémon with a [[Nature|naïve nature]] ({{m|Rock Climb}} is required). A different type of drawing pad, this one allows the player to change the shades of the screen&#039;s large pixels by touch. There are four different shades each square can be. Upon reception, it contains the text &amp;quot;Touch!&amp;quot;. Unlike the Memo Pad, the image on the Dot Artist is retained even if one switches Apps, leaves an area, or turns off the power.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Roulette===&lt;br /&gt;
[[File:Roulette App.png|frame|The Roulette in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Roulette features a wheel that can be written on. Draw numbers, items, or whatever on the wheel and give it a spin!&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Roulette&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ルーレット&#039;&#039;&#039; &#039;&#039;Roulette&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a Pokétch developer in [[Sunyshore City]] after showing him a Pokémon with a [[Nature|quirky nature]] ({{m|Rock Climb}} is required). Alongside the blank roulette wheel (on which choices may be drawn) are a spin button, a stop button, and a reset button.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Trainer Counter===&lt;br /&gt;
[[File:Trainer Counter App.png‎|frame|The Trainer Counter in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Trainer Counter tracks the performance of the [[Poké Radar]]. It shows how often you have met the same kind of Pokémon in a row.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Trainer Counter&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ポケトレカウンター&#039;&#039;&#039; &#039;&#039;{{Tt|Poké Trace|Poké Radar}} Counter&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from [[Professor Oak]] upon entering [[Pal Park]]. It lists the icons of the top three Pokémon met in a row using the Poké Radar. Touching an icon plays its [[cry]].&lt;br /&gt;
&lt;br /&gt;
If one is currently using the [[Poké Radar]] for chaining Pokémon, the area at the top will display the current chain.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Kitchen Timer===&lt;br /&gt;
[[File:Kitchen Timer App.png‎|frame|The Kitchen Timer in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Kitchen Timer can count down from up to 99 minutes, but not precisely. Set the time with the center button, then start the countdown.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Kitchen Timer&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;キッチンタイマー&#039;&#039;&#039; &#039;&#039;Kitchen Timer&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a girl in [[Pal Park]]&#039;s lobby after showing a {{p|Snorlax}} to her. It is a timer with an alarm. The timer pauses when the DS is closed.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Color Changer===&lt;br /&gt;
[[File:Color Changer App.png‎|frame|The Color Changer in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Color Changer changes the Pokétch&#039;s display color. Slide the switch to select one of eight colors.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Color Changer&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;カラーチェンジャー&#039;&#039;&#039; &#039;&#039;Color Changer&#039;&#039;) is obtained in Diamond, Pearl, and Platinum from a girl in [[Pal Park]]&#039;s lobby after receiving the Kitchen Timer, then returning and showing a {{p|Kecleon}} to her. It changes background LCD color of the Pokétch from the basic green to yellow, orange, red, purple, blue, turquoise, or white.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Matchup Checker===&lt;br /&gt;
[[File:Matchup Checker App.png|frame|The Matchup Checker in {{game|Platinum}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Matchup Checker tests the attraction between Pokémon. The greater the number of hearts, the better likelihood of {{pkmn|Egg}}s.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Matchup Checker&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;あいしょうチェッカー&#039;&#039;&#039; &#039;&#039;Compatibility Checker&#039;&#039;) is obtained in Diamond and Pearl from a [[event Pokémon|Nintendo event]]. The only [[List of other event distributions in Generation IV#Matchup Checker|distribution]] occurred at {{OBP|Pokémon Center|store}} stores in Japan from April 28 to May 13, 2007 to commemorate the release of {{game|Diamond and Pearl|s}} in the United States. It is obtained in Platinum by the entrance of the [[Great Marsh]] after catching five Pokémon in one Safari Game. The app checks the breeding compatibility of [[party]] Pokémon.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Stopwatch===&lt;br /&gt;
[[File:Stopwatch App.png‎|frame|The Stopwatch in {{game|Diamond and Pearl|s}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Stopwatch is used for measuring time precisely. How quickly can you zip through the {{rt|206|Sinnoh|Cycling Road}}?&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Stopwatch&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ストップウォッチ&#039;&#039;&#039; &#039;&#039;Stopwatch&#039;&#039;) can only be obtained in Diamond, Pearl, and Platinum from a [[event Pokémon|Nintendo event]]. However, it was never distributed in any event. It is the reverse of the [[#Kitchen Timer|Kitchen Timer]], counting up instead of down.&lt;br /&gt;
{{-}}&lt;br /&gt;
===Alarm Clock===&lt;br /&gt;
[[File:Alarm Clock App.png‎|frame|The Alarm Clock in {{game|Diamond and Pearl|s}}]]&lt;br /&gt;
&#039;&#039;&amp;quot;The Alarm Clock can be set to sound every 24 hours. Set the alarm time with the lower button. The top button turns it on.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Alarm Clock&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;アラームどけい&#039;&#039;&#039; &#039;&#039;Alarm Clock&#039;&#039;) can only be obtained in Diamond, Pearl, and Platinum from a [[event Pokémon|Nintendo event]]. However, it was never distributed in any event. It sets an alarm to ring at a certain time. The alarm will ring for the entire minute unless it is switched off or another app is open.&lt;br /&gt;
{{-}}&lt;br /&gt;
==In the anime==&lt;br /&gt;
[[File:Dawn Pokétch.png|thumb|250px|Dawn&#039;s Pokétch]]&lt;br /&gt;
The Pokétch debuted in the {{pkmn|anime}} in &#039;&#039;[[DP010|Not on MY Watch Ya Don&#039;t!]]&#039;&#039;, where {{an|Dawn}} obtained one. {{Ash}} and {{ashfr}} also visited the [[Pokétch Company]], where they learned from the [[Pokétch Co. President]] that the Friendship Checker app was in the works.&lt;br /&gt;
&lt;br /&gt;
Since obtaining her Pokétch, Dawn has used it many times throughout the {{series|Diamond &amp;amp; Pearl}}. In this [[canon]], the Pokétch is a popular device among [[Pokémon Coordinator]]s. Besides Dawn, her [[rival]]s [[Zoey]] and {{si|Kenny}} have been shown to own Pokétches as well, and [[Top Coordinator]] {{jo|Marina}} was seen on a [[Magazines in the Pokémon world|magazine]] in an advertisement for the product.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP025|Oh Do You Know The Poffin Plan!]]&#039;&#039;, Dawn was shown using the Kitchen Timer during a [[Poffin]] cooking class taught by [[Forsythia]]. She used the application again in &#039;&#039;[[DP084|Hungry for the Good Life!]]&#039;&#039; while preparing Poffins for {{cat|Dawn&#039;s Pokémon|her Pokémon}} at [[Mr. Backlot]]&#039;s {{si|Pokémon Mansion|mansion}}.&lt;br /&gt;
&lt;br /&gt;
[[File:Zoey poketch.png|thumb|left|250px|Zoey&#039;s Pokétch]]&lt;br /&gt;
In &#039;&#039;[[DP046|A Maze-ing Race!]]&#039;&#039;, Dawn obtained the Coin Toss application for her Pokétch after turning in a coupon at a [[Pokémon Center]]. She used the Coin Toss numerous times during her {{pkmn|journey}} with {{Ash}} and {{an|Brock}}. For instance, in &#039;&#039;[[DP093|Playing The Leveling Field!]]&#039;&#039;, both Dawn and Ash wanted to have a battle with [[Fantina]], and when she said that she would only face off against one of them, Dawn used the app to decide who would get the chance to battle her.&lt;br /&gt;
&lt;br /&gt;
[[Rosebay]], a character who appeared in &#039;&#039;[[DP013|A Staravia Is Born!]]&#039;&#039;, owns a Pokétch. In &#039;&#039;[[DP101|Barry&#039;s Busting Out All Over!]]&#039;&#039;, {{an|Barry}} was revealed to own the newest model of the Pokétch. In &#039;&#039;[[DP124|To Thine Own Pokémon Be True!]]&#039;&#039;, the referees for the [[Pokémon Ping Pong Tournament]] in [[Sandalstraw Town]] used the Coin Toss app to decide which team would serve first.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[BW086|Piplup, Pansage, and a Meeting of the Times!]]&#039;&#039;, Dawn was shown using a [[Xtransceiver]] in place of her Pokétch.&lt;br /&gt;
&lt;br /&gt;
===Gallery===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background: #{{pearl color}}; border: 3px solid #{{diamond color}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#{{pearl color light}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Friendship Checker&lt;br /&gt;
! Kitchen Timer&lt;br /&gt;
! Coin Toss&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | The newest model&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| [[File:Friendship Checker App anime.png|x170px]]&lt;br /&gt;
| [[File:Kitchen Timer App anime.png|x170px]]&lt;br /&gt;
| [[File:Coin Toss App anime.png|x170px]]&lt;br /&gt;
| [[File:Barry Poketch.png|x170px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Pokétch Adventures.png|thumb|250px|A Pokétch in Pokémon Adventures]]&lt;br /&gt;
===In the Pokémon Adventures manga===&lt;br /&gt;
In the [[Pokémon Adventures]] {{pkmn|manga}}, the Pokétch is used by three main characters, {{adv|Diamond}}, {{adv|Pearl}}, and {{adv|Platinum}}. In &#039;&#039;[[PS338|Stagestruck Starly]]&#039;&#039;, Diamond and Pearl receive Pokétches, together with [[starter Pokémon]] and [[Pokédex]]es, from Platinum for their {{pkmn|journey}}, as she mistakes them for [[Paka and Uji|her bodyguards]].&lt;br /&gt;
&lt;br /&gt;
The trio&#039;s Pokétches were manufactured specifically for Platinum&#039;s journey, and are, by request of [[Professor Rowan]], each colored differently so that they wouldn&#039;t get mixed up by their users. Diamond&#039;s Pokétch is blue, Pearl&#039;s is orange, and Platinum&#039;s is red. The Pokétches have functions similar to those in other media, and are used by the main characters a few times. For example, Diamond uses the [[Dowsing Machine]] app to track down a {{pkmn2|wild}} {{p|Lickilicky}}&#039;s hiding place and traces its movements with the pedometer in order to defeat it in &#039;&#039;[[PS391|Luring in a Lickilicky]]&#039;&#039;. The trio later receive the updated models of the Pokétch in the {{chap|Platinum}}.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Officially, as stated by the owner of the [[Pokétch Company]], there are two models of the Pokétch: a blue one for boys and a pink one for girls. However, the official art and sprites of {{ga|Barry}} show him wearing an orange Pokétch. His {{an|Barry|anime}} and {{adv|Pearl|manga}} counterparts also wear the orange Pokétch in its Platinum design.&lt;br /&gt;
** The color of his Pokémon Adventures counterpart&#039;s Pokétch is explained, however. Professor Rowan asked the [[Pokétch Co. President]] to produce an orange one so that the three Pokétches wouldn&#039;t get mixed up by {{adv|Platinum}} and her [[Paka and Uji|bodyguards]] who were originally going to receive the Pokédexes and Pokétches instead of {{adv|Diamond}} and {{adv|Pearl}}.&lt;br /&gt;
* For &#039;&#039;[[DP010|Not on MY Watch Ya Don&#039;t!]]&#039;&#039;, [[Professor Oak&#039;s Big Pokémon Encyclopedia]] is about the Pokétch. He writes this {{wp|senryū}} about it: 「ポケッチに　まだまだふえる　アプリかな」 &#039;&#039;&amp;quot;For the Pokétch, an ever-growing Application.&amp;quot;&#039;&#039;&lt;br /&gt;
* The father of the company&#039;s President remarks on the Pokétch: &amp;quot;&#039;&#039;Pokémon Watch! That&#039;s Pokétch for short. Say it the long way and... What does Pokémon stand for again?&#039;&#039;&amp;quot; This is the first time that the fact that [[Pokémon]] is short for Pocket Monsters is referenced in the English translation. Essentially, this would also mean that the &#039;&#039;real&#039;&#039;, long way to say &amp;quot;Pokétch&amp;quot; would be to say Pocket Monster Watch, which the Japanese games themselves explicitly state.&lt;br /&gt;
* The games show the Pokétch with a traditional LCD, reminiscent of the [[Game Boy]], while the anime switches between an LCD display and a full-color LED display.&lt;br /&gt;
* In {{game|Platinum}}, [[Jubilife TV]] has a program starring [[Ketch Appy]], a detective who uses the Pokétch to solve crimes and gives tips for using the Pokétch.&lt;br /&gt;
* In function, a very close real-life analog to the Pokétch is the {{wp|Timex Datalink|Timex Datalink USB}} watch, more accurately described as a programmable wrist computer, used by astronauts and cosmonauts in space.&lt;br /&gt;
* The English, German, and Spanish names of the Trainer Counter is mistranslated: in Japanese, it is known as the ポケトレカウンター&#039;&#039;Pokétore Counter&#039;&#039;, referring to the [[Poké Radar|Poké Trace]], not to a Pokémon Trainer.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{|&lt;br /&gt;
|- style=&amp;quot;vertical-align:top&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
&#039;&#039;Pokétch&#039;&#039;&lt;br /&gt;
{{langtable|color={{pearl color}}|bordercolor={{diamond color}}&lt;br /&gt;
|zh_yue=寶可錶 &#039;&#039;{{tt|Poké Bīu|Poké Watch}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;小精靈錶 &#039;&#039;{{tt|Síujīnglìhng Bīu|Pokémon Watch}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=寶可錶 / 宝可表 &#039;&#039;{{tt|Poké Biǎo|Poké Watch}}&#039;&#039; {{tt|*|Games, Anime (Mainland China, since Sun and Moon)}}&amp;lt;br&amp;gt;神奇寶貝錶 &#039;&#039;{{tt|Shénqíbǎobèi Biǎo|Pokémon Watch}}&#039;&#039; {{tt|*|Taiwan (Pre-Gen VII media)}}&amp;lt;br&amp;gt;精灵宝可梦表 &#039;&#039;{{tt|Jīnglíng Pokémon Biǎo|Pocket Monster Watch}}&#039;&#039; {{tt|*|Mainland China (Pre-Gen VII media)}}&lt;br /&gt;
|da=Pokétch&lt;br /&gt;
|nl=Pokétch&lt;br /&gt;
|fi=Pokétch&lt;br /&gt;
|fr_eu=Pokémontre&lt;br /&gt;
|de=Pokétch&lt;br /&gt;
|it=PokéKron&lt;br /&gt;
|ko=포켓치 &#039;&#039;Pokétch&#039;&#039;&lt;br /&gt;
|no=Pokétch&lt;br /&gt;
|pl=Pokétch&lt;br /&gt;
|pt_br=Pokélógio&lt;br /&gt;
|ru=Покетч &#039;&#039;Pokétch&#039;&#039;&lt;br /&gt;
|es_eu=Poké-reloj&lt;br /&gt;
|sv=Pokétch&lt;br /&gt;
|vi=Đồng hồ Pokémon&lt;br /&gt;
}}&lt;br /&gt;
|&lt;br /&gt;
&#039;&#039;Pokémon Watch&#039;&#039;&lt;br /&gt;
{{langtable|color={{pearl color}}|bordercolor={{diamond color}}&lt;br /&gt;
|zh_yue=寶可夢手錶 / 宝可梦手表 &#039;&#039;{{tt|Pokémon Sáubīu|Pokémon Wristwatch}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;寵物小精靈錶 &#039;&#039;{{tt|Chúngmaht Síujīnglìhng Bīu|Pokémon Watch}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=寶可夢手錶 / 宝可梦手表 &#039;&#039;{{tt|Pokémon Shǒubiǎo|Pokémon Wristwatch}}&#039;&#039; {{tt|*|Games, Anime (Mainland China, since Sun and Moon)}}&amp;lt;br&amp;gt;神奇寶貝錶 &#039;&#039;{{tt|Shénqí Bǎobèi Biǎo|Pokémon Watch}}&#039;&#039; {{tt|*|Taiwan (Pre-Gen VII Media)}}&amp;lt;br&amp;gt;宝可梦表 &#039;&#039;{{tt|Pokémon Biǎo|Pokémon Watch}}&#039;&#039; {{tt|*|Mainland China (Pre-Gen VII Media)}}&lt;br /&gt;
|fr_eu=Montre Pokémon&lt;br /&gt;
|de=Pokémon Chronometer&lt;br /&gt;
|it=PokéKron&lt;br /&gt;
|ko=포켓몬 워치 &#039;&#039;Pokémon Watch&#039;&#039;&lt;br /&gt;
|es_eu=Poké-reloj&lt;br /&gt;
|vi=Đồng hồ Pokémon&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Specific apps===&lt;br /&gt;
{| class=&amp;quot;sortable roundy&amp;quot; style=&amp;quot;margin:auto; width:auto; text-align:center; background:#{{pearl color}}; border: 3px solid #{{diamond color}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!English&lt;br /&gt;
!French&lt;br /&gt;
!German&lt;br /&gt;
!Italian&lt;br /&gt;
!Korean&lt;br /&gt;
!Spanish&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Digital Watch&lt;br /&gt;
|Montre Digitale&lt;br /&gt;
|Digitaluhr&lt;br /&gt;
|Orologio Digitale&lt;br /&gt;
|디지털시계 &#039;&#039;Digital Sigye&#039;&#039;&lt;br /&gt;
|Reloj digital&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Calculator&lt;br /&gt;
|Calculatrice&lt;br /&gt;
|Taschenrechner&lt;br /&gt;
|Calcolatrice&lt;br /&gt;
|계산기 &#039;&#039;Gyesangi&#039;&#039;&lt;br /&gt;
|Calculadora&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Memo Pad&lt;br /&gt;
|Carnet&lt;br /&gt;
|Notizblock&lt;br /&gt;
|Annotazioni&lt;br /&gt;
|메모용지 &#039;&#039;Memo Yongji&#039;&#039;&lt;br /&gt;
|Bloc&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Pedometer&lt;br /&gt;
|Podomètre&lt;br /&gt;
|Schrittzähler&lt;br /&gt;
|Contapassi&lt;br /&gt;
|만보기 &#039;&#039;Manbogi&#039;&#039;&lt;br /&gt;
|Podómetro&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Pokémon List&lt;br /&gt;
|Equipe Pokémon&lt;br /&gt;
|Pokémon-Liste&lt;br /&gt;
|Lista Pokémon&lt;br /&gt;
|포켓몬리스트 &#039;&#039;Pokémon List&#039;&#039;&lt;br /&gt;
|Lista Pokémon&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Friendship Checker&lt;br /&gt;
|Contrôleur d&#039;Amitié&lt;br /&gt;
|Freundschaftsstatus&lt;br /&gt;
|Verifica Amicizia&lt;br /&gt;
|친밀도체커 &#039;&#039;Chinmildo Checker&#039;&#039;&lt;br /&gt;
|Indicador de amistad&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Dowsing Machine&lt;br /&gt;
|Radar à Objet&lt;br /&gt;
|Itemradar&lt;br /&gt;
|Ricerca Strumenti&lt;br /&gt;
|다우징머신 &#039;&#039;Dowsing Machine&#039;&#039;&lt;br /&gt;
|Zahorí&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Berry Searcher&lt;br /&gt;
|Contrôleur de Baie&lt;br /&gt;
|Beerensucher&lt;br /&gt;
|Ricerca Bacche&lt;br /&gt;
|나무열매탐색기 &#039;&#039;Namuyeolmae Tamsaekgi&#039;&#039;&lt;br /&gt;
|Buscabayas&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Day Care Checker&lt;br /&gt;
|Contrôleur Pension&lt;br /&gt;
|Pension-Prüfer&lt;br /&gt;
|Verifica Crescita&lt;br /&gt;
|키우미집체커 &#039;&#039;Kiumijip Checker&#039;&#039;&lt;br /&gt;
|Indicador Guardería&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Pokémon History&lt;br /&gt;
|Historique Pokémon&lt;br /&gt;
|Pokémon-Historie&lt;br /&gt;
|Storia Pokémon&lt;br /&gt;
|포켓몬히스토리 &#039;&#039;Pokémon History&#039;&#039;&lt;br /&gt;
|Historial Pokémon&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Counter&lt;br /&gt;
|Compteur&lt;br /&gt;
|Zähler&lt;br /&gt;
|Contatore&lt;br /&gt;
|카운터 &#039;&#039;Counter&#039;&#039;&lt;br /&gt;
|Contador&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Analog Watch&lt;br /&gt;
|Montre Analogique&lt;br /&gt;
|Analoguhr&lt;br /&gt;
|Orologio Analogico&lt;br /&gt;
|아날로그시계 &#039;&#039;Analog Sigye&#039;&#039;&lt;br /&gt;
|Reloj analógico&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Marking Map&lt;br /&gt;
|Carte Repères&lt;br /&gt;
|Landkarte&lt;br /&gt;
|Segna Mappa&lt;br /&gt;
|마킹맵 &#039;&#039;Marking Map&#039;&#039;&lt;br /&gt;
|Marcamapa&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Link Searcher&lt;br /&gt;
|Cherche-Connexion&lt;br /&gt;
|Linkfinder&lt;br /&gt;
|Ricerca Collegamenti&lt;br /&gt;
|통신탐색기 &#039;&#039;Tongsintam Saekgi&#039;&#039;&lt;br /&gt;
|Buscaconexión&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Coin Toss&lt;br /&gt;
|Pile ou Face&lt;br /&gt;
|Münzwurf&lt;br /&gt;
|Testa o Croce&lt;br /&gt;
|동전던지기 &#039;&#039;Dongjeondeonjigi&#039;&#039;&lt;br /&gt;
|Lanzamonedas&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Move Tester&lt;br /&gt;
|Testeur de Capacités&lt;br /&gt;
|Attackentester&lt;br /&gt;
|Verifica Mosse&lt;br /&gt;
|기술효과체커 &#039;&#039;Gisulhyogwa Checker&#039;&#039;&lt;br /&gt;
|Indicador de movimientos&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Calendar&lt;br /&gt;
|Calendrier&lt;br /&gt;
|Kalender&lt;br /&gt;
|Calendario&lt;br /&gt;
|캘린더 &#039;&#039;Calendar&#039;&#039;&lt;br /&gt;
|Calendario&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Dot Artist&lt;br /&gt;
|Dessinateur&lt;br /&gt;
|Zeichenbrett&lt;br /&gt;
|Puntinismo&lt;br /&gt;
|도트아트 &#039;&#039;Dot Art&#039;&#039;&lt;br /&gt;
|Artista puntos&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Roulette&lt;br /&gt;
|Roulette&lt;br /&gt;
|Roulette&lt;br /&gt;
|Roulette&lt;br /&gt;
|룰렛 &#039;&#039;Roulette&#039;&#039;&lt;br /&gt;
|Ruleta&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Trainer Counter&lt;br /&gt;
|Compteur Poké Radar&lt;br /&gt;
|Trainer-Zähler&lt;br /&gt;
|ContaPokémon&lt;br /&gt;
|포켓트레카운터 &#039;&#039;Poké-Tra Counter&#039;&#039;&lt;br /&gt;
|Contador de entrenadores&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Kitchen Timer&lt;br /&gt;
|Minuteur&lt;br /&gt;
|Eieruhr&lt;br /&gt;
|Timer da Cucina&lt;br /&gt;
|키친타이머 &#039;&#039;Kitchen Timer&#039;&#039;&lt;br /&gt;
|Temporizador&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Color Changer&lt;br /&gt;
|Changeur de Couleur&lt;br /&gt;
|Farbwechsler&lt;br /&gt;
|Modifica Colore&lt;br /&gt;
|컬러체인저 &#039;&#039;Color Changer&#039;&#039;&lt;br /&gt;
|Cambiacolor&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Matchup Checker&lt;br /&gt;
|Testeur d&#039;Affinités&lt;br /&gt;
|Vergleich&lt;br /&gt;
|Verifica Sintonia&lt;br /&gt;
|상성체커 &#039;&#039;Sangseong Checker&#039;&#039;&lt;br /&gt;
|Indicador de atracción&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Stopwatch&lt;br /&gt;
|Chronomètre&lt;br /&gt;
|Stoppuhr&lt;br /&gt;
|Cronometro&lt;br /&gt;
|스톱워치 &#039;&#039;Stopwatch&#039;&#039;&lt;br /&gt;
|Cronómetro&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|Alarm Clock&lt;br /&gt;
|Réveil&lt;br /&gt;
|Wecker&lt;br /&gt;
|Orologio a Sveglia&lt;br /&gt;
|알람시계 &#039;&#039;Alarm Sigye&#039;&#039;&lt;br /&gt;
|Despertador&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Menu}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project ItemDex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Map equipment]]&lt;br /&gt;
[[Category:Pokémon Diamond and Pearl]]&lt;br /&gt;
[[Category:Pokémon Platinum]]&lt;br /&gt;
[[Category:Equipment]]&lt;br /&gt;
&lt;br /&gt;
[[de:Pokétch]]&lt;br /&gt;
[[es:Poké-reloj]]&lt;br /&gt;
[[fr:Pokémontre]]&lt;br /&gt;
[[it:PokéKron]]&lt;br /&gt;
[[ja:ポケッチ]]&lt;br /&gt;
[[zh:寶可錶]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pseudorandom_number_generation&amp;diff=2929458</id>
		<title>Pseudorandom number generation</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pseudorandom_number_generation&amp;diff=2929458"/>
		<updated>2019-02-19T15:54:51Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Mersenne Twister (MTRNG) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;pseudorandom number generator&#039;&#039;&#039; is an electronic device or software&#039;s attempt at creating a random number. Just as rolling a die is not &#039;random&#039; (being determined by factors such as force and angle of the throw, as well as friction), computers cannot be truly &#039;random&#039;. In order to generate &#039;random&#039; events in games and other forms of software, they must get as close to looking it as they can. There are limitless ways of accomplishing this. The degree of apparent randomness depends on the ability to predict the next result of the algorithm.&lt;br /&gt;
&lt;br /&gt;
==Mechanics==&lt;br /&gt;
First, the generator must have a &#039;&#039;seed&#039;&#039;, a number to start with. This number is usually a date and time referring to the first time that the algorithm is called during the usage of the device or the software&#039;s active session. Seeds are also occasionally derived from user input, as it is highly improbable to do the exact same thing more than once, making it appear &#039;random&#039;.&lt;br /&gt;
&lt;br /&gt;
This number is put through a complex algorithm, and the result is formatted according to the needed context.  The raw result then becomes the seed for any subsequent uses of the random generator.  Therefore, the nature of the generator is a recursive algorithm.&lt;br /&gt;
&lt;br /&gt;
==In the Pokémon games==&lt;br /&gt;
===Linear Congruential random number generator (LCRNG)===&lt;br /&gt;
[[Pokémon Stadium (English)|Pokémon Stadium]] and games in [[Generation III]] and [[Generation IV]] use a 32-bit LCRNG.&lt;br /&gt;
&lt;br /&gt;
Below, &#039;&#039;seed&#039;&#039; is a number between 0 and 0xFFFFFFFF. If the generator has been called previously, &#039;&#039;seed&#039;&#039; is the &#039;&#039;result&#039;&#039; value from the previous call to the generator.&lt;br /&gt;
&lt;br /&gt;
*Pokémon Stadium: &amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x41C64E6D * &#039;&#039;seed&#039;&#039; + 0x0000303B&amp;lt;/code&amp;gt;&lt;br /&gt;
** This equation is run several times depending on the N64&#039;s Count register, then {{wp|exclusive or|XOR}}&#039;d with another pseudorandom value&lt;br /&gt;
*Pokémon Colosseum: &amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x000343FD * &#039;&#039;seed&#039;&#039; + 0x00269EC3&amp;lt;/code&amp;gt;&lt;br /&gt;
*[[Game Boy Advance|GBA]] and [[Nintendo DS|DS]] games: &amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x41C64E6D * &#039;&#039;seed&#039;&#039; + 0x00006073&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In [[Generation III]] and [[Generation IV]], this algorithm is used for the following:&lt;br /&gt;
* Encrypting Pokémon data in the [[Save|save file]]&lt;br /&gt;
* Generating the [[personality value]] of a [[Wild Pokémon|wild encountered Pokémon]]&lt;br /&gt;
* Generating the [[individual values]] of a wild encountered Pokémon in [[Generation III]] and [[Generation IV]]&lt;br /&gt;
* Determining the species of a wild Pokémon&lt;br /&gt;
* Determining the [[Pokémon Lottery Corner]] lucky number&lt;br /&gt;
* Determining if an {{pkmn|Egg}} will be available at the {{pkmn|Day Care}}&lt;br /&gt;
&lt;br /&gt;
In [[Generation V]] and [[Generation VI]], the games instead use a 64-bit LCRNG as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x5D588B656C078965 * &#039;&#039;seed&#039;&#039; + 0x0000000000269EC3&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Alternative pseudorandom number generator (ARNG)===&lt;br /&gt;
The [[Generation IV]] games also use a different algorithm to alternate, reroll, or modify a previously randomly generated value.  The algorithm works in the same nature; however, the equation changes to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x6C078965 * &#039;&#039;seed&#039;&#039; + 0x00000001&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This algorithm is used for the following:&lt;br /&gt;
* Restrictions on Shininess for the [[Pokémon Ranger (game)|Pokémon Ranger]] {{p|Manaphy}} Egg and Type 1 [[Wonder Card]] Pokémon (currently all released with variable [[Nature]]s)&lt;br /&gt;
* Determining the species of a [[Pokémon outbreak|Pokémon swarm]]&lt;br /&gt;
* Determining the Pokémon in the [[Great Marsh]]&lt;br /&gt;
* Determining the Pokémon in the [[Trophy Garden]]&lt;br /&gt;
&lt;br /&gt;
===Mersenne Twister (MTRNG)===&lt;br /&gt;
Found in [[Generation IV]] and later, the Mersenne Twister is another type of random number generator that produces 624 random numbers at once. These random numbers are then stored and used when needed. When all 624 numbers are used, another set is generated.&lt;br /&gt;
&lt;br /&gt;
This algorithm is used for the following:&lt;br /&gt;
* TID and SID in [[Generation IV]]&lt;br /&gt;
* Egg PIDs in Generation IV&lt;br /&gt;
* Friendship change calculations&lt;br /&gt;
* Sprite animations in [[Generation V]]&lt;br /&gt;
* Individual values in Generation V&lt;br /&gt;
* AI move decisions in Generation V&lt;br /&gt;
&lt;br /&gt;
==RNG abuse==&lt;br /&gt;
&#039;&#039;&#039;RNG abuse&#039;&#039;&#039;, also referred to as &#039;&#039;&#039;RNG manipulation,&#039;&#039;&#039; is a procedure that manipulates the pseudorandom number generators in the main series games to obtain a desired Pokémon. It is commonly used to obtain [[Shiny Pokémon]], Pokémon with high [[individual values]], Pokémon with a specific set of individual values that yield a particular {{m|Hidden Power}} output (regarding [[Type]] and/or move [[Power]]), or Pokémon with certain Natures.&lt;br /&gt;
&lt;br /&gt;
In games where the initial seed (on startup) is predictable, the subsequent &amp;quot;random&amp;quot; numbers are predictable as well. {{game|Emerald}}&#039;s initial seed is always 0. The [[Generation IV]] games use the [[Nintendo DS]]&#039;s [[Days of the week|date]], [[time]], and delay between starting the game and pressing &amp;quot;Continue&amp;quot; to generate the initial seed. [[Generation V]] games use the Nintendo DS&#039;s date, time, keys currently pressed, and other entropy data to create a seed moments before the Nintendo logo appears.&lt;br /&gt;
&lt;br /&gt;
The random number generator is used to determine a Pokémon&#039;s [[personality value]] and individual values when it is encountered or received as an {{pkmn|Egg}} or a {{pkmn2|gift}}. By searching for initial seeds that satisfy the characteristics required, the player can then hit the target seed and advance &#039;frames&#039; to receive their target characteristics. There are several methods used to influence a Pokémon&#039;s characteristics — for instance, a bred Pokémon and a stationary wild Pokémon&#039;s characteristics are generated through different methods.&lt;br /&gt;
&lt;br /&gt;
In [[Generation III]] and Generation IV, there are some limitations. As a player&#039;s [[Trainer ID|Trainer ID and Secret ID]] numbers determine a Pokémon&#039;s shininess, Shiny Pokémon generated through certain methods can only have certain individual values. Due to [[Wonder Card]] gifts using a timer register to create personality values, it is not possible to manipulate a gift&#039;s Nature. In Generation V, this is no longer the case as the individual values and personality values are determined from two different RNGs.&lt;br /&gt;
&lt;br /&gt;
In the Pokémon fandom, RNG abuse is slightly controversial. Proponents note that RNG abuse does not require a third-party device and that the Pokémon obtained through RNG abuse can be obtained through normal gameplay. In addition, Pokémon obtained through RNG abuse have been used at the {{DL|Play! Pokémon|Video Game Championships}}, an official tournament. They also say that RNG abuse is very complicated, and not as simple as typing a cheat code. However, some players believe that RNG abuse is cheating, as the action of picking a Pokémon&#039;s characteristics is similar to using a [[cheating]] device. Opponents of RNG abuse claim that it gives those who can RNG an unfair advantage, however the proponents say that with RNG everyone can have the best stats, and therefore no one will have an unfair advantage by catching a Pokémon that happens to be better.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [[wp:Pseudorandom number generator|Pseudorandom number generator on Wikipedia]]&lt;br /&gt;
* [[wp:Mersenne twister|Mersenne Twister on Wikipedia]]&lt;br /&gt;
* [http://www.smogon.com/ingame/rng/emerald_rng_intro Smogon&#039;s explanation and guide on Pokémon Emerald RNG Abuse]&lt;br /&gt;
* [http://smogon.com/ingame/rng/dpphgss_rng_intro Smogon&#039;s explanation and guide on Generation IV RNG Abuse]&lt;br /&gt;
* [http://smogon.com/ingame/rng/bw_rng_intro Smogon&#039;s explanation and guide on Generation V RNG Abuse]&lt;br /&gt;
&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
&lt;br /&gt;
[[de:Random Number Generator]]&lt;br /&gt;
[[es:Generación pseudoaleatoria de números]]&lt;br /&gt;
[[fr:RNG]]&lt;br /&gt;
[[it:Generazione di numeri pseudo-casuali in Pokémon]]&lt;br /&gt;
[[ja:乱数ポケモン]]&lt;br /&gt;
[[zh:伪随机数发生器]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pseudorandom_number_generation&amp;diff=2929457</id>
		<title>Pseudorandom number generation</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Pseudorandom_number_generation&amp;diff=2929457"/>
		<updated>2019-02-19T15:54:26Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Mersenne Twister (MTRNG) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;pseudorandom number generator&#039;&#039;&#039; is an electronic device or software&#039;s attempt at creating a random number. Just as rolling a die is not &#039;random&#039; (being determined by factors such as force and angle of the throw, as well as friction), computers cannot be truly &#039;random&#039;. In order to generate &#039;random&#039; events in games and other forms of software, they must get as close to looking it as they can. There are limitless ways of accomplishing this. The degree of apparent randomness depends on the ability to predict the next result of the algorithm.&lt;br /&gt;
&lt;br /&gt;
==Mechanics==&lt;br /&gt;
First, the generator must have a &#039;&#039;seed&#039;&#039;, a number to start with. This number is usually a date and time referring to the first time that the algorithm is called during the usage of the device or the software&#039;s active session. Seeds are also occasionally derived from user input, as it is highly improbable to do the exact same thing more than once, making it appear &#039;random&#039;.&lt;br /&gt;
&lt;br /&gt;
This number is put through a complex algorithm, and the result is formatted according to the needed context.  The raw result then becomes the seed for any subsequent uses of the random generator.  Therefore, the nature of the generator is a recursive algorithm.&lt;br /&gt;
&lt;br /&gt;
==In the Pokémon games==&lt;br /&gt;
===Linear Congruential random number generator (LCRNG)===&lt;br /&gt;
[[Pokémon Stadium (English)|Pokémon Stadium]] and games in [[Generation III]] and [[Generation IV]] use a 32-bit LCRNG.&lt;br /&gt;
&lt;br /&gt;
Below, &#039;&#039;seed&#039;&#039; is a number between 0 and 0xFFFFFFFF. If the generator has been called previously, &#039;&#039;seed&#039;&#039; is the &#039;&#039;result&#039;&#039; value from the previous call to the generator.&lt;br /&gt;
&lt;br /&gt;
*Pokémon Stadium: &amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x41C64E6D * &#039;&#039;seed&#039;&#039; + 0x0000303B&amp;lt;/code&amp;gt;&lt;br /&gt;
** This equation is run several times depending on the N64&#039;s Count register, then {{wp|exclusive or|XOR}}&#039;d with another pseudorandom value&lt;br /&gt;
*Pokémon Colosseum: &amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x000343FD * &#039;&#039;seed&#039;&#039; + 0x00269EC3&amp;lt;/code&amp;gt;&lt;br /&gt;
*[[Game Boy Advance|GBA]] and [[Nintendo DS|DS]] games: &amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x41C64E6D * &#039;&#039;seed&#039;&#039; + 0x00006073&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In [[Generation III]] and [[Generation IV]], this algorithm is used for the following:&lt;br /&gt;
* Encrypting Pokémon data in the [[Save|save file]]&lt;br /&gt;
* Generating the [[personality value]] of a [[Wild Pokémon|wild encountered Pokémon]]&lt;br /&gt;
* Generating the [[individual values]] of a wild encountered Pokémon in [[Generation III]] and [[Generation IV]]&lt;br /&gt;
* Determining the species of a wild Pokémon&lt;br /&gt;
* Determining the [[Pokémon Lottery Corner]] lucky number&lt;br /&gt;
* Determining if an {{pkmn|Egg}} will be available at the {{pkmn|Day Care}}&lt;br /&gt;
&lt;br /&gt;
In [[Generation V]] and [[Generation VI]], the games instead use a 64-bit LCRNG as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x5D588B656C078965 * &#039;&#039;seed&#039;&#039; + 0x0000000000269EC3&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Alternative pseudorandom number generator (ARNG)===&lt;br /&gt;
The [[Generation IV]] games also use a different algorithm to alternate, reroll, or modify a previously randomly generated value.  The algorithm works in the same nature; however, the equation changes to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;result&#039;&#039; = 0x6C078965 * &#039;&#039;seed&#039;&#039; + 0x00000001&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This algorithm is used for the following:&lt;br /&gt;
* Restrictions on Shininess for the [[Pokémon Ranger (game)|Pokémon Ranger]] {{p|Manaphy}} Egg and Type 1 [[Wonder Card]] Pokémon (currently all released with variable [[Nature]]s)&lt;br /&gt;
* Determining the species of a [[Pokémon outbreak|Pokémon swarm]]&lt;br /&gt;
* Determining the Pokémon in the [[Great Marsh]]&lt;br /&gt;
* Determining the Pokémon in the [[Trophy Garden]]&lt;br /&gt;
&lt;br /&gt;
===Mersenne Twister (MTRNG)===&lt;br /&gt;
Found in [[Generation IV]] and later, the Mersenne Twister is another type of random number generator that produces 624 random numbers at once. These random numbers are then stored and used when needed. When all 624 numbers are used, another set is generated.&lt;br /&gt;
&lt;br /&gt;
This algorithm is used for the following:&lt;br /&gt;
* TID and SID in [[Generation IV]]&lt;br /&gt;
* Egg PIDs in [[Generation IV]]&lt;br /&gt;
* Friendship change calculations&lt;br /&gt;
* Sprite animations in [[Generation V]]&lt;br /&gt;
* Individual values in Generation V&lt;br /&gt;
* AI move decisions in Generation V&lt;br /&gt;
&lt;br /&gt;
==RNG abuse==&lt;br /&gt;
&#039;&#039;&#039;RNG abuse&#039;&#039;&#039;, also referred to as &#039;&#039;&#039;RNG manipulation,&#039;&#039;&#039; is a procedure that manipulates the pseudorandom number generators in the main series games to obtain a desired Pokémon. It is commonly used to obtain [[Shiny Pokémon]], Pokémon with high [[individual values]], Pokémon with a specific set of individual values that yield a particular {{m|Hidden Power}} output (regarding [[Type]] and/or move [[Power]]), or Pokémon with certain Natures.&lt;br /&gt;
&lt;br /&gt;
In games where the initial seed (on startup) is predictable, the subsequent &amp;quot;random&amp;quot; numbers are predictable as well. {{game|Emerald}}&#039;s initial seed is always 0. The [[Generation IV]] games use the [[Nintendo DS]]&#039;s [[Days of the week|date]], [[time]], and delay between starting the game and pressing &amp;quot;Continue&amp;quot; to generate the initial seed. [[Generation V]] games use the Nintendo DS&#039;s date, time, keys currently pressed, and other entropy data to create a seed moments before the Nintendo logo appears.&lt;br /&gt;
&lt;br /&gt;
The random number generator is used to determine a Pokémon&#039;s [[personality value]] and individual values when it is encountered or received as an {{pkmn|Egg}} or a {{pkmn2|gift}}. By searching for initial seeds that satisfy the characteristics required, the player can then hit the target seed and advance &#039;frames&#039; to receive their target characteristics. There are several methods used to influence a Pokémon&#039;s characteristics — for instance, a bred Pokémon and a stationary wild Pokémon&#039;s characteristics are generated through different methods.&lt;br /&gt;
&lt;br /&gt;
In [[Generation III]] and Generation IV, there are some limitations. As a player&#039;s [[Trainer ID|Trainer ID and Secret ID]] numbers determine a Pokémon&#039;s shininess, Shiny Pokémon generated through certain methods can only have certain individual values. Due to [[Wonder Card]] gifts using a timer register to create personality values, it is not possible to manipulate a gift&#039;s Nature. In Generation V, this is no longer the case as the individual values and personality values are determined from two different RNGs.&lt;br /&gt;
&lt;br /&gt;
In the Pokémon fandom, RNG abuse is slightly controversial. Proponents note that RNG abuse does not require a third-party device and that the Pokémon obtained through RNG abuse can be obtained through normal gameplay. In addition, Pokémon obtained through RNG abuse have been used at the {{DL|Play! Pokémon|Video Game Championships}}, an official tournament. They also say that RNG abuse is very complicated, and not as simple as typing a cheat code. However, some players believe that RNG abuse is cheating, as the action of picking a Pokémon&#039;s characteristics is similar to using a [[cheating]] device. Opponents of RNG abuse claim that it gives those who can RNG an unfair advantage, however the proponents say that with RNG everyone can have the best stats, and therefore no one will have an unfair advantage by catching a Pokémon that happens to be better.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [[wp:Pseudorandom number generator|Pseudorandom number generator on Wikipedia]]&lt;br /&gt;
* [[wp:Mersenne twister|Mersenne Twister on Wikipedia]]&lt;br /&gt;
* [http://www.smogon.com/ingame/rng/emerald_rng_intro Smogon&#039;s explanation and guide on Pokémon Emerald RNG Abuse]&lt;br /&gt;
* [http://smogon.com/ingame/rng/dpphgss_rng_intro Smogon&#039;s explanation and guide on Generation IV RNG Abuse]&lt;br /&gt;
* [http://smogon.com/ingame/rng/bw_rng_intro Smogon&#039;s explanation and guide on Generation V RNG Abuse]&lt;br /&gt;
&lt;br /&gt;
{{Project Games notice|game mechanic}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game mechanics]]&lt;br /&gt;
&lt;br /&gt;
[[de:Random Number Generator]]&lt;br /&gt;
[[es:Generación pseudoaleatoria de números]]&lt;br /&gt;
[[fr:RNG]]&lt;br /&gt;
[[it:Generazione di numeri pseudo-casuali in Pokémon]]&lt;br /&gt;
[[ja:乱数ポケモン]]&lt;br /&gt;
[[zh:伪随机数发生器]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_213&amp;diff=2928489</id>
		<title>Sinnoh Route 213</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sinnoh_Route_213&amp;diff=2928489"/>
		<updated>2019-02-18T06:50:34Z</updated>

		<summary type="html">&lt;p&gt;Map233224: /* Trivia */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{incomplete|2=Missing manga section}}&lt;br /&gt;
{{Route infobox&lt;br /&gt;
|number=213&lt;br /&gt;
|size=290&lt;br /&gt;
|imageIV=Sinnoh Route 213 Pt.png&lt;br /&gt;
|type=sand&lt;br /&gt;
|image=Sinnoh Route 213 Pt.png&lt;br /&gt;
|north=Valor Lakefront&lt;br /&gt;
|west=Pastoria City&lt;br /&gt;
|region=Sinnoh&lt;br /&gt;
|generation=4&lt;br /&gt;
|surf=yes&lt;br /&gt;
|rockclimb=yes&lt;br /&gt;
|rocksmash=yes&lt;br /&gt;
|mapdesc=Offshore boulders form a jetty that becalms waves reaching the beach. A resort hotel overlooks the water.&amp;lt;br&amp;gt;In a small house on the beach lives a single man who refers to himself as Dr. Footstep.&lt;br /&gt;
}}&lt;br /&gt;
[[File:Sinnoh Route 213 DP.png|thumb|Route 213 in {{2v2|Diamond|Pearl}}]]&lt;br /&gt;
&#039;&#039;&#039;Route 213&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;２１３ばんどうろ&#039;&#039;&#039; &#039;&#039;Route 213&#039;&#039;) is a route in southeastern [[Sinnoh]] that connects [[Pastoria City]] and [[Valor Lakefront]]. The route is home to Sinnoh&#039;s famous [[Hotel Grand Lake]].&lt;br /&gt;
&lt;br /&gt;
==Route description==&lt;br /&gt;
When leaving Valor Lakefront, the player can see three suites and a hotel. In the suite on the left, a clown will give the player {{TM|92|Trick Room}}, and in the suite requiring {{m|Rock Climb}} to get to, a lady will give the player the [[Pokétch#Coin Flip|Coin Toss Pokétch App]]. In the hotel, if the player talks to the police officer he will heal his or her Pokémon. South of the hotel, there is a beach with two Trainers. Following the sandy beach west, the player will find Dr. Footstep&#039;s house. South of the house, there is a hidden [[Heart Scale]]. North of the house, there is a {{m|Rock Climb|climbable ledge}} leading to a grass patch and item, and a {{m|Rock Smash|smashable rock}} hiding a [[Honey|Honey tree]] on the right and left respectively. Further north, there is a grass patch leading the player to {{ci|Pastoria}}. North of the grass patch, there is a Berry patch.&lt;br /&gt;
&amp;lt;!--[[File:Sinnoh Route 213 DP.png|thumb|Route 213 in Diamond and Pearl]]--&amp;gt;&lt;br /&gt;
===Dr. Footstep&#039;s House===&lt;br /&gt;
[[Dr. Footstep]] will examine a Trainer&#039;s leading Pokémon&#039;s footprints and check its [[Friendship]] level. As a reward for a high Friendship level, he will give the Pokémon a {{DL|List of Ribbons in the games|Footprint Ribbon}}.&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{itlisth|sand}}&lt;br /&gt;
{{Itemlist|Protein|East of the Hotel Grand Lake southern entrance (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Awakening|Near the honey tree (requires {{m|Rock Smash}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Near the honey tree (requires {{m|Rock Smash}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Big Pearl|In the south-east corner of the route (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|TM Normal|Up in the highest mountain looking at the beach (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{TM|05|Roar}}}}&lt;br /&gt;
{{Itemlist|Water Stone|At the easternmost shallow water at the southern part of Route 213, north of Swimmers Evan and Mary (requires {{m|Surf}})|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Max Revive |&lt;br /&gt;
*Western islet (requires {{m|Surf}})&lt;br /&gt;
*Up in the highest mountain looking at the beach (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;{{sup/4|DP}}&lt;br /&gt;
*Under the parasol by the pool, south of the Game Director&#039;s suite &#039;&#039;(hidden)&#039;&#039;{{sup/4|Pt}}&lt;br /&gt;
|D=yes|P=yes|Pt=yes|display=[[Max Revive]] ×2}}&lt;br /&gt;
{{Itemlist|Big Pearl|In the islet to the west of Swimmer Sheltin (same islet as the Max Revive) (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|PP Up|Left of Hotel Grand Lake|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|HP Up|Up in the highest mountain looking at the beach (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Heart Scale|On east side of the east beach &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Heart Scale|At the very edge of the west beach directly below Dr. Footstep&#039;s house &#039;&#039;(hidden)&#039;&#039;|Pt=yes}}&lt;br /&gt;
{{Itemlist|Super Potion|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Great Ball|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{ball|Great}}}}&lt;br /&gt;
{{Itemlist|Calcium|On the beach in front of the hotel &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Red Shard|West of the entrance to Hotel Grand Lake|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Yellow Shard|West of the entrance to Hotel Grand Lake|Pt=yes}}&lt;br /&gt;
{{Itemlist|Suite Key|Immediately northwest of northern reception entrance &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Pearl|Near Fisherman Kenneth &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes|display={{OBP|Pearl|item}}}}&lt;br /&gt;
{{Itemlist|Pearl|In the wall northwest of the Max Revive and Big Pearl islet (requires {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|display={{OBP|Pearl|item}}}}&lt;br /&gt;
{{Itemlist|Pearl|&lt;br /&gt;
* South of TM40 &#039;&#039;(hidden)&#039;&#039;&lt;br /&gt;
* Near Tuber Chelsea (×2) &#039;&#039;(hidden)&#039;&#039;|Pt=yes|display={{OBP|Pearl|item}} ×3}}&lt;br /&gt;
{{Itemlist|TM Flying|East of Dr. Footstep&#039;s house (requires {{m|Rock Smash}})|D=yes|P=yes|Pt=yes|display={{TM|40|Aerial Ace}}}}&lt;br /&gt;
{{Itemlist|Hyper Potion|Under the parasol by the pool, south of the Game Director&#039;s suite &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes}}&lt;br /&gt;
{{Itemlist|Aguav Berry|Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|Rawst Berry|Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes|display=[[Rawst Berry]] ×2}}&lt;br /&gt;
{{Itemlist|Iapapa Berry|Berry patch east of Pastoria City entrance|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{itlistfoot|sand}}&lt;br /&gt;
&lt;br /&gt;
===Hotel Grand Lake===&lt;br /&gt;
These are items found inside [[Hotel Grand Lake]] buildings located on Route 213; however, they are technically found in a location called &amp;quot;Grand Lake&amp;quot;, not Route 213.&lt;br /&gt;
&lt;br /&gt;
{{itlisth|sand}}&lt;br /&gt;
{{Itemlist|TM Psychic|Gift from the {{tc|Clown}} in the bungalow to the northwest of the hotel entrance|D=yes|P=yes|Pt=yes|display={{TM|92|Trick Room}}}}&lt;br /&gt;
{{Itemlist|Max Revive|Inside a trash can in the bungalow to the northeast of the hotel entrance (requires {{m|Rock Climb}}) &#039;&#039;(hidden)&#039;&#039;|D=yes|P=yes|Pt=yes}}&lt;br /&gt;
{{Itemlist|None|sprite=Dppt poketch {{#ifexpr: ({{#time: H}} mod 2) = 0|m|f}}|From a {{tc|Rich Boy}} inside a bungalow to the northeast of the hotel entrance (requires {{m|Rock Climb}})|D=yes|P=yes|Pt=yes|display={{DL|Pokétch|Coin Toss}}}}&lt;br /&gt;
{{itlistfoot|sand}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
{{Catch/header|sand}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|yes|yes|no|Grass|20|20%|20%|10%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|278|Wingull|no|no|yes|Grass|24-26|all=20%|type1=Water|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|yes|yes|no|Grass|20-21|all=30%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|418|Buizel|no|no|yes|Grass|23-25|25%|25%|35%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|419|Floatzel|yes|yes|no|Grass|22|all=10%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|yes|yes|no|Grass|20-22|40%|40%|50%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|422E|Shellos|no|no|yes|Grass|24-26|35%|35%|45%|type1=Water}}&lt;br /&gt;
{{Catch/entry4|441|Chatot|no|no|yes|Grass|23-25|20%|20%|0%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{catch/entry4|072|Tentacool|yes|yes|yes|Surf|20-30|all=60%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|073|Tentacruel|yes|yes|yes|Surf|20-40|all=5%|type1=Water|type2=Poison}}&lt;br /&gt;
{{catch/entry4|278|Wingull|yes|yes|yes|Surf|20-30|all=30%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|279|Pelipper|yes|yes|no|Surf|20-40|all=5%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|422E|Shellos|no|no|yes|Surf|20-30|all=4%|type1=Water}}&lt;br /&gt;
{{catch/entry4|423E|Gastrodon|no|no|yes|Surf|20-40|all=1%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Old|3-10|all=100%|type1=Water}}&lt;br /&gt;
{{catch/entry4|129|Magikarp|yes|yes|yes|Fish Good|10-25|all=65%|type1=Water}}&lt;br /&gt;
{{catch/entry4|223|Remoraid|yes|yes|yes|Fish Good|10-25|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|yes|yes|no|Fish Super|30-40|all=60%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|130|Gyarados|no|no|yes|Fish Super|30-55|all=65%|type1=Water|type2=Flying}}&lt;br /&gt;
{{catch/entry4|224|Octillery|yes|yes|no|Fish Super|20-50|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|224|Octillery|no|no|yes|Fish Super|30-55|all=35%|type1=Water}}&lt;br /&gt;
{{catch/entry4|319|Sharpedo|yes|yes|no|Fish Super|40-55|all=5%|type1=Water|type2=Dark}}&lt;br /&gt;
{{Catch/div|sand|Swarm}}&lt;br /&gt;
{{Catch/entry4|359|Absol|yes|yes|no|Swarm|20|all=40%|type1=Dark}}&lt;br /&gt;
{{Catch/div|sand|Special}}&lt;br /&gt;
{{Catch/entry4|277|Swellow|yes|yes|no|Poké Radar|20-22|all=22%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry4|277|Swellow|no|no|yes|Poké Radar|21-25|all=22%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/footer|sand}}&lt;br /&gt;
Additionally, wild Pokémon can appear on the [[Honey]] tree.&lt;br /&gt;
&lt;br /&gt;
==Trainers==&lt;br /&gt;
==={{game|Diamond and Pearl|s}}===&lt;br /&gt;
{{trainerheader|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy|1288|1|431|Glameow|♀|23|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Kenneth|704|3|129|Magikarp|♂|19|None|223|Remoraid|♂|19|None|130|Gyarados|♂|22|None|36=タカフミ|37=Takafumi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|92|1|400|Bibarel|♀|23|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared|80|3|422|Shellos|♂|19|None|422|Shellos|♂|21|None|422|Shellos|♂|20|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand|Requires Surf}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Haley|496|2|183|Marill|♀|31|None|184|Azumarill|♀|31|None|36=ナオミ|37=Naomi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Sheltin|496|3|130|Gyarados|♂|30|None|130|Gyarados|♂|29|None|130|Gyarados|♂|31|None|36=エイサク|37=Eisaku}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Sailor.png|Sailor|Paul|992|2|130|Gyarados|♂|31|None|066|Machop|♂|31|None|36=ヨウヘイ|37=Yōhei}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Evan|512&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Mary&amp;lt;/small&amp;gt;|2|055|Golduck|♂|30|None|055|Golduck|♂|32|None|36=キョウジ|37=Kyōji}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Mary|480&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Evan&amp;lt;/small&amp;gt;|2|183|Marill|♀|32|None|279|Pelipper|♀|30|None|36=エリコ|37=Eriko}}&lt;br /&gt;
{{Trainerdiv|sand|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|First rematch}}|2240|1|431|Glameow|♀|40|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|Second rematch}}|3360|1|432|Purugly|♀|60|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|{{tt|160|First rematch}}/{{tt|220|Second rematch}}|1|400|Bibarel|♀|{{tt|40|First rematch}}/{{tt|55|Second rematch}}|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|First rematch}}|116|3|422|Shellos|♂|28|None|422|Shellos|♂|27|None|422|Shellos|♂|29|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|Second rematch}}|204|3|423|Gastrodon|♂|52|None|423|Gastrodon|♂|53|None|423|Gastrodon|♂|51|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|sand}}&lt;br /&gt;
&lt;br /&gt;
==={{game|Platinum}}===&lt;br /&gt;
{{trainerheader|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy|1624|1|431|Glameow|♀|29|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Fisherman.png|Fisherman|Kenneth|896|3|223|Remoraid|♂|25|None|223|Remoraid|♂|25|None|130|Gyarados|♂|28|None|36=タカフミ|37=Takafumi}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|112|1|183|Marill|♀|28|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared|104|3|422E|Shellos|♂|25|None|422E|Shellos|♂|25|None|422|Shellos|♂|26|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand|Requires Surf}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Haley|560|2|054|Psyduck|♀|31|None|184|Azumarill|♀|35|None|36=ナオミ|37=Naomi}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Sheltin|512|3|130|Gyarados|♂|32|None|130|Gyarados|♂|32|None|130|Gyarados|♂|32||36=エイサク|37=Eisaku}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Sailor.png|Sailor|Paul|1088|3|072|Tentacool|♂|31|None|279|Pelipper|♂|31|None|067|Machoke|♂|34||36=ヨウヘイ|37=Yōhei}}&lt;br /&gt;
{{trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer M.png|Swimmer|Evan|544&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Mary&amp;lt;/small&amp;gt;|2|055|Golduck|♂|32|None|055|Golduck|♂|34|None|36=キョウジ|37=Kyōji}}&lt;br /&gt;
{{Trainerentry|Spr DP Swimmer F.png|Swimmer|Mary|528&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Potential [[Double Battle]] with Evan&amp;lt;/small&amp;gt;|2|456|Finneon|♀|33|None|279|Pelipper|♀|33|None|36=エリコ|37=Eriko}}&lt;br /&gt;
{{Trainerdiv|sand|Rematch}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|First rematch}}|2520|1|431|Glameow|♀|45|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Beauty.png|Beauty|Cyndy{{tt|*|Second rematch}}|3304|3|052|Meowth|♀|59|None|431|Glameow|♀|59|None|300|Skitty|♀|59|None|36=ルミコ|37=Rumiko|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber F.png|Tuber|Chelsea|{{tt|176|First rematch}}/{{tt|212|Second rematch}}|1|184|Azumarill|♀|{{tt|44|First rematch}}/{{tt|53|Second rematch}}|None|36=マツリ|37=Matsuri|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerdiv|sand}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|First rematch}}|128|3|422E|Shellos|♂|32|None|422E|Shellos|♂|32|None|422|Shellos|♂|32|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerentry|Spr DP Tuber M.png|Tuber|Jared{{tt|*|Second rematch}}|204|3|423E|Gastrodon|♂|51|None|423E|Gastrodon|♂|51|None|423|Gastrodon|♂|51|None|36=スグル|37=Suguru|38=Vs. Seeker}}&lt;br /&gt;
{{Trainerfooter|sand}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* On May 11, July 11, August 9, August 20, October 18, December 2, and December 31, it [[Easter egg|rains on this route]].&lt;br /&gt;
* On February 15 (and possibly other unknown dates), the route is cloudy.&lt;br /&gt;
* In Diamond and Pearl, Absol can be caught here, possibly a reference to the route&#039;s name ending in 13.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Valor Lakefront]]&lt;br /&gt;
&lt;br /&gt;
{{Sinnoh}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Routes notice}}&lt;br /&gt;
[[Category:Sinnoh locations|Route 213]]&lt;br /&gt;
[[Category:Routes|Route 213]]&lt;br /&gt;
[[Category:Diamond and Pearl locations|Route 213]]&lt;br /&gt;
[[Category:Platinum locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Route 213 (Sinnoh)]]&lt;br /&gt;
[[es:Ruta 213]]&lt;br /&gt;
[[fr:Route 213]]&lt;br /&gt;
[[it:Percorso 213 (Sinnoh)]]&lt;br /&gt;
[[ja:213ばんどうろ (シンオウ地方)]]&lt;br /&gt;
[[zh:２１３号道路（神奥）]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Goldenrod_Department_Store&amp;diff=2598404</id>
		<title>Goldenrod Department Store</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Goldenrod_Department_Store&amp;diff=2598404"/>
		<updated>2017-02-11T11:45:04Z</updated>

		<summary type="html">&lt;p&gt;Map233224: I added the results of my experiment on the item you get from the lottery. This has been done with a sample of 72 items, so it&amp;#039;s already pretty accurate.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{incomplete|article|Missing the layout images}}&lt;br /&gt;
{{Infobox location&lt;br /&gt;
|image=Goldenrod Department Store HGSS.png&lt;br /&gt;
|type=building&lt;br /&gt;
|location_name=Goldenrod Department Store&lt;br /&gt;
|japanese_name=コガネひゃっかてん&lt;br /&gt;
|translated_name=Kogane Department Store&lt;br /&gt;
|slogan=Full Selection of Pokémon Goods!&lt;br /&gt;
|location=[[Goldenrod City]]&lt;br /&gt;
|region=Johto&lt;br /&gt;
||generation={{Gen|II}}, {{Gen|IV}}&lt;br /&gt;
|map=Johto Goldenrod City Map.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Goldenrod Department Store&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;コガネひゃっかてん&#039;&#039;&#039; &#039;&#039;Kogane Department Store&#039;&#039;) is the largest store in [[Johto]]. It is located in south central [[Goldenrod City]], just north-east of the southern entrance to the city, and contains many items not found in a traditional [[Poké Mart]]. It is the Johto region&#039;s direct equivalent of [[Kanto]]&#039;s [[Celadon Department Store]].&lt;br /&gt;
&lt;br /&gt;
==Floors==&lt;br /&gt;
===1F Service Counter===&lt;br /&gt;
Here, a receptionist welcomes customers. This is also where the postman delivers items.&lt;br /&gt;
&lt;br /&gt;
===2F Trainer&#039;s Market===&lt;br /&gt;
This floor&#039;s slogan is &amp;quot;Your Travel Companion.&amp;quot; It sells basic equipment and items Pokémon Trainers might need in their journeys.&lt;br /&gt;
{{-}}&lt;br /&gt;
{{shop|Upper cashier (Generation II)}}&lt;br /&gt;
{{shoprow|{{shopitem|Potion|300}}|{{shopitem|Super Potion|700}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Antidote|100}}|{{shopitem|Parlyz Heal|200}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Awakening|250}}|{{shopitem|Burn Heal|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ice Heal|250}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Lower cashier (Generation II)}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Ball|200}}|{{shopitem|Great Ball|600}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Escape Rope|550}}|{{shopitem|Repel|350}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Revive|1500}}|{{shopitem|Full Heal|600}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Doll|1000}}|{{shopitem|Flower Mail|50|5=unknown}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
{{shop|Upper cashier (Generation IV)}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Ball|200}}|{{shopitem|Great Ball|600}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ultra Ball|1200}}|{{shopitem|Escape Rope|550}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Doll|1000}}|{{shopitem|Repel|350}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Super Repel|500}}|{{shopitem|Max Repel|700}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Grass Mail|50}}|{{shopitem|Flame Mail|50}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Bubble Mail|50}}|{{shopitem|Space Mail|50}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Lower cashier (Generation IV)}}&lt;br /&gt;
{{shoprow|{{shopitem|Potion|300}}|{{shopitem|Super Potion|700}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Hyper Potion|1200}}|{{shopitem|Max Potion|2500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Revive|1500}}|{{shopitem|Antidote|100}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Parlyz Heal|250}}|{{shopitem|Burn Heal|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ice Heal|250}}|{{shopitem|Awakening|250}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Full Heal|600}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
===3F Battle Collection===&lt;br /&gt;
&amp;quot;For Victory Seekers&amp;quot; is the slogan of this floor. It sells [[battle item|temporary stat-enhancing items]].&lt;br /&gt;
{{shop|Generation II}}&lt;br /&gt;
{{shoprow|{{shopitem|X Speed|350}}|{{shopitem|X Special|350}}}}&lt;br /&gt;
{{shoprow|{{shopitem|X Defend|550}}|{{shopitem|X Attack|500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Dire Hit|650}}|{{shopitem|Guard Spec.|700}}}}&lt;br /&gt;
{{shoprow|{{shopitem|X Accuracy|950}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Generation IV}}&lt;br /&gt;
{{shoprow|{{shopitem|X Speed|350}}|{{shopitem|X Attack|500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|X Defend|550}}|{{shopitem|Guard Spec.|700}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Dire Hit|650}}|{{shopitem|X Accuracy|950}}}}&lt;br /&gt;
{{shoprow|{{shopitem|X Special|350}}|{{shopitem|X Sp. Def|350}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
===4F Medicine Box===&lt;br /&gt;
A pharmacy selling [[vitamin|permanent stat-enhancing items]] is located on this floor. Its slogan is &amp;quot;Let us pump up your Pokémon!&amp;quot;. The items are the same in both Generation II and IV.&lt;br /&gt;
{{shop|Generation II}}&lt;br /&gt;
{{shoprow|{{shopitem|Protein|9800}}|{{shopitem|Iron|9800}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Carbos|9800}}|{{shopitem|Calcium|9800}}}}&lt;br /&gt;
{{shoprow|{{shopitem|HP Up|9800}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Generation IV}}&lt;br /&gt;
{{shoprow|{{shopitem|Protein|9800}}|{{shopitem|Iron|9800}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Calcium|9800}}|{{shopitem|Zinc|9800}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Carbos|9800}}|{{shopitem|HP Up|9800}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
===5F TM Corner===&lt;br /&gt;
This floor is devoted to the sale of [[TM|Technical Machines]]. The poster on the wall declares &amp;quot;Customize Your Pokémon!&amp;quot; Talking to the little girl on this floor unlocks the [[Mystery Events|Mystery Gift]] option. There is also a man who wants to trade a {{p|Drowzee}} ({{p|Abra}} in {{game|Crystal||Crystal}}) for a {{p|Machop}}.&lt;br /&gt;
&lt;br /&gt;
On Sundays, a woman will appear who will give the player {{TM|27|Return}} if the lead Pokémon in the player&#039;s [[party]] has high [[friendship]] or {{TM|21|Frustration}} if it has low friendship. While in the Generation II games she will only give one TM a week, in HeartGold and SoulSilver, once she has given the player one of the TMs, she will not give either again any time afterwards. If the Pokémon&#039;s friendship is neutral, she will not give the player any TM, but they may still show her a different Pokémon to get one.&lt;br /&gt;
&lt;br /&gt;
{{shop|Generation II}}&lt;br /&gt;
{{shoprow|{{shopitem|TM41|3000|PD||TM Electric|ThunderPunch}}|{{shopitem|TM48|3000|PD||TM Fire|Fire Punch}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM33|3000|PD||TM Ice|Ice Punch}}|{{shopitem|TM02|2000|PD||TM Normal|Headbutt}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM08|1000|PD|5=TM Fighting|6=Rock Smash|note=&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Must have received and used TM08 on {{rt|36|Johto}} first&amp;lt;/small&amp;gt;}}}}&lt;br /&gt;
{{shopfooter|multiple=yes}}&lt;br /&gt;
{{shop|Generation IV}}&lt;br /&gt;
{{shoprow|{{shopitem|TM70|1000|PD||TM Normal|Flash}}|{{shopitem|TM17|2000|PD||TM Normal|Protect}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM54|2000|PD||TM Normal|False Swipe}}|{{shopitem|TM83|2000|PD||TM Normal|Natural Gift}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM16|2000|PD||TM Psychic|Light Screen}}|{{shopitem|TM33|2000|PD||TM Psychic|Reflect}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM22|3000|PD||TM Grass|SolarBeam}}|{{shopitem|TM52|5500|PD||TM Fighting|Focus Blast}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM38|5500|PD||TM Fire|Fire Blast}}|{{shopitem|TM25|5500|PD||TM Electric|Thunder}}}}&lt;br /&gt;
{{shoprow|{{shopitem|TM14|5500|PD||TM Ice|Blizzard}}|{{shopitem|TM15|7500|PD||TM Normal|Hyper Beam}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
===6F Rooftop Atrium===&lt;br /&gt;
A picnic table and some [[Vending Machine]]s are located on this floor. A sign implores customers to &amp;quot;Take a Break from Shopping&amp;quot;. In {{2v2|Gold|Silver}} as well as in {{2v2|HeartGold|SoulSilver}}, this is the uppermost floor, but in {{game|Crystal}}, there is an additional flight of stairs leading up to a higher floor. This floor is called the Rooftop Square in Gold and Silver, while in Crystal it is called Tranquil Square.&lt;br /&gt;
&lt;br /&gt;
{{shop|Generations II &amp;amp; IV}}&lt;br /&gt;
{{shoprow|{{shopitem|Fresh Water|200}}|{{shopitem|Soda Pop|300}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Lemonade|350}}|}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
In addition to the Vending Machines, in Generation IV there is a raffle that can be entered for {{pdollar}}300 where the player may win a [[Berry]] (~55% chance), a type of [[Poké Ball]] (~35% chance), or a [[TM]] (~10% chance). The first and second prizes change depending on the [[days of the week|day of the week]]. The player may play the raffle as many times as they wish.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Lottery prizes by day:&#039;&#039;&#039;&lt;br /&gt;
{| style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; border: 3px solid #{{soulsilver color dark}}; background: #{{soulsilver color light}};&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}; background: #{{heartgold color light}}&amp;quot; | Day&lt;br /&gt;
! style=&amp;quot;background: #{{heartgold color light}}&amp;quot; | First prize&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}; background: #{{heartgold color light}}&amp;quot; | Second prize&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 0|9999FF|FFF}};&amp;quot;&lt;br /&gt;
| Sunday&lt;br /&gt;
| {{TM|02|Dragon Claw}}&lt;br /&gt;
| {{DL|Poké Ball|Luxury Ball}}&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 1|9999FF|FFF}};&amp;quot;&lt;br /&gt;
| Monday&lt;br /&gt;
| {{TM|65|Shadow Claw}}&lt;br /&gt;
| {{DL|Poké Ball|Nest Ball}}&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 2|9999FF|FFF}};&amp;quot;&lt;br /&gt;
| Tuesday&lt;br /&gt;
| {{TM|91|Flash Cannon}}&lt;br /&gt;
| {{DL|Poké Ball|Repeat Ball}}&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 3|9999FF|FFF}};&amp;quot;&lt;br /&gt;
| Wednesday&lt;br /&gt;
| {{TM|57|Charge Beam}}&lt;br /&gt;
| {{DL|Poké Ball|Net Ball}}&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 4|9999FF|FFF}};&amp;quot;&lt;br /&gt;
| Thursday&lt;br /&gt;
| {{TM|60|Drain Punch}}&lt;br /&gt;
| {{DL|Poké Ball|Quick Ball}}&lt;br /&gt;
|- style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 5|9999FF|FFF}};&amp;quot;&lt;br /&gt;
| Friday&lt;br /&gt;
| {{TM|42|Facade}}&lt;br /&gt;
| {{DL|Poké Ball|Dusk Ball}}&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 6|9999FF|FFF}}; {{roundybl|5px}}&amp;quot; | Saturday&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 6|9999FF|FFF}}&amp;quot; | {{TM|62|Silver Wind}}&lt;br /&gt;
| style=&amp;quot;background:#{{#ifexpr: {{#time: w}} = 6|9999FF|FFF}}; {{roundybr|5px}}&amp;quot; | {{DL|Poké Ball|Timer Ball}}&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;text-align:center; border: 3px solid #{{soulsilver color dark}}; background: #{{soulsilver color light}};&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytop|5px}}; background: #{{heartgold color light}}&amp;quot; | Third prize (random)&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Cheri Berry]]&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Chesto Berry]]&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Pecha Berry]]&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Rawst Berry]]&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Aspear Berry]]&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Oran Berry]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#FFF; {{roundybottom|5px}}&amp;quot; | [[Persim Berry]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Rooftop Lookout===&lt;br /&gt;
{{incomplete|section|Info on what causes a change in items sold}}&lt;br /&gt;
A floor exclusive to {{game|Crystal}}, the rooftop cannot be accessed by the elevator; instead the player must travel up the final flight of stairs. Some binoculars let spectators see things far away. Some people go up to the roof top to take a break from shopping. There are also some Vending Machines for [[Pokémon doll]]s, but the player cannot buy anything from them as they are &amp;quot;almost empty&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
There will occasionally be a Rooftop Sale, which Camper Todd will call the player about on the [[Pokégear]].&lt;br /&gt;
&lt;br /&gt;
{{shop|Generation II}}&lt;br /&gt;
{{shoprow|{{shopitem|Super Potion|500}}|{{shopitem|Hyper Potion|1000}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Full Restore|600}}|{{shopitem|Revive|1200}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Poké Ball|150}}|{{shopitem|Great Ball|500}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Ultra Ball|1000}}|{{shopitem|Protein|7800}}}}&lt;br /&gt;
{{shoprow|{{shopitem|Full Heal|500}}}}&lt;br /&gt;
{{shopfooter}}&lt;br /&gt;
&lt;br /&gt;
===Basement===&lt;br /&gt;
The basement is only accessible from the Department Store via the elevator.&lt;br /&gt;
&lt;br /&gt;
A team of workers and a {{p|Machoke}} are moving boxes around. People get told off by the worker for going down and distracting them. This is one of the endpoints of the Goldenrod Tunnel. Every time the player enters the area, the boxes will be moved in various places, allowing access to items that are on the ground in blocked rooms.&lt;br /&gt;
&lt;br /&gt;
In {{2v2|HeartGold|SoulSilver}}, talking to the workers will cause each Machoke to move a box, allowing access to each blocked room and the items inside them, with no need to leave and reenter the area.&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
{{Itlisth|building}}&lt;br /&gt;
{{Itemlist|Ultra Ball|Basement; eastern side|G=yes|S=yes|C=yes|HG=yes|SS=yes|display={{DL|Poké Ball|Ultra Ball}}}}&lt;br /&gt;
{{Itemlist|Ether|Basement; southern side|G=yes|S=yes|C=yes|HG=yes|SS=yes|display={{DL|Ether|Ether}}}}&lt;br /&gt;
{{Itemlist|Burn Heal|Basement; northern side|G=yes|S=yes|C=yes|HG=yes|SS=yes|display={{DL|Status condition healing item|Burn Heal}}}}&lt;br /&gt;
{{Itemlist|Amulet Coin|Basement; accessible via [[Goldenrod Tunnel|the Basement Key entrance]]|G=yes|S=yes|C=yes|HG=yes|SS=yes|display={{DL|In-battle effect item|Amulet Coin}}}}&lt;br /&gt;
{{Itemlist|Parlyz Heal|Basement; westernmost brown box &#039;&#039;(hidden)&#039;&#039;|HG=yes|SS=yes|display={{DL|Status condition healing item|Parlyz Heal}}}}&lt;br /&gt;
{{Itemlist|Antidote|Basement; first single box, near the elevator &#039;&#039;(hidden)&#039;&#039;|HG=yes|SS=yes|display={{DL|Status condition healing item|Antidote}}}}&lt;br /&gt;
{{Itemlist|Super Potion|Basement; large brown box on the right, south of the {{DL|Status condition healing item|Burn Heal}} &#039;&#039;(hidden)&#039;&#039;|HG=yes|SS=yes|display={{DL|Potion|Super Potion}}}}&lt;br /&gt;
{{Itemlist|None|5F; held by Muscle, a {{p|Machop}} the player receives in a trade|G=yes|S=yes|C=yes|display={{DL|Berry (Generation II)|Gold Berry}}}}&lt;br /&gt;
{{Itemlist|Macho Brace|5F; held by Muscle, a Machop the player receives in a trade|HG=yes|SS=yes|display={{DL|EV-enhancing item|Macho Brace}}}}&lt;br /&gt;
{{Itlistfoot|building}}&lt;br /&gt;
&lt;br /&gt;
==Pokémon==&lt;br /&gt;
===Generation II===&lt;br /&gt;
{{Catch/header|building|2}}&lt;br /&gt;
{{Catch/div|building|Special}}&lt;br /&gt;
{{Catch/entry2|066|Machop|yes|yes|no|Trade|The same as the Traded Pokémon|all=One||tradenum=096|tradename=Drowzee|tradegender=|type1=Fighting|type2=Fighting}}&lt;br /&gt;
{{Catch/entry2|066|Machop|no|no|yes|Trade|The same as the Traded Pokémon|all=One||tradenum=063|tradename=Abra|tradegender=|type1=Fighting|type2=Fighting}}&lt;br /&gt;
{{Catch/footer|building}}&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
{{Catch/header|building|4}}&lt;br /&gt;
{{Catch/div|building|Special}}&lt;br /&gt;
{{Catch/entryhs|066|Machop|yes|yes|Trade|The same as the Traded Pokémon|all=One||tradenum=096|tradename=Drowzee|tradegender=|type1=Fighting|type2=Fighting}}&lt;br /&gt;
{{Catch/footer|building}}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Layout==&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{Dept}}&lt;br /&gt;
{{Johto}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Locations notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Johto locations]]&lt;br /&gt;
[[Category:Gold, Silver and Crystal locations]]&lt;br /&gt;
[[Category:HeartGold and SoulSilver locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Kaufhaus von Dukatia City]]&lt;br /&gt;
[[fr:Centre commercial de Doublonville]]&lt;br /&gt;
[[it:Centro Commerciale di Fiordoropoli]]&lt;br /&gt;
[[ja:コガネひゃっかてん]]&lt;br /&gt;
[[zh:满金百货大楼]]&lt;/div&gt;</summary>
		<author><name>Map233224</name></author>
	</entry>
</feed>