<?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=Pallukun</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=Pallukun"/>
	<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/wiki/Special:Contributions/Pallukun"/>
	<updated>2026-06-22T14:35:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Wurmple_(Pok%C3%A9mon)&amp;diff=4559405</id>
		<title>Talk:Wurmple (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Wurmple_(Pok%C3%A9mon)&amp;diff=4559405"/>
		<updated>2026-05-26T19:31:46Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Incorrect category */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Can Wurmple evolve into both forms in either Generation IV game? Neither this article nor the ones on [[Eterna Forest]], {{p|Silcoon}}, and {{p|Cascoon}} are quite clear on this. [[User:Dansiman|Dansiman]] 21:11, 17 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yes, since it is based on Personality value anyway. [[User:Tina|Tina]]&amp;lt;sup&amp;gt; [[Special:Contributions/Tina|δ]][[User talk:Tina|♫]]&amp;lt;/sup&amp;gt; 21:12, 17 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Okay, just checking that maybe the game prevents them from generating with the PVs that would allow the other evolution. [[User:Dansiman|Dansiman]] 22:42, 17 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Personality Value==&lt;br /&gt;
Emerald arrived at my house yesterday, and last night my {{tt|Adamant|&amp;lt;nowiki&amp;gt;PV=3&amp;lt;/nowiki&amp;gt;}} evolved into a Cascoon. It can&#039;t be guaranteed for the PV to alter the evolution every time, can it? &amp;lt;span style=&amp;quot;background:#000000&amp;quot;&amp;gt;[[User:Porygon-Z|&amp;lt;span style=&amp;quot;color:#00BFFF&amp;quot;&amp;gt;&#039;&#039;&#039;Por&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User:Porygon-Z/Trade|&amp;lt;span style=&amp;quot;color:#FF1493&amp;quot;&amp;gt;&#039;&#039;&#039;ygo&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User:Porygon-Z/Dracofang Gym|&amp;lt;span style=&amp;quot;color:#00BFFF&amp;quot;&amp;gt;&#039;&#039;&#039;n-Z&#039;&#039;&#039;&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; 10:03, 1 April 2008 (UTC)&lt;br /&gt;
:Nature != Personality value. PV determines nature, but it determines gender, shinyness, and so on. &#039;&#039;&#039;[[User:TTEchidna|&amp;lt;span style=&amp;quot;color:#FF0000&amp;quot;&amp;gt;&#039;&#039;TTE&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:TTEchidna|chidna]]&#039;&#039;&#039; 14:00, 1 April 2008 (UTC)&lt;br /&gt;
::But that doesn&#039;t explain why my Wurmple didn&#039;t evolve into a Silcoon. Or does it?? &amp;lt;span style=&amp;quot;background:#000000&amp;quot;&amp;gt;[[User:Porygon-Z|&amp;lt;span style=&amp;quot;color:#00BFFF&amp;quot;&amp;gt;&#039;&#039;&#039;Por&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User:Porygon-Z/Trade|&amp;lt;span style=&amp;quot;color:#FF1493&amp;quot;&amp;gt;&#039;&#039;&#039;ygo&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User:Porygon-Z/Dracofang Gym|&amp;lt;span style=&amp;quot;color:#00BFFF&amp;quot;&amp;gt;&#039;&#039;&#039;n-Z&#039;&#039;&#039;&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; 18:47, 1 April 2008 (UTC)&lt;br /&gt;
:::Okay, it goes like so!&lt;br /&gt;
:::The variable p (the personality value itself) is a 32-bit integer. Meaning, of course, that it can be any number from 00000000000000000000000000000000 (value in decimal of 0) to 11111111111111111111111111111111 (value in decimal of 4294967295).&lt;br /&gt;
:::Nature is p%25. That&#039;s essentially &amp;quot;whatever is the remainder when p is divided by 25&amp;quot;. Since yours was Adamant, it has a personality value of 25x+3.&lt;br /&gt;
:::Gender is essentially determined by the last eight digits in the p value (in binary!), and if it&#039;s less than a byte stored in the base stats (which are unique to each Pokémon species) it&#039;s female, while greater than is male. That&#039;s why the gender ratios for the starters are divided into eighths: the base stat value is 00000001, which only 00000000 is less than, meaning there&#039;s only a 1/8 chance of getting a female starter. I dunno what your Wurmple&#039;s gender is, so I can&#039;t figure that out either.&lt;br /&gt;
:::Wurmple evolution is determined by the last sixteen digits in the p value (also in binary!). Whatever the value of &#039;&#039;this&#039;&#039; is is then modulo divided by 10. If the remainder is 0-4, it&#039;s Silcoon. 5-9, it&#039;s Cascoon. Since your Wurmple became a Cascoon, its PV ends in 5, 6, 7, 8, or 9, which combined with the earlier determination, means it ends in 8, and x (in that thing up there) is an odd number.&lt;br /&gt;
:::Shininess (or lack thereof) is determined by the OT values and the personality value. To know &#039;&#039;this&#039;&#039; you &#039;&#039;&#039;&#039;&#039;must&#039;&#039;&#039;&#039;&#039; know your secret ID. Essentially, it checks to see if your Trainer ID no. and your secret ID no. are not the same, and stores this value in a boolean variable. It then checks to see if the first sixteen digits and last sixteen digits of the personality value in binary are not the same (such as 10001011011100101000101101110010), and stores that boolean value. It then checks if the two stored values are themselves the same. If they are, pow, shiny. If not, nope, you got one of the 8191 that aren&#039;t.&lt;br /&gt;
:::And so you now can see the complexity of the personality value. I just figured it out myself, actually, and I hope I did it right. Far as I know it&#039;s a 32-bit integer, since that&#039;s what each of the IVs is. We really should redo the game mechanics articles to make them in more understandable English... not everyone speaks computer. &#039;&#039;&#039;[[User:TTEchidna|&amp;lt;span style=&amp;quot;color:#FF0000&amp;quot;&amp;gt;&#039;&#039;TTE&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:TTEchidna|chidna]]&#039;&#039;&#039; 21:09, 1 April 2008 (UTC)&lt;br /&gt;
::::Well I guess this will help me when I get Emerald again. There&#039;s a new one in the mail for me, the one I got sent keeps getting corrupted. I even ran into a shiny Zigzagoon...if I knew that there was a problem like that I would have migrated it right away. But anyway thanks, Beautifly&#039;s one of my favs! &amp;lt;span style=&amp;quot;background:#000000&amp;quot;&amp;gt;[[User:Porygon-Z|&amp;lt;span style=&amp;quot;color:#00BFFF&amp;quot;&amp;gt;&#039;&#039;&#039;Por&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User:Porygon-Z/Trade|&amp;lt;span style=&amp;quot;color:#FF1493&amp;quot;&amp;gt;&#039;&#039;&#039;ygo&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User:Porygon-Z/Dracofang Gym|&amp;lt;span style=&amp;quot;color:#00BFFF&amp;quot;&amp;gt;&#039;&#039;&#039;n-Z&#039;&#039;&#039;&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; 01:27, 2 April 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Edit Request==&lt;br /&gt;
Ash&#039;s Pokedex AG014 Wurmple &#039;Wurmple, the Worm Pokémon. Wurmple live primarily off of sap from trees. The suction cups on its feet keep it from slipping.&#039;  Please and Thank you. [[User:Littlmiget123|Littlmiget123]] 12:04, 29 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Edit request ==&lt;br /&gt;
&lt;br /&gt;
→Pokedex entries&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;|heartgolddex={{tt|もりや　くさむらに　せいそく。てきに　おそわれた　ときは　おしりの　どくの　トゲで　たいこうする。|It lives in forests and grass.  When it is attacked by foes it fights back with the poisonous spikes on its rear.}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
♥ &amp;lt;span style=&amp;quot;border: 2px dotted #FFBBDD;&amp;quot;&amp;gt;[[User:Umeko|&amp;lt;span style=&amp;quot;color:#FF99CC;&amp;quot;&amp;gt;梅子&amp;lt;/span&amp;gt;]][[User talk:Umeko|&amp;lt;span style=&amp;quot;color:#FF99CC;&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;❀&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[Special:Contributions/Umeko|&amp;lt;span style=&amp;quot;color:#FF99CC;&amp;quot;&amp;gt;&amp;lt;sub&amp;gt;✿&amp;lt;/sub&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; 17:51, 6 November 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Evolution ==&lt;br /&gt;
&lt;br /&gt;
Are you sure Wurmple&#039;s evolution is based on personality?  On my Ruby game, I accidentally set the clock twelve hours out, so that it was PM when it should be AM, and every single Wurmple that I caught evolved into a Cascoon, to the point where I thought Silcoon was unobtainable/exclusive to Sapphire or something.  Then I realised the problem with the clock, started a new game, and then I managed to evolve a Wurmple into a Silcoon.  From my experience, Wurmple&#039;s evolution seems to be affected by the time of day, evolving into Silcoon during the day and Cascoon at night.  Although, it could just be a coincidence, of course.  [[User:Taromon777|&amp;lt;span style=&amp;quot;color:turquoise; font-family:Arial Black&amp;quot;&amp;gt;&#039;&#039;&#039;&#039;&#039;Taromon&#039;&#039;&#039;&#039;&#039;&amp;lt;/span&amp;gt;]] 14:50, 13 February 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I agree with you very much, as I trust my guide books.  See below. ----[[User:Zewis29|Zewis29]]  ([[User talk:Zewis29|Talk]], [[Special:Contributions/Zewis29|Contribs]]) 00:16, 5 June 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think Wurmple will evolve into a silcoon if you only use tackle and a cascoon if you only use poison sting. I have played my emerald version hundreds of times and i have always gotten the pokemon I wanted using this little known fact. Just to be sure would someone be willing to try it out. Remember, Tackle only=Silcoon. Poison Sting only=Cascoon. thanks. [[User:Slowbrah|Slowbrah]] 07:32, 14 August 2011 (UTC)&lt;br /&gt;
:I just tested it for you, I got a Cascoon while using only tackle. If it&#039;s been working for you you&#039;ve either got very lucky, or not done enough tests. &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; 07:51, 14 August 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What Personality Values? ==&lt;br /&gt;
&lt;br /&gt;
I understand what was said in the above section.  In one of my Generation III Emerald guide books, it specifically said, quote, &amp;quot;... &#039;&#039;&#039;Which evolution it makes is determined by the time of day&#039;&#039;&#039;, though the timing is so complex it seems random.&amp;quot; (That was Nintendo Power&#039;s guide.) &lt;br /&gt;
&lt;br /&gt;
P.S. If it means anything, my EBGames book says that it is random, but that probably means something else. ----[[User:Zewis29|Zewis29]]  ([[User talk:Zewis29|Talk]], [[Special:Contributions/Zewis29|Contribs]]) 00:14, 5 June 2010 (UTC)&lt;br /&gt;
:Various strategy guides say that, but it isn&#039;t true. It is personality value. You can test it yourself. --[[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:36, 14 August 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Origin ==&lt;br /&gt;
&lt;br /&gt;
Exactly how does Wurmple resemble an earwig? Earwigs are skinny black insects with six legs, two extremely long feelers, and enormous pincers. Wurmple is a red/purple caterpillar with about 10 legs, stubby things that sort of look like pincers, and a horn on its head. [[User:Dimenticare|Dimenticare]] ([[User talk:Dimenticare|talk]]) 02:03, 25 August 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Game Locations ==&lt;br /&gt;
&lt;br /&gt;
Should it not be stated that Wurmple is only available in Pokémon Platinum at daytime (except for in Honey Trees), therefore making it a diurnal Pokémon in Pokémon Platinum.--[[User:ShinyPatch|ShinyPatch]] ([[User talk:ShinyPatch|talk]]) 19:42, 29 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Something seriously wrong on this page ==&lt;br /&gt;
&lt;br /&gt;
I think there&#039;s a big issue with the game location of Wurmple in the Gen III games, no? {{unsigned|Queenwillneverdie}}&lt;br /&gt;
:Just saying &amp;quot;a big issue&amp;quot; is really not very informative... [[User:Tiddlywinks|Tiddlywinks]] ([[User talk:Tiddlywinks|talk]]) 13:57, 1 August 2014 (UTC)&lt;br /&gt;
::I will take three bites.  Does it have to do with any of the following: The games being colored white, Petalburg Woods coming before the Routes, or that it doesn&#039;t mention about breeding?  --[[User:Super goku|Super goku]] ([[User talk:Super goku|talk]]) 08:06, 2 August 2014 (UTC)&lt;br /&gt;
:::I can tell you those aren&#039;t it. I managed to figure it out and [http://bulbapedia.bulbagarden.net/w/index.php?title=Wurmple_%28Pok%C3%A9mon%29&amp;amp;diff=2154935&amp;amp;oldid=2129708 fixed] what it was. But if Queenwillneverdie had said exactly what was wrong, I wouldn&#039;t have been half so confused as I was initially... [[User:Tiddlywinks|Tiddlywinks]] ([[User talk:Tiddlywinks|talk]]) 08:29, 2 August 2014 (UTC)&lt;br /&gt;
::::I am sorry --[[User:Queenwillneverdie|Queenwillneverdie]] ([[User talk:Queenwillneverdie|talk]]) 09:05, 2 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Giant Silkmoth Caterpillar ==&lt;br /&gt;
&lt;br /&gt;
The origin section simply states that Wurmple was based on a caterpillar, but I think it was specifially based on giant silkmoth caterpillars (given Silcoon/Cascoon and Dustox). Giant silkmoth caterpillars also turn reddish when ready to pupate. [[User:Icycatelf|Icycatelf]] ([[User talk:Icycatelf|talk]]) 01:28, 25 June 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wurmple in Beta Legends: Arceus ==&lt;br /&gt;
&lt;br /&gt;
In early footage of Legends: Arceus, Wurmple is seen with a [https://64.media.tumblr.com/8d441ea46a2890aab0a1beb5219cd525/61c46aed53ed90cf-5e/s2048x3072/d97b6703d808603d786ffdcb157c6400f60a0ace.png yellow horn] on the back of its head. Is this worth mentioning anywhere like how Gogoat&#039;s beta shiny is mentioned in its respective article? And on a similar note, what about the tailless Galarian Ponyta from the livestream promoting Sword and Shield? Would that be at all noteworthy to include on its page? Or should these things be mentioned on the beta pages for those games instead? [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;background:black&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/font&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;background:black&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;font color=&amp;quot;yellow&amp;quot;&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&#039;&#039;&#039; 10:49, 29 January 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Evolution==&lt;br /&gt;
&amp;quot;In Hisui, Wurmple evolves either Silcoon during the day or Cascoon during in the night.&amp;quot;&lt;br /&gt;
This is false, I just got both a Silcoon and a Cascoon, both Wurmples evolved at night. {{unsigned|Zatiel}}&lt;br /&gt;
:I confirmed likewise, by saving before evolving Wurmple, then evolving it both during the day and at night. I&#039;ve removed this incorrect claim from the page. --[[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;]] 11:00, 30 January 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Wild Evolutions==&lt;br /&gt;
Is it worth noting that it is possible for wild Silcoon/Cascoon/Beautifly/Dustox to have &amp;quot;impossible&amp;quot; personality values (e.g. a wild Silcoon with a personality value that would&#039;ve made Wurmple evolve into Cascoon)?--[[User:Goukazaru|Gou]] ([[User talk:Goukazaru|talk]]) 06:04, 16 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Beauregard&#039;s Wurmple==&lt;br /&gt;
In LA, Beauregard&#039;s Wurmple always evolves into Cascoon, regardless of the personality value of the Wurmple you actually gave him. You can give him a Wurmple set up to evolve into Silcoon (which of course you can check by saving, evolving, and resetting) and it still becomes a Cascoon.--[[User:Goukazaru|Gou]] ([[User talk:Goukazaru|talk]]) 18:02, 12 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incorrect category ==&lt;br /&gt;
&lt;br /&gt;
Wurmple is listed as &amp;quot;part of a two stage line&amp;quot; instead of three stage line. The category markings don&#039;t appear on the page, so I wasn&#039;t able to correct it. Someone that knows how it&#039;s been formatted should change it&lt;br /&gt;
&lt;br /&gt;
[[User:Pallukun|Pallukun]] ([[User talk:Pallukun|talk]]) 19:31, 26 May 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Quick_Guard_(move)&amp;diff=4534251</id>
		<title>Quick Guard (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Quick_Guard_(move)&amp;diff=4534251"/>
		<updated>2026-04-18T16:04:28Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Effect */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox|&lt;br /&gt;
n=501 |&lt;br /&gt;
name=Quick Guard |&lt;br /&gt;
jname=ファストガード|&lt;br /&gt;
jtrans=Fast Guard |&lt;br /&gt;
jtranslit=Fasuto Gādo|&lt;br /&gt;
gameimage=Quick Guard IX.png |&lt;br /&gt;
gameimage2=Quick Guard IX 2.png|&lt;br /&gt;
gameimagewidth=300 |&lt;br /&gt;
type=Fighting|&lt;br /&gt;
damagecategory=Status |&lt;br /&gt;
basepp=15 |&lt;br /&gt;
maxpp=24 |&lt;br /&gt;
power=— |&lt;br /&gt;
accuracy=— |&lt;br /&gt;
priority=+3 |&lt;br /&gt;
gen=V |&lt;br /&gt;
category=Cool|&lt;br /&gt;
appeal6=2|&lt;br /&gt;
jam6=0|&lt;br /&gt;
cdesc6=Works great if the user goes first this turn.|&lt;br /&gt;
pokefordex=Quick%20Guard |&lt;br /&gt;
touches=no |&lt;br /&gt;
protect=no |&lt;br /&gt;
magiccoat=no |&lt;br /&gt;
snatch=yes |&lt;br /&gt;
mirrormove=no |&lt;br /&gt;
kingsrock=no |&lt;br /&gt;
flag7=no |&lt;br /&gt;
flag8=no |&lt;br /&gt;
sound=no |&lt;br /&gt;
target=allyfield |&lt;br /&gt;
footnotes= }}&lt;br /&gt;
&#039;&#039;&#039;Quick Guard&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ファストガード&#039;&#039;&#039; &#039;&#039;Fast Guard&#039;&#039;) is a non-damaging {{type|Fighting}} [[move]] introduced in [[Generation V]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
{{main|Protection}}&lt;br /&gt;
Quick Guard protects all Pokémon on the user&#039;s side of the field from moves that have increased [[priority]] during that turn, such as {{m|Quick Attack}} or {{m|Aqua Jet}}.&lt;br /&gt;
&lt;br /&gt;
If the user goes last in the turn, the move will fail.&lt;br /&gt;
&lt;br /&gt;
{{cat|Moves that break protection}} will remove the effects of Quick Guard; {{m|Feint}}, despite being a priority move, will do full damage and remove the protection. The Ability {{a|Unseen Fist}} allows [[contact]] moves to bypass Quick Guard.&lt;br /&gt;
&lt;br /&gt;
[[Status move]]s that are unaffected by protection are [[Protection#Unprotectable moves|listed here]]. This primarily applies if they are given priority by an Ability like {{a|Prankster}}.&lt;br /&gt;
&lt;br /&gt;
This move has +3 [[priority]], so it will be executed before most other moves.&lt;br /&gt;
&lt;br /&gt;
{{m|Fake Out}}, despite having increased priority, can potentially hit a Pokémon before Quick Guard would take effect, due to them both having the same priority level. As such, the Pokémons&#039; {{stat|Speed}} stats determine whether Fake Out will be successful. {{m|Snatch}} is the only priority move Quick Guard cannot block due to it having a higher priority level than Quick Guard.&lt;br /&gt;
&lt;br /&gt;
===Generation V===&lt;br /&gt;
The following effects only apply to this generation.&lt;br /&gt;
&lt;br /&gt;
The chance that Quick Guard will succeed drops each time the user successfully and consecutively uses {{m|Endure}}, any [[protection]] move that [[Protection#Moves that protect only the user|only affects the user]], Quick Guard, or {{m|Wide Guard}}. Each time, the chance of success is multiplied by 1/2.&lt;br /&gt;
&lt;br /&gt;
Quick Guard does not block moves that have been given an increased priority through {{a|Prankster}} that would not usually have one.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon uses Feint or {{m|Shadow Force}} to attack its own ally who is protected by Quick Guard, Quick Guard will not be dispelled. &lt;br /&gt;
&lt;br /&gt;
===Generation VII onwards===&lt;br /&gt;
If powered up by a [[Fightinium Z]] into Z-Quick Guard, the user&#039;s {{stat|Defense}} stat rises by one stage.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|fighting}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}|The user protects itself and its allies from priority moves. If used in succession, its chance of failing rises.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user protects itself and its allies from priority moves.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Champs}}|The user protects itself and its allies from priority moves for the turn.}}&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/Games|Fighting|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2|g9=1|g9g={{gameabbrev9|SV}}}}&lt;br /&gt;
{{Moveentry/6|0041|Zubat|type=Poison|type2=Flying|1|Flying|Flying|−|43{{sup/6|ORAS}}|43|20|20}}&lt;br /&gt;
{{Moveentry/6|0042|Golbat|type=Poison|type2=Flying|1|Flying|Flying|−|51{{sup/6|ORAS}}|51|20|20}}&lt;br /&gt;
{{Moveentry/6|0107|Hitmonchan|type=Fighting|1|Human-Like|Human-Like|31|31|31|21|21|21}}&lt;br /&gt;
{{Moveentry/6|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|1|1|1|1|1}}&lt;br /&gt;
{{Moveentry/6|0145|formsig=G|Zapdos|type=Fighting|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=Galarian Form||||40||40}}&lt;br /&gt;
{{Moveentry/6|0169|Crobat|type=Poison|type2=Flying|1|Flying|Flying|−|51{{sup/6|ORAS}}|51|20|20}}&lt;br /&gt;
{{Moveentry/6|0237|Hitmontop|type=Fighting|1|Human-Like|Human-Like|46|46|46|21|21|21}}&lt;br /&gt;
{{Moveentry/6|0252|Treecko|type=Grass|2|Monster|Dragon|−|41{{sup/6|ORAS}}|41|15|15|15}}&lt;br /&gt;
{{Moveentry/6|0253|Grovyle|type=Grass|2|Monster|Dragon|−|53{{sup/6|ORAS}}|53|15|15|15}}&lt;br /&gt;
{{Moveentry/6|0254|Sceptile|type=Grass|2|Monster|Dragon|−|57{{sup/6|ORAS}}|57|15|15|15}}&lt;br /&gt;
{{Moveentry/6|0276|Taillow|type=Normal|type2=Flying|1|Flying|Flying|−|25{{sup/6|ORAS}}|25||25}}&lt;br /&gt;
{{Moveentry/6|0277|Swellow|type=Normal|type2=Flying|1|Flying|Flying|−|27{{sup/6|ORAS}}|27||27}}&lt;br /&gt;
{{Moveentry/6|0335|Zangoose|type=Normal|1|Field|Field|−|−|−||−|{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/6|0447|Riolu|type=Fighting|1|No Eggs Discovered|No Eggs Discovered|−|−|−|32|32|32}}&lt;br /&gt;
{{Moveentry/6|0448|Lucario|type=Fighting|type2=Steel|2|Field|Human-Like|33|33|33|32|32|32}}&lt;br /&gt;
{{Moveentry/6|0475|Gallade|type=Psychic|type2=Fighting|2|Human-Like|Amorphous|−|11{{sup/6|ORAS}}|11|56|56|56}}&lt;br /&gt;
{{Moveentry/6|0539|Sawk|type=Fighting|1|Human-Like|Human-Like|45|45|37|15}}&lt;br /&gt;
{{Moveentry/6|0566|Archen|type=Rock|type2=Flying|2|Flying|Water 3|25|25|25|18}}&lt;br /&gt;
{{Moveentry/6|0567|Archeops|type=Rock|type2=Flying|2|Flying|Water 3|25|25|25|18}}&lt;br /&gt;
{{Moveentry/6|0589|Escavalier|type=Bug|type2=Steel|1|Bug|Bug|1, 8|1, 8|1, 8|1}}&lt;br /&gt;
{{Moveentry/6|0619|Mienfoo|type=Fighting|2|Field|Human-Like|45|45|45|20||20}}&lt;br /&gt;
{{Moveentry/6|0620|Mienshao|type=Fighting|2|Field|Human-Like|−|−|−|1||1}}&lt;br /&gt;
{{Moveentry/6|0638|Cobalion|type=Steel|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|55|1, 55|42|14||14}}&lt;br /&gt;
{{Moveentry/6|0639|Terrakion|type=Rock|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|55|1, 55|42|14||14}}&lt;br /&gt;
{{Moveentry/6|0640|Virizion|type=Grass|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|55|1, 55|42|14||14}}&lt;br /&gt;
{{Moveentry/6|0647|Keldeo|type=Water|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|55|55|55|14||14}}&lt;br /&gt;
{{Moveentry/6|0678|Meowstic|type=Psychic|1|Field|Field|form=Male||1, 53|1, 53|49||49}}&lt;br /&gt;
{{Moveentry/6|0745|Lycanroc|type=Rock|1|Field|Field|form=Midday Form|||1|1||1}}&lt;br /&gt;
{{Moveentry/6|0745|formsig=D|Lycanroc|type=Rock|1|Field|Field|form=Dusk Form|||−|1||1}}&lt;br /&gt;
{{Moveentry/6|0795|Pheromosa|type=Bug|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|||1|10}}&lt;br /&gt;
{{Moveentry/6|0807|Zeraora|type=Electric|1|No Eggs Discovered|No Eggs Discovered|||40{{sup/7|USUM}}|16}}&lt;br /&gt;
{{Moveentry/6|0888|Zacian|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|form=All forms||||1||1}}&lt;br /&gt;
{{Moveentry/6|0937|Ceruledge|type=Fire|type2=Ghost|1|Human-Like|Human-Like||||||{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/6|1006|Iron Valiant|type=Fairy|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||||||84}}&lt;br /&gt;
{{Moveentry/6|1010|Iron Leaves|type=Grass|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||||||21}}&lt;br /&gt;
{{Moveentry/6|1022|Iron Boulder|type=Rock|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||||||77}}&lt;br /&gt;
{{Moveentry/6|1023|Iron Crown|type=Steel|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||||||77}}&lt;br /&gt;
{{Movefoot|Fighting|6}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Fighting|Egg Move|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2|g9=1|g9g={{gameabbrev9|SV}}}}&lt;br /&gt;
{{Moveentry/6|0066|Machop|type=Fighting|1|Human-Like|Human-Like|−|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0083|formsig=G|Farfetch&#039;d|type=Fighting|2|Flying|Field|form=Galarian Form||||✔}}&lt;br /&gt;
{{Moveentry/6|0123|Scyther|type=Bug|type2=Flying|1|Bug|Bug|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0190|Aipom|type=Normal|1|Field|Field|−|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0215|formsig=H|Sneasel|type=Fighting|type2=Poison|1|Field|Field|form=Hisuian Form||||||✔}}&lt;br /&gt;
{{Moveentry/6|0263|formsig=G|Zigzagoon|type=Dark|type2=Normal|1|Field|Field|form=Galarian Form||||✔}}&lt;br /&gt;
{{Moveentry/6|0307|Meditite|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|−|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0335|Zangoose|type=Normal|1|Field|Field|−|✔|✔||✔|−}}&lt;br /&gt;
{{Moveentry/6|0390|Chimchar|type=Fire|2|Field|Human-Like|✔|✔|✔||✔|−}}&lt;br /&gt;
{{Moveentry/6|0453|Croagunk|type=Poison|type2=Fighting|1|Human-Like|Human-Like|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0559|Scraggy|type=Dark|type2=Fighting|2|Field|Dragon|−|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0624|Pawniard|type=Dark|type2=Steel|1|Human-Like|Human-Like|−|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0650|Chespin|type=Grass|1|Field|Field||✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/6|0661|Fletchling|type=Normal|type2=Flying|1|Flying|Flying||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0674|Pancham|type=Fighting|2|Field|Human-Like||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0766|Passimian|type=Fighting|1|Field|Field|||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0827|Nickit|type=Dark|1|Field|Field||||✔}}&lt;br /&gt;
{{Moveentry/6|0973|Flamigo|type=Flying|type2=Fighting|1|Flying|Flying||||||✔}}&lt;br /&gt;
{{Movefoot|Fighting|6}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn2|event}}===&lt;br /&gt;
====[[Generation VII]]====&lt;br /&gt;
{{Movehead/Special|Fighting}}&lt;br /&gt;
{{Moveentry/1|0068|Machamp|type=Fighting|1|Human-Like|Human-Like|{{DL|List of Japanese region Nintendo Network event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon|Saori Yoshida&#039;s Machamp}}}}&lt;br /&gt;
{{Movefoot|Fighting|1}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation IX]]====&lt;br /&gt;
{{Movehead/Special|Fighting}}&lt;br /&gt;
{{Moveentry/1|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like|[[Terastal phenomenon|Wild Tera Pokémon]] - [[South Province (Area Six)]]{{sup/9|SV}}}}&lt;br /&gt;
{{Moveentry/1|0973|Flamigo|type=Flying|type2=Fighting|1|Flying|Flying|[[Terastal phenomenon|Wild Tera Pokémon]] - [[South Province (Area Five)]]{{sup/9|SV}}}}&lt;br /&gt;
{{Movefoot|Fighting|1}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
The user gives itself and teammates in the same room the {{DL|Status condition (Mystery Dungeon)|Quick Guard}} status condition for one turn. This status protects Pokémon from moves that are used from more than one space away. The Pokémon can still take damage from items or explosions.&lt;br /&gt;
&lt;br /&gt;
The chance of the move failing rises if the user&#039;s most recently used move was Quick Guard or a move that evades enemies&#039; attacks (such as {{m|Detect}} or {{m|Endure}}).&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=fighting}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=13|ppmax=50|acc=—%|range=Enitre room|target=Party|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=13|ppmax=30|acc=—%|range=Enitre room|target=Party|cuts=Yes}}&lt;br /&gt;
{{MDMovefoot|type=fighting|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Fighting}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|You and your teammates in the same room will get the Quick Guard status, which protects you from enemies&#039; distant moves. Its chance of failing rises if you use it multiple times in a row.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You and your teammates in the same room will get the Quick Guard status condition, which protects you from faraway enemies&#039; moves.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=fighting|exp=yes|gen=The user protects itself and its allies from moves.|image1=Cliff Mienfoo Quick Guard.png|image1p=Mienfoo}}&lt;br /&gt;
{{movep|ms=619|type=fighting|pkmn=Mienfoo|method=Mienfoo puts its hands together and becomes outlined in a bright red aura. It then points its hands forward, forming a bright red barrier of energy in front of itself that protects it and its allies from attacks.}}&lt;br /&gt;
{{movebtm|type=fighting|user=Cliff (BW046)|user1=Cliff&#039;s Mienfoo|startcode=BW046|startname=The Beartic Mountain Feud!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
* In &#039;&#039;[[BW063|Evolution Exchange Excitement!]]&#039;&#039;, {{an|Bianca}}&#039;s {{p|Escavalier}} was revealed to know Quick Guard. However, it has never been shown using the move.&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Fighting|&lt;br /&gt;
genV=Quick Guard V|&lt;br /&gt;
genVI=Quick Guard VI|&lt;br /&gt;
genVII=Quick Guard VII|&lt;br /&gt;
|genVIII=Quick Guard VIII&lt;br /&gt;
|genVIII2=Quick Guard VIII 2&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Fighting|&lt;br /&gt;
PMDGTI=Quick Guard PMD GTI|&lt;br /&gt;
PSMD=Quick Guard PSMD&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&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|Faaichūk Fòhngsáu|Fast Guard}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;先制防禦 &#039;&#039;{{tt|Sīnjai Fòhngyuh|Preemptive Defense}}&#039;&#039; {{tt|*|Animated series}}&lt;br /&gt;
|zh_cmn=快速防守 &#039;&#039;{{tt|Kuàisù Fángshǒu|Fast Guard}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;先制防禦 &#039;&#039;{{tt|Xiānzhì Fángyù|Preemptive Defense}}&#039;&#039; {{tt|*|Animated series}}&lt;br /&gt;
|nl=Snelschild&lt;br /&gt;
|fr=Prévention&lt;br /&gt;
|de=Rapidschutz&lt;br /&gt;
|it=Anticipo&lt;br /&gt;
|ko=패스트가드 {{tt|&#039;&#039;Paoeseuteugadeu&#039;&#039;|Fast Guard}}&amp;lt;sup&amp;gt;{{gen|IX}}+&amp;lt;/sup&amp;gt;&amp;lt;br&amp;gt;퍼스트가드 {{tt|&#039;&#039;Peoseuteugadeu&#039;&#039;|First Guard}}&amp;lt;sup&amp;gt;{{gen|V}}–{{gen|VIII}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|pl=Szybka Obrona&lt;br /&gt;
|pt_br=Prevenção&lt;br /&gt;
|pt_eu=Ataque Rápido{{tt|*|Mixed up with Quick Attack}} ([[BW063]])&amp;lt;br&amp;gt;Defesa Rápida ([[BW046]])&lt;br /&gt;
|es_la=Defensa Rápida&lt;br /&gt;
|es_eu=Anticipo&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Quick Guard}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Increased priority moves]]&lt;br /&gt;
[[Category:Protection moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Rapidschutz]]&lt;br /&gt;
[[es:Defensa Rápida/Anticipo]]&lt;br /&gt;
[[fr:Prévention]]&lt;br /&gt;
[[it:Anticipo]]&lt;br /&gt;
[[ja:ファストガード]]&lt;br /&gt;
[[zh:快速防守（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Hoenn_Safari_Zone&amp;diff=4533419</id>
		<title>Hoenn Safari Zone</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Hoenn_Safari_Zone&amp;diff=4533419"/>
		<updated>2026-04-16T19:17:04Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Area 6 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{move|Safari Zone (Hoenn)|&amp;lt;nowiki/&amp;gt;article}}&lt;br /&gt;
{{bad picture|2=Guidebook labels}}&lt;br /&gt;
{{Infobox location&lt;br /&gt;
|image=Safari Zone ORAS.png&lt;br /&gt;
|image_size=290&lt;br /&gt;
|type=land&lt;br /&gt;
|location_name=Safari Zone&lt;br /&gt;
|japanese_name=サファリゾーン&lt;br /&gt;
|translated_name=Safari Zone&lt;br /&gt;
|location=North of {{rt|121|Hoenn}}&lt;br /&gt;
|region=Hoenn&lt;br /&gt;
|mapdesc=This amusement area provides a rich environment in which to catch many different kinds of Pokémon.&lt;br /&gt;
|generation={{gen|III}}, {{gen|VI}}&lt;br /&gt;
}}&lt;br /&gt;
The Hoenn &#039;&#039;&#039;[[Safari Zone]]&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;サファリゾーン&#039;&#039;&#039; &#039;&#039;Safari Zone&#039;&#039;) is a special {{OBP|Pokémon|species}} preserve where {{pkmn|Trainer}}s can enter to {{pkmn2|caught|catch}} [[wild Pokémon]]. The entrance is on [[Hoenn]]&#039;s {{rt|121|Hoenn}}.&lt;br /&gt;
&lt;br /&gt;
In {{game2|Ruby|Sapphire|Emerald}}, this Safari Zone is only accessible to Trainers participating in the Safari Game. In a Safari Game, {{player}}s may only use [[Safari Ball]]s, and rather than weaken wild Pokémon in battle, players must use non-conventional tactics to try and catch them. For {{PDollar}}500, the player is granted entry and 30 Safari Balls. In Ruby, Sapphire, and Emerald, the player is limited to 500 steps and the player is only allowed entry if they also have a [[Pokéblock Case]].&lt;br /&gt;
&lt;br /&gt;
In {{g|Omega Ruby and Alpha Sapphire}}, the Safari Game has been removed, and players can enter the Safari Zone area without paying a fee. Pokémon found here are now collected through normal battles. Each area also now has both [[Tall grass|tall]] and {{DL|tall grass|long grass}}, and while encounters between them are mostly the same, two rare Pokémon in each area can only be found in one type of grass specifically.&lt;br /&gt;
&lt;br /&gt;
==Geography==&lt;br /&gt;
Certain areas of the Safari Zone can only be accessed with the [[Mach Bike]] or the [[Acro Bike]]. In Pokémon Omega Ruby and Alpha Sapphire, all areas are accessible with either Bike and {{m|Surf}}, but in some areas, only one type of grass will be accessible without using the other Bike. In Pokémon Ruby, Sapphire, and Emerald, there are also [[breakable rock]]s that can be used to encounter Pokémon. In {{v2|Emerald}}, after the player obtains the [[National Pokédex]], two new areas will open up to the east, featuring many [[Johto]] Pokémon not found in {{game|Ruby and Sapphire|s}} or {{game|FireRed and LeafGreen|s}}.&lt;br /&gt;
&lt;br /&gt;
===Areas===&lt;br /&gt;
[[File:Hoenn Safari Zone numbered E.png|thumb|200px]]&lt;br /&gt;
[[File:Safari Zone ORAS.png|thumb|200px]]&lt;br /&gt;
*Area 1 houses the entrance.&lt;br /&gt;
**In Omega Ruby and Alpha Sapphire, the [[Acro Bike]] and {{m|Surf}} are required to reach the {{DL|tall grass|long grass}} within this area.&lt;br /&gt;
*Area 2 is directly west of Area 1.&lt;br /&gt;
**In Omega Ruby and Alpha Sapphire, the [[Mach Bike]] is required to reach the long grass within this area.&lt;br /&gt;
*Area 3 is directly north of Area 2. This area can only be accessed with a [[Bicycle|Bike]].&lt;br /&gt;
**In Ruby, Sapphire, and Emerald, the Mach Bike is required to access this area.&lt;br /&gt;
**In Omega Ruby and Alpha Sapphire, the Mach Bike is required to reach the tall grass within this area, while the Acro Bike is required to reach the long grass.&lt;br /&gt;
*Area 4 is directly north of Area 1. This area can only be accessed with a Bike.&lt;br /&gt;
**In Ruby, Sapphire, and Emerald, the Acro Bike is required to access this area.&lt;br /&gt;
**In Omega Ruby and Alpha Sapphire, the Acro Bike is required to reach the tall grass within this area, while the Mach Bike and Surf are required to reach the long grass.&lt;br /&gt;
*Area 5 is directly east of Area 1. It is only accessible in {{v2|Emerald}}, and only after the player has entered the [[Hall of Fame]].&lt;br /&gt;
*Area 6 is directly north of Area 5. It is only accessible in Emerald, and only after the player has entered the Hall of Fame.&lt;br /&gt;
&lt;br /&gt;
===Pokéblock feeders===&lt;br /&gt;
In {{game2|Ruby|Sapphire|Emerald}}, there are Pokéblock feeders throughout the Safari Zone. If a Pokéblock is placed in a feeder, there is an 80% chance of wild Pokémon encountered in [[tall grass|grass patches]] and [[water tile]]s up to five steps away from the feeder being forced to have a Nature such that, if an identically flavored Pokéblock were thrown at it, the Pokémon would be enthralled (i.e. its preferred [[flavor]] dominates its disliked flavor in the Pokéblock); the feeder has no effect if no such Nature exists. Only one Pokéblock may occupy a feeder, and the feeder&#039;s effect disappears after 100 steps are taken.&lt;br /&gt;
&lt;br /&gt;
Due to an oddity in the programming of Pokéblock feeders, forced Natures do not have a uniform distribution. This causes Natures with higher ID numbers to be more common than [[Nature]]s with lower ID numbers. For example, if a green (bitter) Pokéblock is in the feeder and forces an enthralling Nature: Calm has an 8.71% chance to be forced, Gentle has a 15.61% chance to be forced, Sassy has a 27.66% chance to be forced, and Careful has a 48.02% chance to be forced (approximately).&lt;br /&gt;
&lt;br /&gt;
==Safari Game==&lt;br /&gt;
In Pokémon Ruby, Sapphire, and Emerald, the Safari Zone is only accessible to Trainers participating in the Safari Game. In a Safari Game, players may only use Safari Balls; rather than weaken them in battle, players must use non-conventional tactics to try and catch wild Pokémon. There are four options on the battle screen: throw a [[Safari Ball]], throw a [[Pokéblock]], go near, and run away. Throwing Pokéblocks makes a Pokémon less likely to run but harder to catch, while going near makes a Pokémon easier to catch but more likely to run.&lt;br /&gt;
&lt;br /&gt;
When a Pokémon is encountered in the Safari Zone, the game will track catch and escape factors for it. The catch factor is initially set by dividing the  Pokémon&#039;s [[catch rate]] by 12.75 (precisely: multiplied by 100 and divided by 1275) and rounding down. This has the effect of scaling the catch rate to a range of 0 to 20 (with any 0 value further set to 1, though this does not occur in natural gameplay). The escape factor starts with a value of 3.&lt;br /&gt;
&lt;br /&gt;
These factors are then modified when the player takes an action, as described in the following table.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; border: 3px solid #{{locationcolor/dark|land}}; background:#{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundytl|5px}}&amp;quot; | Action&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}&amp;quot; | Catch factor&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundytr|5px}}&amp;quot; | Escape factor&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Go Near the first time || Increase by 4 || Increase by 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Go Near the second time || Increase by 3 || Increase by 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Go Near the third time || Increase by 2 || Increase by 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Go Near each subsequent time || Increase by 1 || Increase by 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Throwing a Pokéblock the first time, and the Pokémon is enthralled || No change || Decrease by 5&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Throwing a Pokéblock the second time, and the Pokémon is enthralled || No change || Decrease by 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Throwing a Pokéblock the third time, and the Pokémon is enthralled || No change || Decrease by 2&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Throwing a Pokéblock each subsequent time, and the Pokémon is enthralled || No change || Decrease by 1&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Throwing a Pokéblock the first time, and the Pokémon is curious || No change || Decrease by 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| Throwing a Pokéblock the second time, and the Pokémon is curious || No change || Decrease by 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#FFF; {{roundybl|5px}}&amp;quot; | Throwing a Pokéblock each subsequent time, and the Pokémon is curious&lt;br /&gt;
| style=&amp;quot;background:#FFF&amp;quot; | No change&lt;br /&gt;
| style=&amp;quot;background:#FFF; {{roundybr|5px}}&amp;quot; | Decrease by 1&lt;br /&gt;
|}&lt;br /&gt;
A Pokéblock will only affect the escape factor if the escape factor is greater than 1. Otherwise, if the escape factor would become negative, it is set to 1 instead. Both factors are also limited to a maximum value of 20.&lt;br /&gt;
&lt;br /&gt;
The Pokémon&#039;s reaction to a Pokéblock depends on the combination of its disliked or preferred [[flavor]]s: it is enthralled if its preferred flavor is greater than its disliked flavor, curious if they are equal, and ignores the Pokéblock if its preferred flavor is less than its disliked flavor. If a Pokéblock is ignored, the escape factor is not affected, but it still counts as thrown for the purpose of throwing subsequent Pokéblocks.&lt;br /&gt;
&lt;br /&gt;
If the player tries to catch the Pokémon using a Safari Ball, the scaling of the catch factor is undone by multiplying it by 12.75 (1275/100) and rounding down to obtain a &amp;quot;modified&amp;quot; catch rate. The effect of these mechanics on the chance of ultimately catching the Pokémon is approximately a 2.5% change for every unit change in the capture factor, with an initial capture probability of approximately &amp;lt;code&amp;gt;catch_rate / 510&amp;lt;/code&amp;gt; rounded down to the nearest multiple of 0.025 (2.5%), or 0.025 if it would be less.&lt;br /&gt;
&lt;br /&gt;
Whether a Pokémon will try to escape is determined at the start of each turn. A random value from 0 to 99 (inclusive) is compared to the escape factor times 5: if the random value is less, the Pokémon will flee at the end of the turn (if not captured). These numbers translate to a 5% change in probability of escaping for every unit change in the escape factor, with an initial 15% chance of escape.&lt;br /&gt;
&lt;br /&gt;
===Capture odds===&lt;br /&gt;
The table below shows the chances of capturing a Pokémon if a Safari Ball is immediately thrown.&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; border: 3px solid #{{locationcolor/dark|land}}; background:#{{locationcolor/med|land}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundytl|5px}}&amp;quot; | Catch rate&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}&amp;quot; | Modified catch rate&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}&amp;quot; | Capture odds&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundytr|5px}}&amp;quot; | Pokémon&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 255 || 255 || 50.28% || {{MSP/3|043|Oddish}}{{MSP/3|074|Geodude}}{{MSP/3|118|Goldeen}}{{MSP/3|129|Magikarp}}{{MSP/3|163|Hoothoot}}{{MSP/3|165|Ledyba}}{{MSP/3|167|Spinarak}}{{MSP/3|194|Wooper}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 235 || 229 || 50.28% || {{MSP/3|179|Mareep}}{{MSP/3|191|Sunkern}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 190 || 178 || 40.96% || {{MSP/3|025|Pikachu}}{{MSP/3|054|Psyduck}}{{MSP/3|084|Doduo}}{{MSP/3|177|Natu}}{{MSP/3|183|Marill}}{{MSP/3|204|Pineco}}{{MSP/3|209|Snubbull}}{{MSP/3|213|Shuckle}}{{MSP/3|223|Remoraid}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 120 || 114 || 23.42% || {{MSP/3|044|Gloom}}{{MSP/3|111|Rhyhorn}}{{MSP/3|216|Teddiursa}}{{MSP/3|228|Houndour}}{{MSP/3|231|Phanpy}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 90 || 89 || 19.75% || {{MSP/3|195|Quagsire}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 75 || 64 || 12.33% || {{MSP/3|055|Golduck}}{{MSP/3|178|Xatu}}{{MSP/3|224|Octillery}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| 60 || 51 || 10.66% || {{MSP/3|119|Seaking}}{{MSP/3|203|Girafarig}}{{MSP/3|207|Gligar}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| style=&amp;quot;{{roundybl|5px}}&amp;quot; | 45 || 38 || 8.09% || {{MSP/3|085|Dodrio}}{{MSP/3|127|Pinsir}}{{MSP/3|190|Aipom}}{{MSP/3|202|Wobbuffet}}{{MSP/3|214|Heracross}}{{MSP/3|234|Stantler}}{{MSP/3|241|Miltank}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Pokéblock throw bug===&lt;br /&gt;
In Ruby, Sapphire, and Emerald, instead of the escape factor having a minimum value of 1 (5% chance to flee) like the catch factor, the game is coded to set the escape factor to 1 if it would become negative due to a thrown Pokéblock. This means it is possible for the player to throw Pokéblocks such that a Pokémon&#039;s escape factor becomes exactly 0, and the Pokémon will have a 0% chance to escape. Exploiting this can make it very easy to catch Hoenn Safari Zone Pokémon. Though, it is worth noting that if the &amp;quot;escape factor&amp;quot; is ever equal to 1, the game will not reduce it further regardless of which Pokéblocks are thrown by the player.&lt;br /&gt;
&lt;br /&gt;
Due to an oddity in the programming of Pokéblock Feeders, the distribution of wild Pokémon&#039;s Natures is not even across each of the possibilities. This causes Calm Pokémon to only spawn in 1/10 encounters if a bitter Pokéblock is in the feeder while Careful-Natured Pokémon will occur in nearly 4/10 encounters. This gives players an opportunity to greatly increase the effectiveness of their Pokéblock manipulation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The optimal catching strategy for exploiting this is as follows:&lt;br /&gt;
&lt;br /&gt;
Make two single-[[flavor]] green{{tt|*|Can be created with a Rawst Berry at the Pokéblock Mixers that have 3 NPCS}} Pokéblocks, and one red{{tt|*|Can be created with a Cheri Berry at the Pokéblock Mixers that have 3 NPCS}} Pokéblock. Put one green Pokéblock into a feeder and start a wild encounter near that feeder. Yellow{{tt|*|Can be created with a Aspear Berry at the Pokéblock Mixers that have 3 NPCS}}, pink{{tt|*|Can be created with a Pecha Berry at the Pokéblock Mixers that have 3 NPCS}} and blue{{tt|*|Can be created with a Chesto Berry at the Pokéblock Mixers that have 3 NPCS}} Pokéblocks can be used instead of green, green is just the most effective. A red Pokéblock in the feeder can be paired with a yellow Pokéblock as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When the battle starts...&lt;br /&gt;
* If the Pokémon&#039;s [[catch rate]] is higher than 200, &#039;&#039;&#039;throw Safari Balls&#039;&#039;&#039;.&lt;br /&gt;
* Otherwise, throw a Pokéblock of a color not in the feeder (by default red)&lt;br /&gt;
** 1) If the Pokémon is curious (escape factor = 0), &#039;&#039;&#039;throw Safari Balls&#039;&#039;&#039;.&lt;br /&gt;
** 2) If the Pokémon ignores the Pokéblock, throw a Pokéblock with the same color as the one in the feeder (by default green).&lt;br /&gt;
*** 2a) If the Pokémon is enthralled (escape factor = 0), &#039;&#039;&#039;throw Safari Balls&#039;&#039;&#039;.&lt;br /&gt;
*** 2b) If the Pokémon is curious (escape factor = 1), &#039;&#039;&#039;throw Safari Balls&#039;&#039;&#039;.&lt;br /&gt;
** 3) If the Pokémon is enthralled (escape factor = 1), &#039;&#039;&#039;throw Safari Balls&#039;&#039;&#039;.&lt;br /&gt;
This strategy results in, at minimum, a 75.88% chance to catch any Pokémon that appears.&lt;br /&gt;
{{youtubevid|ML3pCoHjMhk|@ProfessorRex|Green}}&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
===Entrance===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|Safari Ball|From the receptionist, to be used during the Safari Game; cannot be kept|Ru=yes|Sa=yes|E=yes|display=[[Safari Ball]] ×30}}&lt;br /&gt;
{{itemlist|TM Psychic VI|From a {{tc|Street Thug}} next to the door|OR=yes|AS=yes|display={{TM|85|Dream Eater}}}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Area 1===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|Calcium|South of Area 1 pond, east of a patch of long grass (requires [[Acro Bike]] and {{m|Surf}})|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|TM Grass VI|South of Area 1 pond, on a hill west of a patch of long grass (requires [[Mach Bike]], [[Acro Bike]], and {{m|Surf}})|OR=yes|AS=yes|display={{TM|53|Energy Ball}}}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Area 2===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|Protein|Southwest of the area, in the southwest corner of the first hill with a muddy slope (requires [[Mach Bike]]) &#039;&#039;(hidden)&#039;&#039;|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|Max Revive|Far southwest of the area, beyond the pond (requires [[Acro Bike]]{{sup/6|ORAS}} and {{m|Surf}})|Ru=yes|Sa=yes|E=yes|OR=yes|AS=yes}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Area 3===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|TM Grass|North of the Area, on the bank east of the pond (requires [[Mach Bike]] and {{m|Surf}})|Ru=yes|Sa=yes|E=yes|display={{TM|22|SolarBeam}}}}&lt;br /&gt;
{{itemlist|Nugget|Far north of the Area, west of the pond (requires [[Mach Bike]])|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|Big Pearl|On the hill with muddy slopes south of the Area 3 pond (requires [[Mach Bike]])|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|Absolite|In the northeast corner of the cliff south of the long grass patch, accessed via the [[Acro Bike]] railway (requires [[Acro Bike]])|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|Rare Candy|In the northwest-most corner of the Safari Zone (requires [[Acro Bike]]) &#039;&#039;(hidden)&#039;&#039;|OR=yes|AS=yes}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Area 4===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|Calcium|In the far northwest part of the area (requires [[Acro Bike]])|Ru=yes|Sa=yes|E=yes}}&lt;br /&gt;
{{itemlist|Revive|Far southeast of the Area, in a section isolated from the rest of the Area accessible only from Area 1 &#039;&#039;(hidden)&#039;&#039;|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|Ultra Ball|Far north of the Area, across the Area 3 pond, at the northeast of the Area 4 pond (requires [[Mach Bike]] and {{m|Surf}}) &#039;&#039;(hidden)&#039;&#039;|OR=yes|AS=yes}}&lt;br /&gt;
{{itemlist|TM Grass VI|North of the Area, on the bank east of the Area 4 pond (requires [[Mach Bike]] and {{m|Surf}})|OR=yes|AS=yes|display={{TM|22|Solar Beam}}}}&lt;br /&gt;
{{itemlist|TM Electric VI|North of the Area, on the hill east of the Area 4 pond (requires [[Mach Bike]], [[Acro Bike]], and {{m|Surf}})|OR=yes|AS=yes|display={{TM|93|Wild Charge}}}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Area 5===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|PP Up|Three squares south of the southernmost [[Pokéblock]] stand &#039;&#039;(hidden)&#039;&#039;|E=yes}}&lt;br /&gt;
{{itemlist|Full Restore|In the northmost bare square among the southeastern-most patch of grass &#039;&#039;(hidden)&#039;&#039;|E=yes}}&lt;br /&gt;
{{itemlist|Big Pearl|In the northeastern-most patch of grass beyond the top of the {{OBP|waterfall|obstacle}} (requires {{m|Surf}})|E=yes}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Area 6===&lt;br /&gt;
{{Itlisth}}&lt;br /&gt;
{{itemlist|Rare Candy|In the southeast portion of the area, in a 3×2 patch of light green grass, in the southeastern-most square &#039;&#039;(hidden)&#039;&#039;|E=yes}}&lt;br /&gt;
{{itemlist|Zinc|In a small nook among the wall in the rocky path to the north &#039;&#039;(hidden)&#039;&#039;|E=yes}}&lt;br /&gt;
{{itemlist|Nugget|Between two ledges at the end of the rocky path to the west|E=yes}}&lt;br /&gt;
{{Itlistfoot}}&lt;br /&gt;
&lt;br /&gt;
===Vending machine===&lt;br /&gt;
In {{g|Omega Ruby and Alpha Sapphire}}, there is a [[vending machine]] at the entrance to the Safari Zone.&lt;br /&gt;
&lt;br /&gt;
{{shop|}}&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;
==Pokémon==&lt;br /&gt;
===Generation III===&lt;br /&gt;
====Area 1 - Central====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entry3|025|Pikachu|yes|yes|yes|Grass|25, 27|5%|type1=Electric}}&lt;br /&gt;
{{Catch/entry3|043|Oddish|yes|yes|yes|Grass|25, 27|40%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|044|Gloom|yes|yes|yes|Grass|25|5%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|084|Doduo|yes|yes|yes|Grass|25|10%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|177|Natu|yes|yes|yes|Grass|25|10%|type1=Psychic|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|203|Girafarig|yes|yes|yes|Grass|25, 27|20%|type1=Normal|type2=Psychic}}&lt;br /&gt;
{{Catch/entry3|202|Wobbuffet|yes|yes|yes|Grass|27, 29|10%|type1=Psychic}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
====Area 2 - West====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entry3|025|Pikachu|yes|yes|yes|Grass|25, 27|5%|type1=Electric}}&lt;br /&gt;
{{Catch/entry3|043|Oddish|yes|yes|yes|Grass|25, 27|40%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|044|Gloom|yes|yes|yes|Grass|25|5%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|084|Doduo|yes|yes|yes|Grass|27|10%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|177|Natu|yes|yes|yes|Grass|25|10%|type1=Psychic|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|203|Girafarig|yes|yes|yes|Grass|25, 27|20%|type1=Normal|type2=Psychic}}&lt;br /&gt;
{{Catch/entry3|202|Wobbuffet|yes|yes|yes|Grass|27, 29|10%|type1=Psychic}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entry3|054|Psyduck|yes|yes|yes|Surf|20-35|100%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|yes|yes|yes|Fish Old|5-10|30%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|129|Magikarp|yes|yes|yes|Fish Old|5-10|70%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|yes|yes|yes|Fish Good|10-30|40%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|129|Magikarp|yes|yes|yes|Fish Good|10-30|60%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|yes|yes|yes|Fish Super|25-35|80%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|119|Seaking|yes|yes|yes|Fish Super|25-40|20%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
==== Area 3 - Northwest ====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entry3|043|Oddish|yes|yes|yes|Grass|27, 29|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|044|Gloom|yes|yes|yes|Grass|29, 31|15%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|084|Doduo|yes|yes|yes|Grass|27, 29|15%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|085|Dodrio|yes|yes|yes|Grass|29, 31|5%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|111|Rhyhorn|yes|yes|yes|Grass|27, 29|30%|type1=Ground|type2=Rock}}&lt;br /&gt;
{{Catch/entry3|127|Pinsir|yes|yes|yes|Grass|27, 29|5%|type1=Bug}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entry3|054|Psyduck|yes|yes|yes|Surf|20-35|95%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|055|Golduck|yes|yes|yes|Surf|25-40|5%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|yes|yes|yes|Fish Old|5-10|30%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|129|Magikarp|yes|yes|yes|Fish Old|5-10|70%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|yes|yes|yes|Fish Good|10-30|40%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|129|Magikarp|yes|yes|yes|Fish Good|10-30|60%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|yes|yes|yes|Fish Super|25-35|80%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|119|Seaking|yes|yes|yes|Fish Super|25-40|20%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
====Area 4 - North====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entry3|043|Oddish|yes|yes|yes|Grass|27, 29|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|044|Gloom|yes|yes|yes|Grass|29, 31|15%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|177|Natu|yes|yes|yes|Grass|27, 29|15%|type1=Psychic|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|178|Xatu|yes|yes|yes|Grass|29, 31|5%|type1=Psychic|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|214|Heracross|yes|yes|yes|Grass|27, 29|5%|type1=Bug|type2=Fighting}}&lt;br /&gt;
{{Catch/entry3|231|Phanpy|yes|yes|yes|Grass|27, 29|30%|type1=Ground}}&lt;br /&gt;
{{Catch/div|land|Rock Smash}}&lt;br /&gt;
{{Catch/entry3|074|Geodude|yes|yes|yes|Rock Smash|5-30|100%|type1=Rock|type2=Ground}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
==== Area 5 - East ====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entry3|163|Hoothoot|no|no|yes|Grass|35|5%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|167|Spinarak|no|no|yes|Grass|33|10%|type1=Bug|type2=Poison}}&lt;br /&gt;
{{Catch/entry3|179|Mareep|no|no|yes|Grass|34, 36|30%|type1=Electric}}&lt;br /&gt;
{{Catch/entry3|190|Aipom|no|no|yes|Grass|34|10%|type1=Normal}}&lt;br /&gt;
{{Catch/entry3|191|Sunkern|no|no|yes|Grass|33, 35|30%|type1=Grass}}&lt;br /&gt;
{{Catch/entry3|207|Gligar|no|no|yes|Grass|37, 40|5%|type1=Ground|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|209|Snubbull|no|no|yes|Grass|34|5%|type1=Normal}}&lt;br /&gt;
{{Catch/entry3|234|Stantler|no|no|yes|Grass|36, 39|5%|type1=Normal}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entry3|183|Marill|no|no|yes|Surf|25-35|39%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|194|Wooper|no|no|yes|Surf|25-30|60%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/entry3|195|Quagsire|no|no|yes|Surf|35-40|1%|type1=Water|type2=Ground}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|no|no|yes|Fish Old|25-30|30%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|129|Magikarp|no|no|yes|Fish Old|25-30|70%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|no|no|yes|Fish Good|25-30|20%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|129|Magikarp|no|no|yes|Fish Good|25-30|60%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|223|Remoraid|no|no|yes|Fish Good|30-35|20%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|118|Goldeen|no|no|yes|Fish Super|25-30|40%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|223|Remoraid|no|no|yes|Fish Super|25-35|59%|type1=Water}}&lt;br /&gt;
{{Catch/entry3|224|Octillery|no|no|yes|Fish Super|35-40|1%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
==== Area 6 - Northeast ====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entry3|163|Hoothoot|no|no|yes|Grass|35|5%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|165|Ledyba|no|no|yes|Grass|33|10%|type1=Bug|type2=Flying}}&lt;br /&gt;
{{Catch/entry3|190|Aipom|no|no|yes|Grass|33, 35|30%|type1=Normal}}&lt;br /&gt;
{{Catch/entry3|191|Sunkern|no|no|yes|Grass|34|10%|type1=Grass}}&lt;br /&gt;
{{Catch/entry3|204|Pineco|no|no|yes|Grass|34|5%|type1=Bug}}&lt;br /&gt;
{{Catch/entry3|216|Teddiursa|no|no|yes|Grass|34, 36|30%|type1=Normal}}&lt;br /&gt;
{{Catch/entry3|228|Houndour|no|no|yes|Grass|36, 39|5%|type1=Dark|type2=Fire}}&lt;br /&gt;
{{Catch/entry3|241|Miltank|no|no|yes|Grass|37, 40|5%|type1=Normal}}&lt;br /&gt;
{{Catch/div|land|Rock Smash}}&lt;br /&gt;
{{Catch/entry3|213|Shuckle|no|no|yes|Rock Smash|20-40|100%|type1=Bug|type2=Rock}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
===Generation VI===&lt;br /&gt;
====Area 1====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entryoras|025|Pikachu|yes|yes|Grass|28, 30|20%|type1=Electric}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Long grass}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Tall grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Tall grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Tall grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|203|Girafarig|yes|yes|Tall grass|28, 30|20%|type1=Normal|type2=Psychic}}&lt;br /&gt;
{{Catch/div|land|{{color2|000|Horde Encounter}}}}&lt;br /&gt;
{{Catch/entryoras|043|Oddish|yes|yes|Horde Encounter|15|35%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Horde Encounter|15|5%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Horde Encounter|15|60%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Exclusively as {{color2|000|DexNav#Hidden Pokémon|hidden Pokémon}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;After defeating or catching {{pcolor|Groudon|000}}/{{pcolor|Kyogre|000}}&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Catch/entryoras|014|Kakuna|yes|yes|Grass|30|??%|type1=Bug|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|017|Pidgeotto|yes|yes|Grass|30|??%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|427|Buneary|yes|yes|Grass|30|??%|type1=Normal}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Surf|20, 25, 30|100%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Old|5|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Old|10, 15|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Good|25|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Good|25|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|119|Seaking|yes|yes|Fish Super|30, 35, 40|100%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
====Area 2====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|178|Xatu|yes|yes|Grass|28, 30|20%|type1=Psychic|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Long grass}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Tall grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Tall grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Tall grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|202|Wobbuffet|yes|yes|Tall grass|28, 30|20%|type1=Psychic}}&lt;br /&gt;
{{Catch/div|land|{{color2|000|Horde Encounter}}}}&lt;br /&gt;
{{Catch/entryoras|043|Oddish|yes|yes|Horde Encounter|15|35%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Horde Encounter|15|5%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Horde Encounter|15|60%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Exclusively as {{color2|000|DexNav#Hidden Pokémon|hidden Pokémon}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;After defeating or catching {{pcolor|Groudon|000}}/{{pcolor|Kyogre|000}}&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Catch/entryoras|014|Kakuna|yes|yes|Grass|30|??%|type1=Bug|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|017|Pidgeotto|yes|yes|Grass|30|??%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|427|Buneary|yes|yes|Grass|30|??%|type1=Normal}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Surf|20, 25, 30|100%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Old|5|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Old|10, 15|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Good|25|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Good|25|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|119|Seaking|yes|yes|Fish Super|30, 35, 40|100%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
====Area 3====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|111|Rhyhorn|yes|yes|Grass|28, 30|20%|type1=Ground|type2=Rock}}&lt;br /&gt;
{{Catch/div|land|Long grass}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Tall grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Tall grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Tall grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|214|Heracross|yes|yes|Tall grass|28, 30|20%|type1=Bug|type2=Fighting}}&lt;br /&gt;
{{Catch/div|land|{{color2|000|Horde Encounter}}}}&lt;br /&gt;
{{Catch/entryoras|043|Oddish|yes|yes|Horde Encounter|15|35%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Horde Encounter|15|5%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Horde Encounter|15|60%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Exclusively as {{color2|000|DexNav#Hidden Pokémon|hidden Pokémon}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;After defeating or catching {{pcolor|Groudon|000}}/{{pcolor|Kyogre|000}}&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Catch/entryoras|014|Kakuna|yes|yes|Grass|30|??%|type1=Bug|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|017|Pidgeotto|yes|yes|Grass|30|??%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|427|Buneary|yes|yes|Grass|30|??%|type1=Normal}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Surf|20, 25, 30|100%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Old|5|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Old|10, 15|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Good|25|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Good|25|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|119|Seaking|yes|yes|Fish Super|30, 35, 40|100%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
====Area 4====&lt;br /&gt;
{{Catch/header|land|no}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|232|Donphan|yes|yes|Grass|28, 30|20%|type1=Ground}}&lt;br /&gt;
{{Catch/div|land|Long grass}}&lt;br /&gt;
{{Catch/entryoras|044|Gloom|yes|yes|Tall grass|28-30|30%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Tall grass|27, 29|20%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Tall grass|28-30|30%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|127|Pinsir|yes|yes|Tall grass|28, 30|20%|type1=Bug}}&lt;br /&gt;
{{Catch/div|land|{{color2|000|Horde Encounter}}}}&lt;br /&gt;
{{Catch/entryoras|043|Oddish|yes|yes|Horde Encounter|15|35%|type1=Grass|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Horde Encounter|15|5%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|084|Doduo|yes|yes|Horde Encounter|15|60%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/div|land|Exclusively as {{color2|000|DexNav#Hidden Pokémon|hidden Pokémon}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;After defeating or catching {{pcolor|Groudon|000}}/{{pcolor|Kyogre|000}}&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Catch/entryoras|014|Kakuna|yes|yes|Grass|30|??%|type1=Bug|type2=Poison}}&lt;br /&gt;
{{Catch/entryoras|017|Pidgeotto|yes|yes|Grass|30|??%|type1=Normal|type2=Flying}}&lt;br /&gt;
{{Catch/entryoras|427|Buneary|yes|yes|Grass|30|??%|type1=Normal}}&lt;br /&gt;
{{Catch/div|water|Surfing}}&lt;br /&gt;
{{Catch/entryoras|054|Psyduck|yes|yes|Surf|20, 25, 30|100%|type1=Water}}&lt;br /&gt;
{{Catch/div|water|Fishing}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Old|5|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Old|10, 15|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|118|Goldeen|yes|yes|Fish Good|25|35%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|129|Magikarp|yes|yes|Fish Good|25|65%|type1=Water}}&lt;br /&gt;
{{Catch/entryoras|119|Seaking|yes|yes|Fish Super|30, 35, 40|100%|type1=Water}}&lt;br /&gt;
{{Catch/footer|land}}&lt;br /&gt;
&lt;br /&gt;
==Layout==&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #000; border: 3px solid #{{locationcolor/dark|land}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundytl|5px}}&amp;quot; | Version&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}&amp;quot; | Entrance&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}&amp;quot; | Original&lt;br /&gt;
! style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundytr|5px}}&amp;quot; | Expanded&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{ruby color}}&amp;quot; | {{color2|fff|Pokémon Ruby and Sapphire Versions|Ruby}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | [[File:Hoenn Safari Zone Entrance E.png|250px]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | [[File:Hoenn Safari Zone RS.png|250px]]&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{sapphire color}}&amp;quot; | {{color2|fff|Pokémon Ruby and Sapphire Versions|Sapphire}}&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{emerald color}}&amp;quot; | {{color2|fff|Pokémon Emerald Version|Emerald}}&lt;br /&gt;
| [[File:Hoenn Safari Zone E.png|250px]]&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{omega ruby color}}&amp;quot; | {{color2|fff|Pokémon Omega Ruby and Alpha Sapphire|Omega Ruby}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | [[File:Hoenn Safari Zone Entrance OR.png|250px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | [[File:Safari Zone ORAS.png|250px]]&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background:#{{alpha sapphire color}}&amp;quot; | {{color2|fff|Pokémon Omega Ruby and Alpha Sapphire|Alpha Sapphire}}&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;4&amp;quot; style=&amp;quot;background:#{{locationcolor/light|land}}; {{roundybottom|5px}}&amp;quot; | &amp;amp;nbsp;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Music==&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;margin:auto; text-align: center; background: #{{locationcolor/med|road}}; border: 3px solid #{{locationcolor/dark|road}}&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#{{locationcolor/light|road}}&amp;quot;&lt;br /&gt;
! Games&lt;br /&gt;
! Situation&lt;br /&gt;
! Song name (Japanese)&lt;br /&gt;
! Song name (English)&lt;br /&gt;
! Composition&lt;br /&gt;
! Arrangement&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! {{GameIcon|R}}{{GameIcon|Sa}}{{GameIcon|E}}&lt;br /&gt;
| Overworld&lt;br /&gt;
| サファリゾーン&lt;br /&gt;
| [[Pokémon Ruby &amp;amp; Pokémon Sapphire: Super Music Collection|Safari Zone]]&lt;br /&gt;
| [[Go Ichinose]]&lt;br /&gt;
| Go Ichinose&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! {{GameIcon|OR}}{{GameIcon|AS}}&lt;br /&gt;
| Overworld&lt;br /&gt;
| サファリゾーン&lt;br /&gt;
| [[Pokémon Omega Ruby &amp;amp; Pokémon Alpha Sapphire: Super Music Collection|Safari Zone]]&lt;br /&gt;
| Go Ichinose&lt;br /&gt;
| [[Shota Kageyama]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* No {{cat|Generation III Pokémon|Pokémon introduced in Generation III}} appear in this Safari Zone.&lt;br /&gt;
* In {{g|Omega Ruby and Alpha Sapphire}}, the entrance to the Safari Zone has a book titled &amp;quot;The Path of the Safari Zone&amp;quot; written by the founder of the Safari Zone.&lt;br /&gt;
::&#039;&#039;&#039;Chapter One: Foundation.&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&amp;quot;A desire to provide the children of the Hoenn region with a chance to encounter many Pokémon welled up inside of me and led to my decision to open here.&amp;quot;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&#039;Chapter Two: Opening.&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&amp;quot;From the very day we opened, a long line wound its way from the Safari Zone. It was a huge success. A desire to make more money off of it welled up inside of me and led to my decision to raise the price of admission.&amp;quot;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&#039;Chapter Three: Bankruptcy.&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&amp;quot;As a result of the higher admission prices, customers stopped coming to the Safari Zone. A desire to save my own hide welled up inside of me and led to my decision to flee under cover of night.&amp;quot;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&#039;Chapter Four: Rebirth.&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&amp;quot;After I had made my escape, the Safari Zone was reborn thanks to the support of some thoughtful people. A desire to pretend that I had never run away welled up inside of me and led to my decision to return to Hoenn.&amp;quot;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&#039;Final Chapter: The Future.&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;&amp;quot;Having made my return, I began working as a volunteer at the Safari Zone. A desire to express my happiness at having returned welled up inside of me and led to my decision to continue to take good care of Pokémon every day.&amp;quot;&#039;&#039;&lt;br /&gt;
* In {{game|Emerald}}, the [[Rare Candy]] in Area 6 cannot be picked up if the player tries to pick it up while facing it from the north or the west.&lt;br /&gt;
* In the Japanese version of Pokémon Emerald, Area 5 has two slight differences compared to the Western version:&lt;br /&gt;
** In the Western version of the game, the second northernmost square of tall grass in the southeasternmost patch of grass has been moved one tile to the left.&lt;br /&gt;
** In the Japanese version of the game, the hidden [[Full Restore]] was mistakenly placed on a tile inside the trees to the east of the patch of grass, making the item impossible to reach. This was fixed in the Western version of the game by placing the Full Restore inside the now bare patch of grass.&lt;br /&gt;
* Hoenn Safari Zone Areas 1, 2, and 4 from {{game|Ruby and Sapphire|s}} can be found in the internal data of {{game|FireRed and LeafGreen|s}}. However, the tileset data is missing, so the maps are glitched.&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Unused Hoenn Safari Zone Area 1 FRLG.png|Hoenn Safari Zone Area 1 in FireRed and LeafGreen&lt;br /&gt;
Unused Hoenn Safari Zone Area 2 FRLG.png|Hoenn Safari Zone Area 2 in FireRed and LeafGreen&lt;br /&gt;
Unused Hoenn Safari Zone Area 4 FRLG.png|Hoenn Safari Zone Area 4 in FireRed and LeafGreen&lt;br /&gt;
Hoenn Safari Zone Area 5 comparison E.png|The adjusted patch of tall grass in Emerald&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{locationcolor/light|land}}|bordercolor={{locationcolor/dark|land}}&lt;br /&gt;
|zh_yue=狩獵地帶 &#039;&#039;{{tt|Sáulihp Deihdaai|Hunting Zone}}&#039;&#039;&lt;br /&gt;
|zh_cmn=狩獵地帶 / 狩猎地带 &#039;&#039;{{tt|Shòuliè Dìdài|Hunting Zone}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;野生原野區  &#039;&#039;Yěshēng Yuányěqū &#039;&#039;{{tt|*|Emerald Guide Book (Taiwan)}}&lt;br /&gt;
|de=Safari-Zone&lt;br /&gt;
|fr=Parc Safari&lt;br /&gt;
|it=Zona Safari&lt;br /&gt;
|ko={{tt|사파리존|Sapari Jon}} &#039;&#039;Safari Zone&#039;&#039;&lt;br /&gt;
|es=Zona Safari&lt;br /&gt;
|pt=Zona de Safari{{tt|*|Animated series}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
{{SafariNav|Hoenn}}&lt;br /&gt;
{{Hoenn}}&lt;br /&gt;
{{Project Locations notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Parks]]&lt;br /&gt;
[[Category:Hoenn locations]]&lt;br /&gt;
[[Category:Ruby and Sapphire locations]]&lt;br /&gt;
[[Category:Emerald locations]]&lt;br /&gt;
[[Category:Omega Ruby and Alpha Sapphire locations]]&lt;br /&gt;
&lt;br /&gt;
[[de:Safari-Zone (Hoenn)]]&lt;br /&gt;
[[es:Zona Safari (Hoenn)]]&lt;br /&gt;
[[fr:Parc Safari (Hoenn)]]&lt;br /&gt;
[[it:Zona Safari (Hoenn)]]&lt;br /&gt;
[[ja:サファリゾーン (ホウエン地方)]]&lt;br /&gt;
[[zh:狩猎地带（丰缘）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Big_Pecks_(Ability)&amp;diff=4430807</id>
		<title>Big Pecks (Ability)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Big_Pecks_(Ability)&amp;diff=4430807"/>
		<updated>2025-11-25T13:39:13Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Trivia */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AbilityInfobox/header&lt;br /&gt;
|name=Big Pecks&lt;br /&gt;
|jpname=はとむね&lt;br /&gt;
|jptrans=Pigeon Breast&lt;br /&gt;
|jptranslit=Hatomune&lt;br /&gt;
|colorscheme=defense&lt;br /&gt;
|gen=V&lt;br /&gt;
}}&lt;br /&gt;
{{AbilityInfobox/desc|V|Protects the Pokémon from Defense-lowering attacks.}}&lt;br /&gt;
{{AbilityInfobox/desc|VI|Protects the Pokémon from Defense-lowering attacks.}}&lt;br /&gt;
{{AbilityInfobox/desc|VII|Protects the Pokémon from Defense-lowering effects. }}&lt;br /&gt;
{{AbilityInfobox/desc|VIII|Protects the Pokémon from Defense-lowering effects.}}&lt;br /&gt;
{{AbilityInfobox/desc|IX|Prevents the Pokémon from having its Defense stat lowered.}}&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;Big Pecks&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;はとむね&#039;&#039;&#039; &#039;&#039;Pigeon Breast&#039;&#039;) is an [[Ability]] introduced in [[Generation V]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
Big Pecks prevents other Pokémon from lowering the {{stat|Defense}} stat stage of the Pokémon with this Ability. It does not prevent the Pokémon with this Ability from lowering its own Defense, such as by using {{m|Shell Smash}}. It does not prevent {{m|Spectral Thief}} from stealing (i.e., resetting) positive stat changes.&lt;br /&gt;
&lt;br /&gt;
Effects that decrease Defense without using stat stages, such as {{m|Guard Swap}}, {{m|Heart Swap}}, or {{m|Guard Split}}, are unaffected by Big Pecks.&lt;br /&gt;
&lt;br /&gt;
This Ability can be ignored by Pokémon with {{a|Mold Breaker}}, {{a|Teravolt}}, and {{a|Turboblaze}}.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
Big Pecks has no effect outside of battle.&lt;br /&gt;
&lt;br /&gt;
==Pokémon with Big Pecks==&lt;br /&gt;
{{Ability/head|Defense}}&lt;br /&gt;
{{Ability/entry|0016|Pidgey|Normal|Flying|Keen Eye|Tangled Feet|Big Pecks|ability2note={{color2|000|Generation IV|Gen IV}}+}}&lt;br /&gt;
{{Ability/entry|0017|Pidgeotto|Normal|Flying|Keen Eye|Tangled Feet|Big Pecks|ability2note={{color2|000|Generation IV|Gen IV}}+}}&lt;br /&gt;
{{Ability/entry|0018|Pidgeot|Normal|Flying|Keen Eye|Tangled Feet|Big Pecks|ability2note={{color2|000|Generation IV|Gen IV}}+}}&lt;br /&gt;
{{Ability/entry|0441|Chatot|Normal|Flying|Keen Eye|Tangled Feet|Big Pecks}}&lt;br /&gt;
{{Ability/entry|0519|Pidove|Normal|Flying|Big Pecks|Super Luck|Rivalry}}&lt;br /&gt;
{{Ability/entry|0520|Tranquill|Normal|Flying|Big Pecks|Super Luck|Rivalry}}&lt;br /&gt;
{{Ability/entry|0521|Unfezant|Normal|Flying|Big Pecks|Super Luck|Rivalry}}&lt;br /&gt;
{{Ability/entry|0580|Ducklett|Water|Flying|Keen Eye|Big Pecks|Hydration}}&lt;br /&gt;
{{Ability/entry|0581|Swanna|Water|Flying|Keen Eye|Big Pecks|Hydration}}&lt;br /&gt;
{{Ability/entry|0629|Vullaby|Dark|Flying|Big Pecks|Overcoat|Weak Armor}}&lt;br /&gt;
{{Ability/entry|0630|Mandibuzz|Dark|Flying|Big Pecks|Overcoat|Weak Armor}}&lt;br /&gt;
{{Ability/entry|0661|Fletchling|Normal|Flying|Big Pecks|None|Gale Wings}}&lt;br /&gt;
{{Ability/entry|0821|Rookidee|Flying|Flying|Keen Eye|Unnerve|Big Pecks}}&lt;br /&gt;
{{Ability/entry|0822|Corvisquire|Flying|Flying|Keen Eye|Unnerve|Big Pecks}}&lt;br /&gt;
{{Ability/entry|0962|Bombirdier|Flying|Dark|Big Pecks|Keen Eye|Rocky Payload}}&lt;br /&gt;
{{Ability/foot|Defense}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Defense}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|Prevents Defense from being lowered.{{tt|*|Ability description}}&amp;lt;br&amp;gt;The Pokémon&#039;s Defense won&#039;t be lowered!{{tt|*|Used in message log}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The Pokémon&#039;s Defense won&#039;t be lowered!}}&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;
* {{adv|White}}&#039;s {{p|Vullaby}}, Barbara, and {{adv|Y}}&#039;s {{p|Fletchling}}, [[Fletchy]], were revealed to have Big Pecks as their Ability in the [[PokéSPedia]] data-book.&lt;br /&gt;
* [[Skyla]]&#039;s {{p|Unfezant}} and {{adv|Cheren}}&#039;s Unfezant were revealed to have Big Pecks as their Ability.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* The name &amp;quot;Big Pecks&amp;quot; is a pun, referring to both pecking with a beak and the {{wp|pectoralis major}}, a.k.a. &amp;quot;pecs&amp;quot;, the primary muscles in the chest.&lt;br /&gt;
** Similarly, Big Pecks&#039;s Japanese name, &#039;&#039;Hatomune&#039;&#039;, can also be taken to mean &amp;quot;a proud heart&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{defense color}}|bordercolor={{defense color light}}&lt;br /&gt;
|zh_yue=健壯胸肌 &#039;&#039;{{tt|Gihnjohng Hūnggēi|Strong Pecs}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;鴿胸 &#039;&#039;{{tt|Gaphūng|Pigeon Breast}}&#039;&#039; {{tt|*|M19 Website}}&lt;br /&gt;
|zh_cmn=健壯胸肌 / 健壮胸肌 &#039;&#039;{{tt|Jiànzhuàng Xiōngjī|Strong Pecs}}&#039;&#039;&lt;br /&gt;
|fr=Cœur de Coq&lt;br /&gt;
|de=Brustbieter&lt;br /&gt;
|it=Pettinfuori&lt;br /&gt;
|ko=부풀린가슴 &#039;&#039;Bupullin Gaseum&#039;&#039;&lt;br /&gt;
|pt_br=Bico Grande&lt;br /&gt;
|es=Sacapecho&lt;br /&gt;
|vi=Tấm Chắn Ngực&lt;br /&gt;
}}&lt;br /&gt;
{{AbilityVariations|Keen Eye|Illuminate|Hyper Cutter|Big Pecks|color=defense|1color={{flying color dark}}|2color={{electric color dark}}|3color={{attack color dark}}|4color={{defense color dark}}}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Abilities that prevent stat reductions]]&lt;br /&gt;
[[Category:Ignorable Abilities]]&lt;br /&gt;
&lt;br /&gt;
[[de:Brustbieter]]&lt;br /&gt;
[[es:Sacapecho]]&lt;br /&gt;
[[fr:Cœur de Coq]]&lt;br /&gt;
[[it:Pettinfuori]]&lt;br /&gt;
[[ja:はとむね]]&lt;br /&gt;
[[zh:健壮胸肌（特性）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Paradox_Rift_151)&amp;diff=4429976</id>
		<title>Spinda (Paradox Rift 151)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Paradox_Rift_151)&amp;diff=4429976"/>
		<updated>2025-11-23T15:07:06Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémoncardInfobox&lt;br /&gt;
|cardname=Spinda&lt;br /&gt;
|jname=パッチール&lt;br /&gt;
|jtrans=Patcheel&lt;br /&gt;
|image=SpindaParadoxRift151.jpg&lt;br /&gt;
|caption=Illus. [[Masakazu Fukuda]]&lt;br /&gt;
|species=Spinda&lt;br /&gt;
|evostage=Basic&lt;br /&gt;
|type=Colorless&lt;br /&gt;
|hp=80&lt;br /&gt;
|weakness=Fighting&lt;br /&gt;
|retreatcost=1&lt;br /&gt;
}}&lt;br /&gt;
{{PokémoncardInfobox/Expansion|type=Colorless|expansion={{TCG|Paradox Rift}}|rarity={{rar|Common}}|cardno=151/182|jpexpansion={{TCG|Ancient Roar}}|jprarity={{rar|C}}|jpcardno=058/066}}&lt;br /&gt;
{{PokémoncardInfobox/Footer|type=Colorless|species=Spinda}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Spinda&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;パッチール&#039;&#039;&#039; &#039;&#039;Patcheel&#039;&#039;) is a {{ct|Colorless}} Basic Pokémon card. It is part of the {{TCG|Paradox Rift}} expansion.&lt;br /&gt;
&lt;br /&gt;
==Card text==&lt;br /&gt;
{{Cardtext/Header|type=Colorless}}&lt;br /&gt;
{{Cardtext/Ability&lt;br /&gt;
|type=Colorless&lt;br /&gt;
|name=Tangled Feet&lt;br /&gt;
|jname=ちどりあし&lt;br /&gt;
|jtrans=Tottering Steps&lt;br /&gt;
|effect=If this Pokémon is {{TCG|Confused}} and is damaged by an attack, flip a coin. If heads, prevent that damage.&lt;br /&gt;
}}&lt;br /&gt;
{{Cardtext/Attack&lt;br /&gt;
|type=Colorless&lt;br /&gt;
|cost={{e|Colorless}}{{e|Colorless}}{{e|Colorless}}&lt;br /&gt;
|name=Teetering Steps&lt;br /&gt;
|jname=フラフラステップ&lt;br /&gt;
|jtrans=Dizzy Step&lt;br /&gt;
|damage=100&lt;br /&gt;
|effect=This Pokémon is now {{TCG|Confused}}.&lt;br /&gt;
}}&lt;br /&gt;
{{Cardtext/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Pokédex data===&lt;br /&gt;
{{Carddex&lt;br /&gt;
|type=Colorless&lt;br /&gt;
|name=Spinda&lt;br /&gt;
|species=Spot Panda&lt;br /&gt;
|ndex=0327&lt;br /&gt;
|height=3&#039;7&amp;quot;&lt;br /&gt;
|jheight=1.1&lt;br /&gt;
|weight=11&lt;br /&gt;
|jweight=5.0&lt;br /&gt;
|dex=Each Spinda&#039;s spot pattern is different. With its stumbling movements, it evades opponents&#039; attacks brilliantly!&lt;br /&gt;
|jdex=1匹ずつ ブチ模様は 異なる。 フラフラした 動きで 相手の 攻撃を 絶妙に かわすぞ。&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
===Origin===&lt;br /&gt;
{{a|Tangled Feet}} is an [[Ability]] in the [[Pokémon games]] that {{p|Spinda}} can have. This card&#039;s [[Pokédex]] entry comes from {{g|Ultra Moon}}.&lt;br /&gt;
&lt;br /&gt;
{{Project TCG notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon cards that prevent damage]]&lt;br /&gt;
[[Category:Pokémon cards that self-inflict Confused]]&lt;br /&gt;
[[Category:Paradox Rift cards]]&lt;br /&gt;
[[Category:Ancient Roar cards]]&lt;br /&gt;
[[Category:Illus. by Masakazu Fukuda]]&lt;br /&gt;
&lt;br /&gt;
[[de:Pandir (Paradoxrift 151)]]&lt;br /&gt;
[[es:Spinda (Brecha Paradójica TCG)]]&lt;br /&gt;
[[fr:Spinda (Écarlate et Violet Faille Paradoxe 151)]]&lt;br /&gt;
[[ja:パッチール (SV4K)]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Klawf_(Paradox_Rift_105)&amp;diff=4429975</id>
		<title>Klawf (Paradox Rift 105)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Klawf_(Paradox_Rift_105)&amp;diff=4429975"/>
		<updated>2025-11-23T15:04:56Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémoncardInfobox&lt;br /&gt;
|cardname=Klawf&lt;br /&gt;
|jname=ガケガニ&lt;br /&gt;
|jtrans=Gakegani&lt;br /&gt;
|image=KlawfParadoxRift105.jpg&lt;br /&gt;
|caption=Illus. [[Yuya Oka]]&lt;br /&gt;
|species=Klawf&lt;br /&gt;
|evostage=Basic&lt;br /&gt;
|type=Fighting&lt;br /&gt;
|hp=120&lt;br /&gt;
|weakness=Grass&lt;br /&gt;
|retreatcost=3&lt;br /&gt;
}}&lt;br /&gt;
{{PokémoncardInfobox/Expansion|type=Fighting|expansion={{TCG|Paradox Rift}}|rarity={{rar|Uncommon}}|cardno=105/182|jpexpansion={{TCG|Raging Surf}}|jprarity={{rar|U}}|jpcardno=031/062}}&lt;br /&gt;
{{PokémoncardInfobox/Footer|type=Fighting|species=Klawf}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Klawf&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ガケガニ&#039;&#039;&#039; &#039;&#039;Gakegani&#039;&#039;) is a {{ct|Fighting}} Basic Pokémon card. It is part of the {{TCG|Paradox Rift}} expansion.&lt;br /&gt;
&lt;br /&gt;
==Card text==&lt;br /&gt;
{{Cardtext/Header|type=Fighting}}&lt;br /&gt;
{{Cardtext/Attack&lt;br /&gt;
|type=Fighting&lt;br /&gt;
|cost={{e|Colorless}}{{e|Colorless}}&lt;br /&gt;
|name=Unhinged Scissors&lt;br /&gt;
|jname=ヒステリックシザー&lt;br /&gt;
|jtrans=Hysteric Scissor&lt;br /&gt;
|damage=30+&lt;br /&gt;
|effect=If this Pokémon is affected by a {{TCG|Special Condition}}, this attack does 160 more damage.&lt;br /&gt;
}}&lt;br /&gt;
{{Cardtext/Attack&lt;br /&gt;
|type=Fighting&lt;br /&gt;
|cost={{e|Fighting}}{{e|Fighting}}&lt;br /&gt;
|name=Boiled Press&lt;br /&gt;
|jname=ボイルドプレス&lt;br /&gt;
|jtrans=Boiled Press&lt;br /&gt;
|damage=80&lt;br /&gt;
|effect=This Pokémon is now {{TCG|Burned}}.&lt;br /&gt;
}}&lt;br /&gt;
{{Cardtext/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Pokédex data===&lt;br /&gt;
{{Carddex&lt;br /&gt;
|type=Fighting&lt;br /&gt;
|name=Klawf&lt;br /&gt;
|species=Ambush&lt;br /&gt;
|ndex=0950&lt;br /&gt;
|height=4&#039;3&amp;quot;&lt;br /&gt;
|jheight=1.3&lt;br /&gt;
|weight=174.2&lt;br /&gt;
|jweight=79.0&lt;br /&gt;
|dex=Klawf hangs upside-down from cliffs, waiting for prey. But Klawf can’t remain in this position for long because its blood rushes to its head.&lt;br /&gt;
|jdex=逆さまになって 崖の 上から 獲物を 狙うが 頭に 血が上るので 長くは 待てない。&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
===Origin===&lt;br /&gt;
This card&#039;s [[Pokédex]] entry comes from {{g|Scarlet}}.&lt;br /&gt;
&lt;br /&gt;
{{Project TCG notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon cards that self-inflict Burned]]&lt;br /&gt;
[[Category:Pokémon cards that deal more damage if affected by a Special Condition]]&lt;br /&gt;
[[Category:Paradox Rift cards]]&lt;br /&gt;
[[Category:Raging Surf cards]]&lt;br /&gt;
[[Category:Illus. by Yuya Oka]]&lt;br /&gt;
&lt;br /&gt;
[[de:Klibbe (Paradoxrift 105)]]&lt;br /&gt;
[[es:Klawf (Brecha Paradójica TCG)]]&lt;br /&gt;
[[fr:Craparoi (Écarlate et Violet Faille Paradoxe 105)]]&lt;br /&gt;
[[ja:ガケガニ (SV3a)]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Lokix_(Pok%C3%A9mon)&amp;diff=4393696</id>
		<title>Lokix (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Lokix_(Pok%C3%A9mon)&amp;diff=4393696"/>
		<updated>2025-10-03T18:03:01Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Bug|type2=Dark}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Lokix}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Bug|prevnum=0919|prev=Nymble|nextnum=0921|next=Pawmi|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Lokix&lt;br /&gt;
|jname=エクスレッグ&lt;br /&gt;
|jtranslit=Ekusureggu&lt;br /&gt;
|tmname=Exleg&lt;br /&gt;
|ndex=0920&lt;br /&gt;
|type1=Bug&lt;br /&gt;
|type2=Dark&lt;br /&gt;
|category=Grasshopper&lt;br /&gt;
|height-ftin=3&#039;03&amp;quot;&lt;br /&gt;
|height-m=1.0&lt;br /&gt;
|weight-lbs=38.6&lt;br /&gt;
|weight-kg=17.5&lt;br /&gt;
|abilityn=1&lt;br /&gt;
|ability1=Swarm&lt;br /&gt;
|ability2=&lt;br /&gt;
|abilityd=Tinted Lens&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Bug&lt;br /&gt;
|egggroup2=&lt;br /&gt;
|eggcycles=20&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evhp=0&lt;br /&gt;
|evat=2&lt;br /&gt;
|evde=0&lt;br /&gt;
|evsa=0&lt;br /&gt;
|evsd=0&lt;br /&gt;
|evsp=0&lt;br /&gt;
|expyield=158&lt;br /&gt;
|lv100exp=1000000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Gray&lt;br /&gt;
|catchrate=30&lt;br /&gt;
|body=12&lt;br /&gt;
|pokefordex=lokix&lt;br /&gt;
|generation=9&lt;br /&gt;
|friendship=0&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Lokix&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;エクスレッグ&#039;&#039;&#039; &#039;&#039;Exleg&#039;&#039;) is a dual-type {{2t|Bug|Dark}} {{OBP|Pokémon|species}} introduced in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] from {{p|Nymble}} starting at [[level]] 24.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
[[File:4KomaPlaza451.png|thumb|left|250px|Lokix in its Showdown Mode]]&lt;br /&gt;
Lokix is a bipedal, insectoid {{OBP|Pokémon|species}} which resembles a locust. It is primarily dark gray, with glossy black colorations on the head, thorax, lower abdomen, forearms, lower legs, and third set of legs. Its face is covered in a mask-like plate, and contains a pair of black triangular antennae with two white stripes on top, along with orange triangular eyes and a triangular notch on its chin. Its thorax and abdomen are separated by a white belt, with an X-shaped pattern at the front. It has a pair of white claws on each of its hands, and a single claw on each foot. Its forearms have an orange spike each, while its calves have two orange spikes protruding towards the back.&lt;br /&gt;
&lt;br /&gt;
Behind Lokix&#039;s body is its third set of legs, attached to its abdomen. These legs are oblong with a symbol resembling the {{wp|No symbol|general prohibition sign}} on the outside of the joints, and connect to thin, rectangular forelimbs. Each of the forelimbs have five orange spikes and a single white claw at the bottom. Lokix usually keeps its third set of legs folded on its back; however, it can unfold these legs to enter what is known as its Showdown Mode.&lt;br /&gt;
&lt;br /&gt;
In Showdown Mode, Lokix stands and jumps on its now-unfolded third set of legs, and swings them to attack. Lokix utilizes its Showdown Mode to fight all-out, being capable of quickly subduing its foes in this mode. However, it cannot be in Showdown Mode for too long, as it places a huge strain on its body. Lokix can live in a variety of different areas in Paldea, such as grasslands, snowy mountains, deserts, and lakes.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Lokix evolves from {{p|Nymble}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-2&lt;br /&gt;
|type1=Bug&lt;br /&gt;
|type2=Dark&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0919&lt;br /&gt;
|name1=Nymble&lt;br /&gt;
|type1-1=Bug&lt;br /&gt;
|evo1=&lt;br /&gt;
|no2=0920&lt;br /&gt;
|name2=Lokix&lt;br /&gt;
|type1-2=Bug&lt;br /&gt;
|type2-2=Dark}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Bug|type2=Dark}}&lt;br /&gt;
{{Dex/NA|gen=IX}}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=15|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=When it decides to fight all out, it stands on its previously folded legs to enter Showdown Mode. It neutralizes its enemies in short order.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It uses its normally folded third set of legs when in Showdown Mode. This places a huge burden on its body, so it can&#039;t stay in this mode for long.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{dark color dark}}; background:#{{bug color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{bug color light}}; background:#{{bug color light}} | [[File:Pokédex Image Lokix SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Lokix in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Bug|type2=Dark}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=South Province: [[South Province (Area Three)|Area Three]], [[South Province (Area Four)|Area Four]], [[South Province (Area Five)|Area Five]], [[South Province (Area Six)|Area Six]], [[Alfornada Cavern]], {{pal|Pokémon League}}&amp;lt;br&amp;gt;East Province: [[East Province (Area One)|Area One]], [[East Province (Area Two)|Area Two]], [[East Province (Area Three)|Area Three]]&amp;lt;br&amp;gt;West Province: [[West Province (Area Two)|Area Two]], [[West Province (Area Three)|Area Three]], [[Asado Desert]]&amp;lt;br&amp;gt;West Province: [[West Province (Area One)|Area One]] ({{t|Fighting}} {{Tera}} [[Type]])&amp;lt;br&amp;gt;North Province: [[North Province (Area One)|Area One]], [[North Province (Area Two)|Area Two]], [[North Province (Area Three)|Area Three]], [[Casseroya Lake]], [[Dalizapa Passage]], [[Glaseado Mountain]]&amp;lt;br&amp;gt;[[Area Zero]]&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 3★ Tera Raid Battles (Paldea)|Lokix|3★}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Bug&lt;br /&gt;
|type2=Dark&lt;br /&gt;
|HP=71&lt;br /&gt;
|Attack=102&lt;br /&gt;
|Defense=78&lt;br /&gt;
|SpAtk=52&lt;br /&gt;
|SpDef=55&lt;br /&gt;
|Speed=92&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Bug&lt;br /&gt;
|type2=Dark&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=100&lt;br /&gt;
|Flying=200&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=50&lt;br /&gt;
|Rock=200&lt;br /&gt;
|Bug=200&lt;br /&gt;
|Ghost=50&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=200&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=50&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=0&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=50&lt;br /&gt;
|Fairy=200&lt;br /&gt;
|notes=yes&lt;br /&gt;
|dark=yes&lt;br /&gt;
|newpsychic=1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
{{learnlist/level9|1|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/level9|1|Detect|Fighting|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|1|Tackle|Normal|Physical|40|100|35}}&lt;br /&gt;
{{learnlist/level9|1|Leer|Normal|Status|—|100|30}}&lt;br /&gt;
{{learnlist/level9|{{tt|Evo.|Learned upon evolving}}|Lunge|Bug|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|4|Struggle Bug|Bug|Special|50|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|6|Astonish|Ghost|Physical|30|100|15}}&lt;br /&gt;
{{learnlist/level9|9|Assurance|Dark|Physical|60|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|11|Double Kick|Fighting|Physical|30|100|30}}&lt;br /&gt;
{{learnlist/level9|14|Screech|Normal|Status|—|85|40}}&lt;br /&gt;
{{learnlist/level9|18|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|22|Bug Bite|Bug|Physical|60|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|28|Feint|Normal|Physical|30|100|10}}&lt;br /&gt;
{{learnlist/level9|32|Agility|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/level9|36|Throat Chop|Dark|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|40|Sucker Punch|Dark|Physical|70|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|44|First Impression|Bug|Physical|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|48|Bounce|Flying|Physical|85|85|5}}&lt;br /&gt;
{{learnlist/level9|53|Axe Kick|Fighting|Physical|120|90|10}}&lt;br /&gt;
{{learnlist/levelf/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM004|Agility|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM006|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM015|Struggle Bug|Bug|Special|50|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM020|Trailblaze|Grass|Physical|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM021|Pounce|Bug|Physical|50|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM027|Aerial Ace|Flying|Physical|60|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM039|Low Sweep|Fighting|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM043|Fling|Dark|Physical|—|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM058|Brick Break|Fighting|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM060|U-turn|Bug|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM087|Taunt|Dark|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM088|Swords Dance|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM094|Dark Pulse|Dark|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM095|Leech Life|Bug|Physical|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM105|X-Scissor|Bug|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM134|Reversal|Fighting|Physical|—|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM162|Bug Buzz|Bug|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM177|Spite|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM181|Knock Off|Dark|Physical|65|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM182|Bug Bite|Bug|Physical|60|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM185|Lunge|Bug|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM199|Lash Out|Dark|Physical|75|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM219|Skitter Smack|Bug|Physical|70|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM221|Throat Chop|Dark|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tmf/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0214|Heracross}}{{MSP/H|0917|Tarountula}}{{MSP/H|0918|Spidops}}|Counter|Fighting|Physical|—|100|20|grid=3}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0917|Tarountula}}{{MSP/H|0918|Spidops}}|Skitter Smack|Bug|Physical|70|90|10||&#039;&#039;&#039;|grid=3}}&lt;br /&gt;
{{learnlist/breedf/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{learnlist/prevoh/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
{{learnlist/prevo9null}}&lt;br /&gt;
{{learnlist/prevof/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
&lt;br /&gt;
====Special moves====&lt;br /&gt;
{{learnlist/eventh/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
{{learnlist/event9|[[West Province (Area One)|Wild Tera Pokémon]]|Reversal|Fighting|Physical|—|100|15}}&lt;br /&gt;
{{learnlist/eventf/9|Lokix|Bug|Dark|9}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Bug|type2=Dark}}&lt;br /&gt;
{{Spindata/GO|col=6|type=Bug|ndex=0920&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=1&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=174&lt;br /&gt;
|attack=199&lt;br /&gt;
|defense=144&lt;br /&gt;
|fast={{m|Bug Bite}}, {{m|Sucker Punch}}, {{m|Counter}}{{tt|*|From June 3, 2024 onward}}&lt;br /&gt;
|special={{m|X-Scissor}}, {{m|Trailblaze}}, {{m|Bug Buzz}}, {{m|Dark Pulse}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox-2&lt;br /&gt;
|type1=Bug&lt;br /&gt;
|type2=Dark&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0919&lt;br /&gt;
|name1=Nymble&lt;br /&gt;
|type1-1=Bug&lt;br /&gt;
|evo1={{Bag/s|Rare Candy|SV}}&amp;lt;br&amp;gt;{{color2|000|Level|Level 24}}&lt;br /&gt;
|no2=0920&lt;br /&gt;
|name2=Lokix&lt;br /&gt;
|type1-2=Bug&lt;br /&gt;
|type2-2=Dark}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=bug|type2=dark}}&lt;br /&gt;
{{Spritebox/NA|gen=IX}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=0920}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=0920}}&lt;br /&gt;
{{Spritebox/Footer|920|Lokix}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Katy Lokix.png|thumb|250px|Lokix in {{aniseries|HZ}}]]&lt;br /&gt;
===Main series===&lt;br /&gt;
====Major appearances====&lt;br /&gt;
Lokix debuted in &#039;&#039;[[HZ055|Showdown! The Paldea Elite Four]]&#039;&#039;, under the ownership of [[Katy]]. In &#039;&#039;[[HZ056|Liko vs. Rika! Towards the Battle&#039;s End]]&#039;&#039;, [[Liko]] and Katy took part in the [[Elite Four Tag Battle]], where they used {{TP|Liko|Floragato}} and Lokix, respectively, in a [[Double Battle]] against [[Rika]]&#039;s {{p|Dugtrio}} and {{p|Clodsire}}, but they ended up losing.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Violet Lokix.png|thumb|right|170px|Lokix in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
Lokix debuted in [[PASV14]]. {{Violet}}&#039;s {{p|Nymble}} evolved into a Lokix after defeating a {{tc|Team Star Grunt}}.&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Lokix (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
[[File:Lokix Helmets Seguro.png|thumb|250px|Lokix helmet options from [[Seguro Style]] in [[Cascarrafa]]]]&lt;br /&gt;
* No other Pokémon has the same [[List of Pokémon with unique type combinations|type combination]] as Lokix.&lt;br /&gt;
* Riding helmets resembling Lokix&#039;s head can be purchased with varying colors as part of Trainer customization in {{g|Scarlet and Violet}}.&lt;br /&gt;
* Lokix, along with {{p|Buneary}}, is the only Pokémon with 0 [[List of Pokémon by base friendship|base friendship]] that is not {{pkmn2|Legendary}}, a [[Mythical Pokémon]], an [[Ultra Beast]], or a [[Paradox Pokémon]].&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Lokix appears to be based on a {{wp|grasshopper}}, particularly those of the {{wp|locust}} variety, which are notably larger than other grasshopper varieties and have a swarming phase. Its inability to fly in favour of kicking is also similar to various {{wp|wētā}} species, flightless crickets with large legs known to give strong kicks to would-be predators. Its Dark typing could be derived from the fact that grasshoppers and locusts are generally considered to be pests, and its debut in [[Paldea]] may refer to the fact that southern Iberia is the only region in Europe to be affected by locust plagues. It may also be based on {{wp|Tridactylidae|pygmy mole crickets}} due to its coloration and rounded features. The way its third set of legs fold up resembles the Spanish {{wp|navaja}}s; and its kick-based fighting style may be inspired by {{wp|tae kwon do}}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--DO NOT CHANGE TO NAME A SPECIFIC RIDER. REFERENCING THE FRANCHISE IS FINE, NOT A SPECIFIC CHARACTER.--&amp;gt;&lt;br /&gt;
Lokix also appears to be based on the superheroes of the &#039;&#039;{{wp|Kamen Rider}}&#039;&#039; franchise. The titular Riders typically have an insect motif (most often being the grasshopper), a belt used to transform into their masked alter-egos, a limitation on how long they can hold the transformation, and a signature finishing move known as the &#039;&#039;Rider Kick&#039;&#039;. All of these elements are present in the design of Lokix. Its Dark type thus may reference the themes of morality in the &#039;&#039;Kamen Rider&#039;&#039; series, as many of the Riders are considered {{wp|antihero}}es, and their powers typically derive from the same sources and technology as the forces of evil they fight against. Additionally, the Riders are known for riding motorcycles, and while Lokix itself does not have any strong allusion to motorcycles or motocycling, motorbike helmets based on its design are sold in Pokémon Scarlet and Violet.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Lokix may be a combination of &#039;&#039;locust&#039;&#039; and &#039;&#039;kicks&#039;&#039; or &#039;&#039;crickets&#039;&#039;, or a pun on &#039;&#039;low kicks&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Exleg may be a combination of &#039;&#039;extreme&#039;&#039;, &#039;&#039;expert&#039;&#039;, or &#039;&#039;exoskeleton&#039;&#039;, and &#039;&#039;leg&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Bug|type2=Dark&lt;br /&gt;
|ja=エクスレッグ &#039;&#039;Exleg&#039;&#039;|jameaning=From &#039;&#039;extreme&#039;&#039; and &#039;&#039;leg&#039;&#039;&lt;br /&gt;
|fr=Gambex|frmeaning=From &#039;&#039;{{tt|gambette|slang for leg}}&#039;&#039; and &#039;&#039;extreme&#039;&#039;&lt;br /&gt;
|es=Lokix|esmeaning=Same as English name&lt;br /&gt;
|de=Lextremo|demeaning=From &#039;&#039;leg&#039;&#039; and &#039;&#039;{{tt|extremo|Spanish for extreme}}&#039;&#039;&lt;br /&gt;
|it=Lokix|itmeaning=Same as English name&lt;br /&gt;
|ko=엑스레그 &#039;&#039;Ekseuregeu&#039;&#039;|komeaning=Transcription of Japanese name&lt;br /&gt;
|zh_cmn=烈腿蝗 &#039;&#039;Liètuǐhuáng&#039;&#039;|zh_cmnmeaning=From {{tt|烈 &#039;&#039;liè&#039;&#039;|fierce}}, {{tt|腿 &#039;&#039;tuǐ&#039;&#039;|leg; kick}}, and {{tt|蝗 &#039;&#039;huáng&#039;&#039;|locust}}&lt;br /&gt;
|zh_yue=烈腿蝗 &#039;&#039;Lihttéuiwòhng&#039;&#039;|zh_yuemeaning=From {{tt|烈 &#039;&#039;liht&#039;&#039;|fierce}}, {{tt|腿 &#039;&#039;téui&#039;&#039;|leg; kick}}, and {{tt|蝗 &#039;&#039;wòhng&#039;&#039;|locust}}&lt;br /&gt;
|hi=पैरेक्सट्रा &#039;&#039;Pairextra&#039;&#039;|himeaning=From {{tt|पैर &#039;&#039;pair&#039;&#039;|foot/feet}} (or &#039;&#039;pair&#039;&#039;) and &#039;&#039;extra&#039;&#039; or &#039;&#039;extreme&#039;&#039;&lt;br /&gt;
|th=เอ็กซ์เลก &#039;&#039;Eklek&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references/&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{PokémonPrevNext/Head|type=Bug|type2=Dark}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Bug|prevnum=0919|prev=Nymble|nextnum=0921|next=Pawmi}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Lextremo]]&lt;br /&gt;
[[es:Lokix]]&lt;br /&gt;
[[fr:Gambex]]&lt;br /&gt;
[[it:Lokix]]&lt;br /&gt;
[[ja:エクスレッグ]]&lt;br /&gt;
[[zh:烈腿蝗]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4388175</id>
		<title>Spinda (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4388175"/>
		<updated>2025-09-25T11:28:31Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* NPC appearances */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Spinda}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Spinda&lt;br /&gt;
|jname=パッチール&lt;br /&gt;
|jtranslit=Patchīru&lt;br /&gt;
|tmname=Patcheel&lt;br /&gt;
|ndex=0327&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|category=Spot Panda&lt;br /&gt;
|height-ftin=3&#039;07&amp;quot;&lt;br /&gt;
|height-m=1.1&lt;br /&gt;
|weight-lbs=11.0&lt;br /&gt;
|weight-kg=5.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Own Tempo&lt;br /&gt;
|ability2=Tangled Feet&lt;br /&gt;
|ability2note=&amp;lt;sup&amp;gt;{{color2|000|Generation IV|Gen IV+}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|abilityd=Contrary&lt;br /&gt;
|egggroupn=2&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|egggroup2=Human-Like&lt;br /&gt;
|eggcycles=15&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evsa=1&lt;br /&gt;
|expyield=126&lt;br /&gt;
|oldexp=85&lt;br /&gt;
|lv100exp=800,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Brown&lt;br /&gt;
|catchrate=255&lt;br /&gt;
|body=06&lt;br /&gt;
|pokefordex=spinda&lt;br /&gt;
|generation=3&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Spinda&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;パッチール&#039;&#039;&#039; &#039;&#039;Patcheel&#039;&#039;) is a {{type|Normal}} {{OBP|Pokémon|species}} introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
It is not known to [[Evolution|evolve]] into or from any other Pokémon.&lt;br /&gt;
&lt;br /&gt;
Spinda is known for its variations, with each individual almost always having its own [[Variant Pokémon#Spinda|unique spot pattern]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Spinda is a bipedal, red panda {{OBP|Pokémon|species}} with rabbit-like features. Its eyes are made of two black spirals, which point in the opposite direction to each other. There is a similar swirling pattern on its ears. It has a small body with short stumpy arms and legs, and its coat is primarily cream-colored. Its arms are red and it has a red stripe bordering along the bottom of its belly, as well as two small spots on the soles of its feet. It has four spots, which can appear anywhere on its face and ears, with a fifth on the back of its head. These spot patterns are different for each and every Spinda.&lt;br /&gt;
&lt;br /&gt;
It has dizzying, confusing, and scattering dance-like movements, though it thinks it is walking in a straight line. These movements confuse their opponents and make it difficult for them to aim at it. It lives in the {{DL|List of Pokémon by habitat|Mountain Pokémon|mountains}}.&lt;br /&gt;
&lt;br /&gt;
Prior to [[Generation V]], {{m|Teeter Dance}} was its [[signature move]], but other Pokémon could still inherit it via {{pkmn|breeding}}.&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]]: One day, a Spinda appears in [[Pokémon Square]] and collapses. When it regains consciousness, Spinda explains that it is giving up a long journey to find the {{p|Ho-Oh|Mirage Pokémon}} and hands its one clue, the Clear Wing, to the player. The player must then solve [[the Mystery of the Mirage Pokémon]], which will reward them with the Rainbow Wing. Upon showing the Rainbow Wing to Spinda, or talking to Spinda as Ho-Oh, it becomes happy and leaves Pokémon Square.&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Explorers of Sky]]: A Spinda runs [[Spinda&#039;s Café]] and takes over the juice bar. A {{p|Wynaut}} and a {{p|Wobbuffet}} also work at the café running the recycle shop. Later in the game, Project P is introduced. After it is introduced, occasionally when speaking to Wynaut the player may gain access to a dungeon normally accessed by selecting a job with ??? as the location or get a choice of more items in the recycle shop.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Normal}}&lt;br /&gt;
{{Dex/NA|gen=III}}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=114|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=All the &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this {{ScPkmn}} give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical spot patterns on their hides. This {{ScPkmn}} moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe&#039;s aim.}}&lt;br /&gt;
{{Dex/Entry2|v=FireRed|v2=LeafGreen|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical patterns. It confuses foes with its stumbling motions.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=HeartGold|v2=SoulSilver|entry=The chances of two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=131|label1=Mountain|reg2=Hoenn|num2=119}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=The chances of two Spinda having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Omega Ruby|entry=All the Spinda that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this Pokémon give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Alpha Sapphire|entry=No two Spinda are said to have identical spot patterns on their hides. This Pokémon moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VII|reg1=Alola|num1=105|label1={{gameIcon|Su}}{{gameIcon|M}}:|reg2=Alola|num2=128|label2={{gameIcon|US}}{{gameIcon|UM}}:|reg3=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sun|entry=Its steps are staggering and unsteady, but Spinda thinks it&#039;s walking in a straight line.}}&lt;br /&gt;
{{Dex/Entry1|v=Moon|entry=Each and every Spinda has a slightly different configuration of spots. There are collectors who enjoy the tiny differences in their spot patterns.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=Its steps are shaky and stumbling. Walking for a long time makes it feel sick.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=Each Spinda&#039;s spot pattern is different. With its stumbling movements, it evades opponents&#039; attacks brilliantly!}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=No two Spinda have the same pattern of spots. Their tottering steps hinder the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/NE|[[Generation IX]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{normal color dark}}; background:#{{normal color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda-Alternate SM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda SM.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| A male Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
| A female Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2|v=Ruby|v2=Sapphire|t=fff|t2=fff|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen|area=[[Trade]], [[#In events|Event]]}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area={{safari|Johto}} (Desert with 14 Plains points)&amp;lt;br&amp;gt;[[Sprout Tower]], [[Bell Tower]], [[Burned Tower]] {{color2|{{hoenn color dark}}|Hoenn Sound|(Hoenn Sound)}}}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|land}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Field}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Trade]] with [[Curtis]] or [[Yancy]] in [[Nimbasa City]]}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Rugged Mountain}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area={{rt|21|Kalos}}&amp;lt;br&amp;gt;{{rt|21|Kalos}} ([[Horde Encounter]])}}&lt;br /&gt;
{{Availability/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2|v=Sun|v2=Moon|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=fff|area=Hatch from {{pkmn|Egg}}}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 14]], Endless Level 4, Trozei Battle, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Joyous Tower]] (5F-7F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Blazing|link=Pokémon Mystery Dungeon (WiiWare)|color={{fire color}}|area=}}--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Factory: [[Firebreathing Mountain]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Wonder Area#Pokémon Outbreak!|Wonder Area: Pokémon Outbreak!]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Monday Stage 3|Safari Jungle: Stage 3]]{{dotw|Mo}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Starlight Islands#Volcanic Ravine|Starlight Islands: Volcanic Ravine]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Rayquaza Sea]], [[Celebi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Western Cave]] (10F-17F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Silver Trench]], [[Lightning Field]], [[Western Cave]], [[Darknight Relic]], [[Far-Off Sea]]&amp;lt;br/&amp;gt;Mystery House: [[Western Cave]]&amp;lt;br/&amp;gt;[[Mystery_dungeon#Strong_Foes|Strong Foe]]: [[Frosty Forest]] (4F, 6F, 10F-13F){{shinystar}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Prasino Woods|Prasino Woods: Stage 586]]&amp;lt;br&amp;gt;Event: [[Pokémon Safari/2015-Feb. 2018#First release|&#039;&#039;Pokémon Safari&#039;&#039;]] &amp;lt;small&amp;gt;(First release)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Normal}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|PokéPark Egg Spinda|Japanese|Japan|5|March 12 to May 8, 2005|link=List of Japanese event Pokémon distributions in Generation III#Spinda}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Normal}}&lt;br /&gt;
{{HeldItems/Games2|Ruby|Sapphire|tcolor1=fff|tcolor2=fff|Pokémon Ruby and Sapphire Versions}}&lt;br /&gt;
{{HeldItems/Items1|Chesto Berry|5|rows=5}}&lt;br /&gt;
{{HeldItems/Games1|Emerald|tcolor=fff|Pokémon Emerald Version}}&lt;br /&gt;
{{HeldItems/Games2|Diamond|Pearl|Pokémon Diamond and Pearl Versions}}&lt;br /&gt;
{{HeldItems/Games1|Platinum|Pokémon Platinum Version}}&lt;br /&gt;
{{HeldItems/Games2|HeartGold|SoulSilver|Pokémon HeartGold and SoulSilver Versions}}&lt;br /&gt;
{{HeldItems/Games2|Black 2|White 2|tcolor1=FFF|Pokémon Black and White Versions 2}}&lt;br /&gt;
{{HeldItems/Items1|Lava Cookie|100|availNote=[[In-game trade]],&amp;amp;#32;}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Normal&lt;br /&gt;
|HP=60&lt;br /&gt;
|Attack=60&lt;br /&gt;
|Defense=60&lt;br /&gt;
|SpAtk=60&lt;br /&gt;
|SpDef=60&lt;br /&gt;
|Speed=60}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=3&lt;br /&gt;
|Power=2&lt;br /&gt;
|PowerMax=3&lt;br /&gt;
|Technique=3&lt;br /&gt;
|TechniqueMax=4&lt;br /&gt;
|Stamina=3&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=2&lt;br /&gt;
|JumpMax=3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=100&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=100&lt;br /&gt;
|Ghost=0&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=100&lt;br /&gt;
|Fairy=100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|normal=yes&lt;br /&gt;
|newghost=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Spinda is available in {{pkmn|Brilliant Diamond and Shining Pearl}}, but cannot be transferred to/from {{g|HOME}}.&lt;br /&gt;
&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/level8|1|Tackle|Normal|Physical|40|100|35||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|5|Copycat|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/level8|10|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|14|Psybeam|Psychic|Special|65|100|20||}}&lt;br /&gt;
{{learnlist/level8|19|Hypnosis|Psychic|Status|&amp;amp;mdash;|60|20||}}&lt;br /&gt;
{{learnlist/level8|23|Body Slam|Normal|Physical|85|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|28|Sucker Punch|Dark|Physical|70|100|5||}}&lt;br /&gt;
{{learnlist/level8|32|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|37|Uproar|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|41|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/level8|46|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|50|Flail|Normal|Physical|&amp;amp;mdash;|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|55|Thrash|Normal|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/levelf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tm8|TM01|Focus Punch|Fighting|Physical|150|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM03|Water Pulse|Water|Special|60|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM04|Calm Mind|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM10|Work Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|30||}}&lt;br /&gt;
{{learnlist/tm8|TM11|Sunny Day|Fire|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM17|Protect|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM18|Rain Dance|Water|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM20|Safeguard|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|25||}}&lt;br /&gt;
{{learnlist/tm8|TM28|Dig|Ground|Physical|80|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM29|Psychic|Psychic|Special|90|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM30|Shadow Ball|Ghost|Special|80|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM31|Brick Break|Fighting|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM32|Double Team|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|15||}}&lt;br /&gt;
{{learnlist/tm8|TM34|Shock Wave|Electric|Special|60|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM39|Rock Tomb|Rock|Physical|60|95|15||}}&lt;br /&gt;
{{learnlist/tm8|TM42|Facade|Normal|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM44|Rest|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM45|Attract|Normal|Status|&amp;amp;mdash;|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM46|Thief|Dark|Physical|60|100|25||}}&lt;br /&gt;
{{learnlist/tm8|TM48|Skill Swap|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM56|Fling|Dark|Physical|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM58|Endure|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM60|Drain Punch|Fighting|Physical|75|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM67|Recycle|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM70|Flash|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM77|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM80|Rock Slide|Rock|Physical|75|90|10||}}&lt;br /&gt;
{{learnlist/tm8|TM82|Sleep Talk|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM85|Dream Eater|Psychic|Special|100|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM87|Swagger|Normal|Status|&amp;amp;mdash;|85|15||}}&lt;br /&gt;
{{learnlist/tm8|TM90|Substitute|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM92|Trick Room|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM96|Strength|Normal|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM98|Rock Smash|Fighting|Physical|40|100|15||}}&lt;br /&gt;
{{learnlist/tmf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0161|Sentret}}{{MSP/H|0162|Furret}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0203|Girafarig}}{{MSP/H|0303|Mawile}}{{MSP/H|0427|Buneary}}{{MSP/H|0428|Lopunny}}|Baton Pass|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|40||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0037|Vulpix}}{{MSP/H|0038|Ninetales}}{{MSP/H|0054|Psyduck}}{{MSP/H|0055|Golduck}}{{MSP/H|0352|Kecleon}}|Disable|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0287|Slakoth}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0289|Slaking}}{{MSP/H|0313|Volbeat}}{{MSP/H|0363|Spheal}}{{MSP/H|0364|Sealeo}}{{MSP/H|0365|Walrein}}|Encore|Normal|Status|&amp;amp;mdash;|100|5||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0052|Meowth}}{{MSP/H|0053|Persian}}{{MSP/H|0106|Hitmonlee}}{{MSP/H|0107|Hitmonchan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0296|Makuhita}}{{MSP/H|0297|Hariyama}}{{MSP/H|0300|Skitty}}{{MSP/H|0301|Delcatty}}{{MSP/H|0302|Sableye}}{{MSP/H|0431|Glameow}}{{MSP/H|0432|Purugly}}|Fake Out|Normal|Physical|40|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0216|Teddiursa}}{{MSP/H|0217|Ursaring}}{{MSP/H|0303|Mawile}}|Fake Tears|Dark|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Guard Split|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0215|Sneasel}}{{MSP/H|0461|Weavile}}{{MSP/H|0220|Swinub}}{{MSP/H|0221|Piloswine}}{{MSP/H|0473|Mamoswine}}{{MSP/H|0471|Glaceon}}|Icy Wind|Ice|Special|55|95|15||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0359|Absol}}{{MSP/H|0475|Gallade}}|Psycho Cut|Psychic|Physical|70|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Psycho Shift|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0027|Sandshrew}}{{MSP/H|0028|Sandslash}}{{MSP/H|0232|Donphan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0324|Torkoal}}|Rapid Spin|Normal|Physical|50|100|40||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0234|Stantler}}|Role Play|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Trick|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0282|Gardevoir}}|Wish|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breedf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[Move Tutor|tutoring]]====&lt;br /&gt;
{{learnlist/tutorh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tutor8null}}&lt;br /&gt;
{{learnlist/tutorf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Normal}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Normal|ndex=327|acquisition=Hatch}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Normal|ndex=327|rarity=Common}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=7.2&lt;br /&gt;
|area=Mt. Deepgreen&lt;br /&gt;
|P1=I&#039;m not the way I look. I can walk in a straight line, thank you!&lt;br /&gt;
|P2=Oh-oh? I daresay my HP is down by half.&lt;br /&gt;
|P3=I&#039;m prepared to keel over. I can&#039;t keep walking straight now.&lt;br /&gt;
|PL=I&#039;ll have you know I&#039;ve gone up a level.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=6.4&lt;br /&gt;
|IQ=G&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Normal|ndex=327&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Cubone}}, {{p|Mr. Mime}}, {{p|Kirlia}}, {{p|Buneary}}&lt;br /&gt;
|recruitment=Find {{p|Buneary}} together&lt;br /&gt;
|P1=I like traveling.&lt;br /&gt;
|P2=So exhausted!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Normal&lt;br /&gt;
|att=2&lt;br /&gt;
|def=2&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Normal|ndex=327&lt;br /&gt;
|walk=1.58&lt;br /&gt;
|hp=51&lt;br /&gt;
|attack=71&lt;br /&gt;
|defense=51&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Normal|ndex=327&lt;br /&gt;
|power=1&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Normal|ndex=327|num=229&lt;br /&gt;
|min=50&lt;br /&gt;
|max=100&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Counterattack&lt;br /&gt;
|skilldesc=Deals even more damage the more disruptions there are.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Normal|ndex=327&lt;br /&gt;
|buddy=3&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|candy=Spinda&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=155|attack=116|defense=116&lt;br /&gt;
|fast={{m|Sucker Punch}}, {{m|Psycho Cut}}&lt;br /&gt;
|special={{m|Dig}}, {{m|Rock Tomb}}, {{m|Icy Wind}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:0.5ch; background:#fff; {{roundy|10px}}; padding:1ch;&amp;quot;&amp;gt;&lt;br /&gt;
In {{g|GO}}, Spinda has nine distinct patterns, each treated as a [[List of Pokémon with form differences in Pokémon GO|different form]]. In addition, the Shiny variant for each pattern is also slightly different, making a total of eighteen patterns.&lt;br /&gt;
&lt;br /&gt;
Spinda cannot be transferred to {{g|HOME}} via the [[GO Transporter]].&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{normal color}}00; {{roundy|10px}} border: 3px solid #{{normal color dark}}00&amp;quot;&lt;br /&gt;
|+ &#039;&#039;&#039;Patterns in {{g|GO}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327 s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327B|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327B s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327C|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327C s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 1&lt;br /&gt;
| Pattern 2&lt;br /&gt;
| Pattern 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327D|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327D s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327E|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327E s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327F|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327F s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 4&lt;br /&gt;
| Pattern 5&lt;br /&gt;
| Pattern 6&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327G|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327G s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327H|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327H s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327I|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327I s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 7&lt;br /&gt;
| Pattern 8&lt;br /&gt;
| Pattern 9&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0327&lt;br /&gt;
|name1=Spinda&lt;br /&gt;
|type1-1=Normal}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Normal}}&lt;br /&gt;
{{Spritebox/NA|gen=III}}&lt;br /&gt;
{{Spritebox/3|ndex=327}}&lt;br /&gt;
{{Spritebox/4|ndex=327}}&lt;br /&gt;
{{Spritebox/5|ndex=327}}&lt;br /&gt;
{{Spritebox/6|ndex=327|crop=70}}&lt;br /&gt;
{{Spritebox/7|ndex=327|crop=68}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8/BDSP|ndex=327}}--&amp;gt;&lt;br /&gt;
{{Spritebox/NA|gen=IX|is=yes}}&lt;br /&gt;
{{Spritebox/HOME|ndex=0327}}&lt;br /&gt;
{{Spritebox/Footer|327|Spinda}}&lt;br /&gt;
&lt;br /&gt;
====Pattern examples====&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;
|&lt;br /&gt;
|&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Miles.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji1.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00000000&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88888888&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E3FDF3FD&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: EEE32A53&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman1.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Maiko.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman4.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman5.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Francisco.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Kimberly.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00094289&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 001C008A&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 0029A280&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 10232080&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102C3290&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102992A0&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E2880098&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88FE9800&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Spinda anime.png|thumb|250px|Spinda in {{aniseries|AG}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Multiple Spinda debuted in &#039;&#039;[[AG057|Going for a Spinda]]&#039;&#039;. {{Ash}} and {{ashfr}} had to help [[Claire]] find a Spinda with a heart-shaped spot on its forehead. {{an|Brock}}, meanwhile, kept picking one up with a spot shaped like a broken heart, much to his displeasure.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A {{pkmn|Coordinator}}&#039;s Spinda appeared in &#039;&#039;[[AG062|Disguise Da Limit!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Spinda appeared in &#039;&#039;[[AG077|A Fan with a Plan]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Coordinator&#039;s Spinda appeared in &#039;&#039;[[AG167|What I Did For Love!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039;, a {{pkmn|Trainer}}&#039;s Spinda competed in the [[Pokémon Pancake Race]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM015|Rocking Clawmark Hill!]]&#039;&#039;, a Spinda was training up on [[Clawmark Hill]].&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[SM141|Exhibition Unmasked!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In a flashback in &#039;&#039;[[JN051|Trials of a Budding Master!]]&#039;&#039;, a Trainer&#039;s Spinda battled Ash in a [[World Coronation Series]] match.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN103|The Future is Now, Thanks to Strategy!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN115|Curtain Up! Fight the Fights!]]&#039;&#039;. It reappeared in &#039;&#039;[[JN118|Battling as Hard as Stone!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN141|A Squad&#039;s Worth of Passion!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Animedexheader|Hoenn}}&lt;br /&gt;
{{Animedexbody|AG057|Spinda|Ash&#039;s Pokédex|Spinda, the Spot Panda Pokémon. Spinda uses its seemingly clumsy movements to {{status|Confusion|confuse}} its opponents. It is said that no two Spinda have the same {{DL|Variant Pokémon|Spinda|pattern of spots}}.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Hoenn}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Norman Spinda Teeter Dance Adventures.png|thumb|125px|Spinda in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
===={{MangaArc|Ruby &amp;amp; Sapphire}}====&lt;br /&gt;
{{adv|Norman}} owns a Spinda, which first appeared in &#039;&#039;[[PS258|Rayquaza Redemption I]]&#039;&#039;. He uses it in conjunction with his {{TP|Norman|Slaking}} to switch their {{Abilities}} with {{m|Skill Swap}}.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Emerald}}====&lt;br /&gt;
A Spinda appeared as a {{gdis|Battle Factory|III}} Pokémon in &#039;&#039;[[PS306|Pinsir Me, I Must Be Dreaming]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Battle Factory rented a Spinda, which was stolen by [[Guile Hideout]] in &#039;&#039;[[PS315|Skirting Around Surskit I]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The {{gdis|Battle Tower|III}} rented a Spinda, which was stolen by Guile Hideout in &#039;&#039;[[PS334|The Final Battle VII]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
A Spinda appeared in a flashback in &#039;&#039;[[PS361|Bombastic Bibarel &amp;amp; Heroic Hippopotas]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Black 2 &amp;amp; White 2}}====&lt;br /&gt;
In &#039;&#039;[[PS525|The Transfer Student]]&#039;&#039;, [[Yancy]] owns a Spinda. It was first seen with its {{pkmn|Trainer}} when she was breaking up with {{adv|Blake}}. Afterwards, it left with Yancy while she said her tearful goodbyes.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Omega Ruby &amp;amp; Alpha Sapphire}}====&lt;br /&gt;
The [[Lumiose Press editor-in-chief]] owns a Spinda, which first appeared in &#039;&#039;[[PS604|Goodra Spits]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Spinda (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==In the TFG==&lt;br /&gt;
One Spinda figure has been released.&lt;br /&gt;
* {{TFG|Groundbreakers}}: {{TFG ID|Groundbreakers|Spinda|32}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Pokémon Battle Revolution]], {{m|Toxic}} is depicted as two purple orbs spinning around each other towards the target. However, when Spinda uses Toxic, the orbs travel erratically. The same animation is used for {{p|Carnivine}}.&lt;br /&gt;
* Like {{p|Whirlipede}}, its base stat total might be based on the fact that it usually spins in circles, which are 360 degrees.&lt;br /&gt;
* Spinda&#039;s {{pkmn|Sun and Moon|Pokémon Sun}} [[Pokédex entry]] states that Spinda believe they walk in straight lines, oblivious to their teetering gait. However, in [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]], an NPC Spinda tells the player; &#039;&#039;&amp;quot;When I walk, I always totter.&amp;quot;&#039;&#039;, clearly being aware of this trait.&lt;br /&gt;
* Spinda and {{p|Deoxys}} are the only Pokémon to lack a second frame of animation for their front sprite in {{pkmn|Emerald|Pokémon Emerald}}.&lt;br /&gt;
&lt;br /&gt;
===Spot patterns===&lt;br /&gt;
* Some of Spinda&#039;s [[Pokédex entry|Pokédex entries]] mention the odds of two Spinda having the same spot pattern as less than one in four billion. Since Spinda&#039;s spots are based on its [[personality value]] (or encryption constant in later games), which is a 32-bit number, a simplistic model would put the odds at 1 in 4,294,967,296, which is indeed smaller than one in four billion; however, it is actually possible for two personality values to produce spot patterns that are visually identical, so the real odds are somewhat higher.&lt;br /&gt;
** Using [https://wokann.github.io/Tool/Spinda_Painter/Spinda%20Painter%201.3.2.htm this app], it can be found that two dots have 256 distinct locations, one dot has 254, and one dot has 237, counting all locations where the dot is entirely off-sprite as the same. This results in a total of 3,945,136,128 patterns. However, even this total is slightly too high, because if the upper left dot is far enough down and to the right, it can entirely eclipse the lower-left dot, resulting in a few more patterns being indistinguishable. Compare, for example, 0x0E07F5FB and 0x0EF0F5FB.&lt;br /&gt;
** The fewest spots a Spinda can visibly have is 1 - the sprite&#039;s leftmost spots can land entirely off the sprite, while the rightmost spots cannot, but instead can entirely overlap.&lt;br /&gt;
** In {{g|Brilliant Diamond and Shining Pearl}}, due to a [[List of glitches in Generation VIII#Spinda spot pattern glitches|glitch]] this value is interpreted as big-endian, causing the spot pattern to be rendered incorrectly. As an example, a value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; (hexadecimal) would be interpreted as &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; instead.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1500557458623778819&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In [[Pokémon HOME]] v2.1.1 and prior versions, when opening the [[summary]] of a Spinda in the mobile app, Spinda would display the correct spot pattern, identical to its appearance in [[Generation VI]] and below. In HOME v3.0.0 all Spinda were displayed as having the same pattern as the static rendered image used in all HOME menus.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1665787431009001472&amp;lt;/ref&amp;gt; The encryption constant of Spinda in HOME remained unchanged (which meant that if transferred out of HOME into a compatible game, they would have likely retained their original spot pattern), however HOME&#039;s mobile app no longer displayed the spot pattern associated with the encryption constant of a given individual Spinda, all appearing identical to the &amp;quot;stock&amp;quot; rendered image of Spinda. This was resolved in v3.0.1.&amp;lt;ref name=&amp;quot;Spinda HOME&amp;quot;&amp;gt;https://twitter.com/Atrius97/status/1676088622943207424&amp;lt;/ref&amp;gt;&lt;br /&gt;
*** The value internally used in Pokémon HOME as the &amp;quot;default&amp;quot; pattern for Spinda is &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;7A&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;39&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;66&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt;,&amp;lt;ref name=&amp;quot;Spinda HOME&amp;quot;/&amp;gt; which is a close match to the pattern shown in nearly all official artwork, sprites, and 3D renders of Spinda.&lt;br /&gt;
** In Brilliant Diamond and Shining Pearl&#039;s [[Super Contest]]s, the encryption constant is generated randomly instead of using the value from Pokémon the player selects, which for Spinda results in completely random spot patterns appearing for the duration of the contest, regardless of their true spot pattern.&amp;lt;ref&amp;gt;https://twitter.com/Sibuna_Switch/status/1828258413442142257&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In {{game|Ruby and Sapphire|s}}, the temporary Pokédex entry created before catching a Spinda uses value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; before being overwritten by the obtained one; however, if the player&#039;s first Spinda is obtained via a trade, this value becomes permanent instead of being properly overwritten. This oversight is fixed in {{game|FireRed and LeafGreen|s}} and {{game|Emerald}}.&amp;lt;ref&amp;gt;[https://www.youtube.com/watch?v=J1g58JP0BfE The Spinda Rabbit Hole Goes Deeper than You Think]&amp;lt;/ref&amp;gt;&lt;br /&gt;
* Unlike other Pokémon with no [[List of Pokémon with gender differences|gender differences]], the [[Rotom Pokédex]] does not display a single model for both male and female Spinda, but rather a separate one for each. The models used are whatever the first spot patterns caught of each gender were.&lt;br /&gt;
** The Pokédex preview models for each gender, however, will always be a set model that will likely differ from the model the player will see.&lt;br /&gt;
* {{g|HOME}} cannot transfer Spinda into or out of {{g|GO}} or {{g|Brilliant Diamond and Shining Pearl}} due to inconsistencies in how its spot patterns works.&lt;br /&gt;
** In Pokémon GO, Spinda has nine predetermined forms rather than random patterns.&lt;br /&gt;
*** As a result, Spinda is one of only three Pokémon obtainable in GO that cannot have the {{DL|Origin mark|GO icon}} as its [[origin mark]], the others being {{p|Zygarde}} and {{p|Eternatus}}.&lt;br /&gt;
** In Pokémon Brilliant Diamond and Shining Pearl, this is due to a [[List of glitches in Generation VIII#Spinda spot pattern glitch|bug]] in the game, which causes the encryption constant to be read as a {{wp|Endianness|big-endian}} value (i.e. bytes are read in reverse order), and would allow the possibility to indirectly change Spinda&#039;s spot pattern. Spinda is the only Pokémon that cannot be transferred out of these games.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Spinda appears to be based on a {{wp|Qinling panda}} with traits of {{wp|rabbit}}s. It also resembles a {{wp|teddy bear}} or other {{wp|stuffed toy}}. The swirls in its eyes are based on a cartoonish representation of someone being dazed or dizzy, and its staggering steps resemble the {{wp|drunken boxing}} style of martial arts, which attempt to imitate the movements of a drunk person to become unpredictable and elusive. The connection between Qinling pandas and dizziness may stem from the {{wp|Qinling|Qinling mountains}} upon which these pandas live &amp;amp;ndash; the mountains suffer metal pollution in its soil and plant life, which can lead to {{wp|metal toxicity|metal poisoning}}, including dizziness and confusion, for its inhabitants over time.&amp;lt;ref&amp;gt;&#039;&#039;[https://www.sciencedirect.com/science/article/abs/pii/S0048969719310484?via%3Dihub &amp;quot;Establish an environmentally sustainable Giant Panda National Park in the Qinling Mountains&amp;quot;]&#039;&#039;, &#039;&#039;Science of the Total Environment&#039;&#039;, 10th June 2019&amp;lt;/ref&amp;gt; Spinda&#039;s habitat of [[Hoenn Route 113|Route 113]] is used as farmland, possibly in reference to agricultural run-offs being a source of pollution in Qinling. Additionally, Qinling pandas can live as high as {{tt|3&#039;000 metres|approx 9843 feet}} up the Qinling mountains, which is enough to cause dizziness in humans through {{wp|altitude sickness}}.&lt;br /&gt;
&lt;br /&gt;
The use of &amp;quot;patch&amp;quot; in Spinda&#039;s Japanese name could refer to patches of fabric used to cover tears in a material. Spinda&#039;s random spots would then be the various bandages attached to a toy that has been damaged due to rough play, or even a toddler that has fallen over many times due to their inability to walk stably.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Spinda may be a combination of &#039;&#039;spin&#039;&#039; and &#039;&#039;panda&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Patcheel may be a combination of &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039; (to lose one&#039;s balance).&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Normal|type2=Normal&lt;br /&gt;
|ja= パッチール &#039;&#039;Patcheel&#039;&#039;|jameaning=From &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039;&lt;br /&gt;
|fr=Spinda|frmeaning=Same as English name&lt;br /&gt;
|es=Spinda|esmeaning=Same as English name&lt;br /&gt;
|de=Pandir|demeaning=From &#039;&#039;Panda&#039;&#039; and {{tt|&#039;&#039;wirr&#039;&#039;|confused}}&lt;br /&gt;
|it=Spinda|itmeaning=Same as English name&lt;br /&gt;
|ko=얼루기 &#039;&#039;Ollugi&#039;&#039;|komeaning=From {{tt|얼룩 &#039;&#039;eolluk&#039;&#039;|stain}}&lt;br /&gt;
|zh_cmn=晃晃斑 &#039;&#039;Huànghuàngbān&#039;&#039;|zh_cmnmeaning= From {{tt|晃 &#039;&#039;huàng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bān&#039;&#039;|spots}}&lt;br /&gt;
|zh_yue=晃晃斑 &#039;&#039;Fóngfóngbāan&#039;&#039;|zh_yuemeaning= From {{tt|晃 &#039;&#039;fóng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bāan&#039;&#039;|spots}}&lt;br /&gt;
|hi=चकरबी &#039;&#039;Chakarbee&#039;&#039;|himeaning=From {{tt|चक्कर &#039;&#039;chakkar&#039;&#039;|spiral}}&lt;br /&gt;
|ru=Спинда &#039;&#039;Spinda&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=พัทชีล &#039;&#039;Phatchin&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Pandir]]&lt;br /&gt;
[[es:Spinda]]&lt;br /&gt;
[[fr:Spinda]]&lt;br /&gt;
[[it:Spinda]]&lt;br /&gt;
[[ja:パッチール]]&lt;br /&gt;
[[zh:晃晃斑]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Donphan_(Pok%C3%A9mon)&amp;diff=4376415</id>
		<title>Donphan (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Donphan_(Pok%C3%A9mon)&amp;diff=4376415"/>
		<updated>2025-09-09T21:51:11Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Name origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Ground}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Donphan}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Ground|prevnum=0231|prev=Phanpy|nextnum=0233|next=Porygon2|round=none}}&lt;br /&gt;
{{PokémonPrevNext/Disambig|species=Donphan}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Donphan&lt;br /&gt;
|jname=ドンファン&lt;br /&gt;
|tmname=Donfan&lt;br /&gt;
|ndex=0232&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Ground&lt;br /&gt;
|category=Armor&lt;br /&gt;
|height-ftin=3&#039;07″&lt;br /&gt;
|height-m=1.1&lt;br /&gt;
|weight-lbs=264.6&lt;br /&gt;
|weight-kg=120.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Sturdy&lt;br /&gt;
|abilityd=Sand Veil&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|eggcycles=20&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evat=1&lt;br /&gt;
|evde=1&lt;br /&gt;
|expyield=175&lt;br /&gt;
|oldexp=189&lt;br /&gt;
|lv100exp=1,000,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Gray&lt;br /&gt;
|catchrate=60&lt;br /&gt;
|body=08&lt;br /&gt;
|pokefordex=donphan&lt;br /&gt;
|generation=2&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Donphan&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ドンファン&#039;&#039;&#039; &#039;&#039;Donfan&#039;&#039;) is a {{type|Ground}} {{OBP|Pokémon|species}} introduced in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] from {{p|Phanpy}} starting at [[level]] 25.&lt;br /&gt;
&lt;br /&gt;
Donphan was officially revealed in the May 1997 issue of [[CoroCoro]], along with {{p|Slowking}} and {{p|Ampharos}}.&amp;lt;ref&amp;gt;https://www.zoidsland.com/1rebyu-/koro97-5b.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Paradox Pokémon]] {{p|Great Tusk}} and {{p|Iron Treads}} are said to be ancient and future relatives of Donphan, respectively, or counterparts of it from parallel timelines.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Donphan is a gray, {{wp|Proboscidea|proboscid}} {{OBP|Pokémon|species}} with a thick, black band of hide running down the length of its back and extending to the tip of its long trunk. When this Pokémon curls up, the band resembles a car tire. This tough hide prevents regular attacks from inflicting even a scratch. A pair of white tusks, which are smaller on the female, extend from the corners of its mouth. It has thin, elongated ears held out almost perpendicular to its body. Its four short legs are each encircled with a broken, black band and have three toes.&lt;br /&gt;
&lt;br /&gt;
Donphan has the ability to curl up into a ball and violently roll around like a wheel. These rolling tackles are strong enough to knock down a house. While normally calm, Donphan can become enraged and start a rampage. Once it starts its rampage, it will be almost unstoppable. Donphan will chase after anyone who angers it. The {{aniseries|AG}} episode &#039;&#039;[[AG114|Date Expectations]]&#039;&#039; showed that this ability is further used as a form of courtship. The male Donphan have rolling competitions to demonstrate their toughness to the females. A Donphan&#039;s {{a|Sturdy|tough hide}} is so strong, not even a car can scratch it. Despite this, the armor is extremely vulnerable to rain.&lt;br /&gt;
&lt;br /&gt;
In the {{aniseries|PTS}} episode &#039;&#039;[[EP120|Roll On, Pokémon!]]&#039;&#039;, it is shown that Donphan has a keen sense of smell, capable of sniffing out a gem known as amberite (Agate in the Japanese version). Donphan travels in herds with a ranking system. The larger its tusks, the higher its rank in the herd. It lives in {{DL|List of Pokémon by habitat|Rough-terrain Pokémon|rough}}, mountainous terrain. &lt;br /&gt;
&lt;br /&gt;
Both {{p|Great Tusk}} and {{p|Iron Treads}} share a resemblance to Donphan. Great Tusk is theorized to be Donphan&#039;s ancestor from the dinosaur era, while Iron Treads is believed to be a descendant of Donphan or a scientific weapon sent to the [[Pokémon world]] by aliens, but according to a version of [[Professor Sada]]{{Sup/9|S}}/[[Professor Turo|Turo]]{{Sup/9|V}} that appeared at the [[Crystal Pool]], both Pokémon are counterparts of Donphan from parallel timelines.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Donphan evolves from {{p|Phanpy}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-2&lt;br /&gt;
|type1=Ground&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0231&lt;br /&gt;
|name1=Phanpy&lt;br /&gt;
|type1-1=Ground&lt;br /&gt;
|evo1=&lt;br /&gt;
|no2=0232&lt;br /&gt;
|name2=Donphan&lt;br /&gt;
|type1-2=Ground}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Ground}}&lt;br /&gt;
{{Dex/NA|gen=II}}&lt;br /&gt;
{{Dex/Gen/1|gen=II|reg1=Johto|num1=196}}&lt;br /&gt;
{{Dex/Entry1|v=Gold|entry=It has sharp, hard tusks and a rugged hide. Its &amp;lt;sc&amp;gt;Tackle&amp;lt;/sc&amp;gt; is strong enough to knock down a house.}}&lt;br /&gt;
{{Dex/Entry1|v=Silver|entry=The longer and bigger its tusks, the higher its rank in its herd. The tusks take long to grow.}}&lt;br /&gt;
{{Dex/Entry1|v=Crystal|entry=Because this {{ScPkmn}}&#039;s skin is so tough, a normal attack won&#039;t even leave a scratch on it.}}&lt;br /&gt;
{{Dex/Entry1|v=Stadium 2|t=FFF|color=000|entry=It has sharp, hard tusks and a rugged hide. Its &amp;lt;sc&amp;gt;Tackle&amp;lt;/sc&amp;gt; is strong enough to knock down a house. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Red, Silver, or Crystal inserted)&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;The longer and bigger its tusks, the higher its rank in its herd. The tusks take long to grow. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Blue, Gold, or Yellow inserted)&#039;&#039;&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=166|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=&amp;lt;sc&amp;gt;Donphan&amp;lt;/sc&amp;gt;&#039;s favorite attack is curling its body into a ball, then charging at its foe while rolling at high speed. Once it starts rolling, this {{ScPkmn}} can&#039;t stop very easily.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=If &amp;lt;sc&amp;gt;Donphan&amp;lt;/sc&amp;gt; were to tackle with its hard body, even a house could be destroyed. Using its massive strength, the {{ScPkmn}} helps clear rock and mud slides that block mountain trails.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=A &amp;lt;sc&amp;gt;Donphan&amp;lt;/sc&amp;gt; is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won&#039;t even leave a scratch.}}&lt;br /&gt;
{{Dex/Entry1|v=FireRed|entry=The longer and bigger its tusks, the higher its rank in its herd. The tusks take a long time to grow.}}&lt;br /&gt;
{{Dex/Entry1|v=LeafGreen|entry=It has sharp, hard tusks and a rugged hide. Its &amp;lt;sc&amp;gt;Tackle&amp;lt;/sc&amp;gt; is strong enough to knock down a house.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto|num2=201}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=It attacks by curling up, then rolling into its foe. It can blow apart a house in one hit.}}&lt;br /&gt;
{{Dex/Entry1|v=HeartGold|entry=It has sharp, hard tusks and a rugged hide. Its tackle is strong enough to knock down a house.}}&lt;br /&gt;
{{Dex/Entry1|v=SoulSilver|entry=The longer and bigger its tusks, the higher its rank in its herd. The tusks take long to grow.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=It attacks by curling up, then rolling into its foe. It can blow apart a house in one hit.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=It attacks by curling up then rolling into its foe. It can blow apart a house in one hit.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos |reg2=Hoenn|num2=173}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=It has sharp, hard tusks and a rugged hide. Its Tackle is strong enough to knock down a house.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=The longer and bigger its tusks, the higher its rank in its herd. The tusks take long to grow.}}&lt;br /&gt;
{{Dex/Entry1|v=Omega Ruby|t=FFF|entry=Donphan&#039;s favorite attack is curling its body into a ball, then charging at its foe while rolling at high speed. Once it starts rolling, this Pokémon can&#039;t stop very easily.}}&lt;br /&gt;
{{Dex/Entry1|v=Alpha Sapphire|t=FFF|entry=If Donphan were to tackle with its hard body, even a house could be destroyed. Using its massive strength, the Pokémon helps clear rock and mud slides that block mountain trails.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VII|reg1=Alola|reg2=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Generation VII]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=It attacks by curling up and rolling into its foe. It can blow apart a house in one hit.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=123|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=Donphan is covered in tough hide, so even being hit by a car won’t faze this Pokémon. However, it is extremely susceptible to rain.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=Donphan is normally a calm Pokémon, but once it is enraged, it will curl its body into a ball and charge at you while rolling.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{ground color dark}}; background:#{{ground color}}; font-size:80%; {{roundy|10px}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{ground color dark}}; background:#{{ground color light}}; {{roundy|5px}};&amp;quot; | [[File:Pokédex Image Donphan SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Donphan in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Ground}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/Entry1/None|1|v=Gold|area=[[Trade]], [[Evolution|Evolve]] [[Phanpy (Pokémon)#In events|Event]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Silver|area={{rt|28|Kanto}}, [[Mt. Silver]], [[Mt. Silver Cave]], {{ka|Victory Road}}{{tt|*|Exclusive to Gold in Japanese and Korean games}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Crystal|area={{rt|45|Johto}}{{sup/t|M}}{{sup/t|D}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2|v=Ruby|v2=Sapphire|t=fff|t2=fff|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry2|v=FireRed|v2=LeafGreen|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1|v=XD|t=FFF|link=Pokémon XD: Gale of Darkness|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|v=HeartGold|area={{rt|28|Kanto}}, [[Mt. Silver]], [[Mt. Silver Cave]], {{ka|Victory Road}}}}&lt;br /&gt;
{{Availability/Entry1/None|v=SoulSilver}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|mountain}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Mountain}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=fff|t2=fff|area={{safari|Hoenn}} (Zone 4, [[tall grass]]), [[Mirage Mountains]] (west of {{rt|104|Hoenn}}, north of [[Lilycove City]], northeast of {{rt|125|Hoenn}}, south of {{rt|131|Hoenn}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sun|v2=Moon|area=[[Pokémon Bank]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Ultra Sun|v2=Ultra Moon|area=[[Pokémon Bank]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=South Province: [[South Province (Area Four)|Area Four]]&amp;lt;br&amp;gt;West Province: [[West Province (Area Two)|Area Two]], [[Asado Desert]]&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 4★ Tera Raid Battles (Paldea)|Donphan|4★}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Ground}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/NA/Side|gen=II}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=FFF|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 18]], Trozei Battle, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|v=Ranger|link=Pokémon Ranger (video game)|area=[[Fiore Temple]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Crystal Cave]] (B6F-B11F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Crystal Cave]] (B6F-B11F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Stormy|link=Pokémon Mystery Dungeon (WiiWare)|color={{water color}}|area=[[Evolution|Evolve]] {{p|Phanpy}}}}&lt;br /&gt;
{{Availability/Entry1|v=Ranger: GS|link=Pokémon Ranger: Guardian Signs|color={{GS color}}|area=[[Faldera Island]], [[Fire Temple]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Desert: [[Sunny Seashore]] (Post-ending)}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Variety Battle#Pokémon on a Roll|Variety Battle: Pokémon on a Roll]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Infinite Ruins#Stage 2|Infinite Ruins: Stage 2]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Ruby Volcano#Dusty Desert|Ruby Volcano: Dusty Desert]] &amp;lt;small&amp;gt;(Center Boss, Back)&amp;lt;/small&amp;gt;, [[Starlight Islands#Surveillance Dunes|Starlight Islands: Surveillance Dunes]] &amp;lt;small&amp;gt;(Special)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Dragonite Sea]], [[Lugia Sea]], [[Charizard Sea]]&amp;lt;sup&amp;gt;2020&amp;lt;/sup&amp;gt;, [[Entei Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Southern Cavern]] (31F-40F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Southern Cavern]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Silbern Museum|Silbern Museum: Stage 101]]&amp;lt;br&amp;gt;[[Blau Salon|Blau Salon: Stage 409]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Ground}}&lt;br /&gt;
{{HeldItems/Games2|HeartGold|SoulSilver|Pokémon HeartGold and SoulSilver Versions}}&lt;br /&gt;
{{HeldItems/Items1|Passho Berry|5}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Ground&lt;br /&gt;
|HP=      90&lt;br /&gt;
|Attack= 120&lt;br /&gt;
|Defense=120&lt;br /&gt;
|SpAtk=   60&lt;br /&gt;
|SpDef=   60&lt;br /&gt;
|Speed=   50}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Ground&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=4&lt;br /&gt;
|Power=5&lt;br /&gt;
|PowerMax=5&lt;br /&gt;
|Technique=2&lt;br /&gt;
|TechniqueMax=2&lt;br /&gt;
|Stamina=4&lt;br /&gt;
|StaminaMax=4&lt;br /&gt;
|Jump=2&lt;br /&gt;
|JumpMax=2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Ground&lt;br /&gt;
|Normal=  100&lt;br /&gt;
|Fighting=100&lt;br /&gt;
|Flying=  100&lt;br /&gt;
|Poison=   50&lt;br /&gt;
|Ground=  100&lt;br /&gt;
|Rock=     50&lt;br /&gt;
|Bug=     100&lt;br /&gt;
|Ghost=   100&lt;br /&gt;
|Steel=   100&lt;br /&gt;
|Fire=    100&lt;br /&gt;
|Water=   200&lt;br /&gt;
|Grass=   200&lt;br /&gt;
|Electric=  0&lt;br /&gt;
|Psychic= 100&lt;br /&gt;
|Ice=     200&lt;br /&gt;
|Dragon=  100&lt;br /&gt;
|Dark=    100&lt;br /&gt;
|Fairy=   100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|ground=yes&lt;br /&gt;
|newelectric=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
{{learnlist/level9|1|Fire Fang|Fire|Physical|65|95|15}}&lt;br /&gt;
{{learnlist/level9|1|Thunder Fang|Electric|Physical|65|95|15}}&lt;br /&gt;
{{learnlist/level9|1|Horn Attack|Normal|Physical|65|100|25}}&lt;br /&gt;
{{learnlist/level9|1|Bulldoze|Ground|Physical|60|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Growl|Normal|Status|—|100|40}}&lt;br /&gt;
{{learnlist/level9|1|Defense Curl|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/level9|{{tt|Evo.|Learned upon evolving}}|Fury Attack|Normal|Physical|15|85|20}}&lt;br /&gt;
{{learnlist/level9|6|Rapid Spin|Normal|Physical|50|100|40}}&lt;br /&gt;
{{learnlist/level9|10|Rollout|Rock|Physical|30|90|20}}&lt;br /&gt;
{{learnlist/level9|15|Assurance|Dark|Physical|60|100|10}}&lt;br /&gt;
{{learnlist/level9|19|Knock Off|Dark|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/level9|24|Slam|Normal|Physical|80|75|20}}&lt;br /&gt;
{{learnlist/level9|30|Stomping Tantrum|Ground|Physical|75|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|37|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/level9|43|Earthquake|Ground|Physical|100|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|50|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/levelf/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM002|Charm|Fairy|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM005|Mud-Slap|Ground|Special|20|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM006|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM008|Fire Fang|Fire|Physical|65|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM009|Thunder Fang|Electric|Physical|65|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM010|Ice Fang|Ice|Physical|65|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM020|Trailblaze|Grass|Physical|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM035|Mud Shot|Ground|Special|55|95|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM053|Smart Strike|Steel|Physical|70|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM055|Dig|Ground|Physical|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM071|Seed Bomb|Grass|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM083|Poison Jab|Poison|Physical|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM084|Stomping Tantrum|Ground|Physical|75|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM089|Body Press|Fighting|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM099|Iron Head|Steel|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM102|Gunk Shot|Poison|Physical|120|80|5}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM104|Iron Defense|Steel|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM116|Stealth Rock|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM117|Hyper Voice|Normal|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM121|Heavy Slam|Steel|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM122|Encore|Normal|Status|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM124|Ice Spinner|Ice|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM127|Play Rough|Fairy|Physical|90|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM133|Earth Power|Ground|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM150|Stone Edge|Rock|Physical|100|80|5}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM172|Roar|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM176|Sand Tomb|Ground|Physical|35|85|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM179|Smack Down|Rock|Physical|50|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM180|Gyro Ball|Steel|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM181|Knock Off|Dark|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM186|High Horsepower|Ground|Physical|95|95|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM221|Throat Chop|Dark|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM224|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tmf/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0206|Dunsparce}}{{MSP/H|0982|Dudunsparce}}{{MSP/H|0221|Piloswine}}{{MSP/H|0473|Mamoswine}}|Ancient Power|Rock|Special|60|100|5}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0324|Torkoal}}{{MSP/H|0650|Chespin}}{{MSP/H|0651|Quilladin}}{{MSP/H|0652|Chesnaught}}{{MSP/H|0819|Skwovet}}{{MSP/H|0820|Greedent}}{{MSP/H|0974|Cetoddle}}{{MSP/H|0975|Cetitan}}|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0287|Slakoth}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0289|Slaking}}{{MSP/H|0335|Zangoose}}{{MSP/H|0448|Lucario}}{{MSP/H|0745-Midnight|Lycanroc}}{{MSP/H|0745-Dusk|Lycanroc}}{{MSP/H|0749|Mudbray}}{{MSP/H|0750|Mudsdale}}{{MSP/H|0813|Scorbunny}}{{MSP/H|0814|Raboot}}{{MSP/H|0815|Cinderace}}{{MSP/H|0819|Skwovet}}{{MSP/H|0820|Greedent}}{{MSP/H|0979|Annihilape}}|Counter|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0206|Dunsparce}}{{MSP/H|0982|Dudunsparce}}{{MSP/H|0667|Litleo}}{{MSP/H|0668|Pyroar}}{{MSP/H|0810|Grookey}}{{MSP/H|0811|Thwackey}}{{MSP/H|0812|Rillaboom}}|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0050|Diglett}}{{MSP/H|0050-Alola|Diglett}}{{MSP/H|0051|Dugtrio}}{{MSP/H|0051-Alola|Dugtrio}}{{MSP/H|0323|Camerupt}}{{MSP/H|0449|Hippopotas}}{{MSP/H|0450|Hippowdon}}{{MSP/H|0529|Drilbur}}{{MSP/H|0530|Excadrill}}|Fissure|Ground|Physical|—|30|5}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0056|Mankey}}{{MSP/H|0057|Primeape}}{{MSP/H|0979|Annihilape}}{{MSP/H|0255|Torchic}}{{MSP/H|0256|Combusken}}{{MSP/H|0257|Blaziken}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0322|Numel}}{{MSP/H|0323|Camerupt}}{{MSP/H|0434|Stunky}}{{MSP/H|0435|Skuntank}}{{MSP/H|0501|Oshawott}}{{MSP/H|0502|Dewott}}{{MSP/H|0503|Samurott}}{{MSP/H|0503-Hisui|Samurott}}{{MSP/H|0766|Passimian}}{{MSP/H|0963|Finizen}}{{MSP/H|0964|Palafin}}|Focus Energy|Normal|Status|—|—|30}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0498|Tepig}}{{MSP/H|0499|Pignite}}{{MSP/H|0500|Emboar}}{{MSP/H|0559|Scraggy}}{{MSP/H|0560|Scrafty}}|Head Smash|Rock|Physical|150|80|5}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0749|Mudbray}}{{MSP/H|0750|Mudsdale}}{{MSP/H|0879|Copperajah}}|Heavy Slam|Steel|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0217|Ursaring}}{{MSP/H|0901|Ursaluna}}{{MSP/H|0749|Mudbray}}{{MSP/H|0750|Mudsdale}}{{MSP/H|0878|Cufant}}{{MSP/H|0879|Copperajah}}|High Horsepower|Ground|Physical|95|95|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0037-Alola|Vulpix}}{{MSP/H|0038-Alola|Ninetales}}{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0220|Swinub}}{{MSP/H|0221|Piloswine}}{{MSP/H|0473|Mamoswine}}{{MSP/H|0461|Weavile}}{{MSP/H|0471|Glaceon}}{{MSP/H|0974|Cetoddle}}{{MSP/H|0975|Cetitan}}|Ice Shard|Ice|Physical|40|100|30}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0052|Meowth}}{{MSP/H|0052-Alola|Meowth}}{{MSP/H|0053|Persian}}{{MSP/H|0053-Alola|Persian}}{{MSP/H|0058|Growlithe}}{{MSP/H|0059|Arcanine}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0216|Teddiursa}}{{MSP/H|0217|Ursaring}}{{MSP/H|0901|Ursaluna}}{{MSP/H|0261|Poochyena}}{{MSP/H|0262|Mightyena}}{{MSP/H|0287|Slakoth}}{{MSP/H|0702|Dedenne}}{{MSP/H|0878|Cufant}}{{MSP/H|0879|Copperajah}}{{MSP/H|0906|Sprigatito}}{{MSP/H|0907|Floragato}}{{MSP/H|0908|Meowscarada}}{{MSP/H|0926|Fidough}}{{MSP/H|0927|Dachsbun}}{{MSP/H|0971|Greavard}}{{MSP/H|0972|Houndstone}}|Play Rough|Fairy|Physical|90|90|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0216|Teddiursa}}{{MSP/H|0217|Ursaring}}{{MSP/H|0901|Ursaluna}}{{MSP/H|0901-Bloodmoon|Ursaluna}}{{MSP/H|0325|Spoink}}{{MSP/H|0326|Grumpig}}{{MSP/H|0702|Dedenne}}|Snore|Normal|Special|50|100|15}}&lt;br /&gt;
{{learnlist/breedf/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{learnlist/prevoh/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
{{learnlist/prevo9|0231|Phanpy|||||Tackle|Normal|Physical|40|100|35}}&lt;br /&gt;
{{learnlist/prevo9|0231|Phanpy|||||Flail|Normal|Physical|—|100|15}}&lt;br /&gt;
{{learnlist/prevo9|0231|Phanpy|||||Last Resort|Normal|Physical|140|100|5}}&lt;br /&gt;
&lt;br /&gt;
{{learnlist/prevof/9|Donphan|Ground|Ground|2}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Ground}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Ground|ndex=232|acquisition=Evolve|evolved=yes}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Ground|ndex=232|rarity=Rare}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Ground|ndex=232&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=Evolve&lt;br /&gt;
|area=Safari&lt;br /&gt;
|P1=The length of these tusks is a measure of my power!&lt;br /&gt;
|P2=This won&#039;t do. My health has dwindled to half.&lt;br /&gt;
|P3=I&#039;ve had enough... My tusks are too heavy to move...&lt;br /&gt;
|PL=I&#039;ve leveled up! My tusks seem to have thrust out more!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Ground|ndex=232&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=0.5&lt;br /&gt;
|IQ=E&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Ground|ndex=232&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Machamp}}, {{p|Tauros}}, {{p|Phanpy}}, {{p|Lilligant}}, {{p|Gogoat}}, {{p|Tyrantrum}}&lt;br /&gt;
|recruitment=Talk to in [[Lively Town]]&lt;br /&gt;
|P1=Where are you going today? I&#039;ll help you if you need me.&lt;br /&gt;
|P2=This is a bit too much to take…&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger|col=6|type=Ground&lt;br /&gt;
|group=Ground&lt;br /&gt;
|assist=Ground&lt;br /&gt;
|fieldpower=2&lt;br /&gt;
|field=Tackle&lt;br /&gt;
|loop=10&lt;br /&gt;
|MinEXP=60&lt;br /&gt;
|MaxEXP=85&lt;br /&gt;
|num=035&lt;br /&gt;
|browser=Donphan rolls its body into a ball to charge. Its crash can shake things up!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger GS|col=6|type=Ground&lt;br /&gt;
|group=Ground&lt;br /&gt;
|assist=Ground&lt;br /&gt;
|field=Tackle&lt;br /&gt;
|fieldpower=3&lt;br /&gt;
|num=210&lt;br /&gt;
|pastnum=086&lt;br /&gt;
|browser=It triggers tremors to attack.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Ground&lt;br /&gt;
|att=4&lt;br /&gt;
|def=4&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Ground|ndex=232 f&lt;br /&gt;
|walk=1.25&lt;br /&gt;
|hp=57&lt;br /&gt;
|attack=80&lt;br /&gt;
|defense=57&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Ground|ndex=232&lt;br /&gt;
|power=2&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Ground|ndex=232|num=46&lt;br /&gt;
|min=60&lt;br /&gt;
|max=125&lt;br /&gt;
|raisemaxlevel=15&lt;br /&gt;
|skill=Quake&lt;br /&gt;
|skilldesc=Sometimes increases damage and leaves opponent paralyzed for a short period of time.&lt;br /&gt;
|swapper=Ground Forces&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Ground|ndex=232&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=3&lt;br /&gt;
|candy=Phanpy&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=207|attack=214|defense=185&lt;br /&gt;
|fast={{m|Tackle}}, {{m|Counter}}, {{m|Mud-Slap}}{{tt|*|From February 1, 2019 onward}}, {{m|Charm}}{{tt|*|From July 9, 2019 onward}}&lt;br /&gt;
|special={{m|Earthquake}}, {{m|Heavy Slam}}, {{m|Play Rough}}, {{m|Body Slam}}{{tt|*|From November 29, 2021 onward}}, {{m|Trailblaze}}{{tt|*|From September 1, 2023 onward}}, {{m|Frustration}}[[File:GO Shadow icon.png|24px|link=Shadow Pokémon (GO)|As Shadow Pokémon]], {{m|Return}}[[File:GO Purified icon.png|24px|link=Shadow Pokémon (GO)|As Purified Pokémon]]&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox-2&lt;br /&gt;
|type1=Ground&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0231&lt;br /&gt;
|name1=Phanpy&lt;br /&gt;
|type1-1=Ground&lt;br /&gt;
|evo1={{bag/s|Rare Candy|SV}}&amp;lt;br&amp;gt;{{color2|000|Level|Level 25}}&lt;br /&gt;
|no2=0232&lt;br /&gt;
|name2=Donphan&lt;br /&gt;
|type1-2=Ground}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Ground}}&lt;br /&gt;
{{Spritebox/NA|gen=II}}&lt;br /&gt;
{{Spritebox/2/JP|ndex=232}}&lt;br /&gt;
{{Spritebox/3|ndex=232}}&lt;br /&gt;
{{Spritebox/4/Gender|ndex=232}}&lt;br /&gt;
{{Spritebox/5/Gender|ndex=232}}&lt;br /&gt;
{{Spritebox/6/Gender|ndex=232|crop=108}}&lt;br /&gt;
{{Spritebox/7/Gender|ndex=232|crop=107}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8/BDSP/Gender|ndex=232}}&lt;br /&gt;
{{Spritebox/9/Gender|ndex=0232}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME/Gender|ndex=0232}}&lt;br /&gt;
{{Spritebox/Footer|232|Donphan}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Main series===&lt;br /&gt;
[[File:Ash Donphan.png|thumb|250px|Donphan in {{aniseries|DP}}]]&lt;br /&gt;
[[File:Shiny Donphan.png|thumb|250px|A {{Shiny}} Donphan in {{aniseries|AG}}]]&lt;br /&gt;
====Major appearances====&lt;br /&gt;
=====[[Ash&#039;s Donphan]]=====&lt;br /&gt;
In &#039;&#039;[[AG154|Reversing the Charges]]&#039;&#039;, {{Ash}}&#039;s Phanpy evolved into a Donphan. It proved to be an excellent member of his [[Party|team]], showing its strength in every {{pkmn|battle}}.&lt;br /&gt;
&lt;br /&gt;
=====Other=====&lt;br /&gt;
Donphan debuted briefly at the beginning of &#039;&#039;[[M01|Mewtwo Strikes Back]]&#039;&#039;, under the ownership of [[Raymond]]. It battled [[Ash&#039;s Bulbasaur]] and managed to land two successive hits with {{m|Rollout}}, only to then be defeated by Bulbasaur&#039;s {{m|Solar Beam}}. [[Generation I|At the time]], Donphan was an unknown Pokémon. In the film&#039;s remake, &#039;&#039;[[M22|Mewtwo Strikes Back—Evolution]]&#039;&#039;, it played the same role.&lt;br /&gt;
&lt;br /&gt;
Four Donphan made their animated series debut in &#039;&#039;[[EP120|Roll On, Pokémon!]]&#039;&#039;, under the ownership of [[Rochelle]]. She would use them to find amberite.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[AG114|Date Expectations]]&#039;&#039;, a {{Shiny}} {{DL|List of alternately colored Pokémon in animation|Donphan}} was the center of romantic attention for multiple male Donphan. Ash and {{ashfr}} eventually helped one such Donphan to succeed and mate with the Shiny Donphan.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[AG130|Choose It or Lose It!]]&#039;&#039;, {{ho|Tyson}} used a Donphan in his [[Ever Grande Conference]] battle against Ash. It went up against {{AP|Swellow}} but was soon defeated.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP072|Pokémon Ranger and the Kidnapped Riolu! (Part 2)]]&#039;&#039;, [[Kellyn]] used his [[Capture Styler]] to capture a Donphan. He then had it smash through the cave-ins that were caused by an {{p|Aggron}} belonging to {{OBP|J&#039;s client|DP071}}.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
In &#039;&#039;[[EP146|Tricks of the Trade]]&#039;&#039;, a Donphan was at the [[Pokémon Swap Meet]] in [[Palmpona]].&lt;br /&gt;
&lt;br /&gt;
A Donphan appeared in &#039;&#039;[[The Legend of Thunder!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Donphan appeared in &#039;&#039;[[PK10|Pikachu&#039;s PikaBoo]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[EP273|Gotta Catch Ya Later!]]&#039;&#039;, {{an|Misty}}&#039;s flashback featured multiple Donphan.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[AG106|Beg, Burrow and Steal]]&#039;&#039;, a Donphan was living in [[Trapinch underground labyrinth|an underground paradise]].&lt;br /&gt;
&lt;br /&gt;
A {{pkmn|Coordinator}}&#039;s Donphan appeared in &#039;&#039;[[AG122|Deceit and Assist]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP095|Battling The Generation Gap!]]&#039;&#039;, a Coordinator&#039;s Donphan competed in the {{to|Celestic}} {{pkmn|Contest}}.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP141|Challenging a Towering Figure!]]&#039;&#039;, a {{pkmn|Trainer}}&#039;s Donphan battled a {{p|Snover}} during the [[Festival Battle Challenge]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP182|An Old Family Blend!]]&#039;&#039;, a Trainer&#039;s Donphan was at the [[Lily of the Valley Conference]].&lt;br /&gt;
&lt;br /&gt;
In the opening of &#039;&#039;[[M13|Zoroark: Master of Illusions]]&#039;&#039;, {{ga|Ethan}} used a Donphan to battle Ash and {{AP|Pikachu}}, though the outcome of that battle was left unknown.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Donphan appeared in &#039;&#039;[[M19|Volcanion and the Mechanical Marvel]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[M21|The Power of Us]]&#039;&#039;, a Trainer&#039;s Donphan competed in the [[Pokémon Catch Race]].&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Donphan appeared in &#039;&#039;[[HZ050|Trending Terastallization! Dance, Dance, Quaxly!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Johto}}&lt;br /&gt;
{{Animedexbody|EP120|Donphan|Ash&#039;s Pokédex|Donphan, the Armor Pokémon. With its strong tusks and tough skin, Donphan is known for its powerful {{m|Tackle}} attack. The length of Donphan&#039;s tusks indicates its [[level]].}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Johto}}&lt;br /&gt;
{{Animedexheader|Hoenn}}&lt;br /&gt;
{{Animedexbody|AG114|Donphan|Ash&#039;s Pokédex|Donphan, the Armor Pokémon. Donphan is the evolved form of {{p|Phanpy}}. They attack by {{m|Rollout|rolling their bodies into a circle and charging their enemies}}.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Hoenn}}&lt;br /&gt;
{{Animedexheader|Emerald}}&lt;br /&gt;
{{Animedexbody|AG154|Donphan|May&#039;s Pokédex|Donphan, the Armor Pokémon. Donphan has razor-sharp tusks, armor-like skin, and enormous power.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Emerald}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Masters Animated Trailer===&lt;br /&gt;
In the [[Pokémon Masters Animated Trailer]], a Trainer&#039;s Donphan was in a town square in [[Pasio]].&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Phado.png|thumb|250px|Donphan in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
A silhouette of a {{pkmn2|wild}} Donphan appeared in &#039;&#039;[[PS041|Ponyta Tale]]&#039;&#039;, when Professor Oak mentioned new Pokémon beyond the previously known 151 species.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PS096|Number One Donphan]]&#039;&#039;, a thieving ruffian used multiple Donphan, but they were defeated by {{adv|Gold}} afterwards. They reappeared in &#039;&#039;[[PS097|Bellsprout Rout]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PS108|Quilava Quandary]]&#039;&#039;, the [[Day-Care Couple]] used a Donphan to {{pkmn|training|train}} {{adv|Gold}}.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PS179|The Last Battle XIII]]&#039;&#039;, a Donphan was sent to participate in the fight in [[Ilex Forest]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PS203|I&#039;m Your Biggest Fan, Donphan]]&#039;&#039;, [[Wattson]] accidentally caught {{adv|Sapphire}} in a trap designed to catch a wild, rampaging Donphan. After coming across [[New Mauville]], Sapphire used the wild Donphan to help Wattson shut down a power generator, adding it to her team in &#039;&#039;[[PS205|Plugging Past Electrike II]]&#039;&#039; and naming it {{DL|Sapphire (Adventures)|Phado}}.&lt;br /&gt;
&lt;br /&gt;
In a flashback in &#039;&#039;[[PS528|Innocent Scientist]]&#039;&#039;, the [[International Police]] trained a Donphan.&lt;br /&gt;
&lt;br /&gt;
A Donphan appeared in a fantasy in &#039;&#039;[[PASV02|Discover! The Quaking Earth Titan!!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Mangadexheader}}&lt;br /&gt;
{{Mangadexbody|Pokémon Adventures|[[PS096]]|The longer and bigger its tusks are, the higher it is ranked amongst its herd.{{tt|*|Chuang Yi&#039;s translation}}}}&lt;br /&gt;
{{Mangadexfooter}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Gold &amp;amp; Silver: The Golden Boys===&lt;br /&gt;
A Donphan appeared in &#039;&#039;[[GB21|The Secret Of The Fighting Type Pokémon]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pokémon: Yeah! I Got Pokémon!===&lt;br /&gt;
A Donphan appeared in [[GDZ40]], under the ownership of a male Trainer.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Pocket Monsters===&lt;br /&gt;
In &#039;&#039;[[PM065|Clefairy, the Battle Instructor]]&#039;&#039;, a boy who had trouble controlling a Donphan. It would usually fall asleep and did so since its loss to {{PPM|Silver}}&#039;s {{p|Totodile}}.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Donphan (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Donphan shares its {{pkmn|category}} with {{p|Tyranitar}}. They are both known as the Armor Pokémon.&lt;br /&gt;
* Donphan and {{p|Ursaring}}, along with their pre-evolved forms, are the only Pokémon to swap version-exclusive status between localizations. While Phanpy and Donphan are found only in the Japanese and Korean Gold, they are not found in Gold in other languages, being found in the Silver Version of those languages instead, with Teddiursa and Ursaring getting the opposite treatment. This is changed in the remakes {{2v2|HeartGold|SoulSilver}}, where they follow the Japanese and Korean Gold and Silver.&lt;br /&gt;
* Donphan, {{p|Volcarona}}, and {{p|Cyclizar}} are the only Pokémon to have both a past and future [[Paradox Pokémon|Paradox]] counterpart.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Donphan seems to be based on an adult {{wp|elephant}}, possibly the {{wp|pygmy elephant}} or the extinct {{wp|dwarf elephant}} due to its small size. Donphan&#039;s hardened hide and Pokémon Category may also hint at it being an armored {{wp|war elephant}}. &lt;br /&gt;
&lt;br /&gt;
The ridges on Donphan&#039;s dark gray backside are similar to {{wp|tire tread}}s found on {{wp|heavy equipment}} and {{wp|off-road vehicle}}s, notably the treads of {{wp|paddle tire}}s. This similarity with tires can also be observed when Donphan performs its {{m|Rollout|rolling attacks}}, making it resemble a spinning wheel. &lt;br /&gt;
&lt;br /&gt;
Donphan&#039;s {{t|Ground}} type likely comes from the fact that elephants {{wp|wallow in mud}} and take {{wp|Dust bathing|sand baths}} to protect their skin and thermoregulate. It may also come from the fact heavy equipment and off-road vehicles&#039; tires are adapted to muddy and sandy terrains.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Donphan and Donfan may be a combination of &#039;&#039;don&#039;&#039; (Spanish honorific, similar to &#039;&#039;sir&#039;&#039;) or &#039;&#039;-don&#039;&#039; (common suffix in names of prehistoric animals, e.g. {{wp|mastodon}}, from the Ancient Greek word for tooth) and &#039;&#039;elephant&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Ground|type2=Ground&lt;br /&gt;
|ja=ドンファン &#039;&#039;Donfan&#039;&#039;|jameaning=From &#039;&#039;{{tt|don|Spanish for lord or master}}&#039;&#039;, &#039;&#039;{{tt|-don|common suffix in names of prehistoric animals derived from the Ancient Greek word for tooth}}&#039;&#039;, and &#039;&#039;elephant&#039;&#039;&lt;br /&gt;
|fr=Donphan|frmeaning=Same as English name&lt;br /&gt;
|es=Donphan|esmeaning=Same as English name&lt;br /&gt;
|de=Donphan|demeaning=Same as English name&lt;br /&gt;
|it=Donphan|itmeaning=Same as English name&lt;br /&gt;
|ko=코리갑 &#039;&#039;Korigap&#039;&#039;|komeaning=From {{tt|코끼리 &#039;&#039;kkokkiri&#039;&#039;|elephant}} and {{tt|갑 (甲) &#039;&#039;gap&#039;&#039;|armor}}&lt;br /&gt;
|zh_cmn=頓甲 / 顿甲 &#039;&#039;Dùnjiǎ&#039;&#039;|zh_cmnmeaning=From the partial transcription of the Japanese name and {{tt|甲 &#039;&#039;jiǎ&#039;&#039;|armor}}&lt;br /&gt;
|zh_yue=頓甲 &#039;&#039;Deuhngaap&#039;&#039;{{tt|*|Games}}&amp;lt;br&amp;gt;冬凡 &#039;&#039;Dūngfàahn&#039;&#039;{{tt|*|Pre-Gen VII media}}|zh_yuemeaning=From the partial transcription of the Japanese name and {{tt|甲 &#039;&#039;gaap&#039;&#039;|armor}}&amp;lt;br&amp;gt;Transcription of Japanese name&lt;br /&gt;
|hi=डॉनागज &#039;&#039;Donagaj&#039;&#039;|himeaning=From &#039;&#039;don&#039;&#039; and {{tt|गज &#039;&#039;gaj&#039;&#039;|elephant bull}}&lt;br /&gt;
|ru=Донфэн &#039;&#039;Donfen&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=ดอนแฟน &#039;&#039;Donfaen&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Ash&#039;s Donphan]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Ground}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Ground|prevnum=0231|prev=Phanpy|nextnum=0233|next=Porygon2}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:F.E.A.R.-compatible Pokémon]]&lt;br /&gt;
[[Category:Pokémon that appeared in the animated series before their game debut]]&lt;br /&gt;
&lt;br /&gt;
[[de:Donphan]]&lt;br /&gt;
[[es:Donphan]]&lt;br /&gt;
[[fr:Donphan]]&lt;br /&gt;
[[it:Donphan]]&lt;br /&gt;
[[ja:ドンファン]]&lt;br /&gt;
[[zh:顿甲]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Scrafty_(Pok%C3%A9mon)&amp;diff=4354961</id>
		<title>Scrafty (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Scrafty_(Pok%C3%A9mon)&amp;diff=4354961"/>
		<updated>2025-08-08T22:25:53Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Dark|type2=Fighting}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Scrafty}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dark|prevnum=0559|prev=Scraggy|nextnum=0561|next=Sigilyph|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Scrafty&lt;br /&gt;
|jname=ズルズキン&lt;br /&gt;
|tmname=Zuruzukin&lt;br /&gt;
|category=Hoodlum&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Dark&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Shed Skin&lt;br /&gt;
|ability2=Moxie&lt;br /&gt;
|abilityd=Intimidate&lt;br /&gt;
|ndex=0560&lt;br /&gt;
|height-ftin=3&#039;07&amp;quot;&lt;br /&gt;
|height-m=1.1&lt;br /&gt;
|weight-lbs=66.1&lt;br /&gt;
|weight-kg=30.0&lt;br /&gt;
|egggroupn=2&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|egggroup2=Dragon&lt;br /&gt;
|eggcycles=15&lt;br /&gt;
|expyield=171&lt;br /&gt;
|lv100exp=1,000,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Red&lt;br /&gt;
|catchrate=90&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evde=1&lt;br /&gt;
|evsd=1&lt;br /&gt;
|body=06&lt;br /&gt;
|pokefordex=scrafty&lt;br /&gt;
|generation=5&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Scrafty&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ズルズキン&#039;&#039;&#039; &#039;&#039;Zuruzukin&#039;&#039;) is a dual-type {{2t|Dark|Fighting}} {{OBP|Pokémon|species}} introduced in [[Generation V]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] from {{p|Scraggy}} starting at [[level]] 39.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
[[File:Scrafty hood.png|thumb|250px|left|Scrafty wearing its skin as a hood]]&lt;br /&gt;
Scrafty is a bipedal, lizard-like {{OBP|Pokémon|species}}. It has oval, wide-set eyes with small pupils and gray eyelids, as well as small nostrils and a wide mouth with bared teeth, giving it the appearance of a permanent sneer. It sports a red crest on its head, similar in appearance to a mohawk. Baggy yellow skin hangs off its shoulders, falling halfway down its back. As shown in the {{pkmn|animated series}}, it can wear this skin like a hood. Scrafty&#039;s body is orange, with thin arms and a gray, scaled belly. Its lower body and tail are covered by loose yellow skin resembling baggy trousers. On its tail is a single red scale.&lt;br /&gt;
&lt;br /&gt;
Scrafty is powerful enough to kick through concrete blocks used by {{p|Conkeldurr}}, and can also spit acidic liquid from its mouth, which it does to taunt opponents. It can protect itself while attacking by pulling up or folding the loose skin around its waist. Scrafty lives in groups with other members of its species. Groups determine hierarchy by crest size, with the Scrafty having the largest crest becoming the leader. A group will attack anything that comes within its territory. Scrafty never leaves its territory for a long time. Though often coming off as rude, it takes good care of its loved ones and its turf. Scrafty never leaves the territory it watches over its whole life long.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Scrafty evolves from {{p|Scraggy}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;{{evobox-2&lt;br /&gt;
|pictype=art&lt;br /&gt;
|type1=Dark&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|no1=0559&lt;br /&gt;
|name1=Scraggy&lt;br /&gt;
|type1-1=Dark&lt;br /&gt;
|type2-1=Fighting&lt;br /&gt;
|evo1=&lt;br /&gt;
|no2=0560&lt;br /&gt;
|name2=Scrafty&lt;br /&gt;
|type1-2=Dark&lt;br /&gt;
|type2-2=Fighting}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Dark|type2=Fighting}}&lt;br /&gt;
{{Dex/NA|gen=V}}&lt;br /&gt;
{{Dex/Gen/2|gen=V|reg1=Unova|num1=066|label1={{gameIcon|Bl}}{{gameIcon|W}}:|reg2=Unova|num2=118|label2={{gameIcon|B2}}{{gameIcon|W2}}:}}&lt;br /&gt;
{{Dex/Entry1|v=Black|t=FFF|entry=Groups of them beat up anything that enters their territory. Each can spit acidic liquid from its mouth.}}&lt;br /&gt;
{{Dex/Entry1|v=White|entry=It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=It pulls up its shed skin to protect itself while it kicks. The bigger the crest, the more respected it is.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=101|label1=Central|reg2=Hoenn}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=It pulls up its shed skin to protect itself while it kicks. The bigger the crest, the more respected it is.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader.}}&lt;br /&gt;
{{Dex/Entry1|v=Omega Ruby|t=FFF|entry=It pulls up its shed skin to protect itself while it kicks. The bigger the crest, the more respected it is.}}&lt;br /&gt;
{{Dex/Entry1|v=Alpha Sapphire|t=FFF|entry=It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VII|reg1=Alola|num1=336|label1={{gameIcon|US}}{{gameIcon|UM}}:|reg2=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sun and Moon|Sun, Moon]], [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=This Pokémon may be rude, but it takes very good care of its family, its friends, and its turf.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=It taunts its opponents by spitting. It has a certain territory that it never leaves its whole life long.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/4|gen=VIII|reg1=Galar|num1=225|reg2=Galar|num2=162|label2=Isle of Armor|reg3=Sinnoh|reg4=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Brilliant Diamond and Shining Pearl|Brilliant Diamond, Shining Pearl]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sword|t=FFF|entry=As halfhearted as this Pokémon&#039;s kicks may seem, they pack enough power to shatter Conkeldurr&#039;s concrete pillars.}}&lt;br /&gt;
{{Dex/Entry1|v=Shield|t=FFF|entry=While mostly known for having the temperament of an aggressive ruffian, this Pokémon takes very good care of its family, friends, and territory.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|reg2=Kitakami|reg3=Blueberry|num3=122}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=Groups of them beat up anything that enters their territory. Each can spit acidic liquid from its mouth.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=This Pokémon may be rude, but it takes very good care of its family, its friends, and its turf.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{fighting color dark}}; background:#{{dark color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{fighting color dark}}; background:#{{dark color light}}| [[File:Pokédex Image Scrafty USUM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{dark color light}}; background:#{{dark color light}} | [[File:Pokédex Image Scrafty SV Blueberry.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
|Scrafty in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&amp;lt;span class=&amp;quot;whitelinks&amp;quot;&amp;gt;{{sup/7|USUM}}&amp;lt;/span&amp;gt;&lt;br /&gt;
|Scrafty in the {{color2|000|List of Pokémon by Blueberry Pokédex number|Blueberry Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Dark|type2=Fighting}}&lt;br /&gt;
{{Availability/NA|gen=V}}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2|v=Black|v2=White|t=FFF|area=[[Evolution|Evolve]] {{p|Scraggy}}}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=FFF|area=[[Route]]s {{rtn|15|Unova}} and {{rtn|18|Unova}}, [[P2 Laboratory]]&amp;lt;br&amp;gt;{{rt|1|Unova}} ({{DL|Tall grass|dark grass}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area=[[Evolution|Evolve]] {{p|Scraggy}}}}&lt;br /&gt;
{{Availability/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|area=[[Evolution|Evolve]] {{p|Scraggy}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sun|v2=Moon}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Evolution|Evolve]] {{p|Scraggy}}}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|v=Sword|t=FFF|area=[[Rolling Fields/Dens|Rolling Fields]], [[West Lake Axewell/Dens|West Lake Axewell]], [[South Lake Miloch/Dens|South Lake Miloch]], [[North Lake Miloch/Dens|North Lake Miloch]], [[Bridge Field/Dens|Bridge Field]], [[Stony Wilderness/Dens|Stony Wilderness]], [[Dusty Bowl/Dens|Dusty Bowl]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Shield}}&lt;br /&gt;
{{Availability/Entry1|v=Sword Expansion Pass|color={{sword color dark}}|t=fff|link=Pokémon Sword and Shield Expansion Pass|area=[[Challenge Road]], [[Training Lowlands]] ([[Wanderer]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Brilliant Diamond|v2=Shining Pearl|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=[[Trade]]&amp;lt;sup&amp;gt;Version 3.0.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero|color={{Teal Mask color light}}|t={{Indigo Disk color}}|link=The Hidden Treasure of Area Zero|area=[[Canyon Biome]], [[Chargestone Cavern]]&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 4★ Tera Raid Battles (Blueberry Academy)|Scrafty|4★}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Dark|type2=Fighting}}&lt;br /&gt;
{{Availability/NA|gen=V}}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Tower: [[Soothing Shore]], [[Firebreathing Mountain]], [[World Axle - B2F]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=PokéPark 2|link=PokéPark 2: Wonders Beyond|color={{grass color}}|area=[[Arcane Area]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Conquest|color={{silver color}}|area=[[Pugilis]], [[Yaksha]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD GTI|link=Pokémon Mystery Dungeon: Gates to Infinity|color={{silver color}}|area=[[Silent Tundra]] (Gilded Hall), [[Dreamy Island]] (Gilded Hall), [[Moonlit Forest]] (Uncharted Road, Gilded Hall), [[Rusty Mountain]] (Uncharted Road), {{OBP|Mt. Travail|Gates to Infinity}} (8F-20F)}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Wonder Area#Pokémon Outbreak!|Wonder Area: Pokémon Outbreak!]], [[Secret Warehouse#Walking a Thin Line|Secret Warehouse: Walking a Thin Line]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Colossal Forest#Stage 4|Colossal Forest: Stage 4]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Plasma Tundra#Abundant Orchard|Plasma Tundra: Abundant Orchard]] &amp;lt;small&amp;gt;(Center Boss, Back, Special)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Gengar Sea]], [[Buzzwole Sea]], [[Buzzwole Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/NA/Side|gen=VIII}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Violeta Palace|Violeta Palace: Stage 382]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area={{DL|Damage Challenge|Training Ticket Exchange}}: {{sync|Marnie|Scrafty}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Dark|type2=Fighting}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|English|United States|50|August 14, 2011|link=List of local English event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|French|United States|50|August 14, 2011|link=List of local French event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|German|United States|50|August 14, 2011|link=List of local German event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|Italian|United States|50|August 14, 2011|link=List of local Italian event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|Japanese|United States|50|August 14, 2011|link=List of local Japanese event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|Korean|United States|50|August 14, 2011|link=List of local Korean event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
{{eventAvail|{{gameabbrev5|BW}}|2011 World Championships Scrafty|Spanish|United States|50|August 14, 2011|link=List of local Spanish event Pokémon distributions in Generation V#2011 World Championships Scrafty}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Dark|type2=Fighting}}&lt;br /&gt;
{{HeldItems/Games2|Black 2|White 2|tcolor1=fff|Pokémon Black and White Versions 2}}&lt;br /&gt;
{{HeldItems/Items1|Shed Shell|5|rows=2}}&lt;br /&gt;
{{HeldItems/Games2|Sword|Shield|tcolor1=FFF|Pokémon Sword and Shield|tcolor2={{shield color}}|gcolor2=fff}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Dark&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|HP=65&lt;br /&gt;
|Attack=90&lt;br /&gt;
|Defense=115&lt;br /&gt;
|SpAtk=45&lt;br /&gt;
|SpDef=115&lt;br /&gt;
|Speed=58}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Dark&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=200&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=50&lt;br /&gt;
|Bug=100&lt;br /&gt;
|Ghost=50&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=0&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=25&lt;br /&gt;
|Fairy=400&lt;br /&gt;
|notes=yes&lt;br /&gt;
|dark=yes&lt;br /&gt;
|newpsychic=2}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Scrafty is available in {{pkmn|Scarlet and Violet}} Version 3.0.0+.&lt;br /&gt;
&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
{{learnlist/level9|1|Low Kick|Fighting|Physical|—|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Leer|Normal|Status|—|100|30}}&lt;br /&gt;
{{learnlist/level9|1|Payback|Dark|Physical|50|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Headbutt|Normal|Physical|70|100|15}}&lt;br /&gt;
{{learnlist/level9|12|Sand Attack|Ground|Status|—|100|15}}&lt;br /&gt;
{{learnlist/level9|16|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/level9|20|Torment|Dark|Status|—|100|15}}&lt;br /&gt;
{{learnlist/level9|24|Beat Up|Dark|Physical|—|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|28|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/level9|32|Brick Break|Fighting|Physical|75|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|36|Swagger|Normal|Status|—|85|15}}&lt;br /&gt;
{{learnlist/level9|42|Crunch|Dark|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|48|High Jump Kick|Fighting|Physical|130|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|54|Focus Punch|Fighting|Physical|150|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|60|Head Smash|Rock|Physical|150|80|5}}&lt;br /&gt;
{{learnlist/levelf/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM003|Fake Tears|Dark|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM006|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM013|Acid Spray|Poison|Special|40|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM020|Trailblaze|Grass|Physical|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM030|Snarl|Dark|Special|55|95|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM039|Low Sweep|Fighting|Physical|65|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM043|Fling|Dark|Physical|—|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM044|Dragon Tail|Dragon|Physical|60|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM055|Dig|Ground|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM058|Brick Break|Fighting|Physical|75|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM059|Zen Headbutt|Psychic|Physical|80|90|15}}&lt;br /&gt;
{{learnlist/tm9|TM062|Foul Play|Dark|Physical|95|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM064|Bulk Up|Fighting|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM067|Fire Punch|Fire|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM068|Thunder Punch|Electric|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM069|Ice Punch|Ice|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM073|Drain Punch|Fighting|Physical|75|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM078|Dragon Claw|Dragon|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM080|Metronome|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM081|Grass Knot|Grass|Special|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM083|Poison Jab|Poison|Physical|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM087|Taunt|Dark|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM088|Swords Dance|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM094|Dark Pulse|Dark|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM099|Iron Head|Steel|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM100|Dragon Dance|Dragon|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM104|Iron Defense|Steel|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM108|Crunch|Dark|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM115|Dragon Pulse|Dragon|Special|85|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM122|Encore|Normal|Status|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM128|Amnesia|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM134|Reversal|Fighting|Physical|—|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM148|Sludge Bomb|Poison|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM150|Stone Edge|Rock|Physical|100|80|5}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM156|Outrage|Dragon|Physical|120|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM158|Focus Blast|Fighting|Special|120|70|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM167|Close Combat|Fighting|Physical|120|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM172|Roar|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM177|Spite|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM179|Smack Down|Rock|Physical|50|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM181|Knock Off|Dark|Physical|65|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM183|Super Fang|Normal|Physical|—|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM191|Uproar|Normal|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM192|Focus Punch|Fighting|Physical|150|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM199|Lash Out|Dark|Physical|75|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM213|Coaching|Fighting|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM221|Throat Chop|Dark|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM224|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM229|Upper Hand|Fighting|Physical|65|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tmf/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0287|Slakoth}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0289|Slaking}}{{MSP/H|0335|Zangoose}}{{MSP/H|0448|Lucario}}{{MSP/H|0745-Midnight|Lycanroc}}{{MSP/H|0745-Dusk|Lycanroc}}{{MSP/H|0749|Mudbray}}{{MSP/H|0750|Mudsdale}}{{MSP/H|0813|Scorbunny}}{{MSP/H|0814|Raboot}}{{MSP/H|0815|Cinderace}}{{MSP/H|0819|Skwovet}}{{MSP/H|0820|Greedent}}{{MSP/H|0979|Annihilape}}|Counter|Fighting|Physical|—|100|20|grid=8}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0252|Treecko}}{{MSP/H|0253|Grovyle}}{{MSP/H|0254|Sceptile}}{{MSP/H|0255|Torchic}}{{MSP/H|0256|Combusken}}{{MSP/H|0257|Blaziken}}{{MSP/H|0335|Zangoose}}{{MSP/H|0448|Lucario}}{{MSP/H|0619|Mienfoo}}{{MSP/H|0620|Mienshao}}|Detect|Fighting|Status|—|—|5|grid=8}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0052|Meowth}}{{MSP/H|0052-Alola|Meowth}}{{MSP/H|0052-Galar|Meowth}}{{MSP/H|0053|Persian}}{{MSP/H|0053-Alola|Persian}}{{MSP/H|0863|Perrserker}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0619|Mienfoo}}{{MSP/H|0620|Mienshao}}{{MSP/H|0677|Espurr}}{{MSP/H|0678|Meowstic}}|Fake Out|Normal|Physical|40|100|10|grid=8}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0252|Treecko}}{{MSP/H|0253|Grovyle}}{{MSP/H|0254|Sceptile}}{{MSP/H|0335|Zangoose}}{{MSP/H|0448|Lucario}}{{MSP/H|0619|Mienfoo}}{{MSP/H|0620|Mienshao}}{{MSP/H|0678|Meowstic}}{{MSP/H|0745|Lycanroc}}{{MSP/H|0745-Dusk|Lycanroc}}|Quick Guard|Fighting|Status|—|—|15|grid=8}}&lt;br /&gt;
{{learnlist/breedf/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{learnlist/prevoh/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
{{Learnlist/prevo9null}}&lt;br /&gt;
{{learnlist/prevof/9|Scrafty|Dark|Fighting|5}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Dark|type2=Fighting}}&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Dark|ndex=560&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Pawniard}}&lt;br /&gt;
|recruitment=Introduced by {{p|Pawniard}}&lt;br /&gt;
|P1=I&#039;m crafty in how I bend the rules, so don&#039;t count on me too much!&lt;br /&gt;
|P2=Now, let&#039;s see... What rules do I need to bend to get my crafty self out of here?&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Dark&lt;br /&gt;
|att=3&lt;br /&gt;
|def=5&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Dark|ndex=560&lt;br /&gt;
|walk=1.67&lt;br /&gt;
|hp=52&lt;br /&gt;
|attack=78&lt;br /&gt;
|defense=62&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PokéPark2|col=6|type=Dark|ndex=560&lt;br /&gt;
|pad=She is competitive and impatient, but she cares about her friends. She is worried about {{p|Scraggy}}, who went to the [[Crag Area]] to become strong.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Conquest|col=6|type=Dark|ndex=560&lt;br /&gt;
|HP=3&lt;br /&gt;
|atk=3&lt;br /&gt;
|def=5&lt;br /&gt;
|spd=2&lt;br /&gt;
|range=3&lt;br /&gt;
|move=Hi Jump Kick&lt;br /&gt;
|ability1=Shed Skin&lt;br /&gt;
|ability2=Moxie&lt;br /&gt;
|ability3=Spirit&lt;br /&gt;
|evo=Evolves from {{p|Scraggy}} when its Defense is 86 or higher&lt;br /&gt;
|link=[[Genba]], [[Hisaaki]], and [[Shimoyama]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Dark|ndex=560&lt;br /&gt;
|power=2&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Dark|ndex=560|num=514&lt;br /&gt;
|min=60&lt;br /&gt;
|max=105&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Last-Ditch Effort&lt;br /&gt;
|skilldesc=Increases damage when things are looking desperate.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Dark|ndex=560&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=3&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=163&lt;br /&gt;
|attack=163&lt;br /&gt;
|defense=222&lt;br /&gt;
|fast={{m|Counter}}, {{m|Snarl}}&lt;br /&gt;
|special={{m|Acid Spray}}, {{m|Power-Up Punch}}, {{m|Foul Play}}, {{m|Thunder Punch}}{{tt|*|From June 3, 2024 onward}}, {{m|Upper Hand}}{{tt|*|From April 13, 2025 onward}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{evobox-2&lt;br /&gt;
|pictype=art&lt;br /&gt;
|type1=Dark&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|no1=0559&lt;br /&gt;
|name1=Scraggy&lt;br /&gt;
|type1-1=Dark&lt;br /&gt;
|type2-1=Fighting&lt;br /&gt;
|evo1={{bag/s|Rare Candy|SV}}&amp;lt;br&amp;gt;{{color2|000|Level|Level 39}}&lt;br /&gt;
|no2=0560&lt;br /&gt;
|name2=Scrafty&lt;br /&gt;
|type1-2=Dark&lt;br /&gt;
|type2-2=Fighting}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Dark|type2=Fighting}}&lt;br /&gt;
{{Spritebox/NA|gen=V}}&lt;br /&gt;
{{Spritebox/5|ndex=560}}&lt;br /&gt;
{{Spritebox/6|ndex=560|crop=79}}&lt;br /&gt;
{{Spritebox/7|ndex=560|crop=80}}&lt;br /&gt;
{{Spritebox/8|ndex=560|crop=127}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=0560}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=0560}}&lt;br /&gt;
{{Spritebox/Footer|560|Scrafty}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Main series===&lt;br /&gt;
[[File:Scrafty anime.png|thumb|250px|Scrafty in {{aniseries|BW}}]]&lt;br /&gt;
====Major appearances====&lt;br /&gt;
Scrafty debuted in &#039;&#039;[[BW043|Meowth&#039;s Scrafty Tactics!]]&#039;&#039;. It was kicked out of its den by a wild {{p|Mandibuzz}}, who herself had been forced to relocate. Scrafty begged a {{pkmn2|wild}} {{p|Beartic}}, {{p|Scolipede}}, and {{p|Darmanitan}} to help it win back its territory, but none of them helped it. As a result, it resorted to kidnapping [[Iris&#039;s Axew]] and holding him ransom. {{MTR}} and [[Ash&#039;s Scraggy]] negotiated with and distracted Scrafty whilst Ash, {{AP|Pikachu}}, and {{AP|Snivy}} rescued Axew. Later, Scrafty confronted Mandibuzz, only to be defeated. However, Scraggy, using the {{m|High Jump Kick}} he had learned from Scrafty, defeated Mandibuzz and won Scrafty&#039;s den back.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
A Scrafty appeared in a fantasy in &#039;&#039;[[BW070|The Clubsplosion Begins!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Scrafty appeared in a fantasy in &#039;&#039;[[BW120|Ash and N: A Clash of Ideals!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Scrafty appeared in &#039;&#039;[[XY005|A Blustery Santalune Gym Battle!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Scrafty appeared in &#039;&#039;[[XY018|Awakening the Sleeping Giant!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Scrafty appeared in &#039;&#039;[[XY026|A Battle by Any Other Name!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Scrafty appeared in &#039;&#039;[[XYS02|Mega Evolution Special II]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A {{pkmn|Trainer}}&#039;s Scrafty appeared in &#039;&#039;[[XY080|Performing with Fiery Charm!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[M19|Volcanion and the Mechanical Marvel]]&#039;&#039;, a Scrafty was living at the [[Nebel Plateau]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[XY129|Kalos League Passion with a Certain Flare!]]&#039;&#039;, a Scrafty fought a {{p|Breloom}} in a video that [[Sawyer]] was watching.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM048|Night of a Thousand Poses!]]&#039;&#039;, a Scrafty was in a [[Baseball|Pokémon Base]] game on television.&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Unova}}&lt;br /&gt;
{{Animedexbody|BW043|Scrafty|Ash&#039;s Pokédex|Scrafty, the Hoodlum Pokémon and the evolved form of Scraggy. Scrafty can use its powerful kicks to smash through concrete blocks. To protect itself, Scrafty can fold its loose skin around its waist.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Unova}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Black 2 and White 2 Animated Trailer===&lt;br /&gt;
[[File:Team Plasma Scrafty B2W2 Trailer.png|thumb|250px|Scrafty in the animated trailer]]&lt;br /&gt;
In the [[Pokémon Black Version 2 and Pokémon White Version 2 Animated Trailer]], a {{tc|Team Plasma Grunt}}&#039;s Scrafty surrounded {{ga|Nate}}, [[Hugh]], and [[Cheren]] aboard the [[Plasma Frigate]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Scrafty Adventures.png|thumb|150px|Scrafty in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
A Scrafty along with its pre-evolved form, {{p|Scraggy}}, were responsible for stealing an accordion that was going to be used in a [[BW Agency]] commercial in &#039;&#039;[[PS472|Wheeling and Dealing]]&#039;&#039;. They were later found and defeated by {{adv|Black}}.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Scrafty appeared in &#039;&#039;[[PS486|Unraveling Mysteries]]&#039;&#039; and &#039;&#039;[[PS512|Hallway Hijinks]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A {{tc|Team Plasma Grunt}}&#039;s Scrafty was seen in &#039;&#039;[[PS540|Flying Ship]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Scrafty appeared in a flashback in &#039;&#039;[[PS545|Deduction Time]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{{tc|Team Flare Grunt}}s own multiple Scrafty, which first appeared in &#039;&#039;[[PS581|Rhyhorn Charges]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Marnie]]&#039;s Scrafty first appeared in &#039;&#039;[[PASS21|Swaying!! Murky Memories]]&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Scrafty (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
===Origin===&lt;br /&gt;
Scrafty appears to be based on a lizard {{wp|Moulting#In reptiles|molting its skin}}. Its crest shares some similarities with the elongated scales of {{wp|iguana}}s.&lt;br /&gt;
&lt;br /&gt;
Scrafty seems to also be based on stereotypes of urban {{wp|youth subculture}}s, sometimes seen as delinquent or confrontational. Its {{wp|sagging (fashion)|sagging &amp;quot;pants&amp;quot;}} and &amp;quot;{{wp|hoodie}}&amp;quot; seems to reference the {{wp|hip-hop fashion|hip hop}} subculture, while its bright red crest resembles a {{wp|mohawk hairstyle}} from the {{wp|punk fashion|punk}} subculture. The hood also doubles as a {{wp|balaclava (clothing)|balaclava}}, a face covering commonly used as a disguise during crimes.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Scrafty may be a combination of &#039;&#039;scrappy&#039;&#039; (feisty), &#039;&#039;scruffy&#039;&#039;, or &#039;&#039;scraggy&#039;&#039; (scrawny), and &#039;&#039;crafty&#039;&#039; (being skilled at deceit to achieve one&#039;s goals).&lt;br /&gt;
&lt;br /&gt;
Zuruzukin may be a combination of 狡 &#039;&#039;zuru&#039;&#039; (sly fellow), 狡い &#039;&#039;zurui&#039;&#039; (crafty), or ずるずる &#039;&#039;zuruzuru&#039;&#039; (onomatopoeia for dragging slowly) and 頭巾 &#039;&#039;zukin&#039;&#039; (hood) or possibly &#039;&#039;skin&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Dark|type2=Fighting&lt;br /&gt;
|ja=ズルズキン &#039;&#039;Zuruzukin&#039;&#039;|jameaning=From {{tt|狡 &#039;&#039;zuru&#039;&#039;|sly fellow}}, {{tt|狡い &#039;&#039;zurui&#039;&#039;|crafty}}, {{tt|ずるずる &#039;&#039;zuruzuru&#039;&#039;|onomatopoeia for dragging slowly}}, {{tt|頭巾 &#039;&#039;zukin&#039;&#039;|hood}}, and possibly &#039;&#039;skin&#039;&#039;&lt;br /&gt;
|fr=Baggaïd|frmeaning=From &#039;&#039;baggy&#039;&#039; and &#039;&#039;{{tt|caïd|colloquial term for boss}}&#039;&#039;&lt;br /&gt;
|es=Scrafty|esmeaning=Same as English name&lt;br /&gt;
|de=Irokex|demeaning=From &#039;&#039;{{tt|Irokese|Mohawk}}&#039;&#039; and &#039;&#039;{{tt|Exuvie|molt}}&#039;&#039; or &#039;&#039;{{tt|Echse|lizard}}&#039;&#039;&lt;br /&gt;
|it=Scrafty|itmeaning=Same as English name&lt;br /&gt;
|ko=곤율거니 &#039;&#039;Gonyulgeoni&#039;&#039;|komeaning=From {{tt|두건 (頭巾) &#039;&#039;dugeon&#039;&#039;|hood}}, {{tt|건달 (乾達) &#039;&#039;geondal&#039;&#039;|hoodlum}}, and possibly &#039;&#039;dragon&#039;&#039;&lt;br /&gt;
|zh_cmn=頭巾混混 / 头巾混混 &#039;&#039;Tóujīnhùnhun&#039;&#039;|zh_cmnmeaning=From {{tt|頭巾 / 头巾 &#039;&#039;tóujīn&#039;&#039;|hood}} and {{tt|混混 &#039;&#039;hùnhùn&#039;&#039;|rascal}}&lt;br /&gt;
|zh_yue=頭巾混混 &#039;&#039;Tàuhgānwahnwahn&#039;&#039;|zh_yuemeaning=From {{tt|頭巾 &#039;&#039;tàuhgān&#039;&#039;|hood}} and {{tt|混混 &#039;&#039;wahnwahn&#039;&#039;|rascal}}&lt;br /&gt;
|hi=टोपीबान &#039;&#039;Topibaan&#039;&#039;|himeaning=From {{tt|टोपी &#039;&#039;topi&#039;&#039;|hat}} and {{tt|बाण &#039;&#039;baaṇ&#039;&#039;|arrow}}&lt;br /&gt;
|ru=Скрафти &#039;&#039;Skrafti&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=ซึรุซึคิน &#039;&#039;Suerusuekhin&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references /&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Dark|type2=Fighting}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dark|prevnum=0559|prev=Scraggy|nextnum=0561|next=Sigilyph}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Irokex]]&lt;br /&gt;
[[es:Scrafty]]&lt;br /&gt;
[[fr:Baggaïd]]&lt;br /&gt;
[[it:Scrafty]]&lt;br /&gt;
[[ja:ズルズキン]]&lt;br /&gt;
[[zh:头巾混混]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Gimmighoul_(Pok%C3%A9mon)&amp;diff=4340300</id>
		<title>Gimmighoul (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Gimmighoul_(Pok%C3%A9mon)&amp;diff=4340300"/>
		<updated>2025-07-21T15:55:00Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */ following removal from gholdengos page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Gimmighoul}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Ghost|prevnum=0998|prev=Baxcalibur|nextnum=1000|next=Gholdengo|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Gimmighoul&lt;br /&gt;
|jname=コレクレー&lt;br /&gt;
|jtranslit=Korekurē&lt;br /&gt;
|tmname=Collecurei&lt;br /&gt;
|forme=2&lt;br /&gt;
|form1=Chest Form&lt;br /&gt;
|form2=Roaming Form&lt;br /&gt;
|image2=0999Gimmighoul-Roaming.png&lt;br /&gt;
|ndex=0999&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|category={{tt|Coin Chest|Chest Form}} Pokémon&amp;lt;br/&amp;gt;{{tt|Coin Hunter|Roaming Form}}&lt;br /&gt;
|height-ftin=1&#039;00&amp;quot;&lt;br /&gt;
|height-ftin2=0&#039;04&amp;quot;&lt;br /&gt;
|height-m=0.3&lt;br /&gt;
|height-m2=0.1&lt;br /&gt;
|weight-lbs=11.0&lt;br /&gt;
|weight-lbs2=0.2&lt;br /&gt;
|weight-kg=5.0&lt;br /&gt;
|weight-kg2=0.1&lt;br /&gt;
|abilityn=1&lt;br /&gt;
|ability1=Rattled&lt;br /&gt;
|ability2-1=Run Away&lt;br /&gt;
|abilityd=&lt;br /&gt;
|egggroupn=0&lt;br /&gt;
|egggroup1=No Eggs Discovered&lt;br /&gt;
|egggroup2=&lt;br /&gt;
|eggcycles=50&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evhp=0&lt;br /&gt;
|evat=0&lt;br /&gt;
|evde=0&lt;br /&gt;
|evsa=1&lt;br /&gt;
|evsd=0&lt;br /&gt;
|evsp=0&lt;br /&gt;
|expyield=60&lt;br /&gt;
|lv100exp=1250000&lt;br /&gt;
|gendercode=255&lt;br /&gt;
|color=Red&lt;br /&gt;
|formcolors=yes&lt;br /&gt;
|catchrate=45&lt;br /&gt;
|body=05&lt;br /&gt;
|formbody=yes&lt;br /&gt;
|pokefordex=gimmighoul&lt;br /&gt;
|generation=9&lt;br /&gt;
|friendship=50&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Gimmighoul&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;コレクレー&#039;&#039;&#039; &#039;&#039;Collecurei&#039;&#039;) is a {{type|Ghost}} {{OBP|Pokémon|species}} introduced in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] into {{p|Gholdengo}} when [[level]]ed up while the player has 999 [[Gimmighoul Coin]]s. After the Evolution, the Gimmighoul Coins disappear. Gimmighoul&#039;s Evolution cannot be canceled with the B button.&lt;br /&gt;
&lt;br /&gt;
Gimmighoul has two separate [[#Form data|forms]]: &#039;&#039;&#039;Chest Form&#039;&#039;&#039; and &#039;&#039;&#039;Roaming Form&#039;&#039;&#039;. Chest Form Gimmighoul only appears in {{g|Scarlet and Violet}}, in which it is the only form that can be natively {{pkmn|battle}}d and {{pkmn2|caught}}, while Roaming Form Gimmighoul will flee when interacted with, leaving behind Gimmighoul Coins. Roaming Form appears in {{g|GO}}, where it can be caught; it can then be [[transfer]]red to the core series games via the [[GO Transporter]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Gimmighoul is a small, blue-gray, metallic, bipedal Pokémon, with bands of two thin black stripes present around its torso and between its gold, circular eyes. It has a pair of thin black antennae and a tail, which are bent near the base and tipped with small gold circles.  &lt;br /&gt;
&lt;br /&gt;
Its antennae vibrate when detecting something it deems notable, and will point at objects of interest. When Gimmighoul gathers 999 [[Gimmighoul Coin]]s, it evolves into {{p|Gholdengo}}.&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
Gimmighoul has two separate forms: Chest Form and Roaming Form. The two Forms are virtually identical to each other, with the main differences being their habits and personalities.&lt;br /&gt;
&lt;br /&gt;
;Chest Form&lt;br /&gt;
[[File:Gimmighoul closed chest anime.png|200px|thumb|left|Chest Form Gimmighoul&#039;s closed chest]]&lt;br /&gt;
&lt;br /&gt;
Chest Form Gimmighoul hides inside a red chest, decorated with black and golden accents and a silver buckle with an ornate oval pattern, resembling the number 1,000 when viewed from the side. The chest it resides in is full of the [[Gimmighoul Coin|coins]] that it collects.&lt;br /&gt;
&lt;br /&gt;
Chest Form Gimmighoul was born inside a chest 1,500 years ago. [[Jacq]] is the one who discovered the Chest Form and coined its name. Its treasure chest provides defense but makes it hard for it to move due to the weight. Chest Form Gimmighoul are typically encountered in ancient [[Paldea]]n buildings, such as watchtowers and fort ruins, and even secluded islands. Its disguise and low movement speed cause it to be commonly mistaken for an antique and get left behind or taken away. As depicted in [[HZ103]], Chest Form Gimmighoul can move by hopping. When Chest Form Gimmighoul senses an approaching person or Pokémon, it uses ghost energy to control its target and force them to collect coins for its chest. It tends to hide in less frequented places such as warehouses and shop corners to ambush people and Pokémon while pretending to be an old treasure chest. Its control has notable persistence&amp;lt;ref name=&amp;quot;SVsite&amp;quot;&amp;gt;[https://scarletviolet.pokemon.com/en-us/pokemon/gimmighoul/ Gimmighoul — Pokémon Scarlet and Pokémon Violet | Official Website]&amp;lt;/ref&amp;gt;; one old tale tells of a Gimmighoul who manipulated a young girl to gather 999 coins to fill its chest&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot; /&amp;gt;. It is also known to drain the life out of anyone who attempts to steal its coins. &lt;br /&gt;
;Roaming Form&lt;br /&gt;
Roaming Form Gimmighoul, unlike its counterpart, doesn&#039;t hide in a chest and instead carries an [[Gimmighoul Coin|ancient coin]] on its back, being held by its tail. Without its chest, it is among the [[List of Pokémon by height|smallest]] and [[List of Pokémon by weight|lightest]] of all Pokémon.&lt;br /&gt;
&lt;br /&gt;
Roaming Form Gimmighoul was born from passion that seeped into a coin. [[Professor Willow]] is the one who discovered the Roaming Form and coined its name. Roaming Form Gimmighoul can be spotted in hiding places across Paldea, such as by signs, rocks, and bridges, as well as ancient ruins. It is extremely timid, running away and dropping its coin as soon as anyone approaches.&amp;lt;ref name=&amp;quot;SVsite&amp;quot; /&amp;gt; It does not manipulate people and Pokémon to give it coins like its Chest Form counterpart; instead, it is able to gather coins by itself.&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot; /&amp;gt; Despite being found in [[Paldea]], no one has ever been able to capture this form of Gimmighoul. It constantly wanders, believed to be searching for the chest it used to live in. For sustenance, it drains the life force of humans who try to steal its coin. This form of Gimmighoul has also been seen appearing where Professor Willow lives in, where it tags along near Trainers who pick up Gimmighoul Coins.&amp;lt;ref name=&amp;quot;SVsite&amp;quot; /&amp;gt; Gimmighoul has also been observed being lured over through the [[Coin Bag]] and [[Golden Lure Module]]s.&amp;lt;ref&amp;gt;https://scarletviolet.pokemon.com/en-us/news/pokemon_go_gimmighoul/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: #{{ghost color}}; {{roundy|10px}} border: 3px solid #{{ghost color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Chest Form&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{ghost color dark}}; background: #{{ghost color light}}; width:96px; height:96px&amp;quot; |[[File:0999Gimmighoul.png|100px]]&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: #{{ghost color}}; {{roundy|10px}} border: 3px solid #{{ghost color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Roaming Form&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{ghost color dark}}; background: #{{ghost color light}}; width:96px; height:96px&amp;quot; |[[File:0999Gimmighoul-Roaming.png|100px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Gimmighoul evolves into {{p|Gholdengo}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; flex-wrap: wrap; justify-content: space-evenly&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;max-width:100%; text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1=&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data ==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Ghost}}&lt;br /&gt;
{{Dex/NA|gen=IX}}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=391|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Form|Chest Form}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It lives inside an old treasure chest. Sometimes it gets left in shop corners since no one realizes it’s actually a Pokémon.}}&lt;br /&gt;
{{Dex/Form|Roaming Form}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=This Pokémon was born from passion that seeped into a coin. It wanders, apparently seeking to return to the treasure chest it once inhabited.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It wanders around, carrying an old coin on its back. It survives by draining the life-force from humans who try to pick up its coin.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{ghost color dark}}; background:#{{ghost color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{ghost color light}}; background:#{{ghost color light}} &amp;quot; |[[File:Pokédex Image Gimmighoul SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
|Gimmighoul in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Game locations===&lt;br /&gt;
{{Availability/Header|type=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|1|area=&lt;br /&gt;
&#039;&#039;&#039;Chest Form&#039;&#039;&#039;&lt;br /&gt;
* South Province:&lt;br /&gt;
** [[South Province (Area One)|Area One]]: On cliff north of [[Poco Path]] Lighthouse&lt;br /&gt;
** [[South Province (Area Two)|Area Two]], [[South Province (Area Three)|Area Three]], [[South Province (Area Four)|Area Four]], [[South Province (Area Five)|Area Five]], [[South Province (Area Six)|Area Six]]: on Watchtowers &amp;amp; Leaking Tower of Paldea&lt;br /&gt;
* East Province:&lt;br /&gt;
** [[East Province (Area One)|Area One]]: on Watchtower, and on plateau west of [[East Province (Area Two)|Area Two]]&#039;s southwestern Pokémon Center&lt;br /&gt;
** [[East Province (Area Three)|Area Three]]: on Watchtower&lt;br /&gt;
* West Province:&lt;br /&gt;
** [[West Province (Area One)|Area One]]: on Watchtower&lt;br /&gt;
** [[West Province (Area Two)|Area Two]]: inside [[Colonnade Hollow]]&lt;br /&gt;
** [[West Paldean Sea]]: on nearest island southwest of [[Porto Marinada]]&lt;br /&gt;
** [[Asado Desert]]: on Watchtower, on rock formation south of Watchtower, and in Ruins north of Watchtower&lt;br /&gt;
* North Province:&lt;br /&gt;
** [[North Province (Area One)|Area One]]: on Watchtower, and in Ruins southwest of lake&lt;br /&gt;
** [[North Province (Area Two)|Area Two]]: in center of shallow pond west of [[Firescourge Shrine]]&lt;br /&gt;
** [[Casseroya Lake]]: on Watchtowers #1, #2, and #3, in Ruins between Watchtowers #1 &amp;amp; #2, and on northwest side of central rock formation in [[Socarrat Trail]]&lt;br /&gt;
** [[Glaseado Mountain]]: on Watchtower, near top of waterfall west of [[Montenevera]], and in Ruins west of [[Dalizapa Passage]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Roaming Form&#039;&#039;&#039;&lt;br /&gt;
* [[Transfer]] from [[Pokémon GO]] via [[Pokémon HOME]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=GO|t=fff|area=[[Coin Bag]], [[PokéStop]] with a placed [[Golden Lure Module]] &amp;lt;small&amp;gt;(&#039;&#039;&#039;Roaming Form&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Variety [[sync pair scout]]: {{sync|Rachel|Gimmighoul}} &amp;lt;small&amp;gt;(&#039;&#039;&#039;Roaming Form&#039;&#039;&#039;)&amp;lt;/small&amp;gt;, {{sync|Sawyer|Gimmighoul}} &amp;lt;small&amp;gt;(&#039;&#039;&#039;Chest Form&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|Language/Region|type=Ghost}}&lt;br /&gt;
{{eventAvail|{{gameabbrev9|SV}}|Paldea&#039;s Gimmighoul|All|Online|20|December 13, 2023 to November 30, 2024|link=List of event Pokémon distributions in Pokémon Scarlet and Violet#Paldea&#039;s Gimmighoul}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====[[Poké Portal News]]=====&lt;br /&gt;
{{eventAvail/h|Tera Type|type=Ghost|lochide=yes}}&lt;br /&gt;
{{eventAvail|{{gameabbrev9|SV}}|Chest Form Gimmighoul Spotlight|Varies|hide|12, 20, 35, 45, 75|June 21 to July 2, 2023&amp;lt;br&amp;gt;August 9 to 22, 2024&amp;lt;br&amp;gt;April 30 to May 8, 2025|link=Poké Portal News/2023#June 21 to July 2, 2023}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
=====Chest Form=====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Ghost&lt;br /&gt;
|HP=45&lt;br /&gt;
|Attack=30&lt;br /&gt;
|Defense=70&lt;br /&gt;
|SpAtk=75&lt;br /&gt;
|SpDef=70&lt;br /&gt;
|Speed=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=====Roaming Form=====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Ghost&lt;br /&gt;
|HP=45&lt;br /&gt;
|Attack=30&lt;br /&gt;
|Defense=25&lt;br /&gt;
|SpAtk=75&lt;br /&gt;
|SpDef=45&lt;br /&gt;
|Speed=80&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|Normal=0&lt;br /&gt;
|Fighting=0&lt;br /&gt;
|Flying=100&lt;br /&gt;
|Poison=50&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=50&lt;br /&gt;
|Ghost=200&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=200&lt;br /&gt;
|Fairy=100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|ghost=yes&lt;br /&gt;
|newnormal=1&lt;br /&gt;
|newfighting=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
{{learnlist/level9|1|Astonish|Ghost|Physical|30|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Tackle|Normal|Physical|40|100|35}}&lt;br /&gt;
{{learnlist/levelf/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM017|Confuse Ray|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM029|Hex|Ghost|Special|65|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM042|Night Shade|Ghost|Special|—|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM074|Reflect|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM075|Light Screen|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM101|Power Gem|Rock|Special|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM140|Nasty Plot|Dark|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tmf/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
{{learnlist/breed9null}}&lt;br /&gt;
{{learnlist/breedf/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
====Roaming Form====&lt;br /&gt;
{{Spindata/Head|type=Ghost}}&lt;br /&gt;
{{Spindata/GO&lt;br /&gt;
| col = 6&lt;br /&gt;
| type = Ghost&lt;br /&gt;
| ndex = 0999&lt;br /&gt;
| hatch = N/A&lt;br /&gt;
| buddy = 5&lt;br /&gt;
| candy = Gimmighoul&lt;br /&gt;
| evolution = {{bag/GO|Gimmighoul Coin}}999&lt;br /&gt;
| stamina = 128&lt;br /&gt;
| attack = 140&lt;br /&gt;
| defense = 76&lt;br /&gt;
| fast = {{m|Astonish}}&lt;br /&gt;
| special = {{m|Shadow Ball}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border:2px solid #{{ghost color dark}}; background:#{{ghost color}}; padding:2px; font-size:80%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;5&amp;quot; style=&amp;quot;{{roundy|20px}} background:#{{ghost color light}};&amp;quot; | &#039;&#039;&#039;{{Colorlink|Event Pokémon (GO)|000|Costumes in Pokémon GO}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border:2px solid #{{ghost color dark}}; background:#{{ghost color light}};&amp;quot;| [[File:GO0999Anniversary9.png|100px]]&lt;br /&gt;
|-&lt;br /&gt;
| 9th Anniversary Coin&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
====Chest Form ====&lt;br /&gt;
{{Spindata/Head|type=Ghost}}&lt;br /&gt;
{{Spindata/GO&lt;br /&gt;
| col = 6&lt;br /&gt;
| type = Ghost&lt;br /&gt;
| ndex = 0999C&lt;br /&gt;
| hatch = N/A&lt;br /&gt;
| buddy = 5&lt;br /&gt;
| candy = Gimmighoul&lt;br /&gt;
| evolution = {{bag/GO|Gimmighoul Coin}}999&lt;br /&gt;
| stamina = 128&lt;br /&gt;
| attack = 121&lt;br /&gt;
| defense = 122&lt;br /&gt;
| fast = {{m|Astonish}}&lt;br /&gt;
| special = {{m|Shadow Ball}}&lt;br /&gt;
}}&lt;br /&gt;
|}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Form data===&lt;br /&gt;
Gimmighoul has two non-interchangeable forms: Chest Form and Roaming Form. Both can be found in [[Paldea]]&#039;s overworld, but only Chest Form can be {{pkmn|battle}}d and [[catching|caught]], while Roaming Form will flee upon being interacted with, leaving behind Gimmighoul Coins, which are necessary for Gimmighoul to evolve. Roaming Form can only be obtained by [[transfer]]ring it from {{g|GO}} via the [[GO Transporter]].&lt;br /&gt;
&lt;br /&gt;
The forms differ in their {{Abilities}}, with Chest Form having {{a|Rattled}} and Roaming Form having {{a|Run Away}}, as well as their [[base stats]], with Chest Form having higher {{stat|Defense}} and {{stat|Special Defense}} but lower {{stat|Speed}} compared to Roaming Form.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|- style=&amp;quot;vertical-align:bottom&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{{Compare|name=Gimmighoul|forme=Chest Form|how={{color2|000|Pokémon Scarlet and Violet|Scarlet and Violet}}|image=999Gimmighoul|type=Ghost|ndex=999|ab=Rattled|HP=45|Attack=30|Defense=70|SpAtk=75|SpDef=70|Speed=10}} &lt;br /&gt;
|&lt;br /&gt;
{{Compare|name=Gimmighoul|forme=Roaming Form|how={{color2|000|Pokémon GO|GO}}|image=999Gimmighoul-Roaming|type=Ghost|ndex=999|ab=Run Away|HP=45|Attack=30|Defense=25|SpAtk=75|SpDef=45|Speed=80}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1={{Bag/s|Rare Candy|SV}} + [[File:GO Gimmighoul Coin Small.png|link=Gimmighoul Coin|40px]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}} &amp;lt;br&amp;gt;with 999 {{color2|000|Gimmighoul Coin|Gimmighoul Coins}}&amp;lt;br&amp;gt;in the {{color2|000|Bag}}&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=ghost}}&lt;br /&gt;
{{Spritebox/NA|gen=IX}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9/2Forms|ndex=0999|form1=R}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME/2Forms|ndex=0999|form1=R}}&lt;br /&gt;
{{Spritebox/Footer|999|Gimmighoul}}&lt;br /&gt;
==In animation==&lt;br /&gt;
===Main series===&lt;br /&gt;
[[File:RVT Gimmighoul.png|thumb|left|250px|Chest Form Gimmighoul in {{aniseries|HZ}}]]&lt;br /&gt;
[[File:Gimmighoul Roaming Form anime.png|thumb|250px|Roaming Form Gimmighoul in {{aniseries|HZ}}]]&lt;br /&gt;
====Major appearances====&lt;br /&gt;
{{form|Gimmighoul|Chest Form}} Gimmighoul debuted in &#039;&#039;[[HZ057|The Terapagos I Don&#039;t Know]]&#039;&#039;, where one controlled [[Roy]], making him collect coins and deposit them into its chest, then left. It reappeared in [[HZ102]], where it did the same, this time to [[Dot]] and [[Uruto]] as well. Later, Gimmighoul was shown to have secretly stowed away on the [[Brave Olivine]].&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
{{form|Gimmighoul|Roaming Form}} Gimmighoul made its animated series debut in a bonus scene that aired with [[HZ042]], under the ownership of [[Professor Willow]]. This bonus scene was not dubbed into English.&lt;br /&gt;
&lt;br /&gt;
A Roaming Form Gimmighoul appeared in &#039;&#039;[[HZ057|The Terapagos I Don&#039;t Know]]&#039;&#039;, thus marking the form&#039;s English dub debut.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Paldea}}&lt;br /&gt;
{{Animedexbody|HZ057|Gimmighoul|Roy&#039;s Rotom Phone|Gimmighoul, Roaming Form. The Coin Hunter Pokémon. A {{t|Ghost}} type. This Pokémon emerged from passion that seeped into a coin. It carries an old coin on its back.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Paldea}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon: Paldean Winds===&lt;br /&gt;
[[File:Roaming Form Gimmighoul Paldean Winds.png|thumb|250px|Roaming Form Gimmighoul in [[Pokémon: Paldean Winds]]]]&lt;br /&gt;
A {{pkmn2|wild}} Roaming Form Gimmighoul appeared in &#039;&#039;[[PPW01|Breathe Out]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Three Gimmighoul appeared in &#039;&#039;[[PPW04|Breathe Together]]&#039;&#039;, during [[Ohara]], [[Aliquis]], and [[Hohma]]&#039;s video presentation about [[Naranja Academy]]. Two of them were in their Roaming Form, and the last one was in its Chest Form.&lt;br /&gt;
&lt;br /&gt;
===POKÉTOON===&lt;br /&gt;
A Roaming Form Gimmighoul appeared in [[PT16]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Gimmighoul Roaming Form Adventures.png|thumb|left|200px|Roaming Form Gimmighoul in [[Pokémon Adventures]]]]&lt;br /&gt;
[[File:Gimmighoul Chest Form Adventures.png|thumb|200px|Chest Form Gimmighoul in Pokémon Adventures]]&lt;br /&gt;
===Pokémon Adventures ===&lt;br /&gt;
A Roaming Form Gimmighoul debuted in &#039;&#039;[[PASV05|Challenge! DJ Giacomo!!]]&#039;&#039;, when {{Scarlet}} used her {{p|Tarountula}} to grab its coin before it fled.&lt;br /&gt;
&lt;br /&gt;
A Chest Form Gimmighoul appeared in &#039;&#039;[[PASV06|Skillful! The Mysterious Treasure Hunter!!]]&#039;&#039;, where it was defeated by Scarlet&#039;s {{p|Sprigatito}} to retrieve its coins. Another appeared in [[PASV08]] and was defeated in a similar manner.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Gimmighoul (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia ==&lt;br /&gt;
* Gimmighoul&#039;s Chest Form was named by [[Jacq]], while its Roaming Form was named by [[Professor Willow]].&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot;&amp;gt;&amp;quot;[https://www.youtube.com/watch?v=-nzi0S3NGzg Where are these mysterious coins coming from? &amp;amp;#129300; | Pokémon Scarlet and Pokémon Violet].&amp;quot; [https://www.youtube.com/c/pokemon The Official Pokémon YouTube Channel]. &#039;&#039;YouTube&#039;&#039;.&amp;lt;/ref&amp;gt;&lt;br /&gt;
* Gimmighoul is the only Pokémon with multiple [[form]]s that have no bearing on the Pokémon/form of the Pokémon they evolve into.&lt;br /&gt;
* Gimmighoul is the only Pokémon whose [[Evolution]] requires [[TM Material]]s.&lt;br /&gt;
* Both forms of Gimmighoul are tied with Unovan {{p|Yamask}} and {{p|Litwick}} for having the lowest base {{stat|Attack}} stat of all {{type|Ghost}} Pokémon.&lt;br /&gt;
* Chest Form Gimmighoul has the lowest base {{stat|Speed}} stat of all Ghost-type Pokémon.&lt;br /&gt;
* Roaming Form Gimmighoul has the lowest base {{stat|Defense}} stat of all Ghost-type Pokémon.&lt;br /&gt;
* Roaming Form Gimmighoul is tied with {{p|Sinistea}} and {{p|Poltchageist}} as the [[List of Pokémon by height|shortest]] Ghost-type Pokémon, and tied with {{p|Gastly}} and {{p|Haunter}} as the [[List of Pokémon by weight|lightest]] Ghost-type Pokémon.&lt;br /&gt;
** Roaming Form Gimmighoul is tied with Flabébé for being the smallest Pokémon overall: both have a height of 0.1m and a weight of 0.1kg.&lt;br /&gt;
* Gimmighoul is the only Pokémon in {{g|GO}} that evolves without {{OBP|Candy|GO}}, even if it is not {{OBP|trade|GO}}d.&lt;br /&gt;
* Gimmighoul is heavily associated with the number 999: &lt;br /&gt;
** Its [[List of Pokémon by National Pokédex number|National Pokédex number]] is #0999.&lt;br /&gt;
** It evolves when leveled up while the player has 999 [[Gimmighoul Coin]]s.&lt;br /&gt;
** It was first teased through a website with a counter that periodically counted to 999.&lt;br /&gt;
** A promotional video about Gimmighoul tells the tale of a Gimmighoul who manipulated a young girl to fill its chest with 999 coins.&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot; /&amp;gt;&lt;br /&gt;
* Due to its Ghost type, Roaming Form Gimmighoul&#039;s {{a|Run Away}} [[Ability]] is redundant unless its [[type change]]s, such as via {{Tera}}stallization or {{m|Soak}}.&lt;br /&gt;
* Gimmighoul only learns 2 moves by level-up, the fewest of all Ghost-type Pokémon.&lt;br /&gt;
* It is not possible to [[Escape|flee]] from a Chest Form Gimmighoul; even if the player&#039;s Pokémon is a {{t|Ghost}} type or is faster. Attempting to flee via pressing the &amp;quot;Run&amp;quot; option or use a Pokémon with the {{a|Run Away}} Ability will give the &amp;quot;&#039;&#039;You can&#039;t escape!&#039;&#039;&amp;quot; message. Using the [[Poké Doll]] will give the same dialogue that a player would receive if they try to use certain [[Key Item]]s such as the [[Shiny Charm]]. Using the moves {{m|Whirlwind}} or {{m|Roar}} will fail.&lt;br /&gt;
&lt;br /&gt;
===Pre-release teasers===&lt;br /&gt;
Chest Form Gimmighoul was teased through a special website&amp;lt;ref name=&amp;quot;Chest&amp;quot;&amp;gt;[http://web.archive.org/web/0/https://chest.pokemon.com/ Earliest archive of https://chest.pokemon.com/]&amp;lt;/ref&amp;gt; that went live on November 5, 2022 at 13:00 UTC. It showcased Gimmighoul&#039;s chest and a counter, which periodically ticked upwards every few hours as it was slowly filled with coins. The counter eventually capped out at 999 on November 6, 2022 at 14:00 UTC, and the site became a redirect to a new page on the {{g|Scarlet and Violet}} website.&amp;lt;ref&amp;gt;&amp;quot;[https://scarletviolet.pokemon.com/en-us/chest-research/ Investigations into a Newly Discovered Pokémon Are Under Way!]&amp;quot; — Pokémon Scarlet and Pokémon Violet | Official Website&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Roaming Form Gimmighoul was also teased on November 5, 2022, appearing in Pokémon GO after the {{p|Dratini}} [[Community Day|Community Day Classic]] event ended. Golden [[PokéStop]]s were added to the game, and spinning one would cause a Roaming Form Gimmighoul to show up and follow the player for a short time, although it could not be properly encountered or caught.&lt;br /&gt;
&lt;br /&gt;
Prior to the release of its teasers, an obscured Roaming Form Gimmighoul could be seen very briefly in the English version of the &amp;quot;Jump into a Paldean Journey&amp;quot; trailer for {{g|Scarlet and Violet}}, posted on October 6, 2022.&amp;lt;ref&amp;gt;&amp;quot;[https://www.youtube.com/watch?v=4YEEDqke-D0&amp;amp;t=573s Jump into a Paldean Journey | Pokémon Scarlet and Pokémon Violet].&amp;quot; [https://www.youtube.com/c/pokemon The Official Pokémon YouTube Channel]. &#039;&#039;YouTube&#039;&#039;.&amp;lt;/ref&amp;gt; It does not appear in the Japanese version of this trailer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:GimmighoulRevealChestSideEmpty.png|border|200px]]&lt;br /&gt;
[[File:GimmighoulRevealChestSideFull.png|border|200px]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;Two of the stages of Gimmighoul&#039;s Chest Form shown during the initial website teaser.&amp;lt;ref name=&amp;quot;GimmighoulReveal&amp;quot;&amp;gt;[https://web.archive.org/web/20221106003324/http://chest.pokemon.com/ Archive of https://chest.pokemon.com/]&amp;lt;/ref&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
As indicated by its English name, Gimmighoul may be based on the {{wp|ghoul}}, a mythical creature from Arabic folklore known for luring people into deserted places before preying on them, and stealing coins. The word &#039;&#039;ghoul&#039;&#039; (Arabic: غُول &#039;&#039;ghūl&#039;&#039;) stems from the Arabic word غَالَ &#039;&#039;ghāla&#039;&#039;, meaning &amp;quot;to seize&amp;quot;. Gimmighoul&#039;s antennae and tail resemble {{wp|dowsing|dowsing rods}}, which are believed to be able to help people locate buried treasures. The association of a ghost with coins, as well as its eyes resembling coins, may also draw inspiration from {{wp|Charon&#039;s obol}}, where the deceased are buried with coins as a preparation for the afterlife. The coins were frequently placed in the mouth or on the eyes.&lt;br /&gt;
&lt;br /&gt;
Gimmighoul&#039;s Chest Form may be based on the {{wp|Mimic (Dungeons &amp;amp; Dragons)|mimic}}, a monster archetype commonly found in RPGs, known for disguising itself as treasure chests. Its Roaming Form may be based on the Catalan folktale of {{wp|Patufet}}, a tiny child who carries a coin. It may also be based on the {{wp|toyol}} (also known as &#039;&#039;tuyul&#039;&#039;), an infant-like spirit from Indonesian and Malay folklore invoked to steal riches from people. Gimmighoul&#039;s association with the number 999 may be a reference to {{wp|Fineness#Gold|999 fine gold}}, equivalent to 24 karat gold.&lt;br /&gt;
&lt;br /&gt;
Considering its Evolution, Gimmighoul&#039;s design may also draw inspiration from {{wp|El Dorado}}, a legend now believed to originate in Spanish conception of {{wp|Muisca}} rituals performed in pre-colonial {{wp|Colombia}}. Its laminated body shape resembles {{wp|tunjo}}s, Muisca figurines made of molded gold in the shape of divine humans or animals. Its Ghost type could be based on the fact that tunjos are commonly found in burial places and places of worship.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Gimmighoul may be a combination of &#039;&#039;gimme&#039;&#039; (informal pronunciation of &amp;quot;give me&amp;quot;), &#039;&#039;gimmick&#039;&#039;, &#039;&#039;mimic&#039;&#039;, and &#039;&#039;ghoul&#039;&#039;. Altogether, it sounds like the phrase &amp;quot;Give me gold.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Collecurei may be a combination of &#039;&#039;collect&#039;&#039;, 霊 &#039;&#039;rei&#039;&#039; (spirit), and a pun on the phrase これくれ &#039;&#039;kore kure&#039;&#039; (&amp;quot;Give me this&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Ghost|type2=Ghost&lt;br /&gt;
|ja=コレクレー &#039;&#039;Collecurei&#039;&#039;|jameaning=From &#039;&#039;collect&#039;&#039;, {{tt|霊 &#039;&#039;rei&#039;&#039;|spirit}}, and {{tt|これくれ &#039;&#039;kore kure&#039;&#039;|Give me this}}&lt;br /&gt;
|fr=Mordudor|frmeaning=From &#039;&#039;{{tt|mort|death}}&#039;&#039; and &#039;&#039;{{tt|mordu d&#039;or|gold-crazed}}&#039;&#039;&lt;br /&gt;
|es=Gimmighoul|esmeaning=Same as English name&lt;br /&gt;
|de=Gierspenst|demeaning=From &#039;&#039;{{tt|Gier|greed}}&#039;&#039; and &#039;&#039;{{tt|Gespenst|ghost}}&#039;&#039;&lt;br /&gt;
|it=Gimmighoul|itmeaning=Same as English name&lt;br /&gt;
|ko=모으령 &#039;&#039;Moeuryeong&#039;&#039;|komeaning=From {{tt|모으다 &#039;&#039;moeuda&#039;&#039;|to collect}} and {{tt|령 (靈) &#039;&#039;ryeong&#039;&#039;|spirit}}&lt;br /&gt;
|zh_cmn=索財靈 / 索财灵 &#039;&#039;Suǒcáilíng&#039;&#039;|zh_cmnmeaning=From {{tt|索 &#039;&#039;suǒ&#039;&#039;|to search}}, {{tt|財 / 财 &#039;&#039;cái&#039;&#039;|wealth}}, and {{tt|靈 / 灵 &#039;&#039;líng&#039;&#039;|spirit}}&lt;br /&gt;
|zh_yue=索財靈 &#039;&#039;Sokchòihlìhng&#039;&#039;|zh_yuemeaning=From {{tt|索 &#039;&#039;sok&#039;&#039;|to search}}, {{tt|財 &#039;&#039;chòih&#039;&#039;|wealth}}, and {{tt|靈 &#039;&#039;lìhng&#039;&#039;|spirit}}&lt;br /&gt;
|hi=येबिलेरू &#039;&#039;Yebileroo&#039;&#039;|himeaning=From a pun on {{tt|ये भी ले रहा हु &#039;&#039;yeḥ bhī le rahā hu&#039;&#039;|[I&#039;m] taking this too}}&lt;br /&gt;
|ru=Гиммигул &#039;&#039;Gimmigul&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=คอลเลคเรย์ &#039;&#039;Khonlekre&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:inline-block&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Chest Form&#039;&#039;&lt;br /&gt;
{{langtable|color={{ghost color}}|bordercolor={{ghost color dark}}&lt;br /&gt;
|ja=はこフォルム &#039;&#039;Chest Forme&#039;&#039;&lt;br /&gt;
|zh_yue=寶箱形態 &#039;&#039;{{tt|Bóusēung Yìhngtaai|Treasure Chest Form}}&#039;&#039;&lt;br /&gt;
|zh_cmn=寶箱形態 / 宝箱形态 &#039;&#039;{{tt|Bǎoxiāng Xíngtài|Treasure Chest Form}}&#039;&#039;&lt;br /&gt;
|fr=Forme Coffre&lt;br /&gt;
|de=Truhenform&lt;br /&gt;
|id=Bentuk Kotak&lt;br /&gt;
|it=Forma Scrigno&lt;br /&gt;
|ko=상자폼 &#039;&#039;{{tt|Sangja Form|Chest Form}}&#039;&#039;&lt;br /&gt;
|pt_br=Forma Baú&lt;br /&gt;
|es=Forma Cofre&lt;br /&gt;
|th=ฟอร์มกล่อง &#039;&#039;Form Klong&#039;&#039;&lt;br /&gt;
|tr=Sandık Formu&lt;br /&gt;
}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:inline-block&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Roaming Form&#039;&#039;&lt;br /&gt;
{{langtable|color={{ghost color}}|bordercolor={{ghost color dark}}&lt;br /&gt;
|ja=とほフォルム &#039;&#039;Roaming Forme&#039;&#039;&lt;br /&gt;
|zh_yue=徒步形態 &#039;&#039;{{tt|Tòuhbouh Yìhngtaai|Roaming Form}}&#039;&#039;&lt;br /&gt;
|zh_cmn=徒步形態 / 徒步形态 &#039;&#039;{{tt|Túbù Xíngtài|Roaming Form}}&#039;&#039;&lt;br /&gt;
|fr=Forme Marche&lt;br /&gt;
|de=Wanderform&lt;br /&gt;
|id=Bentuk Jalan Kaki&lt;br /&gt;
|it=Forma Ambulante&lt;br /&gt;
|ko=도보폼 &#039;&#039;{{tt|Dobo Form|Roaming Form}}&#039;&#039;&lt;br /&gt;
|pt_br=Forma Perambulante&lt;br /&gt;
|pl=Forma Wędrowna&lt;br /&gt;
|es=Forma Andante&lt;br /&gt;
|th=ฟอร์มเดินเท้า &#039;&#039;Form Doenthao&#039;&#039;&lt;br /&gt;
|tr=Gezici Formu&lt;br /&gt;
}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
*[[List of Pokémon with form differences]]&lt;br /&gt;
*[[Gimmighoul Coin]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{PokémonPrevNext/Head|type=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Ghost|prevnum=0998|prev=Baxcalibur|nextnum=1000|next=Gholdengo}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon that evolve through a unique method]]&lt;br /&gt;
[[Category:Blue-colored Pokémon]]&amp;lt;!--Roaming Form--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[de:Gierspenst]]&lt;br /&gt;
[[es:Gimmighoul]]&lt;br /&gt;
[[fr:Mordudor]]&lt;br /&gt;
[[it:Gimmighoul]]&lt;br /&gt;
[[ja:コレクレー]]&lt;br /&gt;
[[zh:索財靈]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4339849</id>
		<title>Spinda (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4339849"/>
		<updated>2025-07-20T16:32:11Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */ route 113&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Spinda}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Spinda&lt;br /&gt;
|jname=パッチール&lt;br /&gt;
|jtranslit=Patchīru&lt;br /&gt;
|tmname=Patcheel&lt;br /&gt;
|ndex=0327&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|category=Spot Panda&lt;br /&gt;
|height-ftin=3&#039;07&amp;quot;&lt;br /&gt;
|height-m=1.1&lt;br /&gt;
|weight-lbs=11.0&lt;br /&gt;
|weight-kg=5.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Own Tempo&lt;br /&gt;
|ability2=Tangled Feet&lt;br /&gt;
|ability2note=&amp;lt;sup&amp;gt;{{color2|000|Generation IV|Gen IV+}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|abilityd=Contrary&lt;br /&gt;
|egggroupn=2&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|egggroup2=Human-Like&lt;br /&gt;
|eggcycles=15&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evsa=1&lt;br /&gt;
|expyield=126&lt;br /&gt;
|oldexp=85&lt;br /&gt;
|lv100exp=800,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Brown&lt;br /&gt;
|catchrate=255&lt;br /&gt;
|body=06&lt;br /&gt;
|pokefordex=spinda&lt;br /&gt;
|generation=3&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Spinda&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;パッチール&#039;&#039;&#039; &#039;&#039;Patcheel&#039;&#039;) is a {{type|Normal}} {{OBP|Pokémon|species}} introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
It is not known to [[Evolution|evolve]] into or from any other Pokémon.&lt;br /&gt;
&lt;br /&gt;
Spinda is known for its variations, with each individual almost always having its own [[Variant Pokémon#Spinda|unique spot pattern]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Spinda is a bipedal, red panda {{OBP|Pokémon|species}} with rabbit-like features. Its eyes are made of two black spirals, which point in the opposite direction to each other. There is a similar swirling pattern on its ears. It has a small body with short stumpy arms and legs, and its coat is primarily cream-colored. Its arms are red and it has a red stripe bordering along the bottom of its belly, as well as two small spots on the soles of its feet. It has four spots, which can appear anywhere on its face and ears, with a fifth on the back of its head. These spot patterns are different for each and every Spinda.&lt;br /&gt;
&lt;br /&gt;
It has dizzying, confusing, and scattering dance-like movements, though it thinks it is walking in a straight line. These movements confuse their opponents and make it difficult for them to aim at it. It lives in the {{DL|List of Pokémon by habitat|Mountain Pokémon|mountains}}.&lt;br /&gt;
&lt;br /&gt;
Prior to [[Generation V]], {{m|Teeter Dance}} was its [[signature move]], but other Pokémon could still inherit it via {{pkmn|breeding}}.&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]]: One day, a Spinda appears in [[Pokémon Square]] and collapses. When it regains consciousness, Spinda explains that it is giving up a long journey to find the {{p|Ho-Oh|Mirage Pokémon}} and hands its one clue, the Clear Wing, to the player. The player must then solve [[the Mystery of the Mirage Pokémon]], which will reward them with the Rainbow Wing. Upon showing the Rainbow Wing to Spinda, or talking to Spinda as Ho-Oh, it becomes happy and leaves Pokémon Square.&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Explorers of Sky]]: Spinda runs Spinda&#039;s café and takes over the juice bar. A {{p|Wynaut}} and a {{p|Wobbuffet}} also work at the café running the recycle shop. Later in the game, Project P is introduced. After it is introduced, occasionally when speaking to Wynaut the player may gain access to a dungeon normally accessed by selecting a job with ??? as the location or get a choice of more items in the recycle shop.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Normal}}&lt;br /&gt;
{{Dex/NA|gen=III}}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=114|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=All the &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this {{ScPkmn}} give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical spot patterns on their hides. This {{ScPkmn}} moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe&#039;s aim.}}&lt;br /&gt;
{{Dex/Entry2|v=FireRed|v2=LeafGreen|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical patterns. It confuses foes with its stumbling motions.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=HeartGold|v2=SoulSilver|entry=The chances of two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=131|label1=Mountain|reg2=Hoenn|num2=119}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=The chances of two Spinda having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Omega Ruby|entry=All the Spinda that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this Pokémon give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Alpha Sapphire|entry=No two Spinda are said to have identical spot patterns on their hides. This Pokémon moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VII|reg1=Alola|num1=105|label1={{gameIcon|Su}}{{gameIcon|M}}:|reg2=Alola|num2=128|label2={{gameIcon|US}}{{gameIcon|UM}}:|reg3=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sun|entry=Its steps are staggering and unsteady, but Spinda thinks it&#039;s walking in a straight line.}}&lt;br /&gt;
{{Dex/Entry1|v=Moon|entry=Each and every Spinda has a slightly different configuration of spots. There are collectors who enjoy the tiny differences in their spot patterns.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=Its steps are shaky and stumbling. Walking for a long time makes it feel sick.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=Each Spinda&#039;s spot pattern is different. With its stumbling movements, it evades opponents&#039; attacks brilliantly!}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=No two Spinda have the same pattern of spots. Their tottering steps hinder the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/NE|[[Generation IX]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{normal color dark}}; background:#{{normal color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda-Alternate SM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda SM.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| A male Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
| A female Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2|v=Ruby|v2=Sapphire|t=fff|t2=fff|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen|area=[[Trade]], [[#In events|Event]]}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area={{safari|Johto}} (Desert with 14 Plains points)&amp;lt;br&amp;gt;[[Sprout Tower]], [[Bell Tower]], [[Burned Tower]] {{color2|{{hoenn color dark}}|Hoenn Sound|(Hoenn Sound)}}}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|land}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Field}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Trade]] with [[Curtis]] or [[Yancy]] in [[Nimbasa City]]}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Rugged Mountain}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area={{rt|21|Kalos}}&amp;lt;br&amp;gt;{{rt|21|Kalos}} ([[Horde Encounter]])}}&lt;br /&gt;
{{Availability/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2|v=Sun|v2=Moon|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=fff|area=Hatch from {{pkmn|Egg}}}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 14]], Endless Level 4, Trozei Battle, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Joyous Tower]] (5F-7F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Blazing|link=Pokémon Mystery Dungeon (WiiWare)|color={{fire color}}|area=}}--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Factory: [[Firebreathing Mountain]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Wonder Area#Pokémon Outbreak!|Wonder Area: Pokémon Outbreak!]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Monday Stage 3|Safari Jungle: Stage 3]]{{dotw|Mo}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Starlight Islands#Volcanic Ravine|Starlight Islands: Volcanic Ravine]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Rayquaza Sea]], [[Celebi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Western Cave]] (10F-17F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Silver Trench]], [[Lightning Field]], [[Western Cave]], [[Darknight Relic]], [[Far-Off Sea]]&amp;lt;br/&amp;gt;Mystery House: [[Western Cave]]&amp;lt;br/&amp;gt;[[Mystery_dungeon#Strong_Foes|Strong Foe]]: [[Frosty Forest]] (4F, 6F, 10F-13F){{shinystar}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Prasino Woods|Prasino Woods: Stage 586]]&amp;lt;br&amp;gt;Event: [[Pokémon Safari/2015-Feb. 2018#First release|&#039;&#039;Pokémon Safari&#039;&#039;]] &amp;lt;small&amp;gt;(First release)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Normal}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|PokéPark Egg Spinda|Japanese|Japan|5|March 12 to May 8, 2005|link=List of Japanese event Pokémon distributions in Generation III#Spinda}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Normal}}&lt;br /&gt;
{{HeldItems/Games2|Ruby|Sapphire|tcolor1=fff|tcolor2=fff|Pokémon Ruby and Sapphire Versions}}&lt;br /&gt;
{{HeldItems/Items1|Chesto Berry|5|rows=5}}&lt;br /&gt;
{{HeldItems/Games1|Emerald|tcolor=fff|Pokémon Emerald Version}}&lt;br /&gt;
{{HeldItems/Games2|Diamond|Pearl|Pokémon Diamond and Pearl Versions}}&lt;br /&gt;
{{HeldItems/Games1|Platinum|Pokémon Platinum Version}}&lt;br /&gt;
{{HeldItems/Games2|HeartGold|SoulSilver|Pokémon HeartGold and SoulSilver Versions}}&lt;br /&gt;
{{HeldItems/Games2|Black 2|White 2|tcolor1=FFF|Pokémon Black and White Versions 2}}&lt;br /&gt;
{{HeldItems/Items1|Lava Cookie|100|availNote=[[In-game trade]],&amp;amp;#32;}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Normal&lt;br /&gt;
|HP=60&lt;br /&gt;
|Attack=60&lt;br /&gt;
|Defense=60&lt;br /&gt;
|SpAtk=60&lt;br /&gt;
|SpDef=60&lt;br /&gt;
|Speed=60}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=3&lt;br /&gt;
|Power=2&lt;br /&gt;
|PowerMax=3&lt;br /&gt;
|Technique=3&lt;br /&gt;
|TechniqueMax=4&lt;br /&gt;
|Stamina=3&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=2&lt;br /&gt;
|JumpMax=3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=100&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=100&lt;br /&gt;
|Ghost=0&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=100&lt;br /&gt;
|Fairy=100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|normal=yes&lt;br /&gt;
|newghost=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Spinda is available in {{pkmn|Brilliant Diamond and Shining Pearl}}, but cannot be transferred to/from {{g|HOME}}.&lt;br /&gt;
&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/level8|1|Tackle|Normal|Physical|40|100|35||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|5|Copycat|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/level8|10|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|14|Psybeam|Psychic|Special|65|100|20||}}&lt;br /&gt;
{{learnlist/level8|19|Hypnosis|Psychic|Status|&amp;amp;mdash;|60|20||}}&lt;br /&gt;
{{learnlist/level8|23|Body Slam|Normal|Physical|85|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|28|Sucker Punch|Dark|Physical|70|100|5||}}&lt;br /&gt;
{{learnlist/level8|32|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|37|Uproar|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|41|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/level8|46|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|50|Flail|Normal|Physical|&amp;amp;mdash;|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|55|Thrash|Normal|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/levelf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tm8|TM01|Focus Punch|Fighting|Physical|150|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM03|Water Pulse|Water|Special|60|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM04|Calm Mind|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM10|Work Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|30||}}&lt;br /&gt;
{{learnlist/tm8|TM11|Sunny Day|Fire|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM17|Protect|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM18|Rain Dance|Water|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM20|Safeguard|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|25||}}&lt;br /&gt;
{{learnlist/tm8|TM28|Dig|Ground|Physical|80|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM29|Psychic|Psychic|Special|90|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM30|Shadow Ball|Ghost|Special|80|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM31|Brick Break|Fighting|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM32|Double Team|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|15||}}&lt;br /&gt;
{{learnlist/tm8|TM34|Shock Wave|Electric|Special|60|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM39|Rock Tomb|Rock|Physical|60|95|15||}}&lt;br /&gt;
{{learnlist/tm8|TM42|Facade|Normal|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM44|Rest|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM45|Attract|Normal|Status|&amp;amp;mdash;|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM46|Thief|Dark|Physical|60|100|25||}}&lt;br /&gt;
{{learnlist/tm8|TM48|Skill Swap|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM56|Fling|Dark|Physical|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM58|Endure|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM60|Drain Punch|Fighting|Physical|75|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM67|Recycle|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM70|Flash|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM77|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM80|Rock Slide|Rock|Physical|75|90|10||}}&lt;br /&gt;
{{learnlist/tm8|TM82|Sleep Talk|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM85|Dream Eater|Psychic|Special|100|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM87|Swagger|Normal|Status|&amp;amp;mdash;|85|15||}}&lt;br /&gt;
{{learnlist/tm8|TM90|Substitute|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM92|Trick Room|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM96|Strength|Normal|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM98|Rock Smash|Fighting|Physical|40|100|15||}}&lt;br /&gt;
{{learnlist/tmf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0161|Sentret}}{{MSP/H|0162|Furret}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0203|Girafarig}}{{MSP/H|0303|Mawile}}{{MSP/H|0427|Buneary}}{{MSP/H|0428|Lopunny}}|Baton Pass|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|40||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0037|Vulpix}}{{MSP/H|0038|Ninetales}}{{MSP/H|0054|Psyduck}}{{MSP/H|0055|Golduck}}{{MSP/H|0352|Kecleon}}|Disable|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0287|Slakoth}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0289|Slaking}}{{MSP/H|0313|Volbeat}}{{MSP/H|0363|Spheal}}{{MSP/H|0364|Sealeo}}{{MSP/H|0365|Walrein}}|Encore|Normal|Status|&amp;amp;mdash;|100|5||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0052|Meowth}}{{MSP/H|0053|Persian}}{{MSP/H|0106|Hitmonlee}}{{MSP/H|0107|Hitmonchan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0296|Makuhita}}{{MSP/H|0297|Hariyama}}{{MSP/H|0300|Skitty}}{{MSP/H|0301|Delcatty}}{{MSP/H|0302|Sableye}}{{MSP/H|0431|Glameow}}{{MSP/H|0432|Purugly}}|Fake Out|Normal|Physical|40|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0216|Teddiursa}}{{MSP/H|0217|Ursaring}}{{MSP/H|0303|Mawile}}|Fake Tears|Dark|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Guard Split|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0215|Sneasel}}{{MSP/H|0461|Weavile}}{{MSP/H|0220|Swinub}}{{MSP/H|0221|Piloswine}}{{MSP/H|0473|Mamoswine}}{{MSP/H|0471|Glaceon}}|Icy Wind|Ice|Special|55|95|15||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0359|Absol}}{{MSP/H|0475|Gallade}}|Psycho Cut|Psychic|Physical|70|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Psycho Shift|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0027|Sandshrew}}{{MSP/H|0028|Sandslash}}{{MSP/H|0232|Donphan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0324|Torkoal}}|Rapid Spin|Normal|Physical|50|100|40||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0234|Stantler}}|Role Play|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Trick|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0282|Gardevoir}}|Wish|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breedf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[Move Tutor|tutoring]]====&lt;br /&gt;
{{learnlist/tutorh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tutor8null}}&lt;br /&gt;
{{learnlist/tutorf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Normal}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Normal|ndex=327|acquisition=Hatch}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Normal|ndex=327|rarity=Common}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=7.2&lt;br /&gt;
|area=Mt. Deepgreen&lt;br /&gt;
|P1=I&#039;m not the way I look. I can walk in a straight line, thank you!&lt;br /&gt;
|P2=Oh-oh? I daresay my HP is down by half.&lt;br /&gt;
|P3=I&#039;m prepared to keel over. I can&#039;t keep walking straight now.&lt;br /&gt;
|PL=I&#039;ll have you know I&#039;ve gone up a level.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=6.4&lt;br /&gt;
|IQ=G&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Normal|ndex=327&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Cubone}}, {{p|Mr. Mime}}, {{p|Kirlia}}, {{p|Buneary}}&lt;br /&gt;
|recruitment=Find {{p|Buneary}} together&lt;br /&gt;
|P1=I like traveling.&lt;br /&gt;
|P2=So exhausted!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Normal&lt;br /&gt;
|att=2&lt;br /&gt;
|def=2&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Normal|ndex=327&lt;br /&gt;
|walk=1.58&lt;br /&gt;
|hp=51&lt;br /&gt;
|attack=71&lt;br /&gt;
|defense=51&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Normal|ndex=327&lt;br /&gt;
|power=1&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Normal|ndex=327|num=229&lt;br /&gt;
|min=50&lt;br /&gt;
|max=100&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Counterattack&lt;br /&gt;
|skilldesc=Deals even more damage the more disruptions there are.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Normal|ndex=327&lt;br /&gt;
|buddy=3&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|candy=Spinda&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=155|attack=116|defense=116&lt;br /&gt;
|fast={{m|Sucker Punch}}, {{m|Psycho Cut}}&lt;br /&gt;
|special={{m|Dig}}, {{m|Rock Tomb}}, {{m|Icy Wind}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:0.5ch; background:#fff; {{roundy|10px}}; padding:1ch;&amp;quot;&amp;gt;&lt;br /&gt;
In {{g|GO}}, Spinda has nine distinct patterns, each treated as a [[List of Pokémon with form differences in Pokémon GO|different form]]. In addition, the Shiny variant for each pattern is also slightly different, making a total of eighteen patterns.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{normal color}}00; {{roundy|10px}} border: 3px solid #{{normal color dark}}00&amp;quot;&lt;br /&gt;
|+ &#039;&#039;&#039;Patterns in {{g|GO}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327 s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327B|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327B s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327C|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327C s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 1&lt;br /&gt;
| Pattern 2&lt;br /&gt;
| Pattern 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327D|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327D s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327E|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327E s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327F|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327F s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 4&lt;br /&gt;
| Pattern 5&lt;br /&gt;
| Pattern 6&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327G|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327G s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327H|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327H s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327I|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327I s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 7&lt;br /&gt;
| Pattern 8&lt;br /&gt;
| Pattern 9&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0327&lt;br /&gt;
|name1=Spinda&lt;br /&gt;
|type1-1=Normal}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Normal}}&lt;br /&gt;
{{Spritebox/NA|gen=III}}&lt;br /&gt;
{{Spritebox/3|ndex=327}}&lt;br /&gt;
{{Spritebox/4|ndex=327}}&lt;br /&gt;
{{Spritebox/5|ndex=327}}&lt;br /&gt;
{{Spritebox/6|ndex=327|crop=70}}&lt;br /&gt;
{{Spritebox/7|ndex=327|crop=68}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8/BDSP|ndex=327}}--&amp;gt;&lt;br /&gt;
{{Spritebox/NA|gen=IX|is=yes}}&lt;br /&gt;
{{Spritebox/HOME|ndex=0327}}&lt;br /&gt;
{{Spritebox/Footer|327|Spinda}}&lt;br /&gt;
&lt;br /&gt;
====Pattern examples====&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;
|&lt;br /&gt;
|&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Miles.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji1.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00000000&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88888888&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E3FDF3FD&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: EEE32A53&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman1.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Maiko.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman4.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman5.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Francisco.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Kimberly.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00094289&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 001C008A&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 0029A280&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 10232080&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102C3290&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102992A0&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E2880098&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88FE9800&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Spinda anime.png|thumb|250px|Spinda in {{aniseries|AG}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Multiple Spinda debuted in &#039;&#039;[[AG057|Going for a Spinda]]&#039;&#039;. {{Ash}} and {{ashfr}} had to help [[Claire]] find a Spinda with a heart-shaped spot on its forehead. {{an|Brock}}, meanwhile, kept picking one up with a spot shaped like a broken heart, much to his displeasure.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A {{pkmn|Coordinator}}&#039;s Spinda appeared in &#039;&#039;[[AG062|Disguise Da Limit!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Spinda appeared in &#039;&#039;[[AG077|A Fan with a Plan]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Coordinator&#039;s Spinda appeared in &#039;&#039;[[AG167|What I Did For Love!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039;, a {{pkmn|Trainer}}&#039;s Spinda competed in the [[Pokémon Pancake Race]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM015|Rocking Clawmark Hill!]]&#039;&#039;, a Spinda was training up on [[Clawmark Hill]].&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[SM141|Exhibition Unmasked!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In a flashback in &#039;&#039;[[JN051|Trials of a Budding Master!]]&#039;&#039;, a Trainer&#039;s Spinda battled Ash in a [[World Coronation Series]] match.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN103|The Future is Now, Thanks to Strategy!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN115|Curtain Up! Fight the Fights!]]&#039;&#039;. It reappeared in &#039;&#039;[[JN118|Battling as Hard as Stone!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN141|A Squad&#039;s Worth of Passion!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Animedexheader|Hoenn}}&lt;br /&gt;
{{Animedexbody|AG057|Spinda|Ash&#039;s Pokédex|Spinda, the Spot Panda Pokémon. Spinda uses its seemingly clumsy movements to {{status|Confusion|confuse}} its opponents. It is said that no two Spinda have the same {{DL|Variant Pokémon|Spinda|pattern of spots}}.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Hoenn}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Norman Spinda Teeter Dance Adventures.png|thumb|125px|Spinda in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
===={{MangaArc|Ruby &amp;amp; Sapphire}}====&lt;br /&gt;
{{adv|Norman}} owns a Spinda, which first appeared in &#039;&#039;[[PS258|Rayquaza Redemption I]]&#039;&#039;. He uses it in conjunction with his {{TP|Norman|Slaking}} to switch their {{Abilities}} with {{m|Skill Swap}}.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Emerald}}====&lt;br /&gt;
A Spinda appeared as a {{gdis|Battle Factory|III}} Pokémon in &#039;&#039;[[PS306|Pinsir Me, I Must Be Dreaming]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Battle Factory rented a Spinda, which was stolen by [[Guile Hideout]] in &#039;&#039;[[PS315|Skirting Around Surskit I]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The {{gdis|Battle Tower|III}} rented a Spinda, which was stolen by Guile Hideout in &#039;&#039;[[PS334|The Final Battle VII]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
A Spinda appeared in a flashback in &#039;&#039;[[PS361|Bombastic Bibarel &amp;amp; Heroic Hippopotas]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Black 2 &amp;amp; White 2}}====&lt;br /&gt;
In &#039;&#039;[[PS525|The Transfer Student]]&#039;&#039;, [[Yancy]] owns a Spinda. It was first seen with its {{pkmn|Trainer}} when she was breaking up with {{adv|Blake}}. Afterwards, it left with Yancy while she said her tearful goodbyes.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Omega Ruby &amp;amp; Alpha Sapphire}}====&lt;br /&gt;
The [[Lumiose Press editor-in-chief]] owns a Spinda, which first appeared in &#039;&#039;[[PS604|Goodra Spits]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Spinda (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==In the TFG==&lt;br /&gt;
One Spinda figure has been released.&lt;br /&gt;
* {{TFG|Groundbreakers}}: {{TFG ID|Groundbreakers|Spinda|32}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Pokémon Battle Revolution]], {{m|Toxic}} is depicted as two purple orbs spinning around each other towards the target. However, when Spinda uses Toxic, the orbs travel erratically. The same animation is used for {{p|Carnivine}}.&lt;br /&gt;
* Like {{p|Whirlipede}}, its base stat total might be based on the fact that it usually spins in circles, which are 360 degrees.&lt;br /&gt;
* Spinda&#039;s {{pkmn|Sun and Moon|Pokémon Sun}} [[Pokédex entry]] states that Spinda believe they walk in straight lines, oblivious to their teetering gait. However, in [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]], an NPC Spinda tells the player; &#039;&#039;&amp;quot;When I walk, I always totter.&amp;quot;&#039;&#039;, clearly being aware of this trait.&lt;br /&gt;
* Spinda and {{p|Deoxys}} are the only Pokémon to lack a second frame of animation for their front sprite in {{pkmn|Emerald|Pokémon Emerald}}.&lt;br /&gt;
&lt;br /&gt;
===Spot patterns===&lt;br /&gt;
* Some of Spinda&#039;s [[Pokédex entry|Pokédex entries]] mention the odds of two Spinda having the same spot pattern as less than one in four billion. Since Spinda&#039;s spots are based on its [[personality value]] (or encryption constant in later games), which is a 32-bit number, a simplistic model would put the odds at 1 in 4,294,967,296, which is indeed smaller than one in four billion; however, it is actually possible for two personality values to produce spot patterns that are visually identical, so the real odds are somewhat higher.&lt;br /&gt;
** Using [https://web.archive.org/web/20230828010339/https://gatorshark.webs.com/Spinda%20Painter.htm this app], it can be found that two dots have 256 distinct locations, one dot has 254, and one dot has 237, counting all locations where the dot is entirely off-sprite as the same. This results in a total of 3,945,136,128 patterns. However, even this total is slightly too high, because if the upper left dot is far enough down and to the right, it can entirely eclipse the lower-left dot, resulting in a few more patterns being indistinguishable. Compare, for example, 0x0E07F5FB and 0x0EF0F5FB.&lt;br /&gt;
** The fewest spots a Spinda can visibly have is 1 - the sprite&#039;s leftmost spots can land entirely off the sprite, while the rightmost spots cannot, but instead can entirely overlap.&lt;br /&gt;
** In {{g|Brilliant Diamond and Shining Pearl}}, due to a [[List of glitches in Generation VIII#Spinda spot pattern glitches|glitch]] this value is interpreted as big-endian, causing the spot pattern to be rendered incorrectly. As an example, a value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; (hexadecimal) would be interpreted as &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; instead.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1500557458623778819&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In [[Pokémon HOME]] v2.1.1 and prior versions, when opening the [[summary]] of a Spinda in the mobile app, Spinda would display the correct spot pattern, identical to its appearance in [[Generation VI]] and below. In HOME v3.0.0 all Spinda were displayed as having the same pattern as the static rendered image used in all HOME menus.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1665787431009001472&amp;lt;/ref&amp;gt; The encryption constant of Spinda in HOME remained unchanged (which meant that if transferred out of HOME into a compatible game, they would have likely retained their original spot pattern), however HOME&#039;s mobile app no longer displayed the spot pattern associated with the encryption constant of a given individual Spinda, all appearing identical to the &amp;quot;stock&amp;quot; rendered image of Spinda. This was resolved in v3.0.1.&amp;lt;ref name=&amp;quot;Spinda HOME&amp;quot;&amp;gt;https://twitter.com/Atrius97/status/1676088622943207424&amp;lt;/ref&amp;gt;&lt;br /&gt;
*** The value internally used in Pokémon HOME as the &amp;quot;default&amp;quot; pattern for Spinda is &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;7A&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;39&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;66&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt;,&amp;lt;ref name=&amp;quot;Spinda HOME&amp;quot;/&amp;gt; which is a close match to the pattern shown in nearly all official artwork, sprites, and 3D renders of Spinda.&lt;br /&gt;
** In Brilliant Diamond and Shining Pearl&#039;s [[Super Contest]]s, the encryption constant is generated randomly instead of using the value from Pokémon the player selects, which for Spinda results in completely random spot patterns appearing for the duration of the contest, regardless of their true spot pattern.&amp;lt;ref&amp;gt;https://twitter.com/Sibuna_Switch/status/1828258413442142257&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In {{game|Ruby and Sapphire|s}}, the temporary Pokédex entry created before catching a Spinda uses value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; before being overwritten by the obtained one; however, if the player&#039;s first Spinda is obtained via a trade, this value becomes permanent instead of being properly overwritten. This oversight is fixed in {{game|FireRed and LeafGreen|s}} and {{game|Emerald}}.&amp;lt;ref&amp;gt;[https://www.youtube.com/watch?v=J1g58JP0BfE The Spinda Rabbit Hole Goes Deeper than You Think]&amp;lt;/ref&amp;gt;&lt;br /&gt;
* Unlike other Pokémon with no [[List of Pokémon with gender differences|gender differences]], the [[Rotom Pokédex]] does not display a single model for both male and female Spinda, but rather a separate one for each. The models used are whatever the first spot patterns caught of each gender were.&lt;br /&gt;
** The Pokédex preview models for each gender, however, will always be a set model that will likely differ from the model the player will see.&lt;br /&gt;
* {{g|HOME}} cannot transfer Spinda into or out of {{g|GO}} or {{g|Brilliant Diamond and Shining Pearl}} due to inconsistencies in how its spot patterns works.&lt;br /&gt;
** In Pokémon GO, Spinda has nine predetermined forms rather than random patterns.&lt;br /&gt;
*** As a result, Spinda is one of only two Pokémon obtainable in GO that cannot have the {{DL|Origin mark|GO icon}} as its [[origin mark]], the other being {{p|Zygarde}}.&lt;br /&gt;
** In Pokémon Brilliant Diamond and Shining Pearl, this is due to a [[List of glitches in Generation VIII#Spinda spot pattern glitch|bug]] in the game, which causes the encryption constant to be read as a {{wp|Endianness|big-endian}} value (i.e. bytes are read in reverse order), and would allow the possibility to indirectly change Spinda&#039;s spot pattern. Spinda is the only Pokémon that cannot be transferred out of these games.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Spinda appears to be based on a {{wp|Qinling panda}} with traits of {{wp|rabbit}}s. It also resembles a {{wp|teddy bear}} or other {{wp|stuffed toy}}. The swirls in its eyes are based on a cartoonish representation of someone being dazed or dizzy, and its staggering steps resemble the {{wp|drunken boxing}} style of martial arts, which attempt to imitate the movements of a drunk person to become unpredictable and elusive. The connection between Qinling pandas and dizziness may stem from the {{wp|Qinling|Qinling mountains}} upon which these pandas live &amp;amp;ndash; the mountains suffer metal pollution in its soil and plant life, which can lead to {{wp|metal toxicity|metal poisoning}}, including dizziness and confusion, for its inhabitants over time.&amp;lt;ref&amp;gt;&#039;&#039;[https://www.sciencedirect.com/science/article/abs/pii/S0048969719310484?via%3Dihub &amp;quot;Establish an environmentally sustainable Giant Panda National Park in the Qinling Mountains&amp;quot;]&#039;&#039;, &#039;&#039;Science of the Total Environment&#039;&#039;, 10th June 2019&amp;lt;/ref&amp;gt; Spinda&#039;s habitat of [[Hoenn Route 113|Route 113]] is used as farmland, possibly in reference to agricultural run-offs being a source of pollution in Qinling. Additionally, Qinling pandas can live as high as {{tt|3&#039;000 metres|approx 9843 feet}} up the Qinling mountains, which is enough to cause dizziness in humans through {{wp|altitude sickness}}.&lt;br /&gt;
&lt;br /&gt;
The use of &amp;quot;patch&amp;quot; in Spinda&#039;s Japanese name could refer to patches of fabric used to cover tears in a material. Spinda&#039;s random spots would then be the various bandages attached to a toy that has been damaged due to rough play, or even a toddler that has fallen over many times due to their inability to walk stably.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Spinda may be a combination of &#039;&#039;spin&#039;&#039; and &#039;&#039;panda&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Patcheel may be a combination of &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039; (to lose one&#039;s balance).&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Normal|type2=Normal&lt;br /&gt;
|ja= パッチール &#039;&#039;Patcheel&#039;&#039;|jameaning=From &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039;&lt;br /&gt;
|fr=Spinda|frmeaning=Same as English name&lt;br /&gt;
|es=Spinda|esmeaning=Same as English name&lt;br /&gt;
|de=Pandir|demeaning=From &#039;&#039;Panda&#039;&#039; and {{tt|&#039;&#039;wirr&#039;&#039;|confused}}&lt;br /&gt;
|it=Spinda|itmeaning=Same as English name&lt;br /&gt;
|ko=얼루기 &#039;&#039;Ollugi&#039;&#039;|komeaning=From {{tt|얼룩 &#039;&#039;eolluk&#039;&#039;|stain}}&lt;br /&gt;
|zh_cmn=晃晃斑 &#039;&#039;Huànghuàngbān&#039;&#039;|zh_cmnmeaning= From {{tt|晃 &#039;&#039;huàng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bān&#039;&#039;|spots}}&lt;br /&gt;
|zh_yue=晃晃斑 &#039;&#039;Fóngfóngbāan&#039;&#039;|zh_yuemeaning= From {{tt|晃 &#039;&#039;fóng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bāan&#039;&#039;|spots}}&lt;br /&gt;
|hi=चकरबी &#039;&#039;Chakarbee&#039;&#039;|himeaning=From {{tt|चक्कर &#039;&#039;chakkar&#039;&#039;|spiral}}&lt;br /&gt;
|ru=Спинда &#039;&#039;Spinda&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=พัทชีล &#039;&#039;Phatchin&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Pandir]]&lt;br /&gt;
[[es:Spinda]]&lt;br /&gt;
[[fr:Spinda]]&lt;br /&gt;
[[it:Spinda]]&lt;br /&gt;
[[ja:パッチール]]&lt;br /&gt;
[[zh:晃晃斑]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Gimmighoul_(Pok%C3%A9mon)&amp;diff=4339478</id>
		<title>Talk:Gimmighoul (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:Gimmighoul_(Pok%C3%A9mon)&amp;diff=4339478"/>
		<updated>2025-07-19T22:48:51Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Removing the Bush Barrow reference from the origin */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Roaming Form ==&lt;br /&gt;
Since its Roaming Form is said to not be catchable and the official site omits its Pokedex data I think it&#039;s type, size or ability shouldn&#039;t be displayed. This appears to be another case of Zygarde Core or Rotom Phone where it&#039;s a Pokemon form that doesn&#039;t battle.--&#039;&#039;&#039;[[User:Team Rocket Grunt|&amp;lt;span style=&amp;quot;color:#CC0000&amp;quot;&amp;gt;Rocket&amp;lt;/span&amp;gt;]] [[User talk:Team Rocket Grunt|&amp;lt;span style=&amp;quot;color:#666666&amp;quot;&amp;gt;Grunt&amp;lt;/span&amp;gt;]]&#039;&#039;&#039; 20:59, 6 November 2022 (UTC)&lt;br /&gt;
:you can catch Roaming Form Gimmighoul in GO, by linking your GO account to SV, once the appropriate update is live ([https://pokemongolive.com/en/post/coin/ source]). its dex data are all hidden because currently it hasn&#039;t actually been catchable in GO yet. [[User:Anzasquiddles|Anzasquiddles]] ([[User talk:Anzasquiddles|talk]]) 00:30, 7 November 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Type Effectiveness ==&lt;br /&gt;
&lt;br /&gt;
On its page, Gimmighoul is listed as being immune to ground-type moves, despite being a pure ghost-type and not having any abilities that affect immunities. Is this an error? I&#039;d rather not edit it myself and be wrong if it&#039;s correct somehow. [[User:Beaniebabs|Beaniebabs]] ([[User talk:Beaniebabs|talk]]) 06:06, 18 November 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Potential trivia about forms ==&lt;br /&gt;
&lt;br /&gt;
Should it be noted that Gimmighoul is the only Pokemon with multiple forms that have no bearing on the Pokemon/form of the Pokemon they evolve into? [[User:Pokemega32|Pokemega32]] ([[User talk:Pokemega32|talk]]) 20:34, 10 August 2023 (UTC)&lt;br /&gt;
:Sure.--&#039;&#039;&#039;[[User:Team Rocket Grunt|&amp;lt;span style=&amp;quot;color:#CC0000&amp;quot;&amp;gt;Rocket&amp;lt;/span&amp;gt;]] [[User talk:Team Rocket Grunt|&amp;lt;span style=&amp;quot;color:#666666&amp;quot;&amp;gt;Grunt&amp;lt;/span&amp;gt;]]&#039;&#039;&#039; 22:00, 10 August 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Finite Chest Form Gimmighoul ==&lt;br /&gt;
&lt;br /&gt;
I found a post on reddit a while back that stated that there is only a finite amount of Chest Form Gimmighoul- once you catch all of them, you must release one for another to spawn. I don&#039;t think they checked it evolution, trading or depositing into Home had any effect on this, but it is still a very interesting note that we should consider adding.&lt;br /&gt;
&lt;br /&gt;
Here is the post for those curious. www.reddit.com/r/PokemonScarletViolet/comments/18vi7pc/solved_gimmighoul_chests_not_respawning_it_is_not [[User:ButSmeargleCan&amp;amp;#39;tUseTheMove|ButSmeargleCan&amp;amp;#39;tUseTheMove]] ([[User talk:ButSmeargleCan&amp;amp;#39;tUseTheMove|talk]]) 08:31, 9 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Removing the Bush Barrow reference from the origin ==&lt;br /&gt;
&lt;br /&gt;
I added this after watching a documentary on it and thought it could be related but I think I jumped to that conclusion. The patufet and toyol stories are much more likely, so I&#039;m thinking of removing the bush barrow line. Even though I wrote that, removing it now feels more like possible vandalism, so I wanted to check if anyone thinks it should stay? idk how to arrange a poll or whatever&lt;br /&gt;
&lt;br /&gt;
imo gholdengos version can stay though&lt;br /&gt;
&lt;br /&gt;
[[User:Pallukun|Pallukun]] ([[User talk:Pallukun|talk]]) 22:48, 19 July 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4337366</id>
		<title>Spinda (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4337366"/>
		<updated>2025-07-17T15:18:42Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */ i am the worlds leading expert in spinda&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Spinda}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Spinda&lt;br /&gt;
|jname=パッチール&lt;br /&gt;
|jtranslit=Patchīru&lt;br /&gt;
|tmname=Patcheel&lt;br /&gt;
|ndex=0327&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|category=Spot Panda&lt;br /&gt;
|height-ftin=3&#039;07&amp;quot;&lt;br /&gt;
|height-m=1.1&lt;br /&gt;
|weight-lbs=11.0&lt;br /&gt;
|weight-kg=5.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Own Tempo&lt;br /&gt;
|ability2=Tangled Feet&lt;br /&gt;
|ability2note=&amp;lt;sup&amp;gt;{{color2|000|Generation IV|Gen IV+}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|abilityd=Contrary&lt;br /&gt;
|egggroupn=2&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|egggroup2=Human-Like&lt;br /&gt;
|eggcycles=15&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evsa=1&lt;br /&gt;
|expyield=126&lt;br /&gt;
|oldexp=85&lt;br /&gt;
|lv100exp=800,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Brown&lt;br /&gt;
|catchrate=255&lt;br /&gt;
|body=06&lt;br /&gt;
|pokefordex=spinda&lt;br /&gt;
|generation=3&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Spinda&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;パッチール&#039;&#039;&#039; &#039;&#039;Patcheel&#039;&#039;) is a {{type|Normal}} {{OBP|Pokémon|species}} introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
It is not known to [[Evolution|evolve]] into or from any other Pokémon.&lt;br /&gt;
&lt;br /&gt;
Spinda is known for its variations, with each individual almost always having its own [[Variant Pokémon#Spinda|unique spot pattern]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Spinda is a bipedal, red panda {{OBP|Pokémon|species}} with rabbit-like features. Its eyes are made of two black spirals, which point in the opposite direction to each other. There is a similar swirling pattern on its ears. It has a small body with short stumpy arms and legs, and its coat is primarily cream-colored. Its arms are red and it has a red stripe bordering along the bottom of its belly, as well as two small spots on the soles of its feet. It has four spots, which can appear anywhere on its face and ears, with a fifth on the back of its head. These spot patterns are different for each and every Spinda.&lt;br /&gt;
&lt;br /&gt;
It has dizzying, confusing, and scattering dance-like movements, though it thinks it is walking in a straight line. These movements confuse their opponents and make it difficult for them to aim at it. It lives in the {{DL|List of Pokémon by habitat|Mountain Pokémon|mountains}}.&lt;br /&gt;
&lt;br /&gt;
Prior to [[Generation V]], {{m|Teeter Dance}} was its [[signature move]], but other Pokémon could still inherit it via {{pkmn|breeding}}.&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]]: One day, a Spinda appears in [[Pokémon Square]] and collapses. When it regains consciousness, Spinda explains that it is giving up a long journey to find the {{p|Ho-Oh|Mirage Pokémon}} and hands its one clue, the Clear Wing, to the player. The player must then solve [[the Mystery of the Mirage Pokémon]], which will reward them with the Rainbow Wing. Upon showing the Rainbow Wing to Spinda, or talking to Spinda as Ho-Oh, it becomes happy and leaves Pokémon Square.&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Explorers of Sky]]: Spinda runs Spinda&#039;s café and takes over the juice bar. A {{p|Wynaut}} and a {{p|Wobbuffet}} also work at the café running the recycle shop. Later in the game, Project P is introduced. After it is introduced, occasionally when speaking to Wynaut the player may gain access to a dungeon normally accessed by selecting a job with ??? as the location or get a choice of more items in the recycle shop.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Normal}}&lt;br /&gt;
{{Dex/NA|gen=III}}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=114|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=All the &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this {{ScPkmn}} give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical spot patterns on their hides. This {{ScPkmn}} moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe&#039;s aim.}}&lt;br /&gt;
{{Dex/Entry2|v=FireRed|v2=LeafGreen|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical patterns. It confuses foes with its stumbling motions.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=HeartGold|v2=SoulSilver|entry=The chances of two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=131|label1=Mountain|reg2=Hoenn|num2=119}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=The chances of two Spinda having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Omega Ruby|entry=All the Spinda that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this Pokémon give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Alpha Sapphire|entry=No two Spinda are said to have identical spot patterns on their hides. This Pokémon moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VII|reg1=Alola|num1=105|label1={{gameIcon|Su}}{{gameIcon|M}}:|reg2=Alola|num2=128|label2={{gameIcon|US}}{{gameIcon|UM}}:|reg3=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sun|entry=Its steps are staggering and unsteady, but Spinda thinks it&#039;s walking in a straight line.}}&lt;br /&gt;
{{Dex/Entry1|v=Moon|entry=Each and every Spinda has a slightly different configuration of spots. There are collectors who enjoy the tiny differences in their spot patterns.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=Its steps are shaky and stumbling. Walking for a long time makes it feel sick.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=Each Spinda&#039;s spot pattern is different. With its stumbling movements, it evades opponents&#039; attacks brilliantly!}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=No two Spinda have the same pattern of spots. Their tottering steps hinder the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/NE|[[Generation IX]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{normal color dark}}; background:#{{normal color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda-Alternate SM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda SM.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| A male Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
| A female Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2|v=Ruby|v2=Sapphire|t=fff|t2=fff|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen|area=[[Trade]], [[#In events|Event]]}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area={{safari|Johto}} (Desert with 14 Plains points)&amp;lt;br&amp;gt;[[Sprout Tower]], [[Bell Tower]], [[Burned Tower]] {{color2|{{hoenn color dark}}|Hoenn Sound|(Hoenn Sound)}}}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|land}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Field}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Trade]] with [[Curtis]] or [[Yancy]] in [[Nimbasa City]]}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Rugged Mountain}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area={{rt|21|Kalos}}&amp;lt;br&amp;gt;{{rt|21|Kalos}} ([[Horde Encounter]])}}&lt;br /&gt;
{{Availability/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2|v=Sun|v2=Moon|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=fff|area=Hatch from {{pkmn|Egg}}}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 14]], Endless Level 4, Trozei Battle, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Joyous Tower]] (5F-7F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Blazing|link=Pokémon Mystery Dungeon (WiiWare)|color={{fire color}}|area=}}--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Factory: [[Firebreathing Mountain]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Wonder Area#Pokémon Outbreak!|Wonder Area: Pokémon Outbreak!]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Monday Stage 3|Safari Jungle: Stage 3]]{{dotw|Mo}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Starlight Islands#Volcanic Ravine|Starlight Islands: Volcanic Ravine]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Rayquaza Sea]], [[Celebi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Western Cave]] (10F-17F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Silver Trench]], [[Lightning Field]], [[Western Cave]], [[Darknight Relic]], [[Far-Off Sea]]&amp;lt;br/&amp;gt;Mystery House: [[Western Cave]]&amp;lt;br/&amp;gt;[[Mystery_dungeon#Strong_Foes|Strong Foe]]: [[Frosty Forest]] (4F, 6F, 10F-13F){{shinystar}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Prasino Woods|Prasino Woods: Stage 586]]&amp;lt;br&amp;gt;Event: [[Pokémon Safari/2015-Feb. 2018#First release|&#039;&#039;Pokémon Safari&#039;&#039;]] &amp;lt;small&amp;gt;(First release)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Normal}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|PokéPark Egg Spinda|Japanese|Japan|5|March 12 to May 8, 2005|link=List of Japanese event Pokémon distributions in Generation III#Spinda}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Normal}}&lt;br /&gt;
{{HeldItems/Games2|Ruby|Sapphire|tcolor1=fff|tcolor2=fff|Pokémon Ruby and Sapphire Versions}}&lt;br /&gt;
{{HeldItems/Items1|Chesto Berry|5|rows=5}}&lt;br /&gt;
{{HeldItems/Games1|Emerald|tcolor=fff|Pokémon Emerald Version}}&lt;br /&gt;
{{HeldItems/Games2|Diamond|Pearl|Pokémon Diamond and Pearl Versions}}&lt;br /&gt;
{{HeldItems/Games1|Platinum|Pokémon Platinum Version}}&lt;br /&gt;
{{HeldItems/Games2|HeartGold|SoulSilver|Pokémon HeartGold and SoulSilver Versions}}&lt;br /&gt;
{{HeldItems/Games2|Black 2|White 2|tcolor1=FFF|Pokémon Black and White Versions 2}}&lt;br /&gt;
{{HeldItems/Items1|Lava Cookie|100|availNote=[[In-game trade]],&amp;amp;#32;}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Normal&lt;br /&gt;
|HP=60&lt;br /&gt;
|Attack=60&lt;br /&gt;
|Defense=60&lt;br /&gt;
|SpAtk=60&lt;br /&gt;
|SpDef=60&lt;br /&gt;
|Speed=60}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=3&lt;br /&gt;
|Power=2&lt;br /&gt;
|PowerMax=3&lt;br /&gt;
|Technique=3&lt;br /&gt;
|TechniqueMax=4&lt;br /&gt;
|Stamina=3&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=2&lt;br /&gt;
|JumpMax=3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=100&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=100&lt;br /&gt;
|Ghost=0&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=100&lt;br /&gt;
|Fairy=100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|normal=yes&lt;br /&gt;
|newghost=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Spinda is available in {{pkmn|Brilliant Diamond and Shining Pearl}}, but cannot be transferred to/from {{g|HOME}}.&lt;br /&gt;
&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/level8|1|Tackle|Normal|Physical|40|100|35||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|5|Copycat|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/level8|10|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|14|Psybeam|Psychic|Special|65|100|20||}}&lt;br /&gt;
{{learnlist/level8|19|Hypnosis|Psychic|Status|&amp;amp;mdash;|60|20||}}&lt;br /&gt;
{{learnlist/level8|23|Body Slam|Normal|Physical|85|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|28|Sucker Punch|Dark|Physical|70|100|5||}}&lt;br /&gt;
{{learnlist/level8|32|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|37|Uproar|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|41|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/level8|46|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|50|Flail|Normal|Physical|&amp;amp;mdash;|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|55|Thrash|Normal|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/levelf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tm8|TM01|Focus Punch|Fighting|Physical|150|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM03|Water Pulse|Water|Special|60|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM04|Calm Mind|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM10|Work Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|30||}}&lt;br /&gt;
{{learnlist/tm8|TM11|Sunny Day|Fire|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM17|Protect|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM18|Rain Dance|Water|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM20|Safeguard|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|25||}}&lt;br /&gt;
{{learnlist/tm8|TM28|Dig|Ground|Physical|80|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM29|Psychic|Psychic|Special|90|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM30|Shadow Ball|Ghost|Special|80|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM31|Brick Break|Fighting|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM32|Double Team|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|15||}}&lt;br /&gt;
{{learnlist/tm8|TM34|Shock Wave|Electric|Special|60|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM39|Rock Tomb|Rock|Physical|60|95|15||}}&lt;br /&gt;
{{learnlist/tm8|TM42|Facade|Normal|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM44|Rest|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM45|Attract|Normal|Status|&amp;amp;mdash;|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM46|Thief|Dark|Physical|60|100|25||}}&lt;br /&gt;
{{learnlist/tm8|TM48|Skill Swap|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM56|Fling|Dark|Physical|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM58|Endure|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM60|Drain Punch|Fighting|Physical|75|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM67|Recycle|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM70|Flash|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM77|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM80|Rock Slide|Rock|Physical|75|90|10||}}&lt;br /&gt;
{{learnlist/tm8|TM82|Sleep Talk|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM85|Dream Eater|Psychic|Special|100|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM87|Swagger|Normal|Status|&amp;amp;mdash;|85|15||}}&lt;br /&gt;
{{learnlist/tm8|TM90|Substitute|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM92|Trick Room|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM96|Strength|Normal|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM98|Rock Smash|Fighting|Physical|40|100|15||}}&lt;br /&gt;
{{learnlist/tmf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0161|Sentret}}{{MSP/H|0162|Furret}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0203|Girafarig}}{{MSP/H|0303|Mawile}}{{MSP/H|0427|Buneary}}{{MSP/H|0428|Lopunny}}|Baton Pass|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|40||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0037|Vulpix}}{{MSP/H|0038|Ninetales}}{{MSP/H|0054|Psyduck}}{{MSP/H|0055|Golduck}}{{MSP/H|0352|Kecleon}}|Disable|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0287|Slakoth}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0289|Slaking}}{{MSP/H|0313|Volbeat}}{{MSP/H|0363|Spheal}}{{MSP/H|0364|Sealeo}}{{MSP/H|0365|Walrein}}|Encore|Normal|Status|&amp;amp;mdash;|100|5||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0052|Meowth}}{{MSP/H|0053|Persian}}{{MSP/H|0106|Hitmonlee}}{{MSP/H|0107|Hitmonchan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0296|Makuhita}}{{MSP/H|0297|Hariyama}}{{MSP/H|0300|Skitty}}{{MSP/H|0301|Delcatty}}{{MSP/H|0302|Sableye}}{{MSP/H|0431|Glameow}}{{MSP/H|0432|Purugly}}|Fake Out|Normal|Physical|40|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0216|Teddiursa}}{{MSP/H|0217|Ursaring}}{{MSP/H|0303|Mawile}}|Fake Tears|Dark|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Guard Split|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0215|Sneasel}}{{MSP/H|0461|Weavile}}{{MSP/H|0220|Swinub}}{{MSP/H|0221|Piloswine}}{{MSP/H|0473|Mamoswine}}{{MSP/H|0471|Glaceon}}|Icy Wind|Ice|Special|55|95|15||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0359|Absol}}{{MSP/H|0475|Gallade}}|Psycho Cut|Psychic|Physical|70|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Psycho Shift|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0027|Sandshrew}}{{MSP/H|0028|Sandslash}}{{MSP/H|0232|Donphan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0324|Torkoal}}|Rapid Spin|Normal|Physical|50|100|40||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0234|Stantler}}|Role Play|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Trick|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0282|Gardevoir}}|Wish|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breedf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[Move Tutor|tutoring]]====&lt;br /&gt;
{{learnlist/tutorh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tutor8null}}&lt;br /&gt;
{{learnlist/tutorf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Normal}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Normal|ndex=327|acquisition=Hatch}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Normal|ndex=327|rarity=Common}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=7.2&lt;br /&gt;
|area=Mt. Deepgreen&lt;br /&gt;
|P1=I&#039;m not the way I look. I can walk in a straight line, thank you!&lt;br /&gt;
|P2=Oh-oh? I daresay my HP is down by half.&lt;br /&gt;
|P3=I&#039;m prepared to keel over. I can&#039;t keep walking straight now.&lt;br /&gt;
|PL=I&#039;ll have you know I&#039;ve gone up a level.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=6.4&lt;br /&gt;
|IQ=G&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Normal|ndex=327&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Cubone}}, {{p|Mr. Mime}}, {{p|Kirlia}}, {{p|Buneary}}&lt;br /&gt;
|recruitment=Find {{p|Buneary}} together&lt;br /&gt;
|P1=I like traveling.&lt;br /&gt;
|P2=So exhausted!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Normal&lt;br /&gt;
|att=2&lt;br /&gt;
|def=2&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Normal|ndex=327&lt;br /&gt;
|walk=1.58&lt;br /&gt;
|hp=51&lt;br /&gt;
|attack=71&lt;br /&gt;
|defense=51&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Normal|ndex=327&lt;br /&gt;
|power=1&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Normal|ndex=327|num=229&lt;br /&gt;
|min=50&lt;br /&gt;
|max=100&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Counterattack&lt;br /&gt;
|skilldesc=Deals even more damage the more disruptions there are.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Normal|ndex=327&lt;br /&gt;
|buddy=3&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|candy=Spinda&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=155|attack=116|defense=116&lt;br /&gt;
|fast={{m|Sucker Punch}}, {{m|Psycho Cut}}&lt;br /&gt;
|special={{m|Dig}}, {{m|Rock Tomb}}, {{m|Icy Wind}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:0.5ch; background:#fff; {{roundy|10px}}; padding:1ch;&amp;quot;&amp;gt;&lt;br /&gt;
In {{g|GO}}, Spinda has nine distinct patterns, each treated as a [[List of Pokémon with form differences in Pokémon GO|different form]]. In addition, the Shiny variant for each pattern is also slightly different, making a total of eighteen patterns.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{normal color}}00; {{roundy|10px}} border: 3px solid #{{normal color dark}}00&amp;quot;&lt;br /&gt;
|+ &#039;&#039;&#039;Patterns in {{g|GO}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327 s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327B|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327B s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327C|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327C s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 1&lt;br /&gt;
| Pattern 2&lt;br /&gt;
| Pattern 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327D|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327D s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327E|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327E s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327F|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327F s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 4&lt;br /&gt;
| Pattern 5&lt;br /&gt;
| Pattern 6&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327G|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327G s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327H|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327H s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327I|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327I s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 7&lt;br /&gt;
| Pattern 8&lt;br /&gt;
| Pattern 9&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0327&lt;br /&gt;
|name1=Spinda&lt;br /&gt;
|type1-1=Normal}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Normal}}&lt;br /&gt;
{{Spritebox/NA|gen=III}}&lt;br /&gt;
{{Spritebox/3|ndex=327}}&lt;br /&gt;
{{Spritebox/4|ndex=327}}&lt;br /&gt;
{{Spritebox/5|ndex=327}}&lt;br /&gt;
{{Spritebox/6|ndex=327|crop=70}}&lt;br /&gt;
{{Spritebox/7|ndex=327|crop=68}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8/BDSP|ndex=327}}--&amp;gt;&lt;br /&gt;
{{Spritebox/NA|gen=IX|is=yes}}&lt;br /&gt;
{{Spritebox/HOME|ndex=0327}}&lt;br /&gt;
{{Spritebox/Footer|327|Spinda}}&lt;br /&gt;
&lt;br /&gt;
====Pattern examples====&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;
|&lt;br /&gt;
|&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Miles.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji1.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00000000&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88888888&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E3FDF3FD&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: EEE32A53&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman1.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Maiko.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman4.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman5.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Francisco.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Kimberly.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00094289&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 001C008A&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 0029A280&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 10232080&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102C3290&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102992A0&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E2880098&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88FE9800&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Spinda anime.png|thumb|250px|Spinda in {{aniseries|AG}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Multiple Spinda debuted in &#039;&#039;[[AG057|Going for a Spinda]]&#039;&#039;. {{Ash}} and {{ashfr}} had to help [[Claire]] find a Spinda with a heart-shaped spot on its forehead. {{an|Brock}}, meanwhile, kept picking one up with a spot shaped like a broken heart, much to his displeasure.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A {{pkmn|Coordinator}}&#039;s Spinda appeared in &#039;&#039;[[AG062|Disguise Da Limit!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Spinda appeared in &#039;&#039;[[AG077|A Fan with a Plan]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Coordinator&#039;s Spinda appeared in &#039;&#039;[[AG167|What I Did For Love!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039;, a {{pkmn|Trainer}}&#039;s Spinda competed in the [[Pokémon Pancake Race]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM015|Rocking Clawmark Hill!]]&#039;&#039;, a Spinda was training up on [[Clawmark Hill]].&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[SM141|Exhibition Unmasked!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In a flashback in &#039;&#039;[[JN051|Trials of a Budding Master!]]&#039;&#039;, a Trainer&#039;s Spinda battled Ash in a [[World Coronation Series]] match.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN103|The Future is Now, Thanks to Strategy!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN115|Curtain Up! Fight the Fights!]]&#039;&#039;. It reappeared in &#039;&#039;[[JN118|Battling as Hard as Stone!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN141|A Squad&#039;s Worth of Passion!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Animedexheader|Hoenn}}&lt;br /&gt;
{{Animedexbody|AG057|Spinda|Ash&#039;s Pokédex|Spinda, the Spot Panda Pokémon. Spinda uses its seemingly clumsy movements to {{status|Confusion|confuse}} its opponents. It is said that no two Spinda have the same {{DL|Variant Pokémon|Spinda|pattern of spots}}.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Hoenn}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Norman Spinda Teeter Dance Adventures.png|thumb|125px|Spinda in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
===={{MangaArc|Ruby &amp;amp; Sapphire}}====&lt;br /&gt;
[[Norman]] owns a Spinda, which first appeared in &#039;&#039;[[PS258|Rayquaza Redemption I]]&#039;&#039;. He uses it in conjunction with his {{TP|Norman|Slaking}} to switch their {{Abilities}} with {{m|Skill Swap}}.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Emerald}}====&lt;br /&gt;
A Spinda appeared as a {{gdis|Battle Factory|III}} Pokémon in &#039;&#039;[[PS306|Pinsir Me, I Must Be Dreaming]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Battle Factory rented a Spinda, which was stolen by [[Guile Hideout]] in &#039;&#039;[[PS315|Skirting Around Surskit I]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The {{gdis|Battle Tower|III}} rented a Spinda, which was stolen by Guile Hideout in &#039;&#039;[[PS334|The Final Battle VII]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
A Spinda appeared in a flashback in &#039;&#039;[[PS361|Bombastic Bibarel &amp;amp; Heroic Hippopotas]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Black 2 &amp;amp; White 2}}====&lt;br /&gt;
In &#039;&#039;[[PS525|The Transfer Student]]&#039;&#039;, [[Yancy]] owns a Spinda. It was first seen with its {{pkmn|Trainer}} when she was breaking up with {{adv|Blake}}. Afterwards, it left with Yancy while she said her tearful goodbyes.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Omega Ruby &amp;amp; Alpha Sapphire}}====&lt;br /&gt;
The [[Lumiose Press editor-in-chief]] owns a Spinda, which first appeared in &#039;&#039;[[PS604|Goodra Spits]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Spinda (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==In the TFG==&lt;br /&gt;
One Spinda figure has been released.&lt;br /&gt;
* {{TFG|Groundbreakers}}: {{TFG ID|Groundbreakers|Spinda|32}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Pokémon Battle Revolution]], {{m|Toxic}} is depicted as two purple orbs spinning around each other towards the target. However, when Spinda uses Toxic, the orbs travel erratically. The same animation is used for {{p|Carnivine}}.&lt;br /&gt;
* Like {{p|Whirlipede}}, its base stat total might be based on the fact that it usually spins in circles, which are 360 degrees.&lt;br /&gt;
* Spinda&#039;s {{pkmn|Sun and Moon|Pokémon Sun}} [[Pokédex entry]] states that Spinda believe they walk in straight lines, oblivious to their teetering gait. However, in [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]], an NPC Spinda tells the player; &#039;&#039;&amp;quot;When I walk, I always totter.&amp;quot;&#039;&#039;, clearly being aware of this trait.&lt;br /&gt;
* Spinda and {{p|Deoxys}} are the only Pokémon to lack a second frame of animation for their front sprite in {{pkmn|Emerald|Pokémon Emerald}}.&lt;br /&gt;
&lt;br /&gt;
===Spot patterns===&lt;br /&gt;
* Some of Spinda&#039;s [[Pokédex entry|Pokédex entries]] mention the odds of two Spinda having the same spot pattern as less than one in four billion. Since Spinda&#039;s spots are based on its [[personality value]] (or encryption constant in later games), which is a 32-bit number, a simplistic model would put the odds at 1 in 4,294,967,296, which is indeed smaller than one in four billion; however, it is actually possible for two personality values to produce spot patterns that are visually identical, so the real odds are somewhat higher.&lt;br /&gt;
** Using [https://web.archive.org/web/20230828010339/https://gatorshark.webs.com/Spinda%20Painter.htm this app], it can be found that two dots have 256 distinct locations, one dot has 254, and one dot has 237, counting all locations where the dot is entirely off-sprite as the same. This results in a total of 3,945,136,128 patterns. However, even this total is slightly too high, because if the upper left dot is far enough down and to the right, it can entirely eclipse the lower-left dot, resulting in a few more patterns being indistinguishable. Compare, for example, 0x0E07F5FB and 0x0EF0F5FB.&lt;br /&gt;
** The fewest spots a Spinda can visibly have is 1 - the sprite&#039;s leftmost spots can land entirely off the sprite, while the rightmost spots cannot, but instead can entirely overlap.&lt;br /&gt;
** In {{g|Brilliant Diamond and Shining Pearl}}, due to a [[List of glitches in Generation VIII#Spinda spot pattern glitches|glitch]] this value is interpreted as big-endian, causing the spot pattern to be rendered incorrectly. As an example, a value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; (hexadecimal) would be interpreted as &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; instead.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1500557458623778819&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In [[Pokémon HOME]] v2.1.1 and prior versions, when opening the [[summary]] of a Spinda in the mobile app, Spinda would display the correct spot pattern, identical to its appearance in [[Generation VI]] and below. In HOME v3.0.0 all Spinda were displayed as having the same pattern as the static rendered image used in all HOME menus.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1665787431009001472&amp;lt;/ref&amp;gt; The encryption constant of Spinda in HOME remained unchanged (which meant that if transferred out of HOME into a compatible game, they would have likely retained their original spot pattern), however HOME&#039;s mobile app no longer displayed the spot pattern associated with the encryption constant of a given individual Spinda, all appearing identical to the &amp;quot;stock&amp;quot; rendered image of Spinda. This was resolved in v3.0.1.&amp;lt;ref name=&amp;quot;Spinda HOME&amp;quot;&amp;gt;https://twitter.com/Atrius97/status/1676088622943207424&amp;lt;/ref&amp;gt;&lt;br /&gt;
*** The value internally used in Pokémon HOME as the &amp;quot;default&amp;quot; pattern for Spinda is &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;7A&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;39&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;66&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt;,&amp;lt;ref name=&amp;quot;Spinda HOME&amp;quot;/&amp;gt; which is a close match to the pattern shown in nearly all official artwork, sprites, and 3D renders of Spinda.&lt;br /&gt;
** In Brilliant Diamond and Shining Pearl&#039;s [[Super Contest]]s, the encryption constant is generated randomly instead of using the value from Pokémon the player selects, which for Spinda results in completely random spot patterns appearing for the duration of the contest, regardless of their true spot pattern.&amp;lt;ref&amp;gt;https://twitter.com/Sibuna_Switch/status/1828258413442142257&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In {{game|Ruby and Sapphire|s}}, the temporary Pokédex entry created before catching a Spinda uses value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; before being overwritten by the obtained one; however, if the player&#039;s first Spinda is obtained via a trade, this value becomes permanent instead of being properly overwritten. This oversight is fixed in {{game|FireRed and LeafGreen|s}} and {{game|Emerald}}.&amp;lt;ref&amp;gt;[https://www.youtube.com/watch?v=J1g58JP0BfE The Spinda Rabbit Hole Goes Deeper than You Think]&amp;lt;/ref&amp;gt;&lt;br /&gt;
* Unlike other Pokémon with no [[List of Pokémon with gender differences|gender differences]], the [[Rotom Pokédex]] does not display a single model for both male and female Spinda, but rather a separate one for each. The models used are whatever the first spot patterns caught of each gender were.&lt;br /&gt;
** The Pokédex preview models for each gender, however, will always be a set model that will likely differ from the model the player will see.&lt;br /&gt;
* {{g|HOME}} cannot transfer Spinda into or out of {{g|GO}} or {{g|Brilliant Diamond and Shining Pearl}} due to inconsistencies in how its spot patterns works.&lt;br /&gt;
** In Pokémon GO, Spinda has nine predetermined forms rather than random patterns.&lt;br /&gt;
*** As a result, Spinda is one of only two Pokémon obtainable in GO that cannot have the {{DL|Origin mark|GO icon}} as its [[origin mark]], the other being {{p|Zygarde}}.&lt;br /&gt;
** In Pokémon Brilliant Diamond and Shining Pearl, this is due to a [[List of glitches in Generation VIII#Spinda spot pattern glitch|bug]] in the game, which causes the encryption constant to be read as a {{wp|Endianness|big-endian}} value (i.e. bytes are read in reverse order), and would allow the possibility to indirectly change Spinda&#039;s spot pattern. Spinda is the only Pokémon that cannot be transferred out of these games.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Spinda appears to be based on a {{wp|Qinling panda}} with traits of {{wp|rabbit}}s. It also resembles a {{wp|teddy bear}} or other {{wp|stuffed toy}}. The swirls in its eyes are based on a cartoonish representation of someone being dazed or dizzy, and its staggering steps resemble the {{wp|drunken boxing}} style of martial arts, which attempt to imitate the movements of a drunk person to become unpredictable and elusive. The connection between Qinling pandas and dizziness may stem from the {{wp|Qinling|Qinling mountains}} upon which these pandas live &amp;amp;ndash; Qinling pandas can live as high as {{tt|3&#039;000 metres|approx 9843 feet}} up these mountains, which is enough to induce {{wp|altitude sickness}} in humans. Additionally, the mountains suffer metal pollution in its soil and plant life, which can lead to {{wp|metal toxicity|metal poisoning}} over time&amp;lt;ref&amp;gt;&#039;&#039;[https://www.sciencedirect.com/science/article/abs/pii/S0048969719310484?via%3Dihub &amp;quot;Establish an environmentally sustainable Giant Panda National Park in the Qinling Mountains&amp;quot;]&#039;&#039;, &#039;&#039;Science of the Total Environment&#039;&#039;, 10th June 2019&amp;lt;/ref&amp;gt;. Both conditions are known for dizziness and confusion as symptoms.&lt;br /&gt;
&lt;br /&gt;
The use of &amp;quot;patch&amp;quot; in Spinda&#039;s Japanese name could refer to patches of fabric used to cover tears in a material. Spinda&#039;s random spots would then be the various bandages attached to a toy that has been damaged due to rough play, or even a toddler that has fallen over many times due to their inability to walk stably.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Spinda may be a combination of &#039;&#039;spin&#039;&#039; and &#039;&#039;panda&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Patcheel may be a combination of &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039; (to lose one&#039;s balance).&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Normal|type2=Normal&lt;br /&gt;
|ja= パッチール &#039;&#039;Patcheel&#039;&#039;|jameaning=From &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039;&lt;br /&gt;
|fr=Spinda|frmeaning=Same as English name&lt;br /&gt;
|es=Spinda|esmeaning=Same as English name&lt;br /&gt;
|de=Pandir|demeaning=From &#039;&#039;Panda&#039;&#039; and {{tt|&#039;&#039;wirr&#039;&#039;|confused}}&lt;br /&gt;
|it=Spinda|itmeaning=Same as English name&lt;br /&gt;
|ko=얼루기 &#039;&#039;Ollugi&#039;&#039;|komeaning=From {{tt|얼룩 &#039;&#039;eolluk&#039;&#039;|stain}}&lt;br /&gt;
|zh_cmn=晃晃斑 &#039;&#039;Huànghuàngbān&#039;&#039;|zh_cmnmeaning= From {{tt|晃 &#039;&#039;huàng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bān&#039;&#039;|spots}}&lt;br /&gt;
|zh_yue=晃晃斑 &#039;&#039;Fóngfóngbāan&#039;&#039;|zh_yuemeaning= From {{tt|晃 &#039;&#039;fóng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bāan&#039;&#039;|spots}}&lt;br /&gt;
|hi=चकरबी &#039;&#039;Chakarbee&#039;&#039;|himeaning=From {{tt|चक्कर &#039;&#039;chakkar&#039;&#039;|spiral}}&lt;br /&gt;
|ru=Спинда &#039;&#039;Spinda&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=พัทชีล &#039;&#039;Phatchin&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Pandir]]&lt;br /&gt;
[[es:Spinda]]&lt;br /&gt;
[[fr:Spinda]]&lt;br /&gt;
[[it:Spinda]]&lt;br /&gt;
[[ja:パッチール]]&lt;br /&gt;
[[zh:晃晃斑]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Kommo-o_(Pok%C3%A9mon)&amp;diff=4329308</id>
		<title>Kommo-o (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Kommo-o_(Pok%C3%A9mon)&amp;diff=4329308"/>
		<updated>2025-07-02T19:01:12Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Name origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Kommo-o}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dragon|prevnum=0783|prev=Hakamo-o|nextnum=0785|next=Tapu Koko|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Kommo-o&lt;br /&gt;
|jname=ジャラランガ&lt;br /&gt;
|tmname=Jyararanga&lt;br /&gt;
|jtranslit=Jararanga&lt;br /&gt;
|ndex=0784&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|category=Scaly&lt;br /&gt;
|height-ftin=5&#039;03&amp;quot;&lt;br /&gt;
|height-m=1.6&lt;br /&gt;
|weight-lbs=172.4&lt;br /&gt;
|weight-kg=78.2&lt;br /&gt;
|ability1=Bulletproof&lt;br /&gt;
|ability2=Soundproof&lt;br /&gt;
|abilityd=Overcoat&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Dragon&lt;br /&gt;
|eggcycles=40&lt;br /&gt;
|evtotal=3&lt;br /&gt;
|evde=3&lt;br /&gt;
|expyield=270&lt;br /&gt;
|lv100exp=1,250,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Gray&lt;br /&gt;
|catchrate=45&lt;br /&gt;
|body=06&lt;br /&gt;
|pokefordex=kommo-o&lt;br /&gt;
|generation=7&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Kommo-o&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ジャラランガ&#039;&#039;&#039; &#039;&#039;Jyararanga&#039;&#039;) is a dual-type {{2t|Dragon|Fighting}} [[pseudo-legendary Pokémon]] introduced in [[Generation VII]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] from {{p|Hakamo-o}} starting at [[level]] 45. It is the final form of {{p|Jangmo-o}}.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Kommo-o is a bipedal, reptilian {{OBP|Pokémon|species}} covered in scaly armor. Most of its body is gray with some lighter gray areas as well as yellow and red markings. It has a rounded, beak-ish snout and small eyes nearly hidden under its head armor. On the tip of its snout is a patch of pale gray and both the upper and lower jaws have a small, tooth-like spike on each side. The top of its head is covered by an elaborate arrangement of scales. At the front of the headdress is an oval scale, which is yellow with a red heart-shape at the base. On either side of the front scale is a chain of four circular scales; the first three scales are red with yellow trim and the last scale is solid yellow. Three additional chains of plain yellow scales extend from the back of the headdress. Running down the front of its long neck is a line of overlapping scales: one solid gray at the top, three larger gray ones with yellow rims, and one solid yellow scale at the bottom. A thick yellow stripe with a rounded projection in the center runs across its chest. Covering its shoulders are tufts of spiky, white feathers with small, gray scales overlapping them. Four overlapping scales cover the tops of its arms: three are gray with yellow edges and the scales that cover its hands are red with yellow edges.&lt;br /&gt;
&lt;br /&gt;
Kommo-o has four scaly chains, all of which consist of four scales, extending from just behind its shoulders. The two foremost chains are made of overlapping scales and have a solid gray scale at the top followed by three scales with yellow edges. The other two chains consist of only solid gray scales and do not appear to overlap. The lower halves of its legs are dark gray and there is a pale gray marking across each knee. Its hands have four yellow claws, while the feet have only three. A long line of slightly raised, pale gray scales runs down the center of its back to about halfway up its tapering tail. Near the tip of its tail are three sets of loose scales that increase in size near the tip. Each set is made up of four separate scales that encircle the tail; the two lower sets are solid yellow, while the set nearest the tip have gray centers. The very tip of its tail is pale gray.&lt;br /&gt;
&lt;br /&gt;
Kommo-o, having completed its harsh training, returns to its birthplace to protect {{p|Jangmo-o}}. However, it only watches over them from a distance. The power of this Pokémon&#039;s uppercut is enough to send foes flying, so simply raising its arms can generate enough force to change its surroundings. According to legend, Kommo-o&#039;s glittering scales are meant to drive away a great darkness. The reason it seeks strong opponents is also said to be a quest for power to defeat the darkness.&amp;lt;ref&amp;gt;[http://www.pokemon-sunmoon.com/en-us/pokemon/kommo-o/ Pokémon Sun and Moon site | Kommo-o]&amp;lt;/ref&amp;gt; Its scales function as both offensive weapons and defensive shields. &lt;br /&gt;
&lt;br /&gt;
Because it does not wish to fight weak foes, it clangs its scales together when it senses someone approaching. Weak or cowardly opponents will panic at this sound and flee immediately. Kommo-o also swings the scales on its tail to threaten any enemies it sees. Upon finishing off its prey, Kommo-o will let out a victory howl. Additionally, the metallic sounds made by its comrades celebrating can also be heard all around the area the group is in.&amp;lt;ref&amp;gt;[https://web.archive.org/web/20190702012737/https://www.pokemon-sunmoon.com/ultra/en-us/gallery-detail-2.html | Kommo-o | Utlra Sun and Ultra Moon (Archived)]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While the {{pkmn|animated series}} shows that Kommo-o is capable of bipedal locomotion, the core series games since [[Generation VIII]] show that it vastly prefers to walk and run around by {{wp|knuckle-walking}}.&lt;br /&gt;
&lt;br /&gt;
A special Kommo-o in [[Alola]] acts as the [[Totem Pokémon]] for an unmanned {{DL|Island challenge|trial}} in [[Vast Poni Canyon]]. This Kommo-o possesses [[Z-Power]], an energy that originates from [[Ultra Wormhole]]s and takes the form of a golden, flaring aura. The reward for defeating Totem Kommo-o and completing the trial is a [[Dragonium Z]].&lt;br /&gt;
&lt;br /&gt;
Kommo-o is the [[signature move|only known Pokémon]] capable of learning the moves {{m|Clanging Scales}} and {{m|Clangorous Soul}}. Kommo-o is also the only known Pokémon capable of using the [[Z-Move]] {{m|Clangorous Soulblaze}}.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Kommo-o evolves from {{p|Hakamo-o}} and is the final form of {{p|Jangmo-o}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-3&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0782&lt;br /&gt;
|name1=Jangmo-o&lt;br /&gt;
|type1-1=Dragon&lt;br /&gt;
|evo1=&lt;br /&gt;
|no2=0783&lt;br /&gt;
|name2=Hakamo-o&lt;br /&gt;
|type1-2=Dragon&lt;br /&gt;
|type2-2=Fighting&lt;br /&gt;
|evo2=&lt;br /&gt;
|no3=0784&lt;br /&gt;
|name3=Kommo-o&lt;br /&gt;
|type1-3=Dragon&lt;br /&gt;
|type2-3=Fighting}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{Dex/NA|gen=VII}}&lt;br /&gt;
{{Dex/Gen/3|gen=VII|reg1=Alola|num1=273|label1={{gameIcon|Su}}{{gameIcon|M}}:|reg2=Alola|num2=363|label2={{gameIcon|US}}{{gameIcon|UM}}:|reg3=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sun|entry=When it spots enemies, it threatens them by jingling the scales on its tail. Weak opponents will crack and flee in panic.}}&lt;br /&gt;
{{Dex/Entry1|v=Moon|entry=Its rigid scales function as offense and defense. In the past, its scales were processed and used to make weapons and other commodities.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=When it howls after finishing off its prey, the metallic sounds of its celebrating comrades can be heard from all around.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=It battles valiantly with its fists, which are armored in steel scales. Kommo-o specializes in uppercuts.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/4|gen=VIII|reg1=Galar|num1=394|reg2=Galar|label2=Isle of Armor|num2=167|reg3=Sinnoh|reg4=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Brilliant Diamond and Shining Pearl|Brilliant Diamond, Shining Pearl]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sword|t=FFF|entry=It clatters its tail scales to unnerve opponents. This Pokémon will battle only those who stand steadfast in the face of this display.}}&lt;br /&gt;
{{Dex/Entry1|v=Shield|t=FFF|entry=Certain ruins have paintings of ancient warriors wearing armor made of Kommo-o scales.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|reg2=Kitakami|num2=133|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=It lets its arm hang, and then &amp;quot;quick as a flash&amp;quot; swings upward to land its specialty punch and send the opponent flying high into the sky.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It bashes its scales to test its opponents&#039; mettle. The sound of struck Kommo-o scales frightens weaker foes and sends them running.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{fighting color dark}}; background:#{{dragon color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{fighting color dark}}; background:#{{dragon color light}}| [[File:Pokédex Image Kommo-o SM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{dragon color light}}; background:#{{dragon color light}}| [[File:Pokédex Image Kommo-o SV Kitakami.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Kommo-o in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
| Kommo-o in the {{color2|000|List of Pokémon by Kitakami Pokédex number|Kitakami Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{Availability/NA|gen=VII}}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2|v=Sun|v2=Moon|area=[[Vast Poni Canyon]] ([[SOS Battle]])}}&lt;br /&gt;
{{Availability/Entry1|v=Ultra Sun|t=FFF|area=[[Vast Poni Canyon]] ([[SOS Battle]])}}&lt;br /&gt;
{{Availability/Entry1|v=Ultra Moon|t=FFF|area=[[Vast Poni Canyon]] ([[SOS Battle]])&amp;lt;br/&amp;gt;[[List of in-game event Pokémon in Pokémon Ultra Sun and Ultra Moon|Received]] from [[Samson Oak]] at [[Heahea Beach]]{{tt|*|Requires 100 Totem Stickers}} ([[Totem Pokémon|Totem]]-sized)}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|v=Sword|t=FFF|area=[[Dusty Bowl]] ([[Wanderer]])&amp;lt;br&amp;gt;[[Axew&#039;s Eye/Dens|Axew&#039;s Eye]], [[Rolling Fields/Dens|Rolling Fields]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Shield}}&lt;br /&gt;
{{Availability/Entry1|v=Sword Expansion Pass|color={{sword color dark}}|t=fff|link=Pokémon Sword and Shield Expansion Pass|area=[[Loop Lagoon/Dens|Loop Lagoon]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Brilliant Diamond|v2=Shining Pearl|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=[[Trade]]&amp;lt;sup&amp;gt;Version 2.0.1+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero|color={{Teal Mask color light}}|t={{Indigo Disk color}}|link=The Hidden Treasure of Area Zero|area=[[Tera Raid Battle]]s ({{DL|List of 5★ Tera Raid Battles (Kitakami)|Kommo-o|5★}}, {{DL|List of 6★ Tera Raid Battles (Kitakami)|Kommo-o|6★}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{Availability/NA|gen=VII}}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Buzzwole Sea]], [[Zygarde Sea]], [[Buzzwole Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;, [[Zygarde Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/NA/Side|gen=VIII}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=Event: &#039;&#039;[[Ultra Challenge|Kommo-o Appears]]&#039;&#039;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Poké Fair [[sync pair scout]]: {{sync|Cynthia|Kommo-o|sygna=1}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{HeldItems/Games2|Sun|Moon|Pokémon Sun and Moon}}&lt;br /&gt;
{{HeldItems/Items1|Razor Claw|50|rows=3}}&lt;br /&gt;
{{HeldItems/Games2|Ultra Sun|Ultra Moon|tcolor1=FFF|tcolor2=FFF|Pokémon Ultra Sun and Ultra Moon}}&lt;br /&gt;
{{HeldItems/Games2|Sword|Shield|tcolor1=FFF|Pokémon Sword and Shield|tcolor2={{shield color}}|gcolor2=fff}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|HP=75&lt;br /&gt;
|Attack=110&lt;br /&gt;
|Defense=125&lt;br /&gt;
|SpAtk=100&lt;br /&gt;
|SpDef=105&lt;br /&gt;
|Speed=85}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=100&lt;br /&gt;
|Flying=200&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=50&lt;br /&gt;
|Bug=50&lt;br /&gt;
|Ghost=100&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=50&lt;br /&gt;
|Water=50&lt;br /&gt;
|Grass=50&lt;br /&gt;
|Electric=50&lt;br /&gt;
|Psychic=200&lt;br /&gt;
|Ice=200&lt;br /&gt;
|Dragon=200&lt;br /&gt;
|Dark=50&lt;br /&gt;
|Fairy=400}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
{{learnlist/level9|1|Tackle|Normal|Physical|40|100|35||}}&lt;br /&gt;
{{learnlist/level9|1|Leer|Normal|Status|—|100|30||}}&lt;br /&gt;
{{learnlist/level9|1|Protect|Normal|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/level9|1|Dragon Tail|Dragon|Physical|60|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|{{tt|Rem.|Can only be learned via Move Reminder}}|Belly Drum|Normal|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/level9|{{tt|Evo.|Learned upon evolving}}|Clanging Scales|Dragon|Special|110|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|12|Scary Face|Normal|Status|—|100|10||}}&lt;br /&gt;
{{learnlist/level9|16|Headbutt|Normal|Physical|70|100|15||}}&lt;br /&gt;
{{learnlist/level9|20|Work Up|Normal|Status|—|—|30||}}&lt;br /&gt;
{{learnlist/level9|24|Screech|Normal|Status|—|85|40||}}&lt;br /&gt;
{{learnlist/level9|28|Iron Defense|Steel|Status|—|—|15||}}&lt;br /&gt;
{{learnlist/level9|32|Dragon Claw|Dragon|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|38|Noble Roar|Normal|Status|—|100|30||}}&lt;br /&gt;
{{learnlist/level9|44|Dragon Dance|Dragon|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/level9|52|Outrage|Dragon|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|60|Close Combat|Fighting|Physical|120|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|68|Clangorous Soul|Dragon|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|76|Boomburst|Normal|Special|140|100|10||}}&lt;br /&gt;
{{learnlist/levelf/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20||}}&lt;br /&gt;
{{learnlist/tm9|TM006|Scary Face|Normal|Status|—|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20||}}&lt;br /&gt;
{{learnlist/tm9|TM027|Aerial Ace|Flying|Physical|60|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20||}}&lt;br /&gt;
{{learnlist/tm9|TM031|Metal Claw|Steel|Physical|50|95|35||}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15||}}&lt;br /&gt;
{{learnlist/tm9|TM043|Fling|Dark|Physical|—|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM044|Dragon Tail|Dragon|Physical|60|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5||}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5||}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/tm9|TM057|False Swipe|Normal|Physical|40|100|40||}}&lt;br /&gt;
{{learnlist/tm9|TM058|Brick Break|Fighting|Physical|75|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM061|Shadow Claw|Ghost|Physical|70|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM064|Bulk Up|Fighting|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM067|Fire Punch|Fire|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM068|Thunder Punch|Electric|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM069|Ice Punch|Ice|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/tm9|TM073|Drain Punch|Fighting|Physical|75|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM078|Dragon Claw|Dragon|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM083|Poison Jab|Poison|Physical|80|100|20||}}&lt;br /&gt;
{{learnlist/tm9|TM084|Stomping Tantrum|Ground|Physical|75|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5||}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10||}}&lt;br /&gt;
{{learnlist/tm9|TM087|Taunt|Dark|Status|—|100|20||}}&lt;br /&gt;
{{learnlist/tm9|TM088|Swords Dance|Normal|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM089|Body Press|Fighting|Physical|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM093|Flash Cannon|Steel|Special|80|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM099|Iron Head|Steel|Physical|80|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM100|Dragon Dance|Dragon|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10||}}&lt;br /&gt;
{{learnlist/tm9|TM104|Iron Defense|Steel|Status|—|—|15||}}&lt;br /&gt;
{{learnlist/tm9|TM105|X-Scissor|Bug|Physical|80|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM112|Aura Sphere|Fighting|Special|80|—|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM115|Dragon Pulse|Dragon|Special|85|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM116|Stealth Rock|Rock|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM117|Hyper Voice|Normal|Special|90|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM125|Flamethrower|Fire|Special|90|100|15||}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM134|Reversal|Fighting|Physical|—|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5||}}&lt;br /&gt;
{{learnlist/tm9|TM156|Outrage|Dragon|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM158|Focus Blast|Fighting|Special|120|70|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5||}}&lt;br /&gt;
{{learnlist/tm9|TM167|Close Combat|Fighting|Physical|120|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM169|Draco Meteor|Dragon|Special|130|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10||}}&lt;br /&gt;
{{learnlist/tm9|TM172|Roar|Normal|Status|—|—|20||}}&lt;br /&gt;
{{learnlist/tm9|TM184|Vacuum Wave|Fighting|Special|40|100|30||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM192|Focus Punch|Fighting|Physical|150|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM200|Scale Shot|Dragon|Physical|25|90|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM213|Coaching|Fighting|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM221|Throat Chop|Dark|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM222|Breaking Swipe|Dragon|Physical|60|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM223|Metal Sound|Steel|Status|—|85|40}}&lt;br /&gt;
{{learnlist/tm9|TM226|Dragon Cheer|Dragon|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM229|Upper Hand|Fighting|Physical|65|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tmf/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0004|Charmander}}{{MSP/H|0610|Axew}}|Counter|Fighting|Physical|—|100|20|*||grid=8}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0004|Charmander}}{{MSP/H|0005|Charmeleon}}{{MSP/H|0006|Charizard}}{{MSP/H|0116|Horsea}}{{MSP/H|0117|Seadra}}{{MSP/H|0230|Kingdra}}{{MSP/H|0329|Vibrava}}{{MSP/H|0330|Flygon}}{{MSP/H|0333|Swablu}}{{MSP/H|0334|Altaria}}{{MSP/H|0371|Bagon}}{{MSP/H|0372|Shelgon}}{{MSP/H|0373|Salamence}}{{MSP/H|0443|Gible}}{{MSP/H|0444|Gabite}}{{MSP/H|0445|Garchomp}}{{MSP/H|0633|Deino}}{{MSP/H|0634|Zweilous}}{{MSP/H|0635|Hydreigon}}{{MSP/H|0704|Goomy}}{{MSP/H|0705|Sliggoo}}{{MSP/H|0705-Hisui|Sliggoo}}{{MSP/H|0706|Goodra}}{{MSP/H|0706-Hisui|Goodra}}{{MSP/H|0841|Flapple}}{{MSP/H|1011|Dipplin}}{{MSP/H|1019|Hydrapple}}{{MSP/H|0887|Dragapult}}{{MSP/H|0996|Frigibax}}{{MSP/H|0997|Arctibax}}{{MSP/H|0998|Baxcalibur}}|Dragon Breath|Dragon|Special|60|100|20||&#039;&#039;&#039;|grid=8}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0559|Scraggy}}{{MSP/H|0560|Scrafty}}|Focus Punch|Fighting|Physical|150|100|20||&#039;&#039;&#039;|grid=8}}&lt;br /&gt;
{{learnlist/breedf/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{Learnlist/prevoh/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
{{Learnlist/prevo8null}}&lt;br /&gt;
{{Learnlist/prevof/9|Kommo-o|Dragon|Fighting|7}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{Spindata/Shuffle|col=6|type=Dragon|ndex=784|num=795&lt;br /&gt;
|min=80&lt;br /&gt;
|max=145&lt;br /&gt;
|raisemaxlevel=20&lt;br /&gt;
|skill=Crowd Control+&lt;br /&gt;
|skilldesc=Deals even more damage when there are more Kommo-o in the puzzle area.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Dragon|ndex=784&lt;br /&gt;
|walk=1.42&lt;br /&gt;
|hp=54&lt;br /&gt;
|attack=83&lt;br /&gt;
|defense=62&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Dragon|ndex=784&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=5&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=181&lt;br /&gt;
|attack=222&lt;br /&gt;
|defense=240&lt;br /&gt;
|fast={{m|Poison Jab}}, {{m|Dragon Tail}}&lt;br /&gt;
|special={{m|Dragon Claw}}, {{m|Close Combat}}, {{m|Flamethrower}}, {{m|Boomburst}}{{tt|*|From March 1, 2023 onward}}, {{m|Brick Break}}{{tt|*|From March 1, 2024 onward}}, {{m|Clanging Scales}}{{tt|†|Event-exclusive from Jangmo-o Community Day}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox-3&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Fighting&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0782&lt;br /&gt;
|name1=Jangmo-o&lt;br /&gt;
|type1-1=Dragon&lt;br /&gt;
|evo1={{Bag/s|Rare Candy|SV}}&amp;lt;br&amp;gt;{{color2|000|Level|Level 35}}&lt;br /&gt;
|no2=0783&lt;br /&gt;
|name2=Hakamo-o&lt;br /&gt;
|type1-2=Dragon&lt;br /&gt;
|type2-2=Fighting&lt;br /&gt;
|evo2={{Bag/s|Rare Candy|SV}}&amp;lt;br&amp;gt;{{color2|000|Level|Level 45}}&lt;br /&gt;
|no3=0784&lt;br /&gt;
|name3=Kommo-o&lt;br /&gt;
|type1-3=Dragon&lt;br /&gt;
|type2-3=Fighting}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{Spritebox/NA|gen=VII}}&lt;br /&gt;
{{Spritebox/7|ndex=784|crop=101}}&lt;br /&gt;
{{Spritebox/8|ndex=784|crop=161}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=0784}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=0784}}&lt;br /&gt;
{{Spritebox/Footer|784|Kommo-o}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Phil Kommo-o.png|thumb|250px|Kommo-o in {{aniseries|JN}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Kommo-o debuted in &#039;&#039;[[SM051|Family Determination!]]&#039;&#039;, where it was a [[Totem Pokémon]] residing at [[Vast Poni Canyon]]. It battled {{an|Lillie}} and {{an|Gladion}}, eventually being defeated by {{TP|Gladion|Silvally}} after it was changed into a {{t|Fairy}} type and used a supereffective {{m|Multi-Attack}}.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[JN076|All Out, All of the Time!]]&#039;&#039;, a Kommo-o was used by the [[All-Out Brothers]] to aid them in the [[Pokémon Catch Adventure Race]].&lt;br /&gt;
&lt;br /&gt;
A Kommo-o appeared in &#039;&#039;[[JN089|The Gates of Warp!]]&#039;&#039;, under the ownership of {{an|Cynthia}}.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A {{pkmn|Trainer}}&#039;s Kommo-o appeared in &#039;&#039;[[SM129|Battle Royal 151!]]&#039;&#039;, where it competed in the [[Battle Royal]] preliminary round of the [[Manalo Conference]] but was defeated by [[Guzma]]&#039;s {{p|Scizor}}.&lt;br /&gt;
&lt;br /&gt;
A [[Dynamax]]ed Kommo-o appeared in &#039;&#039;[[JN045|Sword and Shield... The Legends Awaken!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Ryuki Kommo-o Adventures.png|thumb|200px|Kommo-o in [[Pokémon Adventures]]]]&lt;br /&gt;
===Movie adaptations===&lt;br /&gt;
A Kommo-o appeared in [[ICYR1]], where it was a Totem Pokémon that {{OBP|Ash Ketchum|M20|Ash}} faced.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
[[Ryuki]]&#039;s Kommo-o first appeared in &#039;&#039;[[PASM37|Finale!! The Battle Against the Other Dimension!]]&#039;&#039;, when it was sent out to battle [[Gladion]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Horizon===&lt;br /&gt;
A Kommo-o appeared in &#039;&#039;[[HOR08|The Legend Revealed]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Kommo-o (TCG)}}&lt;br /&gt;
==Trivia==&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Kommo-o appears to be based on a {{wp|Theropoda|theropod}} {{wp|dinosaur}} with some traits from {{wp|Ankylosauria|ankylosaurs}}. It may also be based on a {{wp|monk}}. Kommo-o&#039;s tail bears resemblance to a {{wp|khakkhara}} (monk staff), and it is even used in a similar fashion. The fact that it uses its scales to produce sound may also reference {{wp|cymbal}}s and {{wp|castanets}}. Kommo-o also bears a striking resemblance to a {{wp|pangolin}}. Additionally, Kommo-o may also be partly based on the Mo&#039;o, a type of shapeshifting Hawaiian Dragon, as well as the Komodo dragon. It&#039;s snout bears resemblance to {{wp|hatchet|hatchets}}. &lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Kommo-o may be a combination of &#039;&#039;commotion&#039;&#039; (in reference to the noises produced by its scales) and &#039;&#039;mo&#039;o&#039;&#039; (Hawaiian for lizard or dragon). It may also incorporate &#039;&#039;combat&#039;&#039;, &#039;&#039;commander&#039;&#039;,  and &#039;&#039;komodo&#039;&#039; as in the {{wp|Komodo dragon}}, and the {{wp|Kokomo}} community on the island of Maui, Maui Community, Hawaii.&lt;br /&gt;
&lt;br /&gt;
Jyararanga may derive from ジャラジャラ &#039;&#039;jarajara&#039;&#039; (onomatopoetic sound for jingling), &#039;&#039;dragon&#039;&#039;, and ガランガラン &#039;&#039;garangaran&#039;&#039; (onomatopoetic sound for clanging).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Dragon|type2=Fighting&lt;br /&gt;
|ja=ジャラランガ &#039;&#039;Jyararanga&#039;&#039;|jameaning=From {{tt|ジャラジャラ &#039;&#039;jarajara&#039;&#039;|onomatopoetic sound for jingling}}, &#039;&#039;dragon&#039;&#039; and {{tt|ガランガラン &#039;&#039;garangaran&#039;&#039;|clanging}}&lt;br /&gt;
|fr=Ékaïser|frmeaning=From {{tt|&#039;&#039;écaille&#039;&#039;|scale}} and &#039;&#039;{{wp|Kaiser}}&#039;&#039;&lt;br /&gt;
|es=Kommo-o|esmeaning=Same as English name&lt;br /&gt;
|de=Grandiras|demeaning=From &#039;&#039;grand&#039;&#039;, {{tt|&#039;&#039;Drache&#039;&#039;|dragon}}, and {{tt|&#039;&#039;rasseln&#039;&#039;|to rattle}}&lt;br /&gt;
|it=Kommo-o|itmeaning=Same as English name&lt;br /&gt;
|ko=짜랑고우거 &#039;&#039;Jjaranggogre&#039;&#039;|komeaning=From {{tt|짜랑 &#039;&#039;jjarang&#039;&#039;|onomatopoetic sound for jingling}}, &#039;&#039;dragon&#039;&#039;, {{tt|거대 (巨大) &#039;&#039;geodae&#039;&#039;|giant}}, and possibly &#039;&#039;ogre&#039;&#039;&lt;br /&gt;
|zh_cmn=杖尾鱗甲龍 / 杖尾鳞甲龙 &#039;&#039;Zhàngwěilínjiǎlóng&#039;&#039;|zh_cmnmeaning=From {{tt|杖 &#039;&#039;zhàng&#039;&#039;|staff}}, {{tt|尾巴 &#039;&#039;wěibā&#039;&#039;|tail}}, {{tt|鱗甲 / 鳞甲 &#039;&#039;línjiǎ&#039;&#039;|scale armor}}, and {{tt|龍 / 龙 &#039;&#039;lóng&#039;&#039;|dragon}}&lt;br /&gt;
|zh_yue=杖尾鱗甲龍 &#039;&#039;Jeuhngméihlèuhngaaplùhng&#039;&#039;|zh_yuemeaning=From {{tt|杖 &#039;&#039;jeuhng&#039;&#039;|staff}}, {{tt|尾巴 &#039;&#039;méihbā&#039;&#039;|tail}}, {{tt|鱗甲 &#039;&#039;lèuhngaap&#039;&#039;|scale armor}}, and {{tt|龍 &#039;&#039;lùhng&#039;&#039;|dragon}}&lt;br /&gt;
|hi=खनखंडॉन &#039;&#039;Khankhandon&#039;&#039;|himeaning=From {{tt|खनाखन &#039;&#039;khanākhan&#039;&#039;|jingling}} and &#039;&#039;don&#039;&#039;&lt;br /&gt;
|ru=Коммо-o &#039;&#039;Kommo-o&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=จารารังกา &#039;&#039;Chararangka&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Totem Pokémon]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{Pseudo-legendary Pokémon}}&lt;br /&gt;
{{Totem Pokémon}}{{PokémonPrevNext/Head|type=Dragon|type2=Fighting}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dragon|prevnum=0783|prev=Hakamo-o|nextnum=0785|next=Tapu Koko}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Grandiras]]&lt;br /&gt;
[[es:Kommo-o]]&lt;br /&gt;
[[fr:Ékaïser]]&lt;br /&gt;
[[it:Kommo-o]]&lt;br /&gt;
[[ja:ジャラランガ]]&lt;br /&gt;
[[zh:杖尾鳞甲龙]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4327646</id>
		<title>Spinda (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Spinda_(Pok%C3%A9mon)&amp;diff=4327646"/>
		<updated>2025-06-30T22:26:49Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Spinda}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Spinda&lt;br /&gt;
|jname=パッチール&lt;br /&gt;
|jtranslit=Patchīru&lt;br /&gt;
|tmname=Patcheel&lt;br /&gt;
|ndex=0327&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|category=Spot Panda&lt;br /&gt;
|height-ftin=3&#039;07&amp;quot;&lt;br /&gt;
|height-m=1.1&lt;br /&gt;
|weight-lbs=11.0&lt;br /&gt;
|weight-kg=5.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Own Tempo&lt;br /&gt;
|ability2=Tangled Feet&lt;br /&gt;
|ability2note=&amp;lt;sup&amp;gt;{{color2|000|Generation IV|Gen IV+}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|abilityd=Contrary&lt;br /&gt;
|egggroupn=2&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|egggroup2=Human-Like&lt;br /&gt;
|eggcycles=15&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evsa=1&lt;br /&gt;
|expyield=126&lt;br /&gt;
|oldexp=85&lt;br /&gt;
|lv100exp=800,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Brown&lt;br /&gt;
|catchrate=255&lt;br /&gt;
|body=06&lt;br /&gt;
|pokefordex=spinda&lt;br /&gt;
|generation=3&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Spinda&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;パッチール&#039;&#039;&#039; &#039;&#039;Patcheel&#039;&#039;) is a {{type|Normal}} {{OBP|Pokémon|species}} introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
It is not known to [[Evolution|evolve]] into or from any other Pokémon.&lt;br /&gt;
&lt;br /&gt;
Spinda is known for its variations, with each individual almost always having its own [[Variant Pokémon#Spinda|unique spot pattern]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Spinda is a bipedal, red panda {{OBP|Pokémon|species}} with rabbit-like features. Its eyes are made of two black spirals, which point in the opposite direction to each other. There is a similar swirling pattern on its ears. It has a small body with short stumpy arms and legs, and its coat is primarily cream-colored. Its arms are red and it has a red stripe bordering along the bottom of its belly, as well as two small spots on the soles of its feet. It has four spots, which can appear anywhere on its face and ears, with a fifth on the back of its head. These spot patterns are different for each and every Spinda.&lt;br /&gt;
&lt;br /&gt;
It has dizzying, confusing, and scattering dance-like movements, though it thinks it is walking in a straight line. These movements confuse their opponents and make it difficult for them to aim at it. It lives in the {{DL|List of Pokémon by habitat|Mountain Pokémon|mountains}}.&lt;br /&gt;
&lt;br /&gt;
Prior to [[Generation V]], {{m|Teeter Dance}} was its [[signature move]], but other Pokémon could still inherit it via {{pkmn|breeding}}.&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]]: One day, a Spinda appears in [[Pokémon Square]] and collapses. When it regains consciousness, Spinda explains that it is giving up a long journey to find the {{p|Ho-Oh|Mirage Pokémon}} and hands its one clue, the Clear Wing, to the player. The player must then solve [[the Mystery of the Mirage Pokémon]], which will reward them with the Rainbow Wing. Upon showing the Rainbow Wing to Spinda, or talking to Spinda as Ho-Oh, it becomes happy and leaves Pokémon Square.&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Explorers of Sky]]: Spinda runs Spinda&#039;s café and takes over the juice bar. A {{p|Wynaut}} and a {{p|Wobbuffet}} also work at the café running the recycle shop. Later in the game, Project P is introduced. After it is introduced, occasionally when speaking to Wynaut the player may gain access to a dungeon normally accessed by selecting a job with ??? as the location or get a choice of more items in the recycle shop.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Normal}}&lt;br /&gt;
{{Dex/NA|gen=III}}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=114|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=All the &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this {{ScPkmn}} give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical spot patterns on their hides. This {{ScPkmn}} moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe&#039;s aim.}}&lt;br /&gt;
{{Dex/Entry2|v=FireRed|v2=LeafGreen|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; are said to have identical patterns. It confuses foes with its stumbling motions.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=No two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=HeartGold|v2=SoulSilver|entry=The chances of two &amp;lt;sc&amp;gt;Spinda&amp;lt;/sc&amp;gt; having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=131|label1=Mountain|reg2=Hoenn|num2=119}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=No two Spinda have the same pattern of spots. Its tottering step fouls the aim of foes.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=The chances of two Spinda having identical spot patterns is less than one in four billion.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Omega Ruby|entry=All the Spinda that exist in the world are said to have utterly unique spot patterns. The shaky, tottering steps of this Pokémon give it the appearance of dancing.}}&lt;br /&gt;
{{Dex/Entry1|t=FFF|v=Alpha Sapphire|entry=No two Spinda are said to have identical spot patterns on their hides. This Pokémon moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VII|reg1=Alola|num1=105|label1={{gameIcon|Su}}{{gameIcon|M}}:|reg2=Alola|num2=128|label2={{gameIcon|US}}{{gameIcon|UM}}:|reg3=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sun|entry=Its steps are staggering and unsteady, but Spinda thinks it&#039;s walking in a straight line.}}&lt;br /&gt;
{{Dex/Entry1|v=Moon|entry=Each and every Spinda has a slightly different configuration of spots. There are collectors who enjoy the tiny differences in their spot patterns.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=Its steps are shaky and stumbling. Walking for a long time makes it feel sick.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=Each Spinda&#039;s spot pattern is different. With its stumbling movements, it evades opponents&#039; attacks brilliantly!}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=No two Spinda have the same pattern of spots. Their tottering steps hinder the aim of foes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/NE|[[Generation IX]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{normal color dark}}; background:#{{normal color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda-Alternate SM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}}| [[File:Pokédex Image Spinda SM.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| A male Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
| A female Spinda in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2|v=Ruby|v2=Sapphire|t=fff|t2=fff|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen|area=[[Trade]], [[#In events|Event]]}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area={{safari|Johto}} (Desert with 14 Plains points)&amp;lt;br&amp;gt;[[Sprout Tower]], [[Bell Tower]], [[Burned Tower]] {{color2|{{hoenn color dark}}|Hoenn Sound|(Hoenn Sound)}}}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|land}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Field}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Trade]] with [[Curtis]] or [[Yancy]] in [[Nimbasa City]]}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Rugged Mountain}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area={{rt|21|Kalos}}&amp;lt;br&amp;gt;{{rt|21|Kalos}} ([[Horde Encounter]])}}&lt;br /&gt;
{{Availability/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|area={{rt|113|Hoenn}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2|v=Sun|v2=Moon|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Ten Carat Hill]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area={{rt|227|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=fff|area=Hatch from {{pkmn|Egg}}}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 14]], Endless Level 4, Trozei Battle, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Joyous Tower]] (5F-7F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Marine Resort]] (1F-9F), [[Lost Wilderness]] (B1F-B17F)}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Blazing|link=Pokémon Mystery Dungeon (WiiWare)|color={{fire color}}|area=}}--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Factory: [[Firebreathing Mountain]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Wonder Area#Pokémon Outbreak!|Wonder Area: Pokémon Outbreak!]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Monday Stage 3|Safari Jungle: Stage 3]]{{dotw|Mo}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Starlight Islands#Volcanic Ravine|Starlight Islands: Volcanic Ravine]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Rayquaza Sea]], [[Celebi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Western Cave]] (10F-17F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Silver Trench]], [[Lightning Field]], [[Western Cave]], [[Darknight Relic]], [[Far-Off Sea]]&amp;lt;br/&amp;gt;Mystery House: [[Western Cave]]&amp;lt;br/&amp;gt;[[Mystery_dungeon#Strong_Foes|Strong Foe]]: [[Frosty Forest]] (4F, 6F, 10F-13F){{shinystar}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Prasino Woods|Prasino Woods: Stage 586]]&amp;lt;br&amp;gt;Event: [[Pokémon Safari/2015-Feb. 2018#First release|&#039;&#039;Pokémon Safari&#039;&#039;]] &amp;lt;small&amp;gt;(First release)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Normal}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|PokéPark Egg Spinda|Japanese|Japan|5|March 12 to May 8, 2005|link=List of Japanese event Pokémon distributions in Generation III#Spinda}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Normal}}&lt;br /&gt;
{{HeldItems/Games2|Ruby|Sapphire|tcolor1=fff|tcolor2=fff|Pokémon Ruby and Sapphire Versions}}&lt;br /&gt;
{{HeldItems/Items1|Chesto Berry|5|rows=5}}&lt;br /&gt;
{{HeldItems/Games1|Emerald|tcolor=fff|Pokémon Emerald Version}}&lt;br /&gt;
{{HeldItems/Games2|Diamond|Pearl|Pokémon Diamond and Pearl Versions}}&lt;br /&gt;
{{HeldItems/Games1|Platinum|Pokémon Platinum Version}}&lt;br /&gt;
{{HeldItems/Games2|HeartGold|SoulSilver|Pokémon HeartGold and SoulSilver Versions}}&lt;br /&gt;
{{HeldItems/Games2|Black 2|White 2|tcolor1=FFF|Pokémon Black and White Versions 2}}&lt;br /&gt;
{{HeldItems/Items1|Lava Cookie|100|availNote=[[In-game trade]],&amp;amp;#32;}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Normal&lt;br /&gt;
|HP=60&lt;br /&gt;
|Attack=60&lt;br /&gt;
|Defense=60&lt;br /&gt;
|SpAtk=60&lt;br /&gt;
|SpDef=60&lt;br /&gt;
|Speed=60}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=3&lt;br /&gt;
|Power=2&lt;br /&gt;
|PowerMax=3&lt;br /&gt;
|Technique=3&lt;br /&gt;
|TechniqueMax=4&lt;br /&gt;
|Stamina=3&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=2&lt;br /&gt;
|JumpMax=3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|Normal=100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=100&lt;br /&gt;
|Poison=100&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=100&lt;br /&gt;
|Ghost=0&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=100&lt;br /&gt;
|Fairy=100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|normal=yes&lt;br /&gt;
|newghost=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Spinda is available in {{pkmn|Brilliant Diamond and Shining Pearl}}, but cannot be transferred to/from {{g|HOME}}.&lt;br /&gt;
&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/level8|1|Tackle|Normal|Physical|40|100|35||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|5|Copycat|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/level8|10|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|14|Psybeam|Psychic|Special|65|100|20||}}&lt;br /&gt;
{{learnlist/level8|19|Hypnosis|Psychic|Status|&amp;amp;mdash;|60|20||}}&lt;br /&gt;
{{learnlist/level8|23|Body Slam|Normal|Physical|85|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|28|Sucker Punch|Dark|Physical|70|100|5||}}&lt;br /&gt;
{{learnlist/level8|32|Teeter Dance|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/level8|37|Uproar|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|41|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/level8|46|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|50|Flail|Normal|Physical|&amp;amp;mdash;|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level8|55|Thrash|Normal|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/levelf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tm8|TM01|Focus Punch|Fighting|Physical|150|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM03|Water Pulse|Water|Special|60|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM04|Calm Mind|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM10|Work Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|30||}}&lt;br /&gt;
{{learnlist/tm8|TM11|Sunny Day|Fire|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM17|Protect|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM18|Rain Dance|Water|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM20|Safeguard|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|25||}}&lt;br /&gt;
{{learnlist/tm8|TM28|Dig|Ground|Physical|80|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM29|Psychic|Psychic|Special|90|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM30|Shadow Ball|Ghost|Special|80|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM31|Brick Break|Fighting|Physical|75|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM32|Double Team|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|15||}}&lt;br /&gt;
{{learnlist/tm8|TM34|Shock Wave|Electric|Special|60|&amp;amp;mdash;|20||}}&lt;br /&gt;
{{learnlist/tm8|TM39|Rock Tomb|Rock|Physical|60|95|15||}}&lt;br /&gt;
{{learnlist/tm8|TM42|Facade|Normal|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM44|Rest|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM45|Attract|Normal|Status|&amp;amp;mdash;|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM46|Thief|Dark|Physical|60|100|25||}}&lt;br /&gt;
{{learnlist/tm8|TM48|Skill Swap|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM56|Fling|Dark|Physical|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM58|Endure|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM60|Drain Punch|Fighting|Physical|75|100|10||}}&lt;br /&gt;
{{learnlist/tm8|TM67|Recycle|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM70|Flash|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/tm8|TM77|Psych Up|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM80|Rock Slide|Rock|Physical|75|90|10||}}&lt;br /&gt;
{{learnlist/tm8|TM82|Sleep Talk|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM85|Dream Eater|Psychic|Special|100|100|15||}}&lt;br /&gt;
{{learnlist/tm8|TM87|Swagger|Normal|Status|&amp;amp;mdash;|85|15||}}&lt;br /&gt;
{{learnlist/tm8|TM90|Substitute|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/tm8|TM92|Trick Room|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|5||}}&lt;br /&gt;
{{learnlist/tm8|TM96|Strength|Normal|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm8|TM98|Rock Smash|Fighting|Physical|40|100|15||}}&lt;br /&gt;
{{learnlist/tmf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0161|Sentret}}{{MSP/H|0162|Furret}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0203|Girafarig}}{{MSP/H|0303|Mawile}}{{MSP/H|0427|Buneary}}{{MSP/H|0428|Lopunny}}|Baton Pass|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|40||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0037|Vulpix}}{{MSP/H|0038|Ninetales}}{{MSP/H|0054|Psyduck}}{{MSP/H|0055|Golduck}}{{MSP/H|0352|Kecleon}}|Disable|Normal|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0287|Slakoth}}{{MSP/H|0288|Vigoroth}}{{MSP/H|0289|Slaking}}{{MSP/H|0313|Volbeat}}{{MSP/H|0363|Spheal}}{{MSP/H|0364|Sealeo}}{{MSP/H|0365|Walrein}}|Encore|Normal|Status|&amp;amp;mdash;|100|5||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0052|Meowth}}{{MSP/H|0053|Persian}}{{MSP/H|0106|Hitmonlee}}{{MSP/H|0107|Hitmonchan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0296|Makuhita}}{{MSP/H|0297|Hariyama}}{{MSP/H|0300|Skitty}}{{MSP/H|0301|Delcatty}}{{MSP/H|0302|Sableye}}{{MSP/H|0431|Glameow}}{{MSP/H|0432|Purugly}}|Fake Out|Normal|Physical|40|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0216|Teddiursa}}{{MSP/H|0217|Ursaring}}{{MSP/H|0303|Mawile}}|Fake Tears|Dark|Status|&amp;amp;mdash;|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Guard Split|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0215|Sneasel}}{{MSP/H|0461|Weavile}}{{MSP/H|0220|Swinub}}{{MSP/H|0221|Piloswine}}{{MSP/H|0473|Mamoswine}}{{MSP/H|0471|Glaceon}}|Icy Wind|Ice|Special|55|95|15||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0359|Absol}}{{MSP/H|0475|Gallade}}|Psycho Cut|Psychic|Physical|70|100|20||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Psycho Shift|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0027|Sandshrew}}{{MSP/H|0028|Sandslash}}{{MSP/H|0232|Donphan}}{{MSP/H|0237|Hitmontop}}{{MSP/H|0324|Torkoal}}|Rapid Spin|Normal|Physical|50|100|40||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0064|Kadabra}}{{MSP/H|0065|Alakazam}}{{MSP/H|0122|Mr. Mime}}{{MSP/H|0234|Stantler}}|Role Play|Psychic|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0235|Smeargle}}|Trick|Psychic|Status|&amp;amp;mdash;|100|10||}}&lt;br /&gt;
{{learnlist/breed8|{{MSP/H|0282|Gardevoir}}|Wish|Normal|Status|&amp;amp;mdash;|&amp;amp;mdash;|10||}}&lt;br /&gt;
{{learnlist/breedf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[Move Tutor|tutoring]]====&lt;br /&gt;
{{learnlist/tutorh/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
{{learnlist/tutor8null}}&lt;br /&gt;
{{learnlist/tutorf/8|Spinda|Normal|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Normal}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Normal|ndex=327|acquisition=Hatch}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Normal|ndex=327|rarity=Common}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=7.2&lt;br /&gt;
|area=Mt. Deepgreen&lt;br /&gt;
|P1=I&#039;m not the way I look. I can walk in a straight line, thank you!&lt;br /&gt;
|P2=Oh-oh? I daresay my HP is down by half.&lt;br /&gt;
|P3=I&#039;m prepared to keel over. I can&#039;t keep walking straight now.&lt;br /&gt;
|PL=I&#039;ll have you know I&#039;ve gone up a level.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Normal|ndex=327&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=6.4&lt;br /&gt;
|IQ=G&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Normal|ndex=327&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Cubone}}, {{p|Mr. Mime}}, {{p|Kirlia}}, {{p|Buneary}}&lt;br /&gt;
|recruitment=Find {{p|Buneary}} together&lt;br /&gt;
|P1=I like traveling.&lt;br /&gt;
|P2=So exhausted!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Normal&lt;br /&gt;
|att=2&lt;br /&gt;
|def=2&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Normal|ndex=327&lt;br /&gt;
|walk=1.58&lt;br /&gt;
|hp=51&lt;br /&gt;
|attack=71&lt;br /&gt;
|defense=51&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Normal|ndex=327&lt;br /&gt;
|power=1&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Normal|ndex=327|num=229&lt;br /&gt;
|min=50&lt;br /&gt;
|max=100&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Counterattack&lt;br /&gt;
|skilldesc=Deals even more damage the more disruptions there are.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Normal|ndex=327&lt;br /&gt;
|buddy=3&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|candy=Spinda&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=155|attack=116|defense=116&lt;br /&gt;
|fast={{m|Sucker Punch}}, {{m|Psycho Cut}}&lt;br /&gt;
|special={{m|Dig}}, {{m|Rock Tomb}}, {{m|Icy Wind}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:0.5ch; background:#fff; {{roundy|10px}}; padding:1ch;&amp;quot;&amp;gt;&lt;br /&gt;
In {{g|GO}}, Spinda has nine distinct patterns, each treated as a [[List of Pokémon with form differences in Pokémon GO|different form]]. In addition, the Shiny variant for each pattern is also slightly different, making a total of eighteen patterns.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; background: #{{normal color}}00; {{roundy|10px}} border: 3px solid #{{normal color dark}}00&amp;quot;&lt;br /&gt;
|+ &#039;&#039;&#039;Patterns in {{g|GO}}&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327 s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327B|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327B s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327C|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327C s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 1&lt;br /&gt;
| Pattern 2&lt;br /&gt;
| Pattern 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327D|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327D s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327E|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327E s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327F|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327F s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 4&lt;br /&gt;
| Pattern 5&lt;br /&gt;
| Pattern 6&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327G|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327G s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327H|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327H s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{normal color dark}}; background: #{{normal color light}}; width:200px; height:96px&amp;quot;| {{MSP/GO|0327I|Spinda|size=90}}&amp;amp;nbsp;{{MSP/GO|0327I s|Spinda|size=90|shiny=yes}}&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| Pattern 7&lt;br /&gt;
| Pattern 8&lt;br /&gt;
| Pattern 9&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0327&lt;br /&gt;
|name1=Spinda&lt;br /&gt;
|type1-1=Normal}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Normal}}&lt;br /&gt;
{{Spritebox/NA|gen=III}}&lt;br /&gt;
{{Spritebox/3|ndex=327}}&lt;br /&gt;
{{Spritebox/4|ndex=327}}&lt;br /&gt;
{{Spritebox/5|ndex=327}}&lt;br /&gt;
{{Spritebox/6|ndex=327|crop=70}}&lt;br /&gt;
{{Spritebox/7|ndex=327|crop=68}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8/BDSP|ndex=327}}--&amp;gt;&lt;br /&gt;
{{Spritebox/NA|gen=IX|is=yes}}&lt;br /&gt;
{{Spritebox/HOME|ndex=0327}}&lt;br /&gt;
{{Spritebox/Footer|327|Spinda}}&lt;br /&gt;
&lt;br /&gt;
====Pattern examples====&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;
|&lt;br /&gt;
|&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Miles.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3r 327Junji1.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00000000&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88888888&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E3FDF3FD&lt;br /&gt;
| {{color2|000|Pokémon Ruby and Sapphire Versions|Ruby and Sapphire}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: EEE32A53&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman1.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Maiko.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman4.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman5.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman2.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Norman3.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Francisco.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|64px}}; border:2px solid #{{normal color dark}}; background:#{{normal color light}}; width:64px&amp;quot; | [[File:Spr 3e 327Kimberly.png]]&lt;br /&gt;
|- style=&amp;quot;font-size:80%&amp;quot;&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 00094289&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 001C008A&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 0029A280&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 10232080&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102C3290&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 102992A0&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: E2880098&lt;br /&gt;
| {{color2|000|Pokémon Emerald Version|Emerald}}&amp;lt;br&amp;gt;{{color2|000|Personality value|PV}}: 88FE9800&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Spinda anime.png|thumb|250px|Spinda in {{aniseries|AG}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Multiple Spinda debuted in &#039;&#039;[[AG057|Going for a Spinda]]&#039;&#039;. {{Ash}} and {{ashfr}} had to help [[Claire]] find a Spinda with a heart-shaped spot on its forehead. {{an|Brock}}, meanwhile, kept picking one up with a spot shaped like a broken heart, much to his displeasure.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A {{pkmn|Coordinator}}&#039;s Spinda appeared in &#039;&#039;[[AG062|Disguise Da Limit!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Spinda appeared in &#039;&#039;[[AG077|A Fan with a Plan]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Coordinator&#039;s Spinda appeared in &#039;&#039;[[AG167|What I Did For Love!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039;, a {{pkmn|Trainer}}&#039;s Spinda competed in the [[Pokémon Pancake Race]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM015|Rocking Clawmark Hill!]]&#039;&#039;, a Spinda was training up on [[Clawmark Hill]].&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[SM141|Exhibition Unmasked!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In a flashback in &#039;&#039;[[JN051|Trials of a Budding Master!]]&#039;&#039;, a Trainer&#039;s Spinda battled Ash in a [[World Coronation Series]] match.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN103|The Future is Now, Thanks to Strategy!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN115|Curtain Up! Fight the Fights!]]&#039;&#039;. It reappeared in &#039;&#039;[[JN118|Battling as Hard as Stone!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Spinda appeared in &#039;&#039;[[JN141|A Squad&#039;s Worth of Passion!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Animedexheader|Hoenn}}&lt;br /&gt;
{{Animedexbody|AG057|Spinda|Ash&#039;s Pokédex|Spinda, the Spot Panda Pokémon. Spinda uses its seemingly clumsy movements to {{status|Confusion|confuse}} its opponents. It is said that no two Spinda have the same {{DL|Variant Pokémon|Spinda|pattern of spots}}.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Hoenn}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Norman Spinda Teeter Dance Adventures.png|thumb|125px|Spinda in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
===={{MangaArc|Ruby &amp;amp; Sapphire}}====&lt;br /&gt;
[[Norman]] owns a Spinda, which first appeared in &#039;&#039;[[PS258|Rayquaza Redemption I]]&#039;&#039;. He uses it in conjunction with his {{TP|Norman|Slaking}} to switch their {{Abilities}} with {{m|Skill Swap}}.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Emerald}}====&lt;br /&gt;
A Spinda appeared as a {{gdis|Battle Factory|III}} Pokémon in &#039;&#039;[[PS306|Pinsir Me, I Must Be Dreaming]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Battle Factory rented a Spinda, which was stolen by [[Guile Hideout]] in &#039;&#039;[[PS315|Skirting Around Surskit I]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The {{gdis|Battle Tower|III}} rented a Spinda, which was stolen by Guile Hideout in &#039;&#039;[[PS334|The Final Battle VII]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
A Spinda appeared in a flashback in &#039;&#039;[[PS361|Bombastic Bibarel &amp;amp; Heroic Hippopotas]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Black 2 &amp;amp; White 2}}====&lt;br /&gt;
In &#039;&#039;[[PS525|The Transfer Student]]&#039;&#039;, [[Yancy]] owns a Spinda. It was first seen with its {{pkmn|Trainer}} when she was breaking up with {{adv|Blake}}. Afterwards, it left with Yancy while she said her tearful goodbyes.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Omega Ruby &amp;amp; Alpha Sapphire}}====&lt;br /&gt;
The [[Lumiose Press editor-in-chief]] owns a Spinda, which first appeared in &#039;&#039;[[PS604|Goodra Spits]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Spinda (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==In the TFG==&lt;br /&gt;
One Spinda figure has been released.&lt;br /&gt;
* {{TFG|Groundbreakers}}: {{TFG ID|Groundbreakers|Spinda|32}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Pokémon Battle Revolution]], {{m|Toxic}} is depicted as two purple orbs spinning around each other towards the target. However, when Spinda uses Toxic, the orbs travel erratically. The same animation is used for {{p|Carnivine}}.&lt;br /&gt;
* Like {{p|Whirlipede}}, its base stat total might be based on the fact that it usually spins in circles, which are 360 degrees.&lt;br /&gt;
* Spinda&#039;s {{pkmn|Sun and Moon|Pokémon Sun}} [[Pokédex entry]] states that Spinda believe they walk in straight lines, oblivious to their teetering gait. However, in [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team]], an NPC Spinda tells the player; &#039;&#039;&amp;quot;When I walk, I always totter.&amp;quot;&#039;&#039;, clearly being aware of this trait.&lt;br /&gt;
* Spinda and {{p|Deoxys}} are the only Pokémon to lack a second frame of animation for their front sprite in {{pkmn|Emerald|Pokémon Emerald}}.&lt;br /&gt;
&lt;br /&gt;
===Spot patterns===&lt;br /&gt;
* Some of Spinda&#039;s [[Pokédex entry|Pokédex entries]] mention the odds of two Spinda having the same spot pattern as less than one in four billion. Since Spinda&#039;s spots are based on its [[personality value]] (or encryption constant in later games), which is a 32-bit number, a simplistic model would put the odds at 1 in 4,294,967,296, which is indeed smaller than one in four billion; however, it is actually possible for two personality values to produce spot patterns that are visually identical, so the real odds are somewhat higher.&lt;br /&gt;
** Using [https://web.archive.org/web/20230828010339/https://gatorshark.webs.com/Spinda%20Painter.htm this app], it can be found that two dots have 256 distinct locations, one dot has 254, and one dot has 237, counting all locations where the dot is entirely off-sprite as the same. This results in a total of 3,945,136,128 patterns. However, even this total is slightly too high, because if the upper left dot is far enough down and to the right, it can entirely eclipse the lower-left dot, resulting in a few more patterns being indistinguishable. Compare, for example, 0x0E07F5FB and 0x0EF0F5FB.&lt;br /&gt;
** The fewest spots a Spinda can visibly have is 1 - the sprite&#039;s leftmost spots can land entirely off the sprite, while the rightmost spots cannot, but instead can entirely overlap.&lt;br /&gt;
** In {{g|Brilliant Diamond and Shining Pearl}}, due to a [[List of glitches in Generation VIII#Spinda spot pattern glitches|glitch]] this value is interpreted as big-endian, causing the spot pattern to be rendered incorrectly. As an example, a value of &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; (hexadecimal) would be interpreted as &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;56&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;34&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;12&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; instead.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1500557458623778819&amp;lt;/ref&amp;gt;&lt;br /&gt;
** In [[Pokémon HOME]] v2.1.1 and prior versions, when opening the [[summary]] of a Spinda in the mobile app, Spinda would display the correct spot pattern, identical to its appearance in [[Generation VI]] and below. In HOME v3.0.0 all Spinda were displayed as having the same pattern as the static rendered image used in all HOME menus.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1665787431009001472&amp;lt;/ref&amp;gt; The encryption constant of Spinda in HOME remained unchanged (which meant that if transferred out of HOME into a compatible game, they would have likely retained their original spot pattern), however HOME&#039;s mobile app no longer displayed the spot pattern associated with the encryption constant of a given individual Spinda, all appearing identical to the &amp;quot;stock&amp;quot; rendered image of Spinda. This was resolved in v3.0.1.&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1676088622943207424&amp;lt;/ref&amp;gt;&lt;br /&gt;
*** The value internally used in Pokémon HOME as the &amp;quot;default&amp;quot; pattern for Spinda is &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;background:#FF9999&amp;quot;&amp;gt;7A&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#9999FF&amp;quot;&amp;gt;39&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#99FF99&amp;quot;&amp;gt;78&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background:#FFFF99&amp;quot;&amp;gt;66&amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt;,&amp;lt;ref&amp;gt;https://twitter.com/Atrius97/status/1676088622943207424&amp;lt;/ref&amp;gt; which is a close match to the pattern shown in nearly all official artwork, sprites, and 3D renders of Spinda.&lt;br /&gt;
** In Brilliant Diamond and Shining Pearl&#039;s [[Super Contest]]s, the encryption constant is generated randomly instead of using the value from Pokémon the player selects, which for Spinda results in completely random spot patterns appearing for the duration of the contest, regardless of their true spot pattern.&amp;lt;ref&amp;gt;https://twitter.com/Sibuna_Switch/status/1828258413442142257&amp;lt;/ref&amp;gt;&lt;br /&gt;
* Unlike other Pokémon with no [[List of Pokémon with gender differences|gender differences]], the [[Rotom Pokédex]] does not display a single model for both male and female Spinda, but rather a separate one for each. The models used are whatever the first spot patterns caught of each gender were.&lt;br /&gt;
** The Pokédex preview models for each gender, however, will always be a set model that will likely differ from the model the player will see.&lt;br /&gt;
* {{g|HOME}} cannot transfer Spinda into or out of {{g|GO}} or {{g|Brilliant Diamond and Shining Pearl}} due to inconsistencies in how its spot patterns works.&lt;br /&gt;
** In Pokémon GO, Spinda has nine predetermined forms rather than random patterns.&lt;br /&gt;
*** As a result, Spinda is one of only two Pokémon obtainable in GO that cannot have the {{DL|Origin mark|GO icon}} as its [[origin mark]], the other being {{p|Zygarde}}.&lt;br /&gt;
** In Pokémon Brilliant Diamond and Shining Pearl, this is due to a [[List of glitches in Generation VIII#Spinda spot pattern glitch|bug]] in the game, which causes the encryption constant to be read as a {{wp|Endianness|big-endian}} value (i.e. bytes are read in reverse order), and would allow the possibility to indirectly change Spinda&#039;s spot pattern. Spinda is the only Pokémon that cannot be transferred out of these games.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Spinda appears to be based on a {{wp|Qinling panda}} with traits of {{wp|rabbit}}s. It also resembles a {{wp|teddy bear}} or other {{wp|stuffed toy}}. The swirls in its eyes are based on a cartoonish representation of someone being dazed or dizzy.&lt;br /&gt;
&lt;br /&gt;
The use of &amp;quot;patch&amp;quot; in Spinda&#039;s Japanese name could refer to patches of fabric used to cover tears in a material. Spinda&#039;s random spots would then be the various bandages attached to a toy that has been damaged due to rough play, or even a toddler that has fallen over many times due to their inability to walk stably.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Spinda may be a combination of &#039;&#039;spin&#039;&#039; and &#039;&#039;panda&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Patcheel may be a combination of &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039; (to lose one&#039;s balance).&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Normal|type2=Normal&lt;br /&gt;
|ja= パッチール &#039;&#039;Patcheel&#039;&#039;|jameaning=From &#039;&#039;patch&#039;&#039; and &#039;&#039;reel&#039;&#039;&lt;br /&gt;
|fr=Spinda|frmeaning=Same as English name&lt;br /&gt;
|es=Spinda|esmeaning=Same as English name&lt;br /&gt;
|de=Pandir|demeaning=From &#039;&#039;Panda&#039;&#039; and {{tt|&#039;&#039;wirr&#039;&#039;|confused}}&lt;br /&gt;
|it=Spinda|itmeaning=Same as English name&lt;br /&gt;
|ko=얼루기 &#039;&#039;Ollugi&#039;&#039;|komeaning=From {{tt|얼룩 &#039;&#039;eolluk&#039;&#039;|stain}}&lt;br /&gt;
|zh_cmn=晃晃斑 &#039;&#039;Huànghuàngbān&#039;&#039;|zh_cmnmeaning= From {{tt|晃 &#039;&#039;huàng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bān&#039;&#039;|spots}}&lt;br /&gt;
|zh_yue=晃晃斑 &#039;&#039;Fóngfóngbāan&#039;&#039;|zh_yuemeaning= From {{tt|晃 &#039;&#039;fóng&#039;&#039;|to sway}} and {{tt|斑 &#039;&#039;bāan&#039;&#039;|spots}}&lt;br /&gt;
|hi=चकरबी &#039;&#039;Chakarbee&#039;&#039;|himeaning=From {{tt|चक्कर &#039;&#039;chakkar&#039;&#039;|spiral}}&lt;br /&gt;
|ru=Спинда &#039;&#039;Spinda&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=พัทชีล &#039;&#039;Phatchin&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0326|prev=Grumpig|nextnum=0328|next=Trapinch}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Pandir]]&lt;br /&gt;
[[es:Spinda]]&lt;br /&gt;
[[fr:Spinda]]&lt;br /&gt;
[[it:Spinda]]&lt;br /&gt;
[[ja:パッチール]]&lt;br /&gt;
[[zh:晃晃斑]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Defog_(move)&amp;diff=4324336</id>
		<title>Defog (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Defog_(move)&amp;diff=4324336"/>
		<updated>2025-06-25T16:47:16Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Trivia */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{search|move Defog|the field move Demist|Field Move}}&lt;br /&gt;
----&lt;br /&gt;
{{MoveInfobox&lt;br /&gt;
|n=432&lt;br /&gt;
|name=Defog&lt;br /&gt;
|jname=きりばらい&lt;br /&gt;
|jtrans=Fog Wipe&lt;br /&gt;
|jtranslit=Kiribarai&lt;br /&gt;
|gameimage=Defog IX.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Flying&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=15&lt;br /&gt;
|maxpp=24&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=—&lt;br /&gt;
|bdesc=The foe&#039;s Evasion is reduced and fog is cleared. Also blows away foes&#039; Reflect and Light Screen.&lt;br /&gt;
|gen=IV&lt;br /&gt;
|category=Beauty&lt;br /&gt;
|appeal=2&lt;br /&gt;
|jam=0&lt;br /&gt;
|cdesc=Pokémon after self cannot raise any voltage in that turn&lt;br /&gt;
|appealsc=2&lt;br /&gt;
|scdesc=Prevents the Voltage from going up in the same turn.&lt;br /&gt;
|category6=Cool&lt;br /&gt;
|appeal6=2 |		&lt;br /&gt;
jam6=0 |		&lt;br /&gt;
cdesc6=Works great if the user goes first this turn.&lt;br /&gt;
|pokefordex=Defog&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=yes&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=yes&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|flag7=no&lt;br /&gt;
|flag8=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|field=yes&lt;br /&gt;
|hmdppt=yes&lt;br /&gt;
|hm#dppt=05&lt;br /&gt;
|mtusum=yes&lt;br /&gt;
|tmbdsp=yes&lt;br /&gt;
|tm#bdsp=97&lt;br /&gt;
|na=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Defog&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;きりばらい&#039;&#039;&#039; &#039;&#039;Fog Wipe&#039;&#039;) is a non-damaging {{type|Flying}} [[move]] introduced in [[Generation IV]]. It was [[HM05]] in {{3v2|Diamond|Pearl|Platinum}}, and it was [[TM97]] in {{g|Brilliant Diamond and Shining Pearl}}.&lt;br /&gt;
&lt;br /&gt;
Defog cannot be used outside of battle without the {{badge|Fen}} in {{2v2|Diamond|Pearl}} and the {{badge|Relic}} in {{v2|Platinum}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===In battle===&lt;br /&gt;
====Generation IV====&lt;br /&gt;
Defog lowers the target&#039;s {{stat|evasion}} one stage, even if the target is behind a {{OBP|substitute|doll}}. It bypasses {{stat|accuracy}} checks to always hit, unless the target is in the [[semi-invulnerable turn]] of a move such as {{m|Dig}} or {{m|Fly}}.&lt;br /&gt;
&lt;br /&gt;
Defog clears away any [[fog]] on the field, as well as {{m|Light Screen}}, {{m|Reflect}}, {{m|Safeguard}}, {{m|Mist}}, {{m|Spikes}}, {{m|Toxic Spikes}}, and {{m|Stealth Rock}} on the target&#039;s side of the field.&lt;br /&gt;
&lt;br /&gt;
====Generation V====&lt;br /&gt;
Defog can now be reflected with {{m|Magic Coat}} and no longer lowers the evasion of a Pokémon behind a {{OBP|substitute|doll}}.&lt;br /&gt;
&lt;br /&gt;
====Generations VI and VII====&lt;br /&gt;
Defog now clears away {{m|Spikes}}, {{m|Toxic Spikes}}, {{m|Stealth Rock}}, and {{m|Sticky Web}} on both the user&#039;s and target&#039;s side of the field. In addition to Light Screen, Reflect, Safeguard, and Mist, it also clears away {{m|Aurora Veil}} from the target&#039;s side of the field only.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Flyinium Z]] into Z-Defog, the user&#039;s accuracy is raised by one stage.&lt;br /&gt;
&lt;br /&gt;
====Generation VIII onwards====&lt;br /&gt;
Defog now also clears [[terrain]]s and the effects of {{m|G-Max Steelsurge}}.&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
In certain games, Defog requires a specific [[badge]] to use outside of battle; the Fen Badge{{sup/4|DP}}{{sup/8|BDSP}} or Relic Badge{{sup/4|Pt}}.&lt;br /&gt;
&lt;br /&gt;
====Sinnoh based games====&lt;br /&gt;
Defog clears away [[fog]] from the area. The effect lasts until the {{player}} leaves the area.&lt;br /&gt;
&lt;br /&gt;
====HeartGold and SoulSilver to Sword and Shield, and Generation IX====&lt;br /&gt;
Defog can no longer be used outside of battle.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Flying}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPt}}{{gameabbrevss|PBR}}|Obstacles are moved, reducing the foe&#039;s evasion stat. It can also be used to clear deep fog, etc.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|HGSS}}|It reduces the foe&#039;s evasion stat. It also removes spikes, light screens, etc.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}|A strong wind blows away the target&#039;s obstacles such as Reflect or Light Screen. It also lowers the target&#039;s evasiveness.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|A strong wind blows away the target&#039;s barriers such as Reflect or Light Screen. This also lowers the target&#039;s evasiveness.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|BDSP}}|A strong wind blows away the target’s barriers, such as Reflect or Light Screen, and lowers their evasiveness. It’s also one of the Pokétch’s hidden moves.}}&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/Games|Flying|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/6|0083|formsig=G|Farfetch&#039;d|type=Fighting|2|Flying|Field|form=Galarian Form||||35}}&lt;br /&gt;
{{Moveentry/6|0110|formsig=G|Weezing|type=Poison|type2=Fairy|1|Amorphous|Amorphous|form=Galarian Form||||1||1}}&lt;br /&gt;
{{Moveentry/6|0163|Hoothoot|type=Normal|type2=Flying|1|Flying|Flying|−|−|−|−|−|15}}&lt;br /&gt;
{{Moveentry/6|0164|Noctowl|type=Normal|type2=Flying|1|Flying|Flying|−|−|−|−|−|15{{tt|*|Version 3.0.0 onwards}}}}&lt;br /&gt;
{{Moveentry/6|0487|Giratina|type=Ghost|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|form=All forms|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/6|0549|formsig=H|Lilligant|type=Grass|type2=Fighting|1|Grass|Grass|form=Hisuian Form||||||1}}&lt;br /&gt;
{{Moveentry/6|0580|Ducklett|type=Water|type2=Flying|2|Water 1|Flying|6|6|6|||6}}&lt;br /&gt;
{{Moveentry/6|0581|Swanna|type=Water|type2=Flying|2|Water 1|Flying|1, 6|1, 6|1, 6|||1}}&lt;br /&gt;
{{Moveentry/6|0627|Rufflet|type=Normal|type2=Flying|1|Flying|Flying|32|32|32|60||60}}&lt;br /&gt;
{{Moveentry/6|0628|Braviary|type=Normal|type2=Flying|1|Flying|Flying|32|32|32|64||64}}&lt;br /&gt;
{{Moveentry/6|0628|formsig=H|Braviary|type=Psychic|type2=Flying|1|Flying|Flying|form=Hisuian Form||||||64}}&lt;br /&gt;
{{Moveentry/6|0629|Vullaby|type=Dark|type2=Flying|1|Flying|Flying|32|32|32|60||60}}&lt;br /&gt;
{{Moveentry/6|0630|Mandibuzz|type=Dark|type2=Flying|1|Flying|Flying|32|32|32|64||64}}&lt;br /&gt;
{{Moveentry/6|0788|Tapu Fini|type=Water|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|||38|30}}&lt;br /&gt;
{{Moveentry/6|0798|Kartana|type=Grass|type2=Steel|1|No Eggs Discovered|No Eggs Discovered|||1|50}}&lt;br /&gt;
{{Moveentry/6|0865|Sirfetch&#039;d|type=Fighting|2|Flying|Field||||35}}&lt;br /&gt;
{{Moveentry/6|0873|Frosmoth|type=Ice|type2=Bug|1|Bug|Bug||||16||16}}&lt;br /&gt;
{{Movefoot|Flying|6}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Flying|Egg Move|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=1|g8g={{gameabbrev8|SwSh}}}}&lt;br /&gt;
{{Moveentry/5|0016|Pidgey|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0041|Zubat|type=Poison|type2=Flying|1|Flying|Flying|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0123|Scyther|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0163|Hoothoot|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/5|0273|Seedot|type=Grass|2|Field|Grass|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0276|Taillow|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0333|Swablu|type=Normal|type2=Flying|2|Flying|Dragon|−|−|−|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0425|Drifloon|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0441|Chatot|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0519|Pidove|type=Normal|type2=Flying|1|Flying|Flying|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/5|0532|Timburr|type=Fighting|1|Human-Like|Human-Like|−|−|−|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0566|Archen|type=Rock|type2=Flying|2|Flying|Water 3|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0587|Emolga|type=Electric|type2=Flying|1|Field|Field|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/5|0661|Fletchling|type=Normal|type2=Flying|1|Flying|Flying||−|−|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like||−|−|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0714|Noibat|type=Flying|type2=Dragon|2|Flying|Dragon||−|−|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0722|Rowlet|type=Grass|type2=Flying|1|Flying|Flying|||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0741|Oricorio|type=Fire|type2=Flying|1|Flying|Flying|form=All forms|||−||✔}}&lt;br /&gt;
{{Moveentry/5|0753|Fomantis|type=Grass|1|Grass|Grass|||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0821|Rookidee|type=Flying|1|Flying|Flying||||✔|✔}}&lt;br /&gt;
{{Moveentry/5|0845|Cramorant|type=Flying|type2=Water|2|Water 1|Flying||||✔|✔}}&lt;br /&gt;
{{Movefoot|Flying|5}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]/[[HM]]/[[Move Tutor]]===&lt;br /&gt;
{{Movehead/TMGames|Flying|g1=none|g2=none|g3=none|g5=none|g6=none|g9=none&lt;br /&gt;
|g4tm=05|tmhm4=HM|g4g={{gameabbrev4|DPPt}}&lt;br /&gt;
|g7=1|g7tm=tutor|g7g={{gameabbrev7|USUM}}&lt;br /&gt;
|g8=1|g8tm=97|g8g={{gameabbrev8|BDSP}}}}&lt;br /&gt;
{{Moveentry/3|0006|Charizard|type=Fire|type2=Flying|2|Monster|Dragon|✔|✔|−}}&lt;br /&gt;
{{Moveentry/3|0012|Butterfree|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0015|Beedrill|type=Bug|type2=Poison|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0016|Pidgey|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0017|Pidgeotto|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0018|Pidgeot|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0021|Spearow|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0022|Fearow|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0041|Zubat|type=Poison|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0042|Golbat|type=Poison|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0049|Venomoth|type=Bug|type2=Poison|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0083|Farfetch&#039;d|type=Normal|type2=Flying|2|Flying|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0123|Scyther|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0142|Aerodactyl|type=Rock|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0144|Articuno|type=Ice|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0145|Zapdos|type=Electric|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0146|Moltres|type=Fire|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0149|Dragonite|type=Dragon|type2=Flying|2|Water 1|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0163|Hoothoot|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0164|Noctowl|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0166|Ledian|type=Bug|type2=Flying|1|Bug|Bug|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0169|Crobat|type=Poison|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0178|Xatu|type=Psychic|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0193|Yanma|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0198|Murkrow|type=Dark|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0207|Gligar|type=Ground|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0212|Scizor|type=Bug|type2=Steel|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0225|Delibird|type=Ice|type2=Flying|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0226|Mantine|type=Water|type2=Flying|1|Water 1|Water 1|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0227|Skarmory|type=Steel|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0249|Lugia|type=Psychic|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0250|Ho-Oh|type=Fire|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0255|Torchic|type=Fire|1|Field|Field|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0256|Combusken|type=Fire|type2=Fighting|1|Field|Field|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0257|Blaziken|type=Fire|type2=Fighting|1|Field|Field|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0267|Beautifly|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0269|Dustox|type=Bug|type2=Poison|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0273|Seedot|type=Grass|2|Field|Grass|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0274|Nuzleaf|type=Grass|type2=Dark|2|Field|Grass|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0275|Shiftry|type=Grass|type2=Dark|2|Field|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0276|Taillow|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0277|Swellow|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0278|Wingull|type=Water|type2=Flying|2|Water 1|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0279|Pelipper|type=Water|type2=Flying|2|Water 1|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0284|Masquerain|type=Bug|type2=Flying|2|Water 1|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0291|Ninjask|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0313|Volbeat|type=Bug|2|Bug|Human-Like|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0314|Illumise|type=Bug|2|Bug|Human-Like|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0329|Vibrava|type=Ground|type2=Dragon|2|Bug|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0330|Flygon|type=Ground|type2=Dragon|2|Bug|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0333|Swablu|type=Normal|type2=Flying|2|Flying|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0334|Altaria|type=Dragon|type2=Flying|2|Flying|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0351|Castform|type=Normal|2|Fairy|Amorphous|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0357|Tropius|type=Grass|type2=Flying|2|Monster|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0358|Chimecho|type=Psychic|1|Amorphous|Amorphous|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0373|Salamence|type=Dragon|type2=Flying|1|Dragon|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0380|Latias|type=Dragon|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0381|Latios|type=Dragon|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0384|Rayquaza|type=Dragon|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0393|Piplup|type=Water|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0394|Prinplup|type=Water|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0395|Empoleon|type=Water|type2=Steel|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0396|Starly|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0397|Staravia|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0398|Staraptor|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0414|Mothim|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0416|Vespiquen|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0425|Drifloon|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0426|Drifblim|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0430|Honchkrow|type=Dark|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0434|Stunky|type=Poison|type2=Dark|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0435|Skuntank|type=Poison|type2=Dark|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0441|Chatot|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0455|Carnivine|type=Grass|1|Grass|Grass|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0456|Finneon|type=Water|1|Water 2|Water 2|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0457|Lumineon|type=Water|1|Water 2|Water 2|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0468|Togekiss|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0469|Yanmega|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0472|Gliscor|type=Ground|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0479|Rotom|type=Electric|type2=Ghost|1|Amorphous|Amorphous|form=All forms|−|✔|−}}&lt;br /&gt;
{{Moveentry/3|0487|Giratina|type=Ghost|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0493|Arceus|type=Normal|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0495|Snivy|type=Grass|2|Field|Grass||✔|}}&lt;br /&gt;
{{Moveentry/3|0496|Servine|type=Grass|2|Field|Grass||✔|}}&lt;br /&gt;
{{Moveentry/3|0497|Serperior|type=Grass|2|Field|Grass||✔|}}&lt;br /&gt;
{{Moveentry/3|0519|Pidove|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0520|Tranquill|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0521|Unfezant|type=Normal|type2=Flying|1|Flying|Flying|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0527|Woobat|type=Psychic|type2=Flying|2|Field|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0528|Swoobat|type=Psychic|type2=Flying|2|Field|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0546|Cottonee|type=Grass|type2=Fairy|2|Grass|Fairy||✔|}}&lt;br /&gt;
{{Moveentry/3|0547|Whimsicott|type=Grass|type2=Fairy|2|Grass|Fairy||✔|}}&lt;br /&gt;
{{Moveentry/3|0561|Sigilyph|type=Psychic|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0566|Archen|type=Rock|type2=Flying|2|Flying|Water 3||✔|}}&lt;br /&gt;
{{Moveentry/3|0567|Archeops|type=Rock|type2=Flying|2|Flying|Water 3||✔|}}&lt;br /&gt;
{{Moveentry/3|0580|Ducklett|type=Water|type2=Flying|2|Water 1|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0581|Swanna|type=Water|type2=Flying|2|Water 1|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0587|Emolga|type=Electric|type2=Flying|1|Field|Field||✔|}}&lt;br /&gt;
{{Moveentry/3|0615|Cryogonal|type=Ice|1|Mineral|Mineral||✔|}}&lt;br /&gt;
{{Moveentry/3|0627|Rufflet|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0628|Braviary|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0629|Vullaby|type=Dark|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0630|Mandibuzz|type=Dark|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0635|Hydreigon|type=Dark|type2=Dragon|1|Dragon|Dragon||✔|}}&lt;br /&gt;
{{Moveentry/3|0637|Volcarona|type=Bug|type2=Fire|1|Bug|Bug||✔|}}&lt;br /&gt;
{{Moveentry/3|0641|Tornadus|type=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0642|Thundurus|type=Electric|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0643|Reshiram|type=Dragon|type2=Fire|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0644|Zekrom|type=Dragon|type2=Electric|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0645|Landorus|type=Ground|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0661|Fletchling|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0662|Fletchinder|type=Fire|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0663|Talonflame|type=Fire|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0666|Vivillon|type=Bug|type2=Flying|1|Bug|Bug|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0671|Florges|type=Fairy|1|Fairy|Fairy|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like||✔|}}&lt;br /&gt;
{{Moveentry/3|0707|Klefki|type=Steel|type2=Fairy|1|Mineral|Mineral||✔|}}&lt;br /&gt;
{{Moveentry/3|0714|Noibat|type=Flying|type2=Dragon|2|Flying|Dragon||✔|}}&lt;br /&gt;
{{Moveentry/3|0715|Noivern|type=Flying|type2=Dragon|2|Flying|Dragon||✔|}}&lt;br /&gt;
{{Moveentry/3|0716|Xerneas|type=Fairy|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0717|Yveltal|type=Dark|type2=Flying|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0721|Volcanion|type=Fire|type2=Water|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0722|Rowlet|type=Grass|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0723|Dartrix|type=Grass|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0724|Decidueye|type=Grass|type2=Ghost|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0731|Pikipek|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0732|Trumbeak|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0733|Toucannon|type=Normal|type2=Flying|1|Flying|Flying||✔|}}&lt;br /&gt;
{{Moveentry/3|0741|Oricorio|type=Fire|type2=Flying|1|Flying|Flying|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0742|Cutiefly|type=Bug|type2=Fairy|2|Bug|Fairy||✔|}}&lt;br /&gt;
{{Moveentry/3|0743|Ribombee|type=Bug|type2=Fairy|2|Bug|Fairy||✔|}}&lt;br /&gt;
{{Moveentry/3|0753|Fomantis|type=Grass|1|Grass|Grass||✔|}}&lt;br /&gt;
{{Moveentry/3|0754|Lurantis|type=Grass|1|Grass|Grass||✔|}}&lt;br /&gt;
{{Moveentry/3|0764|Comfey|type=Fairy|1|Grass|Grass||✔|}}&lt;br /&gt;
{{Moveentry/3|0773|Silvally|type=Normal|1|No Eggs Discovered|No Eggs Discovered|form=All forms||✔|}}&lt;br /&gt;
{{Moveentry/3|0780|Drampa|type=Normal|type2=Dragon|2|Monster|Dragon||✔|}}&lt;br /&gt;
{{Moveentry/3|0785|Tapu Koko|type=Electric|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0788|Tapu Fini|type=Water|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0792|Lunala|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Moveentry/3|0798|Kartana|type=Grass|type2=Steel|1|No Eggs Discovered|No Eggs Discovered||✔|}}&lt;br /&gt;
{{Movefoot|Flying|3}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn2|event}}===&lt;br /&gt;
====[[Generation VII]]====&lt;br /&gt;
{{Movehead/Special|Flying}}&lt;br /&gt;
{{Moveentry/1|0249|Lugia|type=Psychic|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|{{DL|List of Japanese region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon|Fula City Lugia}}{{sup/7|SM}}}}&lt;br /&gt;
{{Movefoot|Flying|1}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
Defog lowers the evasiveness of all enemies in the room by one stage. In the [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers]] and [[Pokémon Mystery Dungeon (WiiWare)|Adventure Squad]] series, it will also clear away any {{m|Mist}}, {{m|Safeguard}}, {{m|Reflect}} or {{m|Light Screen}} status conditions they might have, as well as foggy weather from the floor if present. &lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=flying}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=14|acc=100%|range=Entire room|target=Enemy|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=14|acc=100%|range=Entire room|target=Enemy|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=15|ppmax=50|acc=—%|range=Entire room|target=Enemy|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=15|ppmax=30|acc=—%|range=Entire room|target=Enemy|cuts=Yes}}&lt;br /&gt;
{{MDMovefoot|type=flying|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===[[Pokémon Masters EX]]===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background:#{{flying color}}; border:3px solid #{{flying color dark}}; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #{{flying color light}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;width: 65px&amp;quot;|{{color2|000|Damage category|Category}}&lt;br /&gt;
! style=&amp;quot;width: 85px&amp;quot;|Move gauge cost&lt;br /&gt;
! style=&amp;quot;width: 45px&amp;quot;|MP&amp;lt;br&amp;gt;(uses)&lt;br /&gt;
! style=&amp;quot;width: 50px&amp;quot;|Base {{color2|000|power}}&lt;br /&gt;
! style=&amp;quot;width: 50px&amp;quot;|Max {{color2|000|power}}&lt;br /&gt;
! style=&amp;quot;width: 65px&amp;quot;|{{color2|000|Accuracy}}&lt;br /&gt;
! style=&amp;quot;width: 70px&amp;quot;|Target&lt;br /&gt;
! style=&amp;quot;width: 45px&amp;quot;|Effect tag(s)&lt;br /&gt;
! style=&amp;quot;width: 250px&amp;quot;|Description&lt;br /&gt;
! style=&amp;quot;width: 140px&amp;quot;|Playable {{color2|000|Sync pair|sync pair(s)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
{{statustable|Status}}&lt;br /&gt;
|2&lt;br /&gt;
|2&lt;br /&gt;
|—&lt;br /&gt;
|—&lt;br /&gt;
|—%&lt;br /&gt;
|An opponent&lt;br /&gt;
|—&lt;br /&gt;
|Clears the entire [[terrain]] and {{mas|zone}} effects. Clears all field effects from the opponents&#039; field of play. Lowers the target&#039;s evasiveness by one stat rank.&lt;br /&gt;
|{{sync|Lisia|Altaria}}&amp;lt;hr&amp;gt;{{sync|Darach|Staraptor}}&amp;lt;hr&amp;gt;{{sync|Falkner|Pidgeot}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Description prior to Version 2.10.0 (from June 28, 2021): Clears the entire field of terrain effects. Clears all field effects from the opponents&#039; field of play. Lowers the target&#039;s evasiveness.&lt;br /&gt;
* Description prior to Version 2.16.1 (from December 27, 2021): Clears the entire field of terrain effects. Clears all field effects from the opponents&#039; field of play. Lowers the target&#039;s evasiveness by one stat rank.&lt;br /&gt;
* Description prior to Version 2.23.5 (from August 8, 2022): Clears the entire field of terrain and zone effects. Clears all field effects from the opponents&#039; field of play. Lowers the target&#039;s evasiveness by one stat rank.&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Flying}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Reduces the evasiveness of all enemies in the room by 1 level. It blows away Mist and similar defensive moves, as well as a Fog condition.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンの かいひを １だんかいさげる あいての しろいきりじょうたいなどの とくしゅなぼうぎょと てんきの『きり』を ふきとばして けしてしまう|Reduces the evasiveness of all enemies in the room by 1 level. It blows away Mist and similar defensive moves, as well as a Fog condition}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}&amp;lt;br&amp;gt;{{gameabbrevmd|SMD}}|It lowers the evasiveness of all enemies in the same room.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|It lowers the evasiveness of enemies in the same room.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=flying|gen=The user generates a strong wind that blows any deep fog away.|image1=Allegra Honchkrow Defog.png|image1p=Honchkrow|image2=Allegra Honchkrow Defog discs.png|image2p=Going for target|image3=Allegra Honchkrow Defog charge.png|image3p=Outlined wings|image4=Officer Jenny Swanna Defog.png|image4p=Swanna}}&lt;br /&gt;
{{movep|type=flying|ms=430|pkmn=Honchkrow|method=Honchkrow&#039;s wings become outlined in a light-blue glow. The outline disappears as it releases multiple light-blue crescents by flapping its wings. Its wings then become outlined again as the crescents blow the fog away.}}&lt;br /&gt;
{{movemid|type=flying|user=Allegra|user1=Allegra&#039;s Honchkrow|startcode=M10|startname=The Rise of Darkrai|notes=Debut}}&lt;br /&gt;
{{movep|type=flying|ms=581|pkmn=Swanna|method=Swanna flaps its wings and releases a wind with multiple clear, white energy crescents inside it to blow any deep fog away.}}&lt;br /&gt;
{{movebtm|type=flying|user=Officer Jenny|user1=Officer Jenny&#039;s Swanna|startcode=BW021|startname=The Lost World of Gothitelle!}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
{{incomplete|section|Add Rufflet using Defog in UNITE manga chapter 4}}&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=flying|exp=yes|gen=The user generates a strong wind that blows fog away.|image1=Cyrus Honchkrow Defog Adventures.png|image1p=Honchkrow}}&lt;br /&gt;
{{movep|type=flying|ms=430|pkmn=Honchkrow|method=Honchkrow waves one of its wings, causing multiple waves of wind to come out and cut away any fog in the area.}}&lt;br /&gt;
{{movebtmManga|type=flying|user=Cyrus|user1=Cyrus&#039;s Honchkrow|startcode=PS370|startname=Problematic Probopass &amp;amp; Mad Magnezone III|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Diamond and Pearl Adventure!===&lt;br /&gt;
{{movemanga|type=flying|exp=yes|gen=The user clears fog by blowing it away.|image1=Hareta Empoleon Defog.png|image1p=Empoleon}}&lt;br /&gt;
{{movep|type=flying|ms=395|pkmn=Empoleon|method=Empoleon blows away fog by waving its arms swiftly.}}&lt;br /&gt;
{{movemid|type=flying|user=Hareta&#039;s Empoleon|startcode=DPA33|startname=The Birth of the Greatest Tag Team?!|notes=Debut}}&lt;br /&gt;
{{movep|type=flying|ms=149|pkmn=Dragonite|method=Dragonite blows away fog.}}&lt;br /&gt;
{{movebtmManga|type=flying|user=Jun (DPA)|user1=Jun&#039;s Dragonite|startcode=DPA35|startname=Enter the Distortion World!}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===In battle===&lt;br /&gt;
====Core series games====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=flying&lt;br /&gt;
|genIV=Defog IV&lt;br /&gt;
|genV=Defog V&lt;br /&gt;
|genVI=Defog VI&lt;br /&gt;
|genVII=Defog VII&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Flying&lt;br /&gt;
|genVIII=Defog VIII&lt;br /&gt;
}}&lt;br /&gt;
====Side series games====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Flying&lt;br /&gt;
|PBR=Defog PBR&lt;br /&gt;
}}&lt;br /&gt;
====Spin-off series games====&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Flying&lt;br /&gt;
|PMDTDS=Defog PMD TDS&lt;br /&gt;
|PMDGTI=Defog PMD GTI&lt;br /&gt;
|PSMD=Defog PSMD&lt;br /&gt;
|Masters=Defog Masters&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Outside of battle===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=flying&lt;br /&gt;
|genIV=Defog IV OW&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In {{game2|Diamond|Pearl|Platinum}}, the Bag sprite for the HM containing Defog is mistakenly that of a {{type|Water}} HM, rather than a {{type|Flying}} one.&lt;br /&gt;
* Like {{m|Flash}} was in Generations {{gen|I}}, {{gen|II}}, and {{gen|III}}, Defog is not critical to the completion of the game, as a player can traverse foggy areas without using the move. However, unlike with dark caves requiring Flash to light them, foggy areas affect battles within them.&lt;br /&gt;
* In the {{pkmn|animated series}}, {{m|Gust}} and {{m|Whirlwind}} have sometimes been used in a similar manner to Defog.&lt;br /&gt;
* If a player teaches a Pokémon the move Defog by HM in Pokémon Diamond, Pearl, or Platinum, and then trades it to {{game3|HeartGold and SoulSilver|Pokémon HeartGold or SoulSilver|s}}, the Pokémon can be freely imported to {{game3|Black and White|Pokémon Black or White|s}} via the [[Poké Transfer]], due to Defog not being needed outside of battle in HeartGold and SoulSilver. The same can be done with {{m|Whirlpool}} by transferring a Pokémon that learned it by HM in HeartGold or SoulSilver to Diamond, Pearl, or Platinum.&lt;br /&gt;
* Despite being able to learn Defog in previous generations, {{p|Charizard}}, {{p|Ledian}}, the {{p|Torchic}} evolutionary line, {{p|Seedot}}, {{p|Nuzleaf}}, {{p|Volbeat}}, {{p|Illumise}}, the {{p|Swablu}} evolutionary line, {{p|Castform}}, {{p|Chimecho}}, {{p|Rayquaza}}, {{p|Carnivine}}, and {{p|Rotom}} are all unable to learn Defog in [[Pokémon Brilliant Diamond and Shining Pearl]].&lt;br /&gt;
* {{p|Kartana}}&#039;s ability to learn Defog might be a reference to {{wp|origami}} {{wp|pinwheel}}s, as Kartana itself is based on origami.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{flying color}}|bordercolor={{flying color light}}&lt;br /&gt;
|zh_yue=清除濃霧 &#039;&#039;{{tt|Chīngchèuih Nùhngmouh |Clear Fog}}&#039;&#039; {{tt|*|Games, Animated series}}&amp;lt;br&amp;gt;霧氣打散 &#039;&#039;{{tt|Mouhhei Dásaan|Disperse Fog}}&#039;&#039; {{tt|*|M10}}&lt;br /&gt;
|zh_cmn=清除濃霧 / 清除浓雾 &#039;&#039;{{tt|Qīngchú Nóngwù|Clear Fog}}&#039;&#039;&lt;br /&gt;
|nl=Opklaring&amp;lt;br&amp;gt;Ontmisting{{tt|*|Platinum manual}}&lt;br /&gt;
|fr=Anti-Brume&lt;br /&gt;
|de=Auflockern&lt;br /&gt;
|el=Απονέφωση&lt;br /&gt;
|id=Singkirkan Kabut&lt;br /&gt;
|it=Scacciabruma&lt;br /&gt;
|ko=안개제거 &#039;&#039;An-gaejegeo&#039;&#039;&lt;br /&gt;
|pl=Odparowanie&lt;br /&gt;
|pt_br=Desneblinar (animated series, [[M10]])&amp;lt;br&amp;gt;Descondensar (TCG)&lt;br /&gt;
|pt_eu=Desanuviar&amp;lt;br&amp;gt;Desembaciamento{{tt|*|Platinum manual}}&lt;br /&gt;
|es_la=Desempañar ([[BW021]])&amp;lt;br&amp;gt;Quitanieblas ([[M10]])&lt;br /&gt;
|es_eu=Despejar&lt;br /&gt;
|vi=Dẹp Sương&lt;br /&gt;
}}&lt;br /&gt;
{{Generation IV TMs}}&lt;br /&gt;
{{Generation VIII TMs}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can lower the target&#039;s evasion]]&lt;br /&gt;
[[Category:Moves that cannot miss]]&lt;br /&gt;
[[Category:Weather-changing moves]]&lt;br /&gt;
[[Category:Entry hazard-removing moves]]&lt;br /&gt;
[[Category:Screen-removing moves]]&lt;br /&gt;
[[Category:Moves that change terrain]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Auflockern]]&lt;br /&gt;
[[es:Despejar]]&lt;br /&gt;
[[fr:Anti-Brume]]&lt;br /&gt;
[[it:Scacciabruma]]&lt;br /&gt;
[[ja:きりばらい]]&lt;br /&gt;
[[zh:清除浓雾（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Stonjourner_(Pok%C3%A9mon)&amp;diff=4321524</id>
		<title>Stonjourner (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Stonjourner_(Pok%C3%A9mon)&amp;diff=4321524"/>
		<updated>2025-06-19T21:58:03Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Rock}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Stonjourner}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Rock|prevnum=0873|prev=Frosmoth|nextnum=0875|next=Eiscue|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Stonjourner&lt;br /&gt;
|jname=イシヘンジン&lt;br /&gt;
|jtranslit=Ishihenjin&lt;br /&gt;
|tmname=Ishihengin&lt;br /&gt;
|ndex=0874&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|category=Big Rock&lt;br /&gt;
|height-ftin=8&#039;02&amp;quot;&lt;br /&gt;
|height-m=2.5&lt;br /&gt;
|weight-lbs=1146.4&lt;br /&gt;
|weight-kg=520.0&lt;br /&gt;
|abilitylayout=1&lt;br /&gt;
|ability1=Power Spot&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Mineral&lt;br /&gt;
|eggcycles=25&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evde=2&lt;br /&gt;
|expyield=165&lt;br /&gt;
|lv100exp=1,250,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Gray&lt;br /&gt;
|catchrate=60&lt;br /&gt;
|body=07&lt;br /&gt;
|pokefordex=stonjourner&lt;br /&gt;
|generation=8&lt;br /&gt;
|friendship=50&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Stonjourner&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;イシヘンジン&#039;&#039;&#039; &#039;&#039;Ishihengin&#039;&#039;) is a {{type|Rock}} {{OBP|Pokémon|species}} introduced in [[Generation VIII]].&lt;br /&gt;
&lt;br /&gt;
It is not known to [[Evolution|evolve]] into or from any other Pokémon.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
[[File:StonjournerSilverTempest101.jpg|thumb|left|180px|Stonjourner resting]]&lt;br /&gt;
Stonjourner is a tall {{OBP|Pokémon|species}} made of rock, resembling {{wp|Stonehenge}}. It has a gray, rectangular body with white eyes and mouth, and is adorned with dark gray spots. On top of its body are two, smaller rectangular stones giving it the appearance of a hat. Its arms are made up of three chained, square rocks alternating between gray and dark gray. It has two large, gray legs resembling the standing stones on [[Turffield]], each of which weighs over 400 pounds (200 kg). These legs are brown on the lower half, and have a pair of gray crosses each. [[Stonjourner (Silver Tempest 101)|In the TCG]], a resting Stonjourner is shown to be able to detach and rotate its legs.&lt;br /&gt;
&lt;br /&gt;
Occasionally, Stonjourner will unleash a burst of speed to perform dynamic feats with its legs. Most of the time, it stands in a field watching the sun&#039;s progress, preferring a quiet life. Curiously, once every year on a certain day, groups of Stonjourner gather from all over to form an evenly spaced ring or circle. No one knows the reason why they assemble in this formation, leading to many theories involving the position of the sun, the earth&#039;s energy, and other factors.&amp;lt;ref&amp;gt;[https://swordshield.pokemon.com/en-us/pokemon-galar-region/stonjourner/ Stonjourner | Official Website | Pokémon Sword and Pokémon Shield]&amp;lt;/ref&amp;gt; Another curiosity is that the elemental composition of the rocks that form Stonjourner&#039;s body were found to match the bedrock of a land far away from its native habitat. Stonjourner primarily makes its home in grasslands.&lt;br /&gt;
&lt;br /&gt;
Stonjourner is the [[Signature Ability|only known Pokémon]] that can have {{a|Power Spot}} as an [[Ability]].&lt;br /&gt;
{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Rock}}&lt;br /&gt;
{{Dex/NA|gen=VIII}}&lt;br /&gt;
{{Dex/Gen/4|gen=VIII|reg1=Galar|num1=369|reg2=Galar|label2=Crown Tundra|num2=089|reg3=Sinnoh|reg4=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Brilliant Diamond and Shining Pearl|Brilliant Diamond, Shining Pearl]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sword|t=FFF|entry=It stands in grasslands, watching the sun&#039;s descent from zenith to horizon. This Pokémon has a talent for delivering dynamic kicks.}}&lt;br /&gt;
{{Dex/Entry1|v=Shield|t=FFF|entry=Once a year, on a specific date and at a specific time, they gather out of nowhere and form up in a circle.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=319|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=The elemental composition of the rocks that form its body were found to match the bedrock of a land far away from this Pokémon’s habitat.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=This Pokémon spends its life gazing at the setting sun. It strides leisurely across grassy plains on legs of rock that weigh over {{tt|400 pounds|200 kg}} each.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{rock color dark}}; background:#{{rock color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{rock color light}}; background:#{{rock color light}} | [[File:Pokédex Image Stonjourner SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Stonjourner in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Rock}}&lt;br /&gt;
{{Availability/NA|gen=VIII}}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|v=Sword|t=FFF|area={{rt|10|Galar}}, [[Lake of Outrage]]&amp;lt;br&amp;gt;[[Giant&#039;s Seat/Dens|Giant&#039;s Seat]], [[Rolling Fields/Dens|Rolling Fields]], [[Stony Wilderness/Dens|Stony Wilderness]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Shield|area=Use [[Dynamax Crystal]] ★And390 at [[Watchtower Lair]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry1|v=Sword Expansion Pass|color={{sword color dark}}|t=fff|link=Pokémon Sword and Shield Expansion Pass|area=[[Giant&#039;s Bed]], [[Giant&#039;s Foot]]&amp;lt;br&amp;gt;[[Slippery Slope/Dens|Slippery Slope]], [[Giant&#039;s Bed/Dens|Giant&#039;s Bed]], [[Snowslide Slope/Dens|Snowslide Slope]], [[Ballimere Lake/Dens|Ballimere Lake]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Brilliant Diamond|v2=Shining Pearl|area=Unobtainable}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry1|1|v=Scarlet|t=FFF|area=West Province: [[Asado Desert]]&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 4★ Tera Raid Battles (Paldea)|Stonjourner|4★}})}}&lt;br /&gt;
{{Availability/Entry1/None|1|v=Violet|area=[[Union Circle]]&amp;lt;br&amp;gt;[[Tera Raid Battle|Tera Raid Battle Search]] ({{DL|List of 4★ Tera Raid Battles (Paldea)|Stonjourner|4★}})}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--====In side games====--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
=====[[Poké Portal News]]=====&lt;br /&gt;
{{eventAvail/h|Tera Type|lochide=yes|type=Rock}}&lt;br /&gt;
{{eventAvail|{{gameabbrev9|SV}}|Challenge Hard-to-Find Pokémon|Varies|hide|35, 75|February 16 to 18, 2024&amp;lt;br&amp;gt;October 18 to 20, 2024|link=Poké Portal News/2024#February 16 to 18, 2024}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Rock&lt;br /&gt;
|HP=100&lt;br /&gt;
|Attack=125&lt;br /&gt;
|Defense=135&lt;br /&gt;
|SpAtk=20&lt;br /&gt;
|SpDef=20&lt;br /&gt;
|Speed=70&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|Normal=50&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=50&lt;br /&gt;
|Poison=50&lt;br /&gt;
|Ground=200&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=100&lt;br /&gt;
|Ghost=100&lt;br /&gt;
|Steel=200&lt;br /&gt;
|Fire=50&lt;br /&gt;
|Water=200&lt;br /&gt;
|Grass=200&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=100&lt;br /&gt;
|Fairy=100&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Stonjourner|Rock|Rock|8}}&lt;br /&gt;
{{learnlist/level9|1|Rock Throw|Rock|Physical|50|90|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Block|Normal|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|6|Rock Polish|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|12|Rock Tomb|Rock|Physical|60|95|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|18|Gravity|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|24|Stomp|Normal|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/level9|30|Stealth Rock|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|36|Rock Slide|Rock|Physical|75|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|42|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/level9|48|Wide Guard|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|54|Heavy Slam|Steel|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/level9|60|Stone Edge|Rock|Physical|100|80|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|66|Mega Kick|Normal|Physical|120|75|5}}&lt;br /&gt;
{{learnlist/levelf/9|Stonjourner|Rock|Rock|8}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Stonjourner|Rock|Rock|8}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM039|Low Sweep|Fighting|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM076|Rock Blast|Rock|Physical|25|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM084|Stomping Tantrum|Ground|Physical|75|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM089|Body Press|Fighting|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM092|Imprison|Psychic|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM101|Power Gem|Rock|Special|80|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM104|Iron Defense|Steel|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM116|Stealth Rock|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM121|Heavy Slam|Steel|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM133|Earth Power|Ground|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM150|Stone Edge|Rock|Physical|100|80|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM176|Sand Tomb|Ground|Physical|35|85|15}}&lt;br /&gt;
{{learnlist/tm9|TM178|Gravity|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM179|Smack Down|Rock|Physical|50|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM186|High Horsepower|Ground|Physical|95|95|10}}&lt;br /&gt;
{{learnlist/tm9|TM189|Heat Crash|Fire|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM203|Psych Up|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM220|Meteor Beam|Rock|Special|120|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM224|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM225|Hard Press|Steel|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tmf/9|Stonjourner|Rock|Rock|8}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Stonjourner|Rock|Rock|8}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0837|Rolycoly}}{{MSP/H|0838|Carkol}}{{MSP/H|0839|Coalossal}}{{MSP/H|0969|Glimmet}}{{MSP/H|0970|Glimmora}}|Ancient Power|Rock|Special|60|100|5||&#039;&#039;&#039;|grid=5}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0712|Bergmite}}{{MSP/H|0713|Avalugg}}{{MSP/H|0713|Avalugg|form=-Hisui}}|Curse|Ghost|Status|—|—|10|grid=5}}&lt;br /&gt;
{{learnlist/breedf/9|Stonjourner|Rock|Rock|8}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Rock}}&lt;br /&gt;
{{Spindata/GO|col=6|type=Rock|ndex=0874&lt;br /&gt;
|egg=N/A&lt;br /&gt;
|buddy=5&lt;br /&gt;
|candy=Stonjourner&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=225&lt;br /&gt;
|attack=222&lt;br /&gt;
|defense=182&lt;br /&gt;
|fast={{m|Rock Throw}}&lt;br /&gt;
|special={{m|Stomp}}, {{m|Rock Slide}}, {{m|Stone Edge}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-1&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0874&lt;br /&gt;
|name1=Stonjourner&lt;br /&gt;
|type1-1=Rock}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Rock}}&lt;br /&gt;
{{Spritebox/NA|gen=VIII}}&lt;br /&gt;
{{Spritebox/8|ndex=874|crop=171}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=0874}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=0874}}&lt;br /&gt;
{{Spritebox/Footer|874|Stonjourner}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Main series===&lt;br /&gt;
[[File:Rocket Prize Master Stonjourner.png|thumb|250px|Stonjourner in {{aniseries|JN}}]]&lt;br /&gt;
====Major appearances====&lt;br /&gt;
Stonjourner debuted in &#039;&#039;[[JN127|Just a Scone&#039;s Throw From Here!]]&#039;&#039;, where [[Jessie]] pulled {{DL|Rocket Prize Master|Stonjourner|one}} out of the [[Rocket Prize Master]]. It was eventually defeated by {{TP|Goh|Cinderace}}.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
In &#039;&#039;[[HZ024|Reunion at the Ancient Castle!]]&#039;&#039;, a Stonjourner was guarding the passageway into [[Diana]]&#039;s castle. It retreated when [[Amethio]] attacked it with his {{TP|Amethio|Ceruledge}}.&lt;br /&gt;
&lt;br /&gt;
===Pokémon: Twilight Wings===&lt;br /&gt;
A Stonjourner appeared in &#039;&#039;[[TW08|The Gathering of Stars]]&#039;&#039;, under the ownership of [[Gordie]].&lt;br /&gt;
{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Gordie Stonjourner Adventures.png|thumb|150px|Stonjourner in [[Pokémon Adventures]]]]&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
Stonjourner debuted in &#039;&#039;[[PASS19|Crunch!! Snowy Battle]]&#039;&#039;, under the ownership of [[Gordie]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Stonjourner (TCG)}}&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Stonjourner can be seen as a parallel to {{p|Eiscue}}. &lt;br /&gt;
** They are {{pkmn2|version-exclusive|version exclusives}} of each other: Stonjourner is exclusive to {{pkmn|Sword and Shield|Sword}} and {{pkmn|Scarlet and Violet|Scarlet}}, while Eiscue is exclusive to Shield and Violet.&lt;br /&gt;
** They both have [[Signature Ability|signature Abilities]]: Stonjourner has {{a|Power Spot}}, while Eiscue has {{a|Ice Face}}.&lt;br /&gt;
** The version-exclusive [[Gym Leader]]s of [[Circhester Stadium]], [[Gordie]]{{sup/8|Sh}} and [[Melony]]{{sup/8|Sw}}, use Stonjourner and Eiscue in their respective teams.&lt;br /&gt;
* Stonjourner is tied with {{p|Caterpie}}, {{p|Weedle}}, {{p|Magikarp}}, {{p|Igglybuff}}, {{p|Carvanha}}, and {{form|Deoxys|Attack Forme}} {{p|Deoxys}} for the lowest base {{stat|Special Defense}} stat of all Pokémon.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Stonjourner appears to be based on {{wp|Megalith|Megalith structures}}, more specifically a {{wp|trilithon}} or a {{wp|dolmen}}. It may specifically be a direct reference to the {{wp|Stonehenge}} monument from the Middle {{wp|Neolithic}} of {{wp|Wiltshire}}, England. Stonjourner&#039;s behavior may reference the relationship between {{wp|Archaeoastronomy and Stonehenge|Stonehenge and astronomy}}, and the fact that there is evidence that this monument used to be visited once every year by a prehistoric culture, either in December or January.&lt;br /&gt;
&lt;br /&gt;
Stonjourner may also be inspired from the {{wp|inuksuk}}. The crosses on its legs may be a reference to {{wp|runes}} from early {{wp|Germanic languages|Germanic culture}}, which had a prevalent impact on Britain during its {{wp|Anglo-Saxon}} era. Combined with the dirt, they resemble hiking boots.&lt;br /&gt;
&lt;br /&gt;
Stonjourner&#039;s {{g|Scarlet}} Pokédex entry seems to be referencing the {{wp|bluestone}}s amongst the Stonehenge trilithons, which were imported from a quarry in the {{wp|Preseli Mountains}} of {{wp|Wales}} approximately 200km/124 miles North-West of Stonehenge.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Stonjourner may be a combination of &#039;&#039;stone&#039;&#039; and &#039;&#039;sojourner&#039;&#039; (a person who resides temporarily in a place).&lt;br /&gt;
&lt;br /&gt;
Ishihengin may be a combination of 石 &#039;&#039;ishi&#039;&#039; (stone), &#039;&#039;{{wp|Stonehenge}}&#039;&#039;, and 変人 &#039;&#039;henjin&#039;&#039; (weird or eccentric person).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Rock|type2=Rock&lt;br /&gt;
|ja=イシヘンジン &#039;&#039;Ishihengin&#039;&#039;|jameaning=From {{tt|石 &#039;&#039;ishi&#039;&#039;|stone}}, &#039;&#039;{{wp|Stonehenge}}&#039;&#039;, and {{tt|変人 &#039;&#039;henjin&#039;&#039;|weird or eccentric person}}&lt;br /&gt;
|fr=Dolman|frmeaning=From &#039;&#039;{{wp|dolmen}}&#039;&#039; and &#039;&#039;man&#039;&#039;&lt;br /&gt;
|es=Stonjourner|esmeaning=Same as English name&lt;br /&gt;
|de=Humanolith|demeaning=From &#039;&#039;human&#039;&#039; or &#039;&#039;humanoid&#039;&#039; and &#039;&#039;{{wp|megalith}}&#039;&#039;&lt;br /&gt;
|it=Stonjourner|itmeaning=Same as English name&lt;br /&gt;
|ko=돌헨진 &#039;&#039;Dolhenjin&#039;&#039;|komeaning=From {{tt|돌 &#039;&#039;dol&#039;&#039;|stone}}, &#039;&#039;Stonehenge&#039;&#039;, and {{tt|인 &#039;&#039;in&#039;&#039;|man}}&lt;br /&gt;
|zh_cmn=巨石丁 &#039;&#039;Jùshídīng&#039;&#039;|zh_cmnmeaning=From {{tt|巨石 &#039;&#039;jùshí&#039;&#039;|megalith}} and {{tt|丁 &#039;&#039;dīng&#039;&#039;|man}}&lt;br /&gt;
|zh_yue=巨石丁 &#039;&#039;Geuihsehkdīng&#039;&#039;|zh_yuemeaning=From {{tt|巨石 &#039;&#039;geuihsehk&#039;&#039;|megalith}} and {{tt|丁 &#039;&#039;dīng&#039;&#039;|man}}&lt;br /&gt;
|hi=स्टोनहेंजी &#039;&#039;Stonehenjee&#039;&#039;|himeaning=From &#039;&#039;Stonehenge&#039;&#039; and {{tt|मौजी &#039;&#039;maujī&#039;&#039;|whimsical/impulsive}}&lt;br /&gt;
|ru=Стонджорнер &#039;&#039;Stondzhorner&#039;&#039;|rumeaning=From English name&lt;br /&gt;
|th=อิชิเฮนจิน &#039;&#039;Ichihenchin&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{PokémonPrevNext/Head|type=Rock}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Rock|prevnum=0873|prev=Frosmoth|nextnum=0875|next=Eiscue}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Humanolith]]&lt;br /&gt;
[[es:Stonjourner]]&lt;br /&gt;
[[fr:Dolman]]&lt;br /&gt;
[[it:Stonjourner]]&lt;br /&gt;
[[ja:イシヘンジン]]&lt;br /&gt;
[[zh:巨石丁]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Gholdengo_(Pok%C3%A9mon)&amp;diff=4321518</id>
		<title>Gholdengo (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Gholdengo_(Pok%C3%A9mon)&amp;diff=4321518"/>
		<updated>2025-06-19T21:31:40Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Steel|type2=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Gholdengo}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Steel|prevnum=0999|prev=Gimmighoul|nextnum=1001|next=Wo-Chien|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Gholdengo&lt;br /&gt;
|jname=サーフゴー&lt;br /&gt;
|jtranslit=Sāfugō&lt;br /&gt;
|tmname=Surfugo&lt;br /&gt;
|ndex=1000&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|category=Coin Entity&lt;br /&gt;
|height-ftin=3&#039;11&amp;quot;&lt;br /&gt;
|height-m=1.2&lt;br /&gt;
|weight-lbs=66.1&lt;br /&gt;
|weight-kg=30.0&lt;br /&gt;
|abilitylayout=1&lt;br /&gt;
|ability1=Good as Gold&lt;br /&gt;
|ability2=&lt;br /&gt;
|abilityd=&lt;br /&gt;
|egggroupn=0&lt;br /&gt;
|egggroup1=No Eggs Discovered&lt;br /&gt;
|egggroup2=&lt;br /&gt;
|eggcycles=50&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evhp=0&lt;br /&gt;
|evat=0&lt;br /&gt;
|evde=0&lt;br /&gt;
|evsa=2&lt;br /&gt;
|evsd=0&lt;br /&gt;
|evsp=0&lt;br /&gt;
|expyield=275&lt;br /&gt;
|lv100exp=1250000&lt;br /&gt;
|gendercode=255&lt;br /&gt;
|color=Yellow&lt;br /&gt;
|catchrate=45&lt;br /&gt;
|body=12&lt;br /&gt;
|pokefordex=gholdengo&lt;br /&gt;
|generation=9&lt;br /&gt;
|friendship=50&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Gholdengo&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;サーフゴー&#039;&#039;&#039; &#039;&#039;Surfugo&#039;&#039;) is a dual-type {{2t|Steel|Ghost}} {{OBP|Pokémon|species}} introduced in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] from {{p|Gimmighoul}} when [[level]]ed up while the player has 999 [[Gimmighoul Coin]]s. Upon the Evolution, the Gimmighoul Coins are consumed. Gimmighoul&#039;s Evolution cannot be canceled with the B button.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
[[File:Gholdengo Surfboard.png|left|thumb|&amp;lt;!-- As this is an animated PNG, please do not turn this into a thumbnail by determining a specific set image size! --&amp;gt;Gholdengo surfing]]&lt;br /&gt;
Gholdengo is a bipedal humanoid {{OBP|Pokémon|species}} whose body is composed of 1,000 [[Gimmighoul Coin]]s stacked together, giving it a golden, cylindrical appearance. Its face has oval eyes and a mouth displaying a crooked smile. Its body has skinny arms with large hands and short, stumpy legs with no toes. It has three fingers on each hand and four tufts of dreadlock-like &amp;quot;hair&amp;quot;, all made out of coins. It wears the strap from a {{p|Gimmighoul}}&#039;s chest as a belt, using it to fasten the chest to its side. The belt buckle has a stylized number 1,000 on it. Gholdengo is capable of creating a golden surfboard out of coins as a means of movement.&lt;br /&gt;
&lt;br /&gt;
Gholdengo is a sociable Pokémon, able to quickly befriend anybody. It overwhelms opponents by firing coins at them in quick succession. The coins that form its body are tightly packed, making it able to withstand damage. When attacked by enemies, it can let loose some of the coins on the areas of its body that are hit, in order to absorb the impact.&amp;lt;ref&amp;gt;[https://scarletviolet.pokemon.com/en-us/pokemon/gholdengo/ Gholdengo — Pokémon Scarlet and Pokémon Violet | Official Website]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Gholdengo is the [[signature move|only known Pokémon]] capable of learning the move {{m|Make It Rain}}. It is also the [[Signature Ability|only known Pokémon]] that can have {{a|Good as Gold}} as an [[Ability]].&lt;br /&gt;
{{left clear}}&lt;br /&gt;
===Evolution===&lt;br /&gt;
Gholdengo evolves from either Chest Form or Roaming Form {{p|Gimmighoul}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; flex-wrap: wrap; justify-content: space-evenly&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;max-width:100%; text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1=&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Dex/NA|gen=IX}}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=392|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It has a sturdy body made up of stacked coins. Gholdengo overwhelms its enemies by firing coin after coin at them in quick succession.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{ghost color dark}}; background:#{{steel color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{steel color light}}; background:#{{steel color light}} | [[File:Pokédex Image Gholdengo SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Gholdengo in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=[[Evolution|Evolve]] {{p|Gimmighoul}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Master Fair [[sync pair scout]]: {{sync|Lear|Gholdengo|sygna=1}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|HP=87&lt;br /&gt;
|Attack=60&lt;br /&gt;
|Defense=95&lt;br /&gt;
|SpAtk=133&lt;br /&gt;
|SpDef=91&lt;br /&gt;
|Speed=84&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|Normal=0&lt;br /&gt;
|Fighting=0&lt;br /&gt;
|Flying=50&lt;br /&gt;
|Poison=0&lt;br /&gt;
|Ground=200&lt;br /&gt;
|Rock=50&lt;br /&gt;
|Bug=25&lt;br /&gt;
|Ghost=200&lt;br /&gt;
|Steel=50&lt;br /&gt;
|Fire=200&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=50&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=50&lt;br /&gt;
|Ice=50&lt;br /&gt;
|Dragon=50&lt;br /&gt;
|Dark=200&lt;br /&gt;
|Fairy=50&lt;br /&gt;
|notes=yes&lt;br /&gt;
|ghost=yes&lt;br /&gt;
|steel=yes&lt;br /&gt;
|newpoison=½&lt;br /&gt;
|newnormal=½&lt;br /&gt;
|newfighting=2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/level9|1|Astonish|Ghost|Physical|30|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Tackle|Normal|Physical|40|100|35}}&lt;br /&gt;
{{learnlist/level9|7|Night Shade|Ghost|Special|—|100|15}}&lt;br /&gt;
{{learnlist/level9|14|Confuse Ray|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/level9|21|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|28|Metal Sound|Steel|Status|—|85|40}}&lt;br /&gt;
{{learnlist/level9|35|Shadow Ball|Ghost|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|42|Recover|Normal|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|49|Power Gem|Rock|Special|80|100|20}}&lt;br /&gt;
{{learnlist/level9|56|Make It Rain|Steel|Special|120|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|63|Nasty Plot|Dark|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|70|Memento|Dark|Status|—|100|10}}&lt;br /&gt;
{{learnlist/levelf/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM017|Confuse Ray|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM023|Charge Beam|Electric|Special|50|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM029|Hex|Ghost|Special|65|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM039|Low Sweep|Fighting|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM042|Night Shade|Ghost|Special|—|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM043|Fling|Dark|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM054|Psyshock|Psychic|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM068|Thunder Punch|Electric|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM072|Electro Ball|Electric|Special|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM074|Reflect|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM075|Light Screen|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM079|Dazzling Gleam|Fairy|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM082|Thunder Wave|Electric|Status|—|90|20}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM093|Flash Cannon|Steel|Special|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM099|Iron Head|Steel|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM101|Power Gem|Rock|Special|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM109|Trick|Psychic|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM120|Psychic|Psychic|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM121|Heavy Slam|Steel|Physical|—|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM126|Thunderbolt|Electric|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM140|Nasty Plot|Dark|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM158|Focus Blast|Fighting|Special|120|70|5}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM166|Thunder|Electric|Special|110|70|10}}&lt;br /&gt;
{{learnlist/tm9|TM170|Steel Beam|Steel|Special|140|95|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM192|Focus Punch|Fighting|Physical|150|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM198|Poltergeist|Ghost|Physical|110|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM223|Metal Sound|Steel|Status|—|85|40}}&lt;br /&gt;
{{learnlist/tmf/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/breed9null}}&lt;br /&gt;
{{learnlist/breedf/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{learnlist/prevoh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/prevo9null}}&lt;br /&gt;
{{learnlist/prevof/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Spindata/GO|col=6|type=Steel|ndex=1000&lt;br /&gt;
|egg=N/A&lt;br /&gt;
|buddy=5&lt;br /&gt;
|candy=Gimmighoul&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=202&lt;br /&gt;
|attack=252&lt;br /&gt;
|defense=190&lt;br /&gt;
|fast={{m|Astonish}}, {{m|Hex}}&lt;br /&gt;
|special={{m|Dazzling Gleam}}, {{m|Focus Blast}}, {{m|Shadow Ball}}, {{m|Power Gem}}{{tt|*|From June 1, 2025 onward}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1={{Bag/s|Rare Candy|SV}} + [[File:GO Gimmighoul Coin Small.png|link=Gimmighoul Coin|40px]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}} &amp;lt;br&amp;gt;with 999 {{color2|000|Gimmighoul Coin|Gimmighoul Coins}}&amp;lt;br&amp;gt;in the {{color2|000|Bag}}&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=steel|type2=ghost}}&lt;br /&gt;
{{Spritebox/NA|gen=IX}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=1000}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=1000}}&lt;br /&gt;
{{Spritebox/Footer|1000|Gholdengo}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Student Gholdengo PT.png|thumb|250px|Gholdengo in [[POKÉTOON]]]]&lt;br /&gt;
===Main series===&lt;br /&gt;
====Major appearances====&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
&lt;br /&gt;
===Challenge the World!===&lt;br /&gt;
Gholdengo appeared in [[Challenge the World!]], battling in a {{g|GO}} match under the ownership of a Trainer.&lt;br /&gt;
&lt;br /&gt;
===POKÉTOON===&lt;br /&gt;
A Gholdengo appeared during a video in [[PT16]], under the ownership of a {{tc|Student}}.&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Gholdengo (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
[[File:Pokémon 1000th EnCOUNTer.jpg|thumb|right|250px|Gold Counter in One Thousand Pokémon]]&lt;br /&gt;
* Despite its Japanese name and ability to create a surfboard out of coins, Gholdengo is incapable of learning the move {{m|Surf}}.&lt;br /&gt;
* Gholdengo is heavily associated with the number 1,000.&lt;br /&gt;
** Its [[List of Pokémon by National Pokédex number|National Pokédex number]] is #1000.&lt;br /&gt;
*** A video titled “One Thousand Pokémon!” was made to commemorate the number of Pokémon surpassing 1,000. The video features a counter that increases as Pokémon appear, eventually turning gold when it reaches 1,000 with Gholdengo.&amp;lt;ref&amp;gt;[https://www.youtube.com/watch?v=pa08Y-fhfTI&amp;amp;t=44s &amp;quot;One Thousand Pokémon].&amp;quot; [https://www.youtube.com/c/pokemon The Official Pokémon YouTube Channel]. &#039;&#039;YouTube&#039;&#039;.&amp;lt;/ref&amp;gt;&lt;br /&gt;
** Its belt buckle has a stylized depiction of the number 1,000 on it. As Gholdengo&#039;s belt is fashioned from Chest Form Gimmighoul&#039;s chest, this symbol is also present on Chest Form Gimmighoul, albeit oriented sideways.&lt;br /&gt;
** Its body is made of 1,000 [[Gimmighoul Coin]]s.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Gholdengo&#039;s golden humanoid appearance, together with its position as the 1,000th Pokémon in the National Pokédex, may allude to award statuettes, which are often made with gold and given to honor achievements or milestones. Gholdengo also seems to take inspiration from {{wp|surfing|surfers}}, given the golden surfboard it rides on as well as its dreadlock-like appendages and friendly nature, befitting of the archetypal &amp;quot;surfer dude&amp;quot;. The recurring cylindrical shape on its body is similar to {{wp|coin wrapper}}s. Its surfboard is similar to {{wp|Koban (coin)|koban}} and {{wp|ōban}}.&lt;br /&gt;
&lt;br /&gt;
Gholdengo is also likely based on gold or {{wp|tumbaga}} artifacts crafted by some pre-Columbian cultures of Central and South America, mainly from the modern-day {{wp|Pre-Columbian cultures of Colombia#Main cultures|Colombia}}. Some of the most notable examples are {{wp|Quimbaya artifacts}} and {{wp|tunjo}}s. These artifacts were commonly utilized as offerings in religious or funerary rituals, which may have inspired Gholdengo&#039;s {{t|Ghost}} type.&lt;br /&gt;
&lt;br /&gt;
Additionally, Gholdengo may draw inspiration from {{wp|El Dorado}}, a legend described by Spanish {{wp|conquistador}}s about a lost city of gold, originally a king whose body was covered in gold. The legend is believed to have stemmed from a ceremony done by the {{wp|Muisca}} people, in which their ruler was initiated by having him covered in gold dust and floated into a lake on a {{wp|Muisca raft|raft}} to make offerings — the raft is likely referenced by Gholdengo&#039;s surfboard-like platform.&lt;br /&gt;
&lt;br /&gt;
The association of a ghost with coins may draw inspiration from {{wp|Charon&#039;s obol}}, where the deceased are buried with coins as a preparation for the afterlife. The coins were frequently placed in the mouth or on the eyes. Additionally, the {{wp|Bush Barrow}} gold lozenge is a {{wp|Bronze Age}}, solid gold belt buckle buried alongside a ruler originally from West Europe, and could be why Gholdengo is wearing its chest strap as a belt. Tangentially, the chest attached to the belt gives the impression of a tool belt.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Gholdengo may be a combination of &#039;&#039;ghoul&#039;&#039; or &#039;&#039;ghost&#039;&#039;, &#039;&#039;golden&#039;&#039;, and possibly &#039;&#039;go&#039;&#039; (as in {{g|GO}}, the game {{p|Gimmighoul}} debuted in). It may also come from &#039;&#039;tengo&#039;&#039; (Spanish for &amp;quot;I have&amp;quot;) or &#039;&#039;деньги&#039;&#039; &#039;&#039;den&#039;gi&#039;&#039; (Russian for money, itself from &#039;&#039;{{wp|denga}}&#039;&#039;, a historical unit worth 1/200th of a {{wp|Russian ruble}}).&lt;br /&gt;
&lt;br /&gt;
Surfugo may be a combination of &#039;&#039;surf&#039;&#039;, {{j|富豪}} &#039;&#039;fugō&#039;&#039; (wealthy person), &#039;&#039;gold&#039;&#039;, and possibly &#039;&#039;go&#039;&#039; (as in Pokémon GO).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Steel|type2=Ghost&lt;br /&gt;
|ja=サーフゴー &#039;&#039;Surfugo&#039;&#039;|jameaning=From &#039;&#039;surf&#039;&#039;, {{tt|富豪 &#039;&#039;fugō&#039;&#039;|wealthy person}}, &#039;&#039;gold&#039;&#039;, and &#039;&#039;{{g|GO}}&#039;&#039;&lt;br /&gt;
|fr=Gromago|frmeaning=From &#039;&#039;{{tt|gros|big}}&#039;&#039;, &#039;&#039;{{tt|magot|loot}}&#039;&#039;, and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|es=Gholdengo|esmeaning=Same as English name&lt;br /&gt;
|de=Monetigo|demeaning=From &#039;&#039;{{tt|Moneten|slang for &amp;amp;quot;money&amp;amp;quot;}}&#039;&#039;, &#039;&#039;{{tt|amigo|Spanish and Portuguese for friend}}&#039;&#039;, and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|it=Gholdengo|itmeaning=Same as English name&lt;br /&gt;
|ko=타부자고 &#039;&#039;Tabujago&#039;&#039;|komeaning=From {{tt|타보자고 &#039;&#039;Tabojago&#039;&#039;|Let&#039;s ride; Let&#039;s surf}}, {{tt|부자 (富者) &#039;&#039;buja&#039;&#039;|wealthy person}}, and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|zh_cmn=賽富豪 / 赛富豪 &#039;&#039;Sàifùháo&#039;&#039;|zh_cmnmeaning=From {{tt|賽 / 赛 &#039;&#039;sài&#039;&#039;|to compete}}, {{tt|曬富 / 晒富 &#039;&#039;shàifù&#039;&#039;|to show off wealth}}, and {{tt|富豪 &#039;&#039;fùháo&#039;&#039;|wealthy person}}&lt;br /&gt;
|zh_yue=賽富豪 &#039;&#039;Choifuhòuh&#039;&#039;|zh_yuemeaning=From {{tt|賽 &#039;&#039;choi&#039;&#039;|to compete}} and {{tt|富豪 &#039;&#039;fuhòuh&#039;&#039;|wealthy person}}&lt;br /&gt;
|hi=अमीरगो &#039;&#039;Ameergo&#039;&#039;|himeaning=From {{tt|अमीर &#039;&#039;amīr&#039;&#039;|rich}} and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|th=ซาร์ฟโก &#039;&#039;Sapko&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Gimmighoul Coin]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{PokémonPrevNext/Head|type=Steel|type2=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Steel|prevnum=0999|prev=Gimmighoul|nextnum=1001|next=Wo-Chien}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Monetigo]]&lt;br /&gt;
[[es:Gholdengo]]&lt;br /&gt;
[[fr:Gromago]]&lt;br /&gt;
[[it:Gholdengo]]&lt;br /&gt;
[[ja:サーフゴー]]&lt;br /&gt;
[[zh:赛富豪]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Gimmighoul_(Pok%C3%A9mon)&amp;diff=4321517</id>
		<title>Gimmighoul (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Gimmighoul_(Pok%C3%A9mon)&amp;diff=4321517"/>
		<updated>2025-06-19T21:31:37Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Gimmighoul}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Ghost|prevnum=0998|prev=Baxcalibur|nextnum=1000|next=Gholdengo|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Gimmighoul&lt;br /&gt;
|jname=コレクレー&lt;br /&gt;
|jtranslit=Korekurē&lt;br /&gt;
|tmname=Collecurei&lt;br /&gt;
|forme=2&lt;br /&gt;
|form1=Chest Form&lt;br /&gt;
|form2=Roaming Form&lt;br /&gt;
|image2=0999Gimmighoul-Roaming.png&lt;br /&gt;
|ndex=0999&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|category={{tt|Coin Chest|Chest Form}} Pokémon&amp;lt;br/&amp;gt;{{tt|Coin Hunter|Roaming Form}}&lt;br /&gt;
|height-ftin=1&#039;00&amp;quot;&lt;br /&gt;
|height-ftin2=0&#039;04&amp;quot;&lt;br /&gt;
|height-m=0.3&lt;br /&gt;
|height-m2=0.1&lt;br /&gt;
|weight-lbs=11.0&lt;br /&gt;
|weight-lbs2=0.2&lt;br /&gt;
|weight-kg=5.0&lt;br /&gt;
|weight-kg2=0.1&lt;br /&gt;
|abilityn=1&lt;br /&gt;
|ability1=Rattled&lt;br /&gt;
|ability2-1=Run Away&lt;br /&gt;
|abilityd=&lt;br /&gt;
|egggroupn=0&lt;br /&gt;
|egggroup1=No Eggs Discovered&lt;br /&gt;
|egggroup2=&lt;br /&gt;
|eggcycles=50&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evhp=0&lt;br /&gt;
|evat=0&lt;br /&gt;
|evde=0&lt;br /&gt;
|evsa=1&lt;br /&gt;
|evsd=0&lt;br /&gt;
|evsp=0&lt;br /&gt;
|expyield=60&lt;br /&gt;
|lv100exp=1250000&lt;br /&gt;
|gendercode=255&lt;br /&gt;
|color=Red&lt;br /&gt;
|formcolors=yes&lt;br /&gt;
|catchrate=45&lt;br /&gt;
|body=05&lt;br /&gt;
|formbody=yes&lt;br /&gt;
|pokefordex=gimmighoul&lt;br /&gt;
|generation=9&lt;br /&gt;
|friendship=50&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Gimmighoul&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;コレクレー&#039;&#039;&#039; &#039;&#039;Collecurei&#039;&#039;) is a {{type|Ghost}} {{OBP|Pokémon|species}} introduced in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] into {{p|Gholdengo}} when [[level]]ed up while the player has 999 [[Gimmighoul Coin]]s. After the Evolution, the Gimmighoul Coins disappear. Gimmighoul&#039;s Evolution cannot be canceled with the B button.&lt;br /&gt;
&lt;br /&gt;
Gimmighoul has two separate [[#Form data|forms]]: &#039;&#039;&#039;Chest Form&#039;&#039;&#039; and &#039;&#039;&#039;Roaming Form&#039;&#039;&#039;. Chest Form Gimmighoul only appears in {{g|Scarlet and Violet}}, in which it is the only form that can be natively {{pkmn|battle}}d and {{pkmn2|caught}}, while Roaming Form Gimmighoul will flee when interacted with, leaving behind Gimmighoul Coins. Roaming Form appears in {{g|GO}}, where it can be caught; it can then be [[transfer]]red to the core series games via the [[GO Transporter]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Gimmighoul is a small, blue-gray, metallic, bipedal Pokémon, with bands of two thin black stripes present around its torso and between its gold, circular eyes. It has a pair of thin black antennae and a tail, which are bent near the base and tipped with small gold circles.  &lt;br /&gt;
&lt;br /&gt;
Its antennae vibrate when detecting something it deems notable, and will point at objects of interest. When Gimmighoul gathers 999 [[Gimmighoul Coin]]s, it evolves into {{p|Gholdengo}}.&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
Gimmighoul has two separate forms: Chest Form and Roaming Form. The two Forms are virtually identical to each other, with the main differences being their habits and personalities.&lt;br /&gt;
&lt;br /&gt;
;Chest Form&lt;br /&gt;
[[File:Gimmighoul closed chest anime.png|200px|thumb|left|Chest Form Gimmighoul&#039;s closed chest]]&lt;br /&gt;
&lt;br /&gt;
Chest Form Gimmighoul hides inside a red chest, decorated with black and golden accents and a silver buckle with an ornate oval pattern, resembling the number 1,000 when viewed from the side. The chest it resides in is full of the [[Gimmighoul Coin|coins]] that it collects.&lt;br /&gt;
&lt;br /&gt;
Chest Form Gimmighoul was born inside a chest 1,500 years ago. [[Jacq]] is the one who discovered the Chest Form and coined its name. Its treasure chest provides defense but makes it hard for it to move due to the weight. Chest Form Gimmighoul are typically encountered in ancient [[Paldea]]n buildings, such as watchtowers and fort ruins, and even secluded islands. Its disguise and low movement speed cause it to be commonly mistaken for an antique and get left behind or taken away. When Chest Form Gimmighoul senses an approaching person or Pokémon, it uses ghost energy to control its target and force them to collect coins for its chest. It tends to hide in less frequented places such as warehouses and shop corners to ambush people and Pokémon while pretending to be an old treasure chest. Its control has notable persistence&amp;lt;ref name=&amp;quot;SVsite&amp;quot;&amp;gt;[https://scarletviolet.pokemon.com/en-us/pokemon/gimmighoul/ Gimmighoul — Pokémon Scarlet and Pokémon Violet | Official Website]&amp;lt;/ref&amp;gt;; one old tale tells of a Gimmighoul who manipulated a young girl to gather 999 coins to fill its chest&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot; /&amp;gt;. It is also known to drain the life out of anyone who attempts to steal its coins. &lt;br /&gt;
&lt;br /&gt;
;Roaming Form&lt;br /&gt;
Roaming Form Gimmighoul, unlike its counterpart, doesn&#039;t hide in a chest and instead carries an [[Gimmighoul Coin|ancient coin]] on its back, being held by its tail. Without its chest, it is among the [[List of Pokémon by height|smallest]] and [[List of Pokémon by weight|lightest]] of all Pokémon.&lt;br /&gt;
&lt;br /&gt;
Roaming Form Gimmighoul was born from passion that seeped into a coin. [[Professor Willow]] is the one who discovered the Roaming Form and coined its name. Roaming Form Gimmighoul can be spotted in hiding places across Paldea, such as by signs, rocks, and bridges, as well as ancient ruins. It is extremely timid, running away and dropping its coin as soon as anyone approaches.&amp;lt;ref name=&amp;quot;SVsite&amp;quot; /&amp;gt; It does not manipulate people and Pokémon to give it coins like its Chest Form counterpart; instead, it is able to gather coins by itself.&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot; /&amp;gt; Despite being found in [[Paldea]], no one has ever been able to capture this form of Gimmighoul. It constantly wanders, believed to be searching for the chest it used to live in. For sustenance, it drains the life force of humans who try to steal its coin. This form of Gimmighoul has also been seen appearing where Professor Willow lives in, where it tags along near Trainers who pick up Gimmighoul Coins.&amp;lt;ref name=&amp;quot;SVsite&amp;quot; /&amp;gt; Gimmighoul has also been observed being lured over through the [[Coin Bag]] and [[Golden Lure Module]]s.&amp;lt;ref&amp;gt;https://scarletviolet.pokemon.com/en-us/news/pokemon_go_gimmighoul/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: #{{ghost color}}; {{roundy|10px}} border: 3px solid #{{ghost color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Chest Form&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{ghost color dark}}; background: #{{ghost color light}}; width:96px; height:96px&amp;quot; |[[File:0999Gimmighoul.png|100px]]&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: #{{ghost color}}; {{roundy|10px}} border: 3px solid #{{ghost color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Roaming Form&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{ghost color dark}}; background: #{{ghost color light}}; width:96px; height:96px&amp;quot; |[[File:0999Gimmighoul-Roaming.png|100px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Gimmighoul evolves into {{p|Gholdengo}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; flex-wrap: wrap; justify-content: space-evenly&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;max-width:100%; text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1=&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data ==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Ghost}}&lt;br /&gt;
{{Dex/NA|gen=IX}}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=391|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Form|Chest Form}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It lives inside an old treasure chest. Sometimes it gets left in shop corners since no one realizes it’s actually a Pokémon.}}&lt;br /&gt;
{{Dex/Form|Roaming Form}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=This Pokémon was born from passion that seeped into a coin. It wanders, apparently seeking to return to the treasure chest it once inhabited.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It wanders around, carrying an old coin on its back. It survives by draining the life-force from humans who try to pick up its coin.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{ghost color dark}}; background:#{{ghost color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{ghost color light}}; background:#{{ghost color light}} &amp;quot; |[[File:Pokédex Image Gimmighoul SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
|Gimmighoul in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Game locations===&lt;br /&gt;
{{Availability/Header|type=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|1|area=&lt;br /&gt;
&#039;&#039;&#039;Chest Form&#039;&#039;&#039;&lt;br /&gt;
* South Province:&lt;br /&gt;
** [[South Province (Area One)|Area One]]: On cliff north of [[Poco Path]] Lighthouse&lt;br /&gt;
** [[South Province (Area Two)|Area Two]], [[South Province (Area Three)|Area Three]], [[South Province (Area Four)|Area Four]], [[South Province (Area Five)|Area Five]], [[South Province (Area Six)|Area Six]]: on Watchtowers &amp;amp; Leaking Tower of Paldea&lt;br /&gt;
* East Province:&lt;br /&gt;
** [[East Province (Area One)|Area One]]: on Watchtower, and on plateau west of [[East Province (Area Two)|Area Two]]&#039;s southwestern Pokémon Center&lt;br /&gt;
** [[East Province (Area Three)|Area Three]]: on Watchtower&lt;br /&gt;
* West Province:&lt;br /&gt;
** [[West Province (Area One)|Area One]]: on Watchtower&lt;br /&gt;
** [[West Province (Area Two)|Area Two]]: inside [[Colonnade Hollow]]&lt;br /&gt;
** [[West Paldean Sea]]: on nearest island southwest of [[Porto Marinada]]&lt;br /&gt;
** [[Asado Desert]]: on Watchtower, on rock formation south of Watchtower, and in Ruins north of Watchtower&lt;br /&gt;
* North Province:&lt;br /&gt;
** [[North Province (Area One)|Area One]]: on Watchtower, and in Ruins southwest of lake&lt;br /&gt;
** [[North Province (Area Two)|Area Two]]: in center of shallow pond west of [[Firescourge Shrine]]&lt;br /&gt;
** [[Casseroya Lake]]: on Watchtowers #1, #2, and #3, in Ruins between Watchtowers #1 &amp;amp; #2, and on northwest side of central rock formation in [[Socarrat Trail]]&lt;br /&gt;
** [[Glaseado Mountain]]: on Watchtower, near top of waterfall west of [[Montenevera]], and in Ruins west of [[Dalizapa Passage]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Roaming Form&#039;&#039;&#039;&lt;br /&gt;
* [[Transfer]] from [[Pokémon GO]] via [[Pokémon HOME]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=GO|t=fff|area=[[Coin Bag]], [[PokéStop]] with a placed [[Golden Lure Module]] &amp;lt;small&amp;gt;(&#039;&#039;&#039;Roaming Form&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Variety [[sync pair scout]]: {{sync|Rachel|Gimmighoul}} &amp;lt;small&amp;gt;(&#039;&#039;&#039;Roaming Form&#039;&#039;&#039;)&amp;lt;/small&amp;gt;, {{sync|Sawyer|Gimmighoul}} &amp;lt;small&amp;gt;(&#039;&#039;&#039;Chest Form&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|Language/Region|type=Ghost}}&lt;br /&gt;
{{eventAvail|{{gameabbrev9|SV}}|Paldea&#039;s Gimmighoul|All|Online|20|December 13, 2023 to November 30, 2024|link=List of event Pokémon distributions in Pokémon Scarlet and Violet#Paldea&#039;s Gimmighoul}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====[[Poké Portal News]]=====&lt;br /&gt;
{{eventAvail/h|Tera Type|type=Ghost|lochide=yes}}&lt;br /&gt;
{{eventAvail|{{gameabbrev9|SV}}|Chest Form Gimmighoul Spotlight|Varies|hide|12, 20, 35, 45, 75|June 21 to July 2, 2023&amp;lt;br&amp;gt;August 9 to 22, 2024&amp;lt;br&amp;gt;April 30 to May 8, 2025|link=Poké Portal News/2023#June 21 to July 2, 2023}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
=====Chest Form=====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Ghost&lt;br /&gt;
|HP=45&lt;br /&gt;
|Attack=30&lt;br /&gt;
|Defense=70&lt;br /&gt;
|SpAtk=75&lt;br /&gt;
|SpDef=70&lt;br /&gt;
|Speed=10&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=====Roaming Form=====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Ghost&lt;br /&gt;
|HP=45&lt;br /&gt;
|Attack=30&lt;br /&gt;
|Defense=25&lt;br /&gt;
|SpAtk=75&lt;br /&gt;
|SpDef=45&lt;br /&gt;
|Speed=80&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|Normal=0&lt;br /&gt;
|Fighting=0&lt;br /&gt;
|Flying=100&lt;br /&gt;
|Poison=50&lt;br /&gt;
|Ground=100&lt;br /&gt;
|Rock=100&lt;br /&gt;
|Bug=50&lt;br /&gt;
|Ghost=200&lt;br /&gt;
|Steel=100&lt;br /&gt;
|Fire=100&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=100&lt;br /&gt;
|Ice=100&lt;br /&gt;
|Dragon=100&lt;br /&gt;
|Dark=200&lt;br /&gt;
|Fairy=100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|ghost=yes&lt;br /&gt;
|newnormal=1&lt;br /&gt;
|newfighting=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
{{learnlist/level9|1|Astonish|Ghost|Physical|30|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Tackle|Normal|Physical|40|100|35}}&lt;br /&gt;
{{learnlist/levelf/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM017|Confuse Ray|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM029|Hex|Ghost|Special|65|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM042|Night Shade|Ghost|Special|—|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM074|Reflect|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM075|Light Screen|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM101|Power Gem|Rock|Special|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM140|Nasty Plot|Dark|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tmf/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
{{learnlist/breed9null}}&lt;br /&gt;
{{learnlist/breedf/9|Gimmighoul|Ghost|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
====Roaming Form====&lt;br /&gt;
{{Spindata/Head|type=Ghost}}&lt;br /&gt;
{{Spindata/GO&lt;br /&gt;
| col = 6&lt;br /&gt;
| type = Ghost&lt;br /&gt;
| ndex = 0999&lt;br /&gt;
| hatch = N/A&lt;br /&gt;
| buddy = 5&lt;br /&gt;
| candy = Gimmighoul&lt;br /&gt;
| evolution = {{bag/GO|Gimmighoul Coin}}999&lt;br /&gt;
| stamina = 128&lt;br /&gt;
| attack = 140&lt;br /&gt;
| defense = 76&lt;br /&gt;
| fast = {{m|Astonish}}&lt;br /&gt;
| special = {{m|Shadow Ball}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Chest Form ====&lt;br /&gt;
{{Spindata/Head|type=Ghost}}&lt;br /&gt;
{{Spindata/GO&lt;br /&gt;
| col = 6&lt;br /&gt;
| type = Ghost&lt;br /&gt;
| ndex = 0999C&lt;br /&gt;
| hatch = N/A&lt;br /&gt;
| buddy = 5&lt;br /&gt;
| candy = Gimmighoul&lt;br /&gt;
| evolution = {{bag/GO|Gimmighoul Coin}}999&lt;br /&gt;
| stamina = 128&lt;br /&gt;
| attack = 121&lt;br /&gt;
| defense = 122&lt;br /&gt;
| fast = {{m|Astonish}}&lt;br /&gt;
| special = {{m|Shadow Ball}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Form data===&lt;br /&gt;
Gimmighoul has two non-interchangeable forms: Chest Form and Roaming Form. Both can be found in [[Paldea]]&#039;s overworld, but only Chest Form can be {{pkmn|battle}}d and [[catching|caught]], while Roaming Form will flee upon being interacted with, leaving behind Gimmighoul Coins, which are necessary for Gimmighoul to evolve. Roaming Form can only be obtained by [[transfer]]ring it from {{g|GO}} via the [[GO Transporter]].&lt;br /&gt;
&lt;br /&gt;
The forms differ in their {{Abilities}}, with Chest Form having {{a|Rattled}} and Roaming Form having {{a|Run Away}}, as well as their [[base stats]], with Chest Form having higher {{stat|Defense}} and {{stat|Special Defense}} but lower {{stat|Speed}} compared to Roaming Form.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|- style=&amp;quot;vertical-align:bottom&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{{Compare|name=Gimmighoul|forme=Chest Form|how={{color2|000|Pokémon Scarlet and Violet|Scarlet and Violet}}|image=999Gimmighoul|type=Ghost|ndex=999|ab=Rattled|HP=45|Attack=30|Defense=70|SpAtk=75|SpDef=70|Speed=10}} &lt;br /&gt;
|&lt;br /&gt;
{{Compare|name=Gimmighoul|forme=Roaming Form|how={{color2|000|Pokémon GO|GO}}|image=999Gimmighoul-Roaming|type=Ghost|ndex=999|ab=Run Away|HP=45|Attack=30|Defense=25|SpAtk=75|SpDef=45|Speed=80}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1={{Bag/s|Rare Candy|SV}} + [[File:GO Gimmighoul Coin Small.png|link=Gimmighoul Coin|40px]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}} &amp;lt;br&amp;gt;with 999 {{color2|000|Gimmighoul Coin|Gimmighoul Coins}}&amp;lt;br&amp;gt;in the {{color2|000|Bag}}&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=ghost}}&lt;br /&gt;
{{Spritebox/NA|gen=IX}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9/2Forms|ndex=0999|form1=R}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME/2Forms|ndex=0999|form1=R}}&lt;br /&gt;
{{Spritebox/Footer|999|Gimmighoul}}&lt;br /&gt;
==In animation==&lt;br /&gt;
===Main series===&lt;br /&gt;
[[File:Gimmighoul Chest Form anime.png|thumb|left|250px|Chest Form Gimmighoul in {{aniseries|HZ}}]]&lt;br /&gt;
[[File:Gimmighoul Roaming Form anime.png|thumb|250px|Roaming Form Gimmighoul in {{aniseries|HZ}}]]&lt;br /&gt;
====Major appearances====&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
{{form|Gimmighoul|Roaming Form}} Gimmighoul made its animated series debut in a bonus scene that aired with [[HZ042]], under the ownership of [[Professor Willow]]. This bonus scene was not dubbed into English.&lt;br /&gt;
&lt;br /&gt;
Two Gimmighoul appeared in &#039;&#039;[[HZ057|The Terapagos I Don&#039;t Know]]&#039;&#039;, with one appearing its Roaming Form and the other one appearing in its {{form|Gimmighoul|Chest Form}}, thus marking the debut of the latter form.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Paldea}}&lt;br /&gt;
{{Animedexbody|HZ057|Gimmighoul|Roy&#039;s Rotom Phone|Gimmighoul, Roaming Form. The Coin Hunter Pokémon. A {{t|Ghost}} type. This Pokémon emerged from passion that seeped into a coin. It carries an old coin on its back.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Paldea}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon: Paldean Winds===&lt;br /&gt;
[[File:Roaming Form Gimmighoul Paldean Winds.png|thumb|250px|Roaming Form Gimmighoul in [[Pokémon: Paldean Winds]]]]&lt;br /&gt;
A {{pkmn2|wild}} Roaming Form Gimmighoul appeared in &#039;&#039;[[PPW01|Breathe Out]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Three Gimmighoul appeared in &#039;&#039;[[PPW04|Breathe Together]]&#039;&#039;, during [[Ohara]], [[Aliquis]], and [[Hohma]]&#039;s video presentation about [[Naranja Academy]]. Two of them were in their Roaming Form, and the last one was in its Chest Form.&lt;br /&gt;
&lt;br /&gt;
===POKÉTOON===&lt;br /&gt;
A Roaming Form Gimmighoul appeared in [[PT16]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Gimmighoul Roaming Form Adventures.png|thumb|left|200px|Roaming Form Gimmighoul in [[Pokémon Adventures]]]]&lt;br /&gt;
[[File:Gimmighoul Chest Form Adventures.png|thumb|200px|Chest Form Gimmighoul in Pokémon Adventures]]&lt;br /&gt;
===Pokémon Adventures ===&lt;br /&gt;
A Roaming Form Gimmighoul debuted in &#039;&#039;[[PASV05|Challenge! DJ Giacomo!!]]&#039;&#039;, when {{Scarlet}} used her {{p|Tarountula}} to grab its coin before it fled.&lt;br /&gt;
&lt;br /&gt;
A Chest Form Gimmighoul appeared in &#039;&#039;[[PASV06|Skillful! The Mysterious Treasure Hunter!!]]&#039;&#039;, where it was defeated by Scarlet&#039;s {{p|Sprigatito}} to retrieve its coins. Another appeared in [[PASV08]] and was defeated in a similar manner.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Gimmighoul (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia ==&lt;br /&gt;
* Gimmighoul&#039;s Chest Form was named by [[Jacq]], while its Roaming Form was named by [[Professor Willow]].&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot;&amp;gt;&amp;quot;[https://www.youtube.com/watch?v=-nzi0S3NGzg Where are these mysterious coins coming from? &amp;amp;#129300; | Pokémon Scarlet and Pokémon Violet].&amp;quot; [https://www.youtube.com/c/pokemon The Official Pokémon YouTube Channel]. &#039;&#039;YouTube&#039;&#039;.&amp;lt;/ref&amp;gt;&lt;br /&gt;
* Gimmighoul is the only Pokémon with multiple [[form]]s that have no bearing on the Pokémon/form of the Pokémon they evolve into.&lt;br /&gt;
* Gimmighoul is the only Pokémon whose [[Evolution]] requires [[TM Material]]s.&lt;br /&gt;
* Both forms of Gimmighoul are tied with Unovan {{p|Yamask}} and {{p|Litwick}} for having the lowest base {{stat|Attack}} stat of all {{type|Ghost}} Pokémon.&lt;br /&gt;
* Chest Form Gimmighoul has the lowest base {{stat|Speed}} stat of all Ghost-type Pokémon.&lt;br /&gt;
* Roaming Form Gimmighoul has the lowest base {{stat|Defense}} stat of all Ghost-type Pokémon.&lt;br /&gt;
* Roaming Form Gimmighoul is tied with {{p|Sinistea}} and {{p|Poltchageist}} as the [[List of Pokémon by height|shortest]] Ghost-type Pokémon, and tied with {{p|Gastly}} and {{p|Haunter}} as the [[List of Pokémon by weight|lightest]] Ghost-type Pokémon.&lt;br /&gt;
* Gimmighoul is the only Pokémon in {{g|GO}} that evolves without {{OBP|Candy|GO}}, even if it is not {{OBP|trade|GO}}d.&lt;br /&gt;
* Gimmighoul is heavily associated with the number 999: &lt;br /&gt;
** Its [[List of Pokémon by National Pokédex number|National Pokédex number]] is #0999.&lt;br /&gt;
** It evolves when leveled up while the player has 999 [[Gimmighoul Coin]]s.&lt;br /&gt;
** It was first teased through a website with a counter that periodically counted to 999.&lt;br /&gt;
** A promotional video about Gimmighoul tells the tale of a Gimmighoul who manipulated a young girl to fill its chest with 999 coins.&amp;lt;ref name=&amp;quot;GimmighoulYT&amp;quot; /&amp;gt;&lt;br /&gt;
* Due to its Ghost type, Roaming Form Gimmighoul&#039;s {{a|Run Away}} [[Ability]] is redundant unless its [[type change]]s, such as via {{Tera}}stallization or {{m|Soak}}.&lt;br /&gt;
* Gimmighoul only learns 2 moves by level-up, the fewest of all Ghost-type Pokémon.&lt;br /&gt;
* It is not possible to [[Escape|flee]] from a Chest Form Gimmighoul; even if the player&#039;s Pokémon is a {{t|Ghost}} type or is faster. Attempting to flee via pressing the &amp;quot;Run&amp;quot; option or use a Pokémon with the {{a|Run Away}} Ability will give the &amp;quot;&#039;&#039;You can&#039;t escape!&#039;&#039;&amp;quot; message. Using the [[Poké Doll]] will give the same dialogue that a player would receive if they try to use certain [[Key Item]]s such as the [[Shiny Charm]]. Using the moves {{m|Whirlwind}} or {{m|Roar}} will fail.&lt;br /&gt;
&lt;br /&gt;
===Pre-release teasers===&lt;br /&gt;
Chest Form Gimmighoul was teased through a special website&amp;lt;ref name=&amp;quot;Chest&amp;quot;&amp;gt;[http://web.archive.org/web/0/https://chest.pokemon.com/ Earliest archive of https://chest.pokemon.com/]&amp;lt;/ref&amp;gt; that went live on November 5, 2022 at 13:00 UTC. It showcased Gimmighoul&#039;s chest and a counter, which periodically ticked upwards every few hours as it was slowly filled with coins. The counter eventually capped out at 999 on November 6, 2022 at 14:00 UTC, and the site became a redirect to a new page on the {{g|Scarlet and Violet}} website.&amp;lt;ref&amp;gt;&amp;quot;[https://scarletviolet.pokemon.com/en-us/chest-research/ Investigations into a Newly Discovered Pokémon Are Under Way!]&amp;quot; — Pokémon Scarlet and Pokémon Violet | Official Website&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Roaming Form Gimmighoul was also teased on November 5, 2022, appearing in Pokémon GO after the {{p|Dratini}} [[Community Day|Community Day Classic]] event ended. Golden [[PokéStop]]s were added to the game, and spinning one would cause a Roaming Form Gimmighoul to show up and follow the player for a short time, although it could not be properly encountered or caught.&lt;br /&gt;
&lt;br /&gt;
Prior to the release of its teasers, an obscured Roaming Form Gimmighoul could be seen very briefly in the English version of the &amp;quot;Jump into a Paldean Journey&amp;quot; trailer for {{g|Scarlet and Violet}}, posted on October 6, 2022.&amp;lt;ref&amp;gt;&amp;quot;[https://www.youtube.com/watch?v=4YEEDqke-D0&amp;amp;t=573s Jump into a Paldean Journey | Pokémon Scarlet and Pokémon Violet].&amp;quot; [https://www.youtube.com/c/pokemon The Official Pokémon YouTube Channel]. &#039;&#039;YouTube&#039;&#039;.&amp;lt;/ref&amp;gt; It does not appear in the Japanese version of this trailer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:GimmighoulRevealChestSideEmpty.png|border|200px]]&lt;br /&gt;
[[File:GimmighoulRevealChestSideFull.png|border|200px]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;Two of the stages of Gimmighoul&#039;s Chest Form shown during the initial website teaser.&amp;lt;ref name=&amp;quot;GimmighoulReveal&amp;quot;&amp;gt;[https://web.archive.org/web/20221106003324/http://chest.pokemon.com/ Archive of https://chest.pokemon.com/]&amp;lt;/ref&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
As indicated by its English name, Gimmighoul may be based on the {{wp|ghoul}}, a mythical creature from Arabic folklore known for luring people into deserted places before preying on them, and stealing coins. The word &#039;&#039;ghoul&#039;&#039; (Arabic: غُول &#039;&#039;ghūl&#039;&#039;) stems from the Arabic word غَالَ &#039;&#039;ghāla&#039;&#039;, meaning &amp;quot;to seize&amp;quot;. Gimmighoul&#039;s antennae and tail resemble {{wp|dowsing|dowsing rods}}, which are believed to be able to help people locate buried treasures. The association of a ghost with coins, as well as its eyes resembling coins, may also draw inspiration from {{wp|Charon&#039;s obol}}, where the deceased are buried with coins as a preparation for the afterlife. The coins were frequently placed in the mouth or on the eyes.&lt;br /&gt;
&lt;br /&gt;
Gimmighoul&#039;s Chest Form may be based on the {{wp|Mimic (Dungeons &amp;amp; Dragons)|mimic}}, a monster archetype commonly found in RPGs, known for disguising itself as treasure chests. Its Roaming Form may be based on the Catalan folktale of {{wp|Patufet}}, a tiny child who carries a coin. It may also be based on the {{wp|toyol}} (also known as &#039;&#039;tuyul&#039;&#039;), an infant-like spirit from Indonesian and Malay folklore invoked to steal riches from people. Alternatively, its tiny size may stem from the thousands of tiny gold studs embedded into two {{wp|Bronze Age}} bronze daggers recovered from a grave in {{wp|Bush Barrow}}, each just a millimetre in length and a fifth of a millimetre in width. Gimmighoul&#039;s association with the number 999 may be a reference to {{wp|Fineness#Gold|999 fine gold}}, equivalent to 24 karat gold.&lt;br /&gt;
&lt;br /&gt;
Considering its Evolution, Gimmighoul&#039;s design may also draw inspiration from {{wp|El Dorado}}, a legend now believed to originate in Spanish conception of {{wp|Muisca}} rituals performed in pre-colonial {{wp|Colombia}}. Its laminated body shape resembles {{wp|tunjo}}s, Muisca figurines made of molded gold in the shape of divine humans or animals. Its Ghost type could be based on the fact that tunjos are commonly found in burial places and places of worship.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Gimmighoul may be a combination of &#039;&#039;gimme&#039;&#039; (informal pronunciation of &amp;quot;give me&amp;quot;), &#039;&#039;gimmick&#039;&#039;, &#039;&#039;mimic&#039;&#039;, and &#039;&#039;ghoul&#039;&#039;. Altogether, it sounds like the phrase &amp;quot;Give me gold.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Collecurei may be a combination of &#039;&#039;collect&#039;&#039;, 霊 &#039;&#039;rei&#039;&#039; (spirit), and a pun on the phrase これくれ &#039;&#039;kore kure&#039;&#039; (&amp;quot;Give me this&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Ghost|type2=Ghost&lt;br /&gt;
|ja=コレクレー &#039;&#039;Collecurei&#039;&#039;|jameaning=From &#039;&#039;collect&#039;&#039;, {{tt|霊 &#039;&#039;rei&#039;&#039;|spirit}}, and {{tt|これくれ &#039;&#039;kore kure&#039;&#039;|Give me this}}&lt;br /&gt;
|fr=Mordudor|frmeaning=From &#039;&#039;{{tt|mort|death}}&#039;&#039; and &#039;&#039;{{tt|mordu d&#039;or|gold-crazed}}&#039;&#039;&lt;br /&gt;
|es=Gimmighoul|esmeaning=Same as English name&lt;br /&gt;
|de=Gierspenst|demeaning=From &#039;&#039;{{tt|Gier|greed}}&#039;&#039; and &#039;&#039;{{tt|Gespenst|ghost}}&#039;&#039;&lt;br /&gt;
|it=Gimmighoul|itmeaning=Same as English name&lt;br /&gt;
|ko=모으령 &#039;&#039;Moeuryeong&#039;&#039;|komeaning=From {{tt|모으다 &#039;&#039;moeuda&#039;&#039;|to collect}} and {{tt|령 (靈) &#039;&#039;ryeong&#039;&#039;|spirit}}&lt;br /&gt;
|zh_cmn=索財靈 / 索财灵 &#039;&#039;Suǒcáilíng&#039;&#039;|zh_cmnmeaning=From {{tt|索 &#039;&#039;suǒ&#039;&#039;|to search}}, {{tt|財 / 财 &#039;&#039;cái&#039;&#039;|wealth}}, and {{tt|靈 / 灵 &#039;&#039;líng&#039;&#039;|spirit}}&lt;br /&gt;
|zh_yue=索財靈 &#039;&#039;Sokchòihlìhng&#039;&#039;|zh_yuemeaning=From {{tt|索 &#039;&#039;sok&#039;&#039;|to search}}, {{tt|財 &#039;&#039;chòih&#039;&#039;|wealth}}, and {{tt|靈 &#039;&#039;lìhng&#039;&#039;|spirit}}&lt;br /&gt;
|hi=येबिलेरू &#039;&#039;Yebileroo&#039;&#039;|himeaning=From a pun on {{tt|ये भी ले रहा हु &#039;&#039;yeḥ bhī le rahā hu&#039;&#039;|[I&#039;m] taking this too}}&lt;br /&gt;
|ru=Гиммигул &#039;&#039;Gimmigul&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=คอลเลคเรย์ &#039;&#039;Khonlekre&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:inline-block&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Chest Form&#039;&#039;&lt;br /&gt;
{{langtable|color={{ghost color}}|bordercolor={{ghost color dark}}&lt;br /&gt;
|ja=はこフォルム &#039;&#039;Chest Forme&#039;&#039;&lt;br /&gt;
|zh_yue=寶箱形態 &#039;&#039;{{tt|Bóusēung Yìhngtaai|Treasure Chest Form}}&#039;&#039;&lt;br /&gt;
|zh_cmn=寶箱形態 / 宝箱形态 &#039;&#039;{{tt|Bǎoxiāng Xíngtài|Treasure Chest Form}}&#039;&#039;&lt;br /&gt;
|fr=Forme Coffre&lt;br /&gt;
|de=Truhenform&lt;br /&gt;
|id=Bentuk Kotak&lt;br /&gt;
|it=Forma Scrigno&lt;br /&gt;
|ko=상자폼 &#039;&#039;{{tt|Sangja Form|Chest Form}}&#039;&#039;&lt;br /&gt;
|pt_br=Forma Baú&lt;br /&gt;
|es=Forma Cofre&lt;br /&gt;
|th=ฟอร์มกล่อง &#039;&#039;Form Klong&#039;&#039;&lt;br /&gt;
|tr=Sandık Formu&lt;br /&gt;
}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:inline-block&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;Roaming Form&#039;&#039;&lt;br /&gt;
{{langtable|color={{ghost color}}|bordercolor={{ghost color dark}}&lt;br /&gt;
|ja=とほフォルム &#039;&#039;Roaming Forme&#039;&#039;&lt;br /&gt;
|zh_yue=徒步形態 &#039;&#039;{{tt|Tòuhbouh Yìhngtaai|Roaming Form}}&#039;&#039;&lt;br /&gt;
|zh_cmn=徒步形態 / 徒步形态 &#039;&#039;{{tt|Túbù Xíngtài|Roaming Form}}&#039;&#039;&lt;br /&gt;
|fr=Forme Marche&lt;br /&gt;
|de=Wanderform&lt;br /&gt;
|id=Bentuk Jalan Kaki&lt;br /&gt;
|it=Forma Ambulante&lt;br /&gt;
|ko=도보폼 &#039;&#039;{{tt|Dobo Form|Roaming Form}}&#039;&#039;&lt;br /&gt;
|pt_br=Forma Perambulante&lt;br /&gt;
|pl=Forma Wędrowna&lt;br /&gt;
|es=Forma Andante&lt;br /&gt;
|th=ฟอร์มเดินเท้า &#039;&#039;Form Doenthao&#039;&#039;&lt;br /&gt;
|tr=Gezici Formu&lt;br /&gt;
}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
*[[List of Pokémon with form differences]]&lt;br /&gt;
*[[Gimmighoul Coin]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{PokémonPrevNext/Head|type=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Ghost|prevnum=0998|prev=Baxcalibur|nextnum=1000|next=Gholdengo}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon that evolve through a unique method]]&lt;br /&gt;
[[Category:Blue-colored Pokémon]]&amp;lt;!--Roaming Form--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[de:Gierspenst]]&lt;br /&gt;
[[es:Gimmighoul]]&lt;br /&gt;
[[fr:Mordudor]]&lt;br /&gt;
[[it:Gimmighoul]]&lt;br /&gt;
[[ja:コレクレー]]&lt;br /&gt;
[[zh:索財靈]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Dunsparce_(Pok%C3%A9mon)&amp;diff=4315120</id>
		<title>Dunsparce (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Dunsparce_(Pok%C3%A9mon)&amp;diff=4315120"/>
		<updated>2025-06-02T19:44:40Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Name origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Dunsparce}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0205|prev=Forretress|nextnum=0207|next=Gligar|round=none}}&lt;br /&gt;
{{PokémonPrevNext/Disambig|species=Dunsparce}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Dunsparce&lt;br /&gt;
|jname=ノコッチ&lt;br /&gt;
|jtranslit=Nokotchi&lt;br /&gt;
|tmname=Nokocchi&lt;br /&gt;
|ndex=0206&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|category=Land Snake&lt;br /&gt;
|height-ftin=4&#039;11&amp;quot;&lt;br /&gt;
|height-m=1.5&lt;br /&gt;
|weight-lbs=30.9&lt;br /&gt;
|weight-kg=14.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Serene Grace&lt;br /&gt;
|ability2=Run Away&lt;br /&gt;
|abilityd=Rattled&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|eggcycles=20&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evhp=1&lt;br /&gt;
|expyield=145&lt;br /&gt;
|g4exp=125&lt;br /&gt;
|oldexp=75&lt;br /&gt;
|lv100exp=1,000,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Yellow&lt;br /&gt;
|catchrate=190&lt;br /&gt;
|body=02&lt;br /&gt;
|pokefordex=dunsparce&lt;br /&gt;
|generation=2&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Dunsparce&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ノコッチ&#039;&#039;&#039; &#039;&#039;Nokocchi&#039;&#039;) is a {{type|Normal}} {{OBP|Pokémon|species}} introduced in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] into {{p|Dudunsparce}} when [[level]]ed up while knowing {{m|Hyper Drill}}.&lt;br /&gt;
&lt;br /&gt;
Dunsparce will evolve into one of two {{fd|Dudunsparce|forms}} of Dudunsparce, &#039;&#039;&#039;Two-Segment Form&#039;&#039;&#039; or &#039;&#039;&#039;Three-Segment Form&#039;&#039;&#039;, with a 1/100 chance of evolving into Three-Segment Form Dudunsparce.&lt;br /&gt;
&lt;br /&gt;
(Refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]] for more details.)&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Dunsparce is a {{wp|snake|serpentine}}, and somewhat {{wp|insect|insectoid}}, {{OBP|Pokémon|species}} with a primarily yellow body, blue underside, and blue-and-cream-striped back. Its head is round with a wide mouth extending under its jowls and curving up toward the middle of its face. Its chin is blue with two rounded prongs. Its eyes—round and rimmed with blue—are kept closed, revealing its cream-colored eyelids. On Dunsparce&#039;s upper back are two tiny white wings. Its body ends in a drill-like tail.&lt;br /&gt;
&lt;br /&gt;
Dunsparce can float slightly with its wings, which some scientists believe were used to fly in the sky during ancient times. However, it avoids detection and flees when spotted by burrowing into the ground with its tail. It lives immobile in {{DL|List of Pokémon by habitat|Cave Pokémon|caves}} and beneath the earth, where it makes maze-like nests. They get along with {{p|Diglett}} and share tunnels with each other. Dunsparce can navigate through its nests without getting lost by the smell of the dirt.&lt;br /&gt;
&lt;br /&gt;
Dunsparce and its evolved form, {{p|Dudunsparce}}, are the [[signature move|only known Pokémon]] capable of learning the move {{m|Hyper Drill}}.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Dunsparce evolves into {{p|Dudunsparce}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox/1branch2&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|no1=0206&lt;br /&gt;
|name1=Dunsparce&lt;br /&gt;
|type1-1=Normal&lt;br /&gt;
|evo1a=&lt;br /&gt;
|no2a=0982&lt;br /&gt;
|name2a=Dudunsparce&lt;br /&gt;
|form2a=Two-Segment&lt;br /&gt;
|type1-2a=Normal&lt;br /&gt;
|evo1b=&lt;br /&gt;
|no2b=0982&lt;br /&gt;
|art2b=0982Dudunsparce-Three&lt;br /&gt;
|name2b=Dudunsparce&lt;br /&gt;
|form2b=Three-Segment&lt;br /&gt;
|type1-2b=Normal}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Gates to Infinity]]: {{mdc|Dunsparce|gti}} is a supporting character throughout the game.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Normal}}&lt;br /&gt;
{{Dex/NA|gen=II}}&lt;br /&gt;
{{Dex/Gen/1|gen=II|reg1=Johto|num1=052}}&lt;br /&gt;
{{Dex/Entry1|v=Gold|entry=When spotted, this {{ScPkmn}} escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=Silver|entry=If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings.}}&lt;br /&gt;
{{Dex/Entry1|v=Crystal|entry=It hides deep inside caves where no light ever reaches it and remains virtually motionless there.}}&lt;br /&gt;
{{Dex/Entry1|v=Stadium 2|t=FFF|color=000|entry=When spotted, this {{ScPkmn}} escapes backward by furiously boring into the ground with its tail. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Red, Silver, or Crystal inserted)&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Blue, Gold, or Yellow inserted)&#039;&#039;&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry2|v=Ruby|v2=Sapphire|t=FFF|t2=FFF|entry=&amp;lt;sc&amp;gt;Dunsparce&amp;lt;/sc&amp;gt; has a drill for its tail. It uses this tail to burrow into the ground backwards. This {{ScPkmn}} is known to make its nest in complex shapes deep under the ground.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=Its drill-tipped tail is used to burrow into the ground backwards. This {{ScPkmn}} is known to make its nest in complex shapes deep under the ground.}}&lt;br /&gt;
{{Dex/Entry1|v=FireRed|entry=If spotted, it escapes by burrowing with its tail. It can hover just slightly using its wings.}}&lt;br /&gt;
{{Dex/Entry1|v=LeafGreen|entry=When spotted, this {{ScPkmn}} escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto|num2=052}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
{{Dex/Entry1|v=HeartGold|entry=When spotted, this Pokémon escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=SoulSilver|entry=If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova|num1=035|label1={{gameIcon|B2}}{{gameIcon|W2}}:}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=It creates mazes in dark locations. When spotted, it flees into the ground by digging with its tail.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=040|label1=Central|reg2=Hoenn}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=When spotted, this Pokémon escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
{{Dex/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|entry=Dunsparce has a drill for its tail. It uses this tail to burrow into the ground backward. This Pokémon is known to make its nest in complex shapes deep under the ground.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VII|reg1=Alola|num1=063|label1={{gameIcon|US}}{{gameIcon|UM}}:|reg2=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sun and Moon|Sun, Moon]], [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=It travels by digging through the ground. Diglett and Dunsparce share one another&#039;s tunnels happily.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=When it sees a person, it digs a hole with its tail to make its escape. If you happen to find one, consider yourself lucky.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|num1=052|label1=Isle of Armor|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sword|t=FFF|entry=This Pokémon&#039;s tiny wings have some scientists saying that Dunsparce used to fly through the sky in ancient times.}}&lt;br /&gt;
{{Dex/Entry1|v=Shield|t=FFF|entry=The nests Dunsparce live in are mazes of tunnels. They never get lost in their own nests—they can tell where they are by the scent of the dirt.}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=188|reg2=Kitakami|num2=160|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=It creates mazes in dark locations. When spotted, it flees into the ground by digging with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{normal color dark}}; background:#{{normal color}}; font-size:80%; {{roundy|10px}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}};&amp;quot; | [[File:Pokédex Image Dunsparce USUM.png|x200px]]&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{normal color dark}}; background:#{{normal color light}}; {{roundy|5px}};&amp;quot; | [[File:Pokédex Image Dunsparce SV.png|x200px]]&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{normal color dark}}; background:#{{normal color light}}; {{roundy|5px}};&amp;quot; | [[File:Pokédex Image Dunsparce SV Kitakami.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Dunsparce in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&amp;lt;span class=&amp;quot;whitelinks&amp;quot;&amp;gt;{{sup/7|USUM}}&amp;lt;/span&amp;gt;&lt;br /&gt;
| Dunsparce in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
| Dunsparce in the {{color2|000|List of Pokémon by Kitakami Pokédex number|Kitakami Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/Entry2|v=Gold|v2=Silver|area=[[Dark Cave]]{{tt|*|Violet City side}}}}&lt;br /&gt;
{{Availability/Entry1|v=Crystal|area=[[Dark Cave]]{{tt|*|Violet City side}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2/None|v=Ruby|v2=Sapphire}}&lt;br /&gt;
{{Availability/Entry1/None|v=Emerald}}&lt;br /&gt;
{{Availability/Entry2|v=FireRed|v2=LeafGreen|area=[[Three Isle Port]]}}&lt;br /&gt;
{{Availability/Entry1|v=Colosseum|area=[[Pyrite Cave]] {{color2|{{shadow color}}|Shadow Pokémon|(Shadow)}}}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area={{rt|208|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|208|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area=[[Dark Cave]]}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color=71AD64|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Forest}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2|v=Black|v2=White|t=fff|area={{rt|12|Unova}}}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Route]]s {{rtn|1|Unova}}, {{rtn|2|Unova}}, {{rtn|6|Unova}}, {{rtn|12|Unova}}, {{rtn|18|Unova}}, and {{rtn|20|Unova}}, [[Floccesy Ranch]], [[Dreamyard]], [[Village Bridge]], {{OBP|Victory Road|Black 2 and White 2}}, [[Nature Preserve]] ({{DL|Phenomenon|rustling grass}})&amp;lt;br&amp;gt;{{rt|6|Unova}}{{tt|*|Near Pokémon Breeder April}} and [[Floccesy Ranch]] ([[Hidden Grotto]])}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Icy Cave}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area=[[Route]]s {{rtn|3|Kalos}} and {{rtn|22|Kalos}}, [[Friend Safari]] ([[Friend Safari#Normal-type Safari|Normal]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Omega Ruby|v2=Alpha Sapphire|area=[[Trade]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sun|v2=Moon}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Alola Route 2|Route 2]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=[[Trade]]&amp;lt;sup&amp;gt;Version 1.2.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=Expansion Pass|color={{Isle of Armor color}}|t={{Crown Tundra color dark}}|link=Pokémon Sword and Shield Expansion Pass|area=[[Soothing Wetlands]]&amp;lt;br&amp;gt;[[Fields of Honor/Dens|Fields of Honor]] ([[Max Raid Battle]])&amp;lt;br&amp;gt;[[Max Lair]] ([[Dynamax Adventure]])}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area={{rt|208|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=South Province: [[South Province (Area One)|Area One]], [[South Province (Area Three)|Area Three]], [[South Province (Area Four)|Area Four]], [[South Province (Area Five)|Area Five]], [[South Province (Area Six)|Area Six]], [[Alfornada Cavern]]&amp;lt;br&amp;gt;East Province: [[East Province (Area One)|Area One]], [[East Province (Area Two)|Area Two]], [[East Province (Area Three)|Area Three]], [[Tagtree Thicket]]&amp;lt;br&amp;gt;West Province: [[West Province (Area Two)|Area Two]], [[West Province (Area Three)|Area Three]], [[Asado Desert]]&amp;lt;br&amp;gt;North Province: [[Dalizapa Passage]]&amp;lt;br&amp;gt;[[Area Zero]]&amp;lt;br&amp;gt;South Province: [[South Province (Area Three)|Area Three]] ({{t|Poison}} {{Tera}} [[Type]])&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 1★ Tera Raid Battles (Paldea)|Dunsparce|1★}}, {{DL|List of 3★ Tera Raid Battles (Paldea)|Dunsparce|3★}})}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero|color={{Teal Mask color light}}|t={{Indigo Disk color}}|link=The Hidden Treasure of Area Zero|area=[[Oni Mountain]], [[Crystal Pool]], [[Chilling Waterhead]], [[Timeless Woods]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/NA/Side|gen=II}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Channel|color={{water color}}|area=[[Mt. Snowfall]]}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 10]], Endless Level 11, Pair Trozei, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Great Canyon]] (1F-3F), [[Wish Cave]] (43F-44F), [[Joyous Tower]] (43F-44F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Foggy Forest]] (1F-5F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Foggy Forest]] (1F-5F)}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Stormy|link=Pokémon Mystery Dungeon (WiiWare)|color={{water color}}|area=}}--&amp;gt;&lt;br /&gt;
{{Availability/Entry1|v=Ranger: GS|link=Pokémon Ranger: Guardian Signs|color={{GS color}}|area=[[Rasp Cavern]], [[Ice Temple]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Cave: [[Rugged Flats]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD GTI|link=Pokémon Mystery Dungeon: Gates to Infinity|color={{silver color}}|area=[[Desolate Canyon]]{{tt|*|Automatically recruited upon completion}}, [[Moonlit Forest]] (Uncharted Road), [[Rusty Mountain]] (Uncharted Road, Gilded Hall), [[Jaws of the Abyss]] (Gilded Hall), [[Smoking Mountain]] (Gilded Hall)}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Vehicle Gallery#Slithering Trains|Vehicle Gallery: Slithering Trains]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Monday Stage 1|Safari Jungle: Stage 1]]{{dotw|Mo}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Diamond Crater#Rock Chasm|Diamond Crater: Rock Chasm]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;, [[Plasma Tundra#Sacred Blade Cliff|Plasma Tundra: Sacred Blade Cliff]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Aegislash Sea]], [[Charizard Sea]]&amp;lt;sup&amp;gt;2020&amp;lt;/sup&amp;gt;, [[Entei Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Great Canyon]] (1F-3F), [[Wish Cave]] (43F-44F), [[Joyous Tower]] (43F-44F), [[Marvelous Sea]] (14F-15F), [[Fantasy Strait]] (14F-15F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Mt. Thunder]]&amp;lt;br/&amp;gt;Mystery House: [[Uproar Forest]], [[Desert Region]], [[Southern Cavern]], [[Wyvern Hill]], [[Waterfall Pond]], [[Remains Island]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=Event: &#039;&#039;[[Daily Pokémon#The Daily Pokémon (#5)|The Daily Pokémon (#5)]]&#039;&#039;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Normal}}&lt;br /&gt;
{{eventAvail|{{gameabbrev2|GSC}}|Gotta Catch &#039;Em All Station! Horn Drill Dunsparce|English|United States|5|February 22 to March 14, 2002|link=List of PCNY event Pokémon distributions in Generation II#Horn Drill Dunsparce}}&lt;br /&gt;
{{eventAvail|{{gameabbrev2|GSC}}|Gotta Catch &#039;Em All Station! Fury Attack Dunsparce|English|United States|5|January 31 to February 6, 2003|link=List of PCNY event Pokémon distributions in Generation II#Fury Attack Dunsparce}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Normal&lt;br /&gt;
|HP=    100&lt;br /&gt;
|Attack= 70&lt;br /&gt;
|Defense=70&lt;br /&gt;
|SpAtk=  65&lt;br /&gt;
|SpDef=  65&lt;br /&gt;
|Speed=  45}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=3&lt;br /&gt;
|Power=3&lt;br /&gt;
|PowerMax=4&lt;br /&gt;
|Technique=1&lt;br /&gt;
|TechniqueMax=2&lt;br /&gt;
|Stamina=3&lt;br /&gt;
|StaminaMax=4&lt;br /&gt;
|Jump=4&lt;br /&gt;
|JumpMax=5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|Normal=  100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=  100&lt;br /&gt;
|Poison=  100&lt;br /&gt;
|Ground=  100&lt;br /&gt;
|Rock=    100&lt;br /&gt;
|Bug=     100&lt;br /&gt;
|Ghost=     0&lt;br /&gt;
|Steel=   100&lt;br /&gt;
|Fire=    100&lt;br /&gt;
|Water=   100&lt;br /&gt;
|Grass=   100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic= 100&lt;br /&gt;
|Ice=     100&lt;br /&gt;
|Dragon=  100&lt;br /&gt;
|Dark=    100&lt;br /&gt;
|Fairy=   100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|normal=yes&lt;br /&gt;
|newghost=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/level9|1|Flail|Normal|Physical|—|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Defense Curl|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/level9|4|Mud-Slap|Ground|Special|20|100|10}}&lt;br /&gt;
{{learnlist/level9|8|Rollout|Rock|Physical|30|90|20}}&lt;br /&gt;
{{learnlist/level9|12|Glare|Normal|Status|—|100|30}}&lt;br /&gt;
{{learnlist/level9|16|Screech|Normal|Status|—|85|40}}&lt;br /&gt;
{{learnlist/level9|20|Ancient Power|Rock|Special|60|100|5}}&lt;br /&gt;
{{learnlist/level9|24|Drill Run|Ground|Physical|80|95|10}}&lt;br /&gt;
{{learnlist/level9|28|Yawn|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|32|Hyper Drill|Normal|Physical|100|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|36|Roost|Flying|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|40|Dragon Rush|Dragon|Physical|100|75|10}}&lt;br /&gt;
{{learnlist/level9|44|Coil|Poison|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|48|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|52|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/levelf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM004|Agility|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM005|Mud-Slap|Ground|Special|20|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM006|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM021|Pounce|Bug|Physical|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM022|Chilling Water|Water|Special|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM026|Poison Tail|Poison|Physical|50|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM029|Hex|Ghost|Special|65|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM035|Mud Shot|Ground|Special|55|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM041|Stored Power|Psychic|Special|20|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM053|Smart Strike|Steel|Physical|70|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM055|Dig|Ground|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM059|Zen Headbutt|Psychic|Physical|80|90|15}}&lt;br /&gt;
{{learnlist/tm9|TM065|Air Slash|Flying|Special|75|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM083|Poison Jab|Poison|Physical|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM084|Stomping Tantrum|Ground|Physical|75|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM106|Drill Run|Ground|Physical|80|95|10}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM116|Stealth Rock|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM117|Hyper Voice|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM124|Ice Spinner|Ice|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM125|Flamethrower|Fire|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM126|Thunderbolt|Electric|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM128|Amnesia|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM129|Calm Mind|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM132|Baton Pass|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/tm9|TM133|Earth Power|Ground|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM135|Ice Beam|Ice|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM141|Fire Blast|Fire|Special|110|85|5}}&lt;br /&gt;
{{learnlist/tm9|TM143|Blizzard|Ice|Special|110|70|5}}&lt;br /&gt;
{{learnlist/tm9|TM147|Wild Charge|Electric|Physical|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM150|Stone Edge|Rock|Physical|100|80|5}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM166|Thunder|Electric|Special|110|70|10}}&lt;br /&gt;
{{learnlist/tm9|TM168|Solar Beam|Grass|Special|120|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM175|Toxic|Poison|Status|—|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM177|Spite|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM180|Gyro Ball|Steel|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM185|Lunge|Bug|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM191|Uproar|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM200|Scale Shot|Dragon|Physical|25|90|20}}&lt;br /&gt;
{{learnlist/tm9|TM202|Pain Split|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM203|Psych Up|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM219|Skitter Smack|Bug|Physical|70|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM222|Breaking Swipe|Dragon|Physical|60|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM224|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tmf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0054|Psyduck}}{{MSP/H|0055|Golduck}}{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0194|Wooper}}{{MSP/H|0195|Quagsire}}{{MSP/H|0418|Buizel}}{{MSP/H|0419|Floatzel}}{{MSP/H|0501|Oshawott}}{{MSP/H|0502|Dewott}}{{MSP/H|0503|Samurott}}{{MSP/H|0503|Samurott|form=-Hisui}}{{MSP/H|0963|Finizen}}{{MSP/H|0964|Palafin}}|Aqua Tail|Water|Physical|90|90|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0050|Diglett}}{{MSP/H|0050|Diglett|form=-Alola}}{{MSP/H|0051|Dugtrio}}{{MSP/H|0051|Dugtrio|form=-Alola}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0203|Girafarig}}{{MSP/H|0981|Farigiraf}}{{MSP/H|0234|Stantler}}{{MSP/H|0899|Wyrdeer}}{{MSP/H|0273|Seedot}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0963|Finizen}}{{MSP/H|0964|Palafin}}|Astonish|Ghost|Physical|30|100|15}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0023|Ekans}}{{MSP/H|0024|Arbok}}{{MSP/H|0052|Meowth}}{{MSP/H|0052|Meowth|form=-Alola}}{{MSP/H|0053|Persian}}{{MSP/H|0053|Persian|form=-Alola}}{{MSP/H|0058|Growlithe}}{{MSP/H|0058|Growlithe|form=-Hisui}}{{MSP/H|0059|Arcanine}}{{MSP/H|0059|Arcanine|form=-Hisui}}{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0700|Sylveon}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0228|Houndour}}{{MSP/H|0229|Houndoom}}{{MSP/H|0261|Poochyena}}{{MSP/H|0262|Mightyena}}{{MSP/H|0336|Seviper}}{{MSP/H|0403|Shinx}}{{MSP/H|0404|Luxio}}{{MSP/H|0405|Luxray}}{{MSP/H|0418|Buizel}}{{MSP/H|0419|Floatzel}}{{MSP/H|0434|Stunky}}{{MSP/H|0435|Skuntank}}{{MSP/H|0449|Hippopotas}}{{MSP/H|0450|Hippowdon}}{{MSP/H|0551|Sandile}}{{MSP/H|0552|Krokorok}}{{MSP/H|0553|Krookodile}}{{MSP/H|0650|Chespin}}{{MSP/H|0651|Quilladin}}{{MSP/H|0652|Chesnaught}}{{MSP/H|0725|Litten}}{{MSP/H|0726|Torracat}}{{MSP/H|0727|Incineroar}}{{MSP/H|0734|Yungoos}}{{MSP/H|0735|Gumshoos}}{{MSP/H|0744|Rockruff}}{{MSP/H|0745|Lycanroc}}{{MSP/H|0745|Lycanroc|form=-Midnight}}{{MSP/H|0745|Lycanroc|form=-Dusk}}{{MSP/H|0819|Skwovet}}{{MSP/H|0820|Greedent}}{{MSP/H|0877|Morpeko}}{{MSP/H|0906|Sprigatito}}{{MSP/H|0907|Floragato}}{{MSP/H|0908|Meowscarada}}{{MSP/H|0909|Fuecoco}}{{MSP/H|0910|Crocalor}}{{MSP/H|0911|Skeledirge}}{{MSP/H|0921|Pawmi}}{{MSP/H|0922|Pawmo}}{{MSP/H|0923|Pawmot}}{{MSP/H|0926|Fidough}}{{MSP/H|0927|Dachsbun}}{{MSP/H|0942|Maschiff}}{{MSP/H|0943|Mabosstiff}}{{MSP/H|0967|Cyclizar}}{{MSP/H|0971|Greavard}}{{MSP/H|0972|Houndstone}}|Bite|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0322|Numel}}{{MSP/H|0323|Camerupt}}{{MSP/H|0324|Torkoal}}{{MSP/H|0335|Zangoose}}{{MSP/H|0570|Zorua|form=-Hisui}}{{MSP/H|0571|Zoroark|form=-Hisui}}|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0128-Paldea Combat|Tauros}}{{MSP/H|0128|Tauros|form=-Paldea Blaze}}{{MSP/H|0128-Paldea Aqua|Tauros}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0273|Seedot}}{{MSP/H|0287|Slakoth}}{{MSP/H|0559|Scraggy}}{{MSP/H|0560|Scrafty}}{{MSP/H|0667|Litleo}}{{MSP/H|0668|Pyroar}}{{MSP/H|0813|Scorbunny}}{{MSP/H|0814|Raboot}}{{MSP/H|0815|Cinderace}}{{MSP/H|0843|Silicobra}}{{MSP/H|0844|Sandaconda}}{{MSP/H|0875|Eiscue}}{{MSP/H|0915|Lechonk}}{{MSP/H|0916|Oinkologne}}{{MSP/H|0971|Greavard}}{{MSP/H|0972|Houndstone}}{{MSP/H|0942|Maschiff}}{{MSP/H|0943|Mabosstiff}}|Headbutt|Normal|Physical|70|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0700|Sylveon}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0231|Phanpy}}{{MSP/H|0417|Pachirisu}}{{MSP/H|0572|Minccino}}{{MSP/H|0573|Cinccino}}{{MSP/H|0926|Fidough}}{{MSP/H|0927|Dachsbun}}|Last Resort|Normal|Physical|140|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breedf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
====Special moves====&lt;br /&gt;
{{learnlist/eventh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/event9|[[South Province (Area Three)|Wild Tera Pokémon]]|Poison Tail|Poison|Physical|50|100|25}}&lt;br /&gt;
{{learnlist/eventf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Normal}}&lt;br /&gt;
{{Spindata/Trozei|col=6|type=Normal|ndex=206|rarity=Common}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Normal|ndex=206&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=7.6&lt;br /&gt;
|area=Echo Cave&lt;br /&gt;
|P1=Please, don&#039;t look at me like that. It makes me very self-conscious.&lt;br /&gt;
|P2=Oh, please don&#039;t say so. Half my HP is already gone?&lt;br /&gt;
|P3=I give up... I don&#039;t have the energy to even flee...&lt;br /&gt;
|PL=Leveled up! Oh, but please don&#039;t look... It isn&#039;t very nice.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Normal|ndex=206&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=6.4&lt;br /&gt;
|IQ=A&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Normal|ndex=206&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Emolga}}&lt;br /&gt;
|recruitment=Go to find with {{p|Emolga}}&lt;br /&gt;
|P1=I&#039;d like to be a first-rate adventurer someday! I have a long way to go, but I&#039;ll do my best!&lt;br /&gt;
|P2=Argh… This is so hard… But I won&#039;t give up!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger GS|col=6|type=Normal&lt;br /&gt;
|group=Normal&lt;br /&gt;
|assist=Normal&lt;br /&gt;
|field=Crush&lt;br /&gt;
|fieldpower=1&lt;br /&gt;
|num=052&lt;br /&gt;
|pastnum=129&lt;br /&gt;
|browser=It lets loose shock waves to attack.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Normal&lt;br /&gt;
|att=2&lt;br /&gt;
|def=3&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Normal|ndex=206&lt;br /&gt;
|walk=1.27&lt;br /&gt;
|hp=59&lt;br /&gt;
|attack=74&lt;br /&gt;
|defense=52&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Normal|ndex=206&lt;br /&gt;
|power=1&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Normal|ndex=206|num=335&lt;br /&gt;
|min=40&lt;br /&gt;
|max=90&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Mega Boost+&lt;br /&gt;
|skilldesc=Fills the Mega Gauge of the same type of Pokémon more.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Normal|ndex=206&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=3&lt;br /&gt;
|candy=Dunsparce&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=225|attack=131|defense=128&lt;br /&gt;
|fast={{m|Bite}}, {{m|Astonish}}, {{m|Rollout}}{{tt|*|From September 1, 2022 onward}}&lt;br /&gt;
|special={{m|Dig}}, {{m|Rock Slide}}, {{m|Drill Run}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
The form of {{p|Dudunsparce}} that Dunsparce [[Evolution|evolves]] into is determined based on its [[personality value#Dudunsparce&#039;s form|encryption constant]], with a 99% chance of it evolving into the Two-Segment Form and a 1% chance of it evolving into the Three-Segment Form. This is not the case for [[Wild Pokémon|wild]] Dudunsparce (including those encountered in [[Tera Raid Battle]]s), as these will always be in Two-Segment Form regardless of their encryption constant value.&amp;lt;ref&amp;gt;[https://twitter.com/Sibuna_Switch/status/1596550660241039360 Encounter rates for Three-Segment Dudunsparce by Anubis/Sibuna_Switch on Twitter]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since [[Nature]]s were determined via [[personality value]] prior to [[Generation V]] (which itself is indistinct from encryption constants prior to [[Generation VI]]), a Hardy Nature Dunsparce with the [[Ability]] {{a|Serene Grace}} that is [[transfer]]red from Generation {{gen|III}} or {{gen|IV}} to [[Generation IX]] will have a 50% chance of evolving into Three-Segment Form Dudunsparce, whereas Dunsparce from the same [[generation]]s with other Natures or the Ability {{a|Run Away}} will always evolve into the Two-Segment Form (unless a Dunsparce with Run Away came from {{pkmn|Colosseum}})&lt;br /&gt;
{{Evobox/1branch2&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|no1=0206&lt;br /&gt;
|name1=Dunsparce&lt;br /&gt;
|type1-1=Normal&lt;br /&gt;
|evo1a={{bag/s|Rare Candy|SV}} + [[File:Bag TM Normal SV Sprite.png|40px|link=Hyper Drill (move)]] + [[File:Bag Loaded Dice SV Sprite.png|40px|link=Personality value]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}}&amp;lt;br&amp;gt;knowing {{color2|000|Hyper Drill (move)|Hyper Drill}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with a certain&amp;lt;br&amp;gt;{{color2|000|personality value|encryption constant}})&lt;br /&gt;
|no2a=0982&lt;br /&gt;
|name2a=Dudunsparce&lt;br /&gt;
|form2a=Two-Segment&lt;br /&gt;
|type1-2a=Normal&lt;br /&gt;
|evo1b={{bag/s|Rare Candy|SV}} + [[File:Bag TM Normal SV Sprite.png|40px|link=Hyper Drill (move)]] + [[File:Bag Loaded Dice SV Sprite.png|40px|link=Personality value]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}}&amp;lt;br&amp;gt;knowing {{color2|000|Hyper Drill (move)|Hyper Drill}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with a certain&amp;lt;br&amp;gt;{{color2|000|personality value|encryption constant}})&lt;br /&gt;
|no2b=0982&lt;br /&gt;
|art2b=0982Dudunsparce-Three&lt;br /&gt;
|name2b=Dudunsparce&lt;br /&gt;
|form2b=Three-Segment&lt;br /&gt;
|type1-2b=Normal}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Normal}}&lt;br /&gt;
{{Spritebox/NA|gen=II}}&lt;br /&gt;
{{Spritebox/2|ndex=206}}&lt;br /&gt;
{{Spritebox/3|ndex=206}}&lt;br /&gt;
{{Spritebox/4|ndex=206}}&lt;br /&gt;
{{Spritebox/5|ndex=206}}&lt;br /&gt;
{{Spritebox/6|ndex=206|crop=68}}&lt;br /&gt;
{{Spritebox/7|ndex=206|crop=67}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8|ndex=206}}&lt;br /&gt;
{{Spritebox/9|ndex=0206}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=0206}}&lt;br /&gt;
{{Spritebox/Footer|206|Dunsparce}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Dunsparce anime.png|thumb|250px|Dunsparce in {{aniseries|BW}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Dunsparce debuted in &#039;&#039;[[EP191|The Dunsparce Deception]]&#039;&#039;, where an entire town was full of children owning Dunsparce. [[Bucky]] was the only child without a Dunsparce and asked {{Ash}} and {{ashfr}} for assistance. In the end, he was able to {{pkmn2|caught|catch}} one.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[BW131|The Path That Leads to Goodbye!]]&#039;&#039;, Ash tried to catch a Dunsparce, but [[Iris&#039;s Axew]] bumped into [[Ash&#039;s Pikachu]], which led to Dunsparce escaping.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[XY059|Under the Pledging Tree!]]&#039;&#039;, Ash wanted to catch another Dunsparce, but was unable to, as he didn&#039;t have any [[Poké Ball]]s on hand at that moment, thus letting Dunsparce get away again.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[The Legend of Thunder!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP001|Following a Maiden&#039;s Voyage!]]&#039;&#039;, a Dunsparce was trapped in an {{p|Ariados}}&#039;s web.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP061|Team Shocker!]]&#039;&#039;, a {{pkmn|Coordinator}}&#039;s Dunsparce competed in the [[Appeal|Performance Stage]] of the {{to|Solaceon}} {{pkmn|Contest}}.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in a flashback in &#039;&#039;[[JN032|Time After Time!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Dunsparce appeared during a flashback in &#039;&#039;[[HZ018|Flying Pikachu, Rising Higher and Higher!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Two Dunsparce appeared in &#039;&#039;[[HZ051|The Flower Tower]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[HZ052|Wattrel&#039;s High Wind Warning!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[HZ075|The Wonders of the World!]]&#039;&#039;, during a flashback.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Animedexheader|Johto}}&lt;br /&gt;
{{Animedexbody|EP191|Dunsparce|Ash&#039;s Pokédex|Dunsparce, the Land Snake Pokémon. When discovered, the Dunsparce uses its tail to burrow into the earth and evade capture.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Johto}}&lt;br /&gt;
{{Animedexheader|Unova}}&lt;br /&gt;
{{Animedexbody|BW131|Dunsparce|Ash&#039;s Pokédex|Dunsparce, the Land Snake Pokémon. Dunsparce uses its tail to dig its elaborate nest.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Unova}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Roseanne Dunsparce Adventures.png|thumb|110px|Dunsparce in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pocket Monsters XY: The Legend of the Pokémon Dragon King===&lt;br /&gt;
A Dunsparce appeared in [[LDK1]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{adv|Crystal}} encountered a {{pkmn2|wild}} Dunsparce in &#039;&#039;[[PS119|A Flaaffy Kerfuffle]]&#039;&#039;. It and a {{p|Flaaffy}} became stranded on a boat owned by {{adv|Bill}}. They were rescued by Crystal and captured so {{adv|Professor Oak}} could research them.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce owned by [[Lostelle]] first appeared in &#039;&#039;[[PS275|A Vicious Cycle of Possibilities]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[PS332|The Final Battle V]]&#039;&#039;, during a flashback of {{adv|Emerald}}&#039;s past.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce owned by [[Roseanne]] first appeared in &#039;&#039;[[PS392|Well Met, Weepinbell]]&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Mangadexheader}}&lt;br /&gt;
{{Mangadexbody|Pokémon Adventures|[[PS119]]|Whenever it&#039;s being scrutinized at or if it feels threatened, it will start drilling a hole with its tail, in an attempt to escape from underground.{{tt|*|Chuang Yi&#039;s translation}}}}&lt;br /&gt;
{{Mangadexfooter}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Dunsparce (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In the {{pkmn|animated series}}, Dunsparce is usually shown to be much shorter than 4&#039;11&amp;quot; (1.5 m), which is its listed height (or in this case, length) in the {{pkmn|games}}.&lt;br /&gt;
** It is also shown as much smaller than its listed height in [[Pokémon Mystery Dungeon: Gates to Infinity]] and [[Pokémon Super Mystery Dungeon]], being even smaller than {{p|Pikachu}}.&lt;br /&gt;
* Dunsparce was designed by [[Hironobu Yoshida]].&amp;lt;ref&amp;gt;[http://wayback.archive.org/web/20080704081535/http://www.gpara.com/contents/creator/bn_225.htm Drill Dozer interview by Gpara] (Japanese)&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
{{Bulbanews|On the Origin of Species: Dunsparce}}&lt;br /&gt;
Dunsparce appears to be based on the snake-like {{wp|Tsuchinoko}} cryptid of Japan. Visually, its design may be a pun on one of the cryptid&#039;s other names, バチヘビ &#039;&#039;bachi hebi&#039;&#039; (bee snake), as Dunsparce appears to combine bee- and snake-like features. It may draw specific inspiration from {{wp|Anthophorini|digger bees}}. Its perpetually closed eyes and {{wp|drill}}-like tail, which also resembles a {{wp|rattlesnake}}&#039;s rattle, may have been inspired by the {{wp|vestigiality|vestigial}} eyes and barbed tail of {{wp|Typhlopidae|blind snakes}}. Its tendency to burrow backward is similar to {{wp|Ophichthidae|snake eels}}, as well as the {{wp|Cirriformia|thread-gilled worm}} &#039;&#039;Cirriformia moorei&#039;&#039;. Dunsparce may also have connections to {{wp|Amphiptere}}s, such as {{wp|Quetzalcoatl}}, or {{wp|flying snakes}}. Its gourd-shaped body may reference gourd-shaped sake bottles, given that the Tsuchinoko is said to have a taste for alcohol.&lt;br /&gt;
&lt;br /&gt;
Given its larviform appearance, horn-like tail, and ring-circled eyes that resemble the {{wp|Eyespot (mimicry)|eyespots}} of some species, Dunsparce may draw inspiration from {{wp|Sphingidae|sphinx moth caterpillars}}, which have a history of being mistaken for the Tsuchinoko. This may double as a nod to the Nozuchi, a large caterpillar-like creature thought to be synonymous with the Tsuchinoko.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Dunsparce may be a combination of &#039;&#039;dun&#039;&#039; (a dull, sandy brown - the colour of Dunsparce&#039;s eyes and back; or a subadult mayfly), &#039;&#039;dunce&#039;&#039; (stupid or dim-witted, in line with its names in other languages), and &#039;&#039;sparse&#039;&#039;, for its rarity.&lt;br /&gt;
&lt;br /&gt;
Nokocchi may be derived from an {{wp|anagram}} of ツチノコ, the katakana spelling of 槌の子 &#039;&#039;tsuchinoko&#039;&#039; (a fabled snake-like creature).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Normal|type2=Normal&lt;br /&gt;
|ja=ノコッチ &#039;&#039;Nokocchi&#039;&#039;|jameaning=From ツチノコ / 槌の子 &#039;&#039;{{wp|tsuchinoko}}&#039;&#039;&lt;br /&gt;
|fr=Insolourdo|frmeaning=From {{tt|&#039;&#039;insolite&#039;&#039;|unusual}} and {{tt|&#039;&#039;lourdaud&#039;&#039;|graceless, clumsy or slow-witted}}&lt;br /&gt;
|es=Dunsparce|esmeaning=Same as English name&lt;br /&gt;
|de=Dummisel|demeaning=From {{tt|&#039;&#039;dumm&#039;&#039;|stupid}} and {{tt|&#039;&#039;Meißel&#039;&#039;|chisel}}&lt;br /&gt;
|it=Dunsparce|itmeaning=Same as English name&lt;br /&gt;
|ko=노고치 &#039;&#039;Nogochi&#039;&#039;|komeaning=Transcription of Japanese name&lt;br /&gt;
|zh_cmn=土龍弟弟 / 土龙弟弟 &#039;&#039;Tǔlóngdìdì&#039;&#039;|zh_cmnmeaning=From {{tt|土龍 / 土龙 &#039;&#039;tǔlóng&#039;&#039;|tsuchinoko}} and {{tt|弟弟 &#039;&#039;dìdì&#039;&#039;|younger brother}}&lt;br /&gt;
|zh_yue=土龍弟弟 &#039;&#039;Tóulùhngdàihdái&#039;&#039;|zh_yuemeaning=From {{tt|土龍 &#039;&#039;tóulùhng&#039;&#039;|tsuchinoko}} and {{tt|弟弟 &#039;&#039;dàihdái&#039;&#039;|younger brother}}&lt;br /&gt;
|hi=विरीरेंग &#039;&#039;Virireng&#039;&#039;|himeaning=From {{tt|रेंगना &#039;&#039;rengna&#039;&#039;|crawling/creeping}}&lt;br /&gt;
|ru=Данспарс &#039;&#039;Danspars&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=โนก็อจจิ &#039;&#039;Nokotchi&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Dunsparce (Gates to Infinity)]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0205|prev=Forretress|nextnum=0207|next=Gligar}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon that evolve with certain moves]]&lt;br /&gt;
[[Category:Pokémon that evolve with Hyper Drill]]&lt;br /&gt;
[[Category:Shadow Pokémon in Pokémon Colosseum]]&lt;br /&gt;
[[Category:Pokémon with cross-generational Evolutions]]&lt;br /&gt;
&lt;br /&gt;
[[de:Dummisel]]&lt;br /&gt;
[[es:Dunsparce]]&lt;br /&gt;
[[fr:Insolourdo]]&lt;br /&gt;
[[it:Dunsparce]]&lt;br /&gt;
[[ja:ノコッチ]]&lt;br /&gt;
[[zh:土龙弟弟]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Dunsparce_(Pok%C3%A9mon)&amp;diff=4315054</id>
		<title>Dunsparce (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Dunsparce_(Pok%C3%A9mon)&amp;diff=4315054"/>
		<updated>2025-06-02T19:01:49Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Name origin */ i checked witionary, oxford, and merriam webster, none of them provided dark and gloomy as a definition of dun&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Dunsparce}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0205|prev=Forretress|nextnum=0207|next=Gligar|round=none}}&lt;br /&gt;
{{PokémonPrevNext/Disambig|species=Dunsparce}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Dunsparce&lt;br /&gt;
|jname=ノコッチ&lt;br /&gt;
|jtranslit=Nokotchi&lt;br /&gt;
|tmname=Nokocchi&lt;br /&gt;
|ndex=0206&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|category=Land Snake&lt;br /&gt;
|height-ftin=4&#039;11&amp;quot;&lt;br /&gt;
|height-m=1.5&lt;br /&gt;
|weight-lbs=30.9&lt;br /&gt;
|weight-kg=14.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Serene Grace&lt;br /&gt;
|ability2=Run Away&lt;br /&gt;
|abilityd=Rattled&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Field&lt;br /&gt;
|eggcycles=20&lt;br /&gt;
|evtotal=1&lt;br /&gt;
|evhp=1&lt;br /&gt;
|expyield=145&lt;br /&gt;
|g4exp=125&lt;br /&gt;
|oldexp=75&lt;br /&gt;
|lv100exp=1,000,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Yellow&lt;br /&gt;
|catchrate=190&lt;br /&gt;
|body=02&lt;br /&gt;
|pokefordex=dunsparce&lt;br /&gt;
|generation=2&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Dunsparce&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ノコッチ&#039;&#039;&#039; &#039;&#039;Nokocchi&#039;&#039;) is a {{type|Normal}} {{OBP|Pokémon|species}} introduced in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] into {{p|Dudunsparce}} when [[level]]ed up while knowing {{m|Hyper Drill}}.&lt;br /&gt;
&lt;br /&gt;
Dunsparce will evolve into one of two {{fd|Dudunsparce|forms}} of Dudunsparce, &#039;&#039;&#039;Two-Segment Form&#039;&#039;&#039; or &#039;&#039;&#039;Three-Segment Form&#039;&#039;&#039;, with a 1/100 chance of evolving into Three-Segment Form Dudunsparce.&lt;br /&gt;
&lt;br /&gt;
(Refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]] for more details.)&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Dunsparce is a {{wp|snake|serpentine}}, and somewhat {{wp|insect|insectoid}}, {{OBP|Pokémon|species}} with a primarily yellow body, blue underside, and blue-and-cream-striped back. Its head is round with a wide mouth extending under its jowls and curving up toward the middle of its face. Its chin is blue with two rounded prongs. Its eyes—round and rimmed with blue—are kept closed, revealing its cream-colored eyelids. On Dunsparce&#039;s upper back are two tiny white wings. Its body ends in a drill-like tail.&lt;br /&gt;
&lt;br /&gt;
Dunsparce can float slightly with its wings, which some scientists believe were used to fly in the sky during ancient times. However, it avoids detection and flees when spotted by burrowing into the ground with its tail. It lives immobile in {{DL|List of Pokémon by habitat|Cave Pokémon|caves}} and beneath the earth, where it makes maze-like nests. They get along with {{p|Diglett}} and share tunnels with each other. Dunsparce can navigate through its nests without getting lost by the smell of the dirt.&lt;br /&gt;
&lt;br /&gt;
Dunsparce and its evolved form, {{p|Dudunsparce}}, are the [[signature move|only known Pokémon]] capable of learning the move {{m|Hyper Drill}}.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Dunsparce evolves into {{p|Dudunsparce}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox/1branch2&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|no1=0206&lt;br /&gt;
|name1=Dunsparce&lt;br /&gt;
|type1-1=Normal&lt;br /&gt;
|evo1a=&lt;br /&gt;
|no2a=0982&lt;br /&gt;
|name2a=Dudunsparce&lt;br /&gt;
|form2a=Two-Segment&lt;br /&gt;
|type1-2a=Normal&lt;br /&gt;
|evo1b=&lt;br /&gt;
|no2b=0982&lt;br /&gt;
|art2b=0982Dudunsparce-Three&lt;br /&gt;
|name2b=Dudunsparce&lt;br /&gt;
|form2b=Three-Segment&lt;br /&gt;
|type1-2b=Normal}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* [[Pokémon Mystery Dungeon: Gates to Infinity]]: {{mdc|Dunsparce|gti}} is a supporting character throughout the game.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Normal}}&lt;br /&gt;
{{Dex/NA|gen=II}}&lt;br /&gt;
{{Dex/Gen/1|gen=II|reg1=Johto|num1=052}}&lt;br /&gt;
{{Dex/Entry1|v=Gold|entry=When spotted, this {{ScPkmn}} escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=Silver|entry=If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings.}}&lt;br /&gt;
{{Dex/Entry1|v=Crystal|entry=It hides deep inside caves where no light ever reaches it and remains virtually motionless there.}}&lt;br /&gt;
{{Dex/Entry1|v=Stadium 2|t=FFF|color=000|entry=When spotted, this {{ScPkmn}} escapes backward by furiously boring into the ground with its tail. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Red, Silver, or Crystal inserted)&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Blue, Gold, or Yellow inserted)&#039;&#039;&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry2|v=Ruby|v2=Sapphire|t=FFF|t2=FFF|entry=&amp;lt;sc&amp;gt;Dunsparce&amp;lt;/sc&amp;gt; has a drill for its tail. It uses this tail to burrow into the ground backwards. This {{ScPkmn}} is known to make its nest in complex shapes deep under the ground.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=Its drill-tipped tail is used to burrow into the ground backwards. This {{ScPkmn}} is known to make its nest in complex shapes deep under the ground.}}&lt;br /&gt;
{{Dex/Entry1|v=FireRed|entry=If spotted, it escapes by burrowing with its tail. It can hover just slightly using its wings.}}&lt;br /&gt;
{{Dex/Entry1|v=LeafGreen|entry=When spotted, this {{ScPkmn}} escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto|num2=052}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
{{Dex/Entry1|v=HeartGold|entry=When spotted, this Pokémon escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=SoulSilver|entry=If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova|num1=035|label1={{gameIcon|B2}}{{gameIcon|W2}}:}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=It creates mazes in dark locations. When spotted, it flees into the ground by digging with its tail.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=040|label1=Central|reg2=Hoenn}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=When spotted, this Pokémon escapes backward by furiously boring into the ground with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
{{Dex/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|entry=Dunsparce has a drill for its tail. It uses this tail to burrow into the ground backward. This Pokémon is known to make its nest in complex shapes deep under the ground.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VII|reg1=Alola|num1=063|label1={{gameIcon|US}}{{gameIcon|UM}}:|reg2=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sun and Moon|Sun, Moon]], [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=It travels by digging through the ground. Diglett and Dunsparce share one another&#039;s tunnels happily.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=When it sees a person, it digs a hole with its tail to make its escape. If you happen to find one, consider yourself lucky.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|num1=052|label1=Isle of Armor|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sword|t=FFF|entry=This Pokémon&#039;s tiny wings have some scientists saying that Dunsparce used to fly through the sky in ancient times.}}&lt;br /&gt;
{{Dex/Entry1|v=Shield|t=FFF|entry=The nests Dunsparce live in are mazes of tunnels. They never get lost in their own nests—they can tell where they are by the scent of the dirt.}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=It digs into the ground with its tail and makes a mazelike nest. It can fly just a little.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=188|reg2=Kitakami|num2=160|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=It creates mazes in dark locations. When spotted, it flees into the ground by digging with its tail.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=If spotted, it escapes by burrowing with its tail. It can float just slightly using its wings.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{normal color dark}}; background:#{{normal color}}; font-size:80%; {{roundy|10px}};&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border:2px solid #{{normal color dark}}; background:#{{normal color light}};&amp;quot; | [[File:Pokédex Image Dunsparce USUM.png|x200px]]&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{normal color dark}}; background:#{{normal color light}}; {{roundy|5px}};&amp;quot; | [[File:Pokédex Image Dunsparce SV.png|x200px]]&lt;br /&gt;
| style=&amp;quot;border:2px solid #{{normal color dark}}; background:#{{normal color light}}; {{roundy|5px}};&amp;quot; | [[File:Pokédex Image Dunsparce SV Kitakami.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Dunsparce in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&amp;lt;span class=&amp;quot;whitelinks&amp;quot;&amp;gt;{{sup/7|USUM}}&amp;lt;/span&amp;gt;&lt;br /&gt;
| Dunsparce in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
| Dunsparce in the {{color2|000|List of Pokémon by Kitakami Pokédex number|Kitakami Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/Entry2|v=Gold|v2=Silver|area=[[Dark Cave]]{{tt|*|Violet City side}}}}&lt;br /&gt;
{{Availability/Entry1|v=Crystal|area=[[Dark Cave]]{{tt|*|Violet City side}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2/None|v=Ruby|v2=Sapphire}}&lt;br /&gt;
{{Availability/Entry1/None|v=Emerald}}&lt;br /&gt;
{{Availability/Entry2|v=FireRed|v2=LeafGreen|area=[[Three Isle Port]]}}&lt;br /&gt;
{{Availability/Entry1|v=Colosseum|area=[[Pyrite Cave]] {{color2|{{shadow color}}|Shadow Pokémon|(Shadow)}}}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=Diamond|v2=Pearl|area={{rt|208|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|208|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area=[[Dark Cave]]}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color=71AD64|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Forest}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2|v=Black|v2=White|t=fff|area={{rt|12|Unova}}}}&lt;br /&gt;
{{Availability/Entry2|v=Black 2|v2=White 2|t=fff|area=[[Route]]s {{rtn|1|Unova}}, {{rtn|2|Unova}}, {{rtn|6|Unova}}, {{rtn|12|Unova}}, {{rtn|18|Unova}}, and {{rtn|20|Unova}}, [[Floccesy Ranch]], [[Dreamyard]], [[Village Bridge]], {{OBP|Victory Road|Black 2 and White 2}}, [[Nature Preserve]] ({{DL|Phenomenon|rustling grass}})&amp;lt;br&amp;gt;{{rt|6|Unova}}{{tt|*|Near Pokémon Breeder April}} and [[Floccesy Ranch]] ([[Hidden Grotto]])}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Icy Cave}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area=[[Route]]s {{rtn|3|Kalos}} and {{rtn|22|Kalos}}, [[Friend Safari]] ([[Friend Safari#Normal-type Safari|Normal]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Omega Ruby|v2=Alpha Sapphire|area=[[Trade]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sun|v2=Moon}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Alola Route 2|Route 2]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=[[Trade]]&amp;lt;sup&amp;gt;Version 1.2.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=Expansion Pass|color={{Isle of Armor color}}|t={{Crown Tundra color dark}}|link=Pokémon Sword and Shield Expansion Pass|area=[[Soothing Wetlands]]&amp;lt;br&amp;gt;[[Fields of Honor/Dens|Fields of Honor]] ([[Max Raid Battle]])&amp;lt;br&amp;gt;[[Max Lair]] ([[Dynamax Adventure]])}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area={{rt|208|Sinnoh}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=South Province: [[South Province (Area One)|Area One]], [[South Province (Area Three)|Area Three]], [[South Province (Area Four)|Area Four]], [[South Province (Area Five)|Area Five]], [[South Province (Area Six)|Area Six]], [[Alfornada Cavern]]&amp;lt;br&amp;gt;East Province: [[East Province (Area One)|Area One]], [[East Province (Area Two)|Area Two]], [[East Province (Area Three)|Area Three]], [[Tagtree Thicket]]&amp;lt;br&amp;gt;West Province: [[West Province (Area Two)|Area Two]], [[West Province (Area Three)|Area Three]], [[Asado Desert]]&amp;lt;br&amp;gt;North Province: [[Dalizapa Passage]]&amp;lt;br&amp;gt;[[Area Zero]]&amp;lt;br&amp;gt;South Province: [[South Province (Area Three)|Area Three]] ({{t|Poison}} {{Tera}} [[Type]])&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 1★ Tera Raid Battles (Paldea)|Dunsparce|1★}}, {{DL|List of 3★ Tera Raid Battles (Paldea)|Dunsparce|3★}})}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero|color={{Teal Mask color light}}|t={{Indigo Disk color}}|link=The Hidden Treasure of Area Zero|area=[[Oni Mountain]], [[Crystal Pool]], [[Chilling Waterhead]], [[Timeless Woods]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Normal}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/NA/Side|gen=II}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Channel|color={{water color}}|area=[[Mt. Snowfall]]}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 10]], Endless Level 11, Pair Trozei, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Great Canyon]] (1F-3F), [[Wish Cave]] (43F-44F), [[Joyous Tower]] (43F-44F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Foggy Forest]] (1F-5F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Foggy Forest]] (1F-5F)}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Stormy|link=Pokémon Mystery Dungeon (WiiWare)|color={{water color}}|area=}}--&amp;gt;&lt;br /&gt;
{{Availability/Entry1|v=Ranger: GS|link=Pokémon Ranger: Guardian Signs|color={{GS color}}|area=[[Rasp Cavern]], [[Ice Temple]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Cave: [[Rugged Flats]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD GTI|link=Pokémon Mystery Dungeon: Gates to Infinity|color={{silver color}}|area=[[Desolate Canyon]]{{tt|*|Automatically recruited upon completion}}, [[Moonlit Forest]] (Uncharted Road), [[Rusty Mountain]] (Uncharted Road, Gilded Hall), [[Jaws of the Abyss]] (Gilded Hall), [[Smoking Mountain]] (Gilded Hall)}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Vehicle Gallery#Slithering Trains|Vehicle Gallery: Slithering Trains]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Monday Stage 1|Safari Jungle: Stage 1]]{{dotw|Mo}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Diamond Crater#Rock Chasm|Diamond Crater: Rock Chasm]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;, [[Plasma Tundra#Sacred Blade Cliff|Plasma Tundra: Sacred Blade Cliff]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Aegislash Sea]], [[Charizard Sea]]&amp;lt;sup&amp;gt;2020&amp;lt;/sup&amp;gt;, [[Entei Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Great Canyon]] (1F-3F), [[Wish Cave]] (43F-44F), [[Joyous Tower]] (43F-44F), [[Marvelous Sea]] (14F-15F), [[Fantasy Strait]] (14F-15F)&amp;lt;br/&amp;gt;Fainted Pokémon: [[Mt. Thunder]]&amp;lt;br/&amp;gt;Mystery House: [[Uproar Forest]], [[Desert Region]], [[Southern Cavern]], [[Wyvern Hill]], [[Waterfall Pond]], [[Remains Island]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=Event: &#039;&#039;[[Daily Pokémon#The Daily Pokémon (#5)|The Daily Pokémon (#5)]]&#039;&#039;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Normal}}&lt;br /&gt;
{{eventAvail|{{gameabbrev2|GSC}}|Gotta Catch &#039;Em All Station! Horn Drill Dunsparce|English|United States|5|February 22 to March 14, 2002|link=List of PCNY event Pokémon distributions in Generation II#Horn Drill Dunsparce}}&lt;br /&gt;
{{eventAvail|{{gameabbrev2|GSC}}|Gotta Catch &#039;Em All Station! Fury Attack Dunsparce|English|United States|5|January 31 to February 6, 2003|link=List of PCNY event Pokémon distributions in Generation II#Fury Attack Dunsparce}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Normal&lt;br /&gt;
|HP=    100&lt;br /&gt;
|Attack= 70&lt;br /&gt;
|Defense=70&lt;br /&gt;
|SpAtk=  65&lt;br /&gt;
|SpDef=  65&lt;br /&gt;
|Speed=  45}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=3&lt;br /&gt;
|Power=3&lt;br /&gt;
|PowerMax=4&lt;br /&gt;
|Technique=1&lt;br /&gt;
|TechniqueMax=2&lt;br /&gt;
|Stamina=3&lt;br /&gt;
|StaminaMax=4&lt;br /&gt;
|Jump=4&lt;br /&gt;
|JumpMax=5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|Normal=  100&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=  100&lt;br /&gt;
|Poison=  100&lt;br /&gt;
|Ground=  100&lt;br /&gt;
|Rock=    100&lt;br /&gt;
|Bug=     100&lt;br /&gt;
|Ghost=     0&lt;br /&gt;
|Steel=   100&lt;br /&gt;
|Fire=    100&lt;br /&gt;
|Water=   100&lt;br /&gt;
|Grass=   100&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic= 100&lt;br /&gt;
|Ice=     100&lt;br /&gt;
|Dragon=  100&lt;br /&gt;
|Dark=    100&lt;br /&gt;
|Fairy=   100&lt;br /&gt;
|notes=yes&lt;br /&gt;
|normal=yes&lt;br /&gt;
|newghost=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/level9|1|Flail|Normal|Physical|—|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Defense Curl|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/level9|4|Mud-Slap|Ground|Special|20|100|10}}&lt;br /&gt;
{{learnlist/level9|8|Rollout|Rock|Physical|30|90|20}}&lt;br /&gt;
{{learnlist/level9|12|Glare|Normal|Status|—|100|30}}&lt;br /&gt;
{{learnlist/level9|16|Screech|Normal|Status|—|85|40}}&lt;br /&gt;
{{learnlist/level9|20|Ancient Power|Rock|Special|60|100|5}}&lt;br /&gt;
{{learnlist/level9|24|Drill Run|Ground|Physical|80|95|10}}&lt;br /&gt;
{{learnlist/level9|28|Yawn|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|32|Hyper Drill|Normal|Physical|100|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|36|Roost|Flying|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|40|Dragon Rush|Dragon|Physical|100|75|10}}&lt;br /&gt;
{{learnlist/level9|44|Coil|Poison|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|48|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|52|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/levelf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM004|Agility|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM005|Mud-Slap|Ground|Special|20|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM006|Scary Face|Normal|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM021|Pounce|Bug|Physical|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM022|Chilling Water|Water|Special|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM026|Poison Tail|Poison|Physical|50|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM029|Hex|Ghost|Special|65|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM035|Mud Shot|Ground|Special|55|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM041|Stored Power|Psychic|Special|20|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM053|Smart Strike|Steel|Physical|70|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM055|Dig|Ground|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM059|Zen Headbutt|Psychic|Physical|80|90|15}}&lt;br /&gt;
{{learnlist/tm9|TM065|Air Slash|Flying|Special|75|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM083|Poison Jab|Poison|Physical|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM084|Stomping Tantrum|Ground|Physical|75|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM106|Drill Run|Ground|Physical|80|95|10}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM116|Stealth Rock|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM117|Hyper Voice|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM124|Ice Spinner|Ice|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM125|Flamethrower|Fire|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM126|Thunderbolt|Electric|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM128|Amnesia|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM129|Calm Mind|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM132|Baton Pass|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/tm9|TM133|Earth Power|Ground|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM135|Ice Beam|Ice|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM141|Fire Blast|Fire|Special|110|85|5}}&lt;br /&gt;
{{learnlist/tm9|TM143|Blizzard|Ice|Special|110|70|5}}&lt;br /&gt;
{{learnlist/tm9|TM147|Wild Charge|Electric|Physical|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM150|Stone Edge|Rock|Physical|100|80|5}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM166|Thunder|Electric|Special|110|70|10}}&lt;br /&gt;
{{learnlist/tm9|TM168|Solar Beam|Grass|Special|120|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM175|Toxic|Poison|Status|—|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM177|Spite|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM180|Gyro Ball|Steel|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM185|Lunge|Bug|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM191|Uproar|Normal|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM200|Scale Shot|Dragon|Physical|25|90|20}}&lt;br /&gt;
{{learnlist/tm9|TM202|Pain Split|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM203|Psych Up|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM219|Skitter Smack|Bug|Physical|70|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM222|Breaking Swipe|Dragon|Physical|60|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM224|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tmf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0054|Psyduck}}{{MSP/H|0055|Golduck}}{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0194|Wooper}}{{MSP/H|0195|Quagsire}}{{MSP/H|0418|Buizel}}{{MSP/H|0419|Floatzel}}{{MSP/H|0501|Oshawott}}{{MSP/H|0502|Dewott}}{{MSP/H|0503|Samurott}}{{MSP/H|0503|Samurott|form=-Hisui}}{{MSP/H|0963|Finizen}}{{MSP/H|0964|Palafin}}|Aqua Tail|Water|Physical|90|90|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0050|Diglett}}{{MSP/H|0050|Diglett|form=-Alola}}{{MSP/H|0051|Dugtrio}}{{MSP/H|0051|Dugtrio|form=-Alola}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0203|Girafarig}}{{MSP/H|0981|Farigiraf}}{{MSP/H|0234|Stantler}}{{MSP/H|0899|Wyrdeer}}{{MSP/H|0273|Seedot}}{{MSP/H|0274|Nuzleaf}}{{MSP/H|0275|Shiftry}}{{MSP/H|0963|Finizen}}{{MSP/H|0964|Palafin}}|Astonish|Ghost|Physical|30|100|15}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0023|Ekans}}{{MSP/H|0024|Arbok}}{{MSP/H|0052|Meowth}}{{MSP/H|0052|Meowth|form=-Alola}}{{MSP/H|0053|Persian}}{{MSP/H|0053|Persian|form=-Alola}}{{MSP/H|0058|Growlithe}}{{MSP/H|0058|Growlithe|form=-Hisui}}{{MSP/H|0059|Arcanine}}{{MSP/H|0059|Arcanine|form=-Hisui}}{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0700|Sylveon}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0228|Houndour}}{{MSP/H|0229|Houndoom}}{{MSP/H|0261|Poochyena}}{{MSP/H|0262|Mightyena}}{{MSP/H|0336|Seviper}}{{MSP/H|0403|Shinx}}{{MSP/H|0404|Luxio}}{{MSP/H|0405|Luxray}}{{MSP/H|0418|Buizel}}{{MSP/H|0419|Floatzel}}{{MSP/H|0434|Stunky}}{{MSP/H|0435|Skuntank}}{{MSP/H|0449|Hippopotas}}{{MSP/H|0450|Hippowdon}}{{MSP/H|0551|Sandile}}{{MSP/H|0552|Krokorok}}{{MSP/H|0553|Krookodile}}{{MSP/H|0650|Chespin}}{{MSP/H|0651|Quilladin}}{{MSP/H|0652|Chesnaught}}{{MSP/H|0725|Litten}}{{MSP/H|0726|Torracat}}{{MSP/H|0727|Incineroar}}{{MSP/H|0734|Yungoos}}{{MSP/H|0735|Gumshoos}}{{MSP/H|0744|Rockruff}}{{MSP/H|0745|Lycanroc}}{{MSP/H|0745|Lycanroc|form=-Midnight}}{{MSP/H|0745|Lycanroc|form=-Dusk}}{{MSP/H|0819|Skwovet}}{{MSP/H|0820|Greedent}}{{MSP/H|0877|Morpeko}}{{MSP/H|0906|Sprigatito}}{{MSP/H|0907|Floragato}}{{MSP/H|0908|Meowscarada}}{{MSP/H|0909|Fuecoco}}{{MSP/H|0910|Crocalor}}{{MSP/H|0911|Skeledirge}}{{MSP/H|0921|Pawmi}}{{MSP/H|0922|Pawmo}}{{MSP/H|0923|Pawmot}}{{MSP/H|0926|Fidough}}{{MSP/H|0927|Dachsbun}}{{MSP/H|0942|Maschiff}}{{MSP/H|0943|Mabosstiff}}{{MSP/H|0967|Cyclizar}}{{MSP/H|0971|Greavard}}{{MSP/H|0972|Houndstone}}|Bite|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0322|Numel}}{{MSP/H|0323|Camerupt}}{{MSP/H|0324|Torkoal}}{{MSP/H|0335|Zangoose}}{{MSP/H|0570|Zorua|form=-Hisui}}{{MSP/H|0571|Zoroark|form=-Hisui}}|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0086|Seel}}{{MSP/H|0087|Dewgong}}{{MSP/H|0128-Paldea Combat|Tauros}}{{MSP/H|0128|Tauros|form=-Paldea Blaze}}{{MSP/H|0128-Paldea Aqua|Tauros}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0273|Seedot}}{{MSP/H|0287|Slakoth}}{{MSP/H|0559|Scraggy}}{{MSP/H|0560|Scrafty}}{{MSP/H|0667|Litleo}}{{MSP/H|0668|Pyroar}}{{MSP/H|0813|Scorbunny}}{{MSP/H|0814|Raboot}}{{MSP/H|0815|Cinderace}}{{MSP/H|0843|Silicobra}}{{MSP/H|0844|Sandaconda}}{{MSP/H|0875|Eiscue}}{{MSP/H|0915|Lechonk}}{{MSP/H|0916|Oinkologne}}{{MSP/H|0971|Greavard}}{{MSP/H|0972|Houndstone}}{{MSP/H|0942|Maschiff}}{{MSP/H|0943|Mabosstiff}}|Headbutt|Normal|Physical|70|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0133|Eevee}}{{MSP/H|0134|Vaporeon}}{{MSP/H|0135|Jolteon}}{{MSP/H|0136|Flareon}}{{MSP/H|0196|Espeon}}{{MSP/H|0197|Umbreon}}{{MSP/H|0470|Leafeon}}{{MSP/H|0471|Glaceon}}{{MSP/H|0700|Sylveon}}{{MSP/H|0190|Aipom}}{{MSP/H|0424|Ambipom}}{{MSP/H|0209|Snubbull}}{{MSP/H|0210|Granbull}}{{MSP/H|0231|Phanpy}}{{MSP/H|0417|Pachirisu}}{{MSP/H|0572|Minccino}}{{MSP/H|0573|Cinccino}}{{MSP/H|0926|Fidough}}{{MSP/H|0927|Dachsbun}}|Last Resort|Normal|Physical|140|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breedf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
====Special moves====&lt;br /&gt;
{{learnlist/eventh/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
{{learnlist/event9|[[South Province (Area Three)|Wild Tera Pokémon]]|Poison Tail|Poison|Physical|50|100|25}}&lt;br /&gt;
{{learnlist/eventf/9|Dunsparce|Normal|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Normal}}&lt;br /&gt;
{{Spindata/Trozei|col=6|type=Normal|ndex=206|rarity=Common}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Normal|ndex=206&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=7.6&lt;br /&gt;
|area=Echo Cave&lt;br /&gt;
|P1=Please, don&#039;t look at me like that. It makes me very self-conscious.&lt;br /&gt;
|P2=Oh, please don&#039;t say so. Half my HP is already gone?&lt;br /&gt;
|P3=I give up... I don&#039;t have the energy to even flee...&lt;br /&gt;
|PL=Leveled up! Oh, but please don&#039;t look... It isn&#039;t very nice.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Normal|ndex=206&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=6.4&lt;br /&gt;
|IQ=A&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Normal|ndex=206&lt;br /&gt;
|coset=3&lt;br /&gt;
|conto={{p|Emolga}}&lt;br /&gt;
|recruitment=Go to find with {{p|Emolga}}&lt;br /&gt;
|P1=I&#039;d like to be a first-rate adventurer someday! I have a long way to go, but I&#039;ll do my best!&lt;br /&gt;
|P2=Argh… This is so hard… But I won&#039;t give up!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger GS|col=6|type=Normal&lt;br /&gt;
|group=Normal&lt;br /&gt;
|assist=Normal&lt;br /&gt;
|field=Crush&lt;br /&gt;
|fieldpower=1&lt;br /&gt;
|num=052&lt;br /&gt;
|pastnum=129&lt;br /&gt;
|browser=It lets loose shock waves to attack.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Normal&lt;br /&gt;
|att=2&lt;br /&gt;
|def=3&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Normal|ndex=206&lt;br /&gt;
|walk=1.27&lt;br /&gt;
|hp=59&lt;br /&gt;
|attack=74&lt;br /&gt;
|defense=52&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Normal|ndex=206&lt;br /&gt;
|power=1&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=3|type=Normal|ndex=206|num=335&lt;br /&gt;
|min=40&lt;br /&gt;
|max=90&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Mega Boost+&lt;br /&gt;
|skilldesc=Fills the Mega Gauge of the same type of Pokémon more.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Normal|ndex=206&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=3&lt;br /&gt;
|candy=Dunsparce&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=225|attack=131|defense=128&lt;br /&gt;
|fast={{m|Bite}}, {{m|Astonish}}, {{m|Rollout}}{{tt|*|From September 1, 2022 onward}}&lt;br /&gt;
|special={{m|Dig}}, {{m|Rock Slide}}, {{m|Drill Run}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
The form of {{p|Dudunsparce}} that Dunsparce [[Evolution|evolves]] into is determined based on its [[personality value#Dudunsparce&#039;s form|encryption constant]], with a 99% chance of it evolving into the Two-Segment Form and a 1% chance of it evolving into the Three-Segment Form. This is not the case for [[Wild Pokémon|wild]] Dudunsparce (including those encountered in [[Tera Raid Battle]]s), as these will always be in Two-Segment Form regardless of their encryption constant value.&amp;lt;ref&amp;gt;[https://twitter.com/Sibuna_Switch/status/1596550660241039360 Encounter rates for Three-Segment Dudunsparce by Anubis/Sibuna_Switch on Twitter]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since [[Nature]]s were determined via [[personality value]] prior to [[Generation V]] (which itself is indistinct from encryption constants prior to [[Generation VI]]), a Hardy Nature Dunsparce with the [[Ability]] {{a|Serene Grace}} that is [[transfer]]red from Generation {{gen|III}} or {{gen|IV}} to [[Generation IX]] will have a 50% chance of evolving into Three-Segment Form Dudunsparce, whereas Dunsparce from the same [[generation]]s with other Natures or the Ability {{a|Run Away}} will always evolve into the Two-Segment Form (unless a Dunsparce with Run Away came from {{pkmn|Colosseum}})&lt;br /&gt;
{{Evobox/1branch2&lt;br /&gt;
|type1=Normal&lt;br /&gt;
|no1=0206&lt;br /&gt;
|name1=Dunsparce&lt;br /&gt;
|type1-1=Normal&lt;br /&gt;
|evo1a={{bag/s|Rare Candy|SV}} + [[File:Bag TM Normal SV Sprite.png|40px|link=Hyper Drill (move)]] + [[File:Bag Loaded Dice SV Sprite.png|40px|link=Personality value]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}}&amp;lt;br&amp;gt;knowing {{color2|000|Hyper Drill (move)|Hyper Drill}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with a certain&amp;lt;br&amp;gt;{{color2|000|personality value|encryption constant}})&lt;br /&gt;
|no2a=0982&lt;br /&gt;
|name2a=Dudunsparce&lt;br /&gt;
|form2a=Two-Segment&lt;br /&gt;
|type1-2a=Normal&lt;br /&gt;
|evo1b={{bag/s|Rare Candy|SV}} + [[File:Bag TM Normal SV Sprite.png|40px|link=Hyper Drill (move)]] + [[File:Bag Loaded Dice SV Sprite.png|40px|link=Personality value]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}}&amp;lt;br&amp;gt;knowing {{color2|000|Hyper Drill (move)|Hyper Drill}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;(with a certain&amp;lt;br&amp;gt;{{color2|000|personality value|encryption constant}})&lt;br /&gt;
|no2b=0982&lt;br /&gt;
|art2b=0982Dudunsparce-Three&lt;br /&gt;
|name2b=Dudunsparce&lt;br /&gt;
|form2b=Three-Segment&lt;br /&gt;
|type1-2b=Normal}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Normal}}&lt;br /&gt;
{{Spritebox/NA|gen=II}}&lt;br /&gt;
{{Spritebox/2|ndex=206}}&lt;br /&gt;
{{Spritebox/3|ndex=206}}&lt;br /&gt;
{{Spritebox/4|ndex=206}}&lt;br /&gt;
{{Spritebox/5|ndex=206}}&lt;br /&gt;
{{Spritebox/6|ndex=206|crop=68}}&lt;br /&gt;
{{Spritebox/7|ndex=206|crop=67}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8|ndex=206}}&lt;br /&gt;
{{Spritebox/9|ndex=0206}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=0206}}&lt;br /&gt;
{{Spritebox/Footer|206|Dunsparce}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Dunsparce anime.png|thumb|250px|Dunsparce in {{aniseries|BW}}]]&lt;br /&gt;
===Major appearances===&lt;br /&gt;
Dunsparce debuted in &#039;&#039;[[EP191|The Dunsparce Deception]]&#039;&#039;, where an entire town was full of children owning Dunsparce. [[Bucky]] was the only child without a Dunsparce and asked {{Ash}} and {{ashfr}} for assistance. In the end, he was able to {{pkmn2|caught|catch}} one.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[BW131|The Path That Leads to Goodbye!]]&#039;&#039;, Ash tried to catch a Dunsparce, but [[Iris&#039;s Axew]] bumped into [[Ash&#039;s Pikachu]], which led to Dunsparce escaping.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[XY059|Under the Pledging Tree!]]&#039;&#039;, Ash wanted to catch another Dunsparce, but was unable to, as he didn&#039;t have any [[Poké Ball]]s on hand at that moment, thus letting Dunsparce get away again.&lt;br /&gt;
&lt;br /&gt;
===Minor appearances===&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[The Legend of Thunder!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP001|Following a Maiden&#039;s Voyage!]]&#039;&#039;, a Dunsparce was trapped in an {{p|Ariados}}&#039;s web.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[DP061|Team Shocker!]]&#039;&#039;, a {{pkmn|Coordinator}}&#039;s Dunsparce competed in the [[Appeal|Performance Stage]] of the {{to|Solaceon}} {{pkmn|Contest}}.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in a flashback in &#039;&#039;[[JN032|Time After Time!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Dunsparce appeared during a flashback in &#039;&#039;[[HZ018|Flying Pikachu, Rising Higher and Higher!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Two Dunsparce appeared in &#039;&#039;[[HZ051|The Flower Tower]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[HZ052|Wattrel&#039;s High Wind Warning!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[HZ075|The Wonders of the World!]]&#039;&#039;, during a flashback.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Animedexheader|Johto}}&lt;br /&gt;
{{Animedexbody|EP191|Dunsparce|Ash&#039;s Pokédex|Dunsparce, the Land Snake Pokémon. When discovered, the Dunsparce uses its tail to burrow into the earth and evade capture.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Johto}}&lt;br /&gt;
{{Animedexheader|Unova}}&lt;br /&gt;
{{Animedexbody|BW131|Dunsparce|Ash&#039;s Pokédex|Dunsparce, the Land Snake Pokémon. Dunsparce uses its tail to dig its elaborate nest.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Unova}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Roseanne Dunsparce Adventures.png|thumb|110px|Dunsparce in [[Pokémon Adventures]]]]&lt;br /&gt;
===Pocket Monsters XY: The Legend of the Pokémon Dragon King===&lt;br /&gt;
A Dunsparce appeared in [[LDK1]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{adv|Crystal}} encountered a {{pkmn2|wild}} Dunsparce in &#039;&#039;[[PS119|A Flaaffy Kerfuffle]]&#039;&#039;. It and a {{p|Flaaffy}} became stranded on a boat owned by {{adv|Bill}}. They were rescued by Crystal and captured so {{adv|Professor Oak}} could research them.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce owned by [[Lostelle]] first appeared in &#039;&#039;[[PS275|A Vicious Cycle of Possibilities]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce appeared in &#039;&#039;[[PS332|The Final Battle V]]&#039;&#039;, during a flashback of {{adv|Emerald}}&#039;s past.&lt;br /&gt;
&lt;br /&gt;
A Dunsparce owned by [[Roseanne]] first appeared in &#039;&#039;[[PS392|Well Met, Weepinbell]]&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Mangadexheader}}&lt;br /&gt;
{{Mangadexbody|Pokémon Adventures|[[PS119]]|Whenever it&#039;s being scrutinized at or if it feels threatened, it will start drilling a hole with its tail, in an attempt to escape from underground.{{tt|*|Chuang Yi&#039;s translation}}}}&lt;br /&gt;
{{Mangadexfooter}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Dunsparce (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In the {{pkmn|animated series}}, Dunsparce is usually shown to be much shorter than 4&#039;11&amp;quot; (1.5 m), which is its listed height (or in this case, length) in the {{pkmn|games}}.&lt;br /&gt;
** It is also shown as much smaller than its listed height in [[Pokémon Mystery Dungeon: Gates to Infinity]] and [[Pokémon Super Mystery Dungeon]], being even smaller than {{p|Pikachu}}.&lt;br /&gt;
* Dunsparce was designed by [[Hironobu Yoshida]].&amp;lt;ref&amp;gt;[http://wayback.archive.org/web/20080704081535/http://www.gpara.com/contents/creator/bn_225.htm Drill Dozer interview by Gpara] (Japanese)&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
{{Bulbanews|On the Origin of Species: Dunsparce}}&lt;br /&gt;
Dunsparce appears to be based on the snake-like {{wp|Tsuchinoko}} cryptid of Japan. Visually, its design may be a pun on one of the cryptid&#039;s other names, バチヘビ &#039;&#039;bachi hebi&#039;&#039; (bee snake), as Dunsparce appears to combine bee- and snake-like features. It may draw specific inspiration from {{wp|Anthophorini|digger bees}}. Its perpetually closed eyes and {{wp|drill}}-like tail, which also resembles a {{wp|rattlesnake}}&#039;s rattle, may have been inspired by the {{wp|vestigiality|vestigial}} eyes and barbed tail of {{wp|Typhlopidae|blind snakes}}. Its tendency to burrow backward is similar to {{wp|Ophichthidae|snake eels}}, as well as the {{wp|Cirriformia|thread-gilled worm}} &#039;&#039;Cirriformia moorei&#039;&#039;. Dunsparce may also have connections to {{wp|Amphiptere}}s, such as {{wp|Quetzalcoatl}}, or {{wp|flying snakes}}. Its gourd-shaped body may reference gourd-shaped sake bottles, given that the Tsuchinoko is said to have a taste for alcohol.&lt;br /&gt;
&lt;br /&gt;
Given its larviform appearance, horn-like tail, and ring-circled eyes that resemble the {{wp|Eyespot (mimicry)|eyespots}} of some species, Dunsparce may draw inspiration from {{wp|Sphingidae|sphinx moth caterpillars}}, which have a history of being mistaken for the Tsuchinoko. This may double as a nod to the Nozuchi, a large caterpillar-like creature thought to be synonymous with the Tsuchinoko.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Dunsparce may be a combination of &#039;&#039;dun&#039;&#039; (a dull, sandy brown - the colour of Dunsparce&#039;s eyes and back; or a subadult mayfly) and &#039;&#039;sparse&#039;&#039;, for its rarity.&lt;br /&gt;
&lt;br /&gt;
Nokocchi may be derived from an {{wp|anagram}} of ツチノコ, the katakana spelling of 槌の子 &#039;&#039;tsuchinoko&#039;&#039; (a fabled snake-like creature).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Normal|type2=Normal&lt;br /&gt;
|ja=ノコッチ &#039;&#039;Nokocchi&#039;&#039;|jameaning=From ツチノコ / 槌の子 &#039;&#039;{{wp|tsuchinoko}}&#039;&#039;&lt;br /&gt;
|fr=Insolourdo|frmeaning=From {{tt|&#039;&#039;insolite&#039;&#039;|unusual}} and {{tt|&#039;&#039;lourdaud&#039;&#039;|graceless, clumsy or slow-witted}}&lt;br /&gt;
|es=Dunsparce|esmeaning=Same as English name&lt;br /&gt;
|de=Dummisel|demeaning=From {{tt|&#039;&#039;dumm&#039;&#039;|stupid}} and {{tt|&#039;&#039;Meißel&#039;&#039;|chisel}}&lt;br /&gt;
|it=Dunsparce|itmeaning=Same as English name&lt;br /&gt;
|ko=노고치 &#039;&#039;Nogochi&#039;&#039;|komeaning=Transcription of Japanese name&lt;br /&gt;
|zh_cmn=土龍弟弟 / 土龙弟弟 &#039;&#039;Tǔlóngdìdì&#039;&#039;|zh_cmnmeaning=From {{tt|土龍 / 土龙 &#039;&#039;tǔlóng&#039;&#039;|tsuchinoko}} and {{tt|弟弟 &#039;&#039;dìdì&#039;&#039;|younger brother}}&lt;br /&gt;
|zh_yue=土龍弟弟 &#039;&#039;Tóulùhngdàihdái&#039;&#039;|zh_yuemeaning=From {{tt|土龍 &#039;&#039;tóulùhng&#039;&#039;|tsuchinoko}} and {{tt|弟弟 &#039;&#039;dàihdái&#039;&#039;|younger brother}}&lt;br /&gt;
|hi=विरीरेंग &#039;&#039;Virireng&#039;&#039;|himeaning=From {{tt|रेंगना &#039;&#039;rengna&#039;&#039;|crawling/creeping}}&lt;br /&gt;
|ru=Данспарс &#039;&#039;Danspars&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=โนก็อจจิ &#039;&#039;Nokotchi&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Dunsparce (Gates to Infinity)]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Normal}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Normal|prevnum=0205|prev=Forretress|nextnum=0207|next=Gligar}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon that evolve with certain moves]]&lt;br /&gt;
[[Category:Pokémon that evolve with Hyper Drill]]&lt;br /&gt;
[[Category:Shadow Pokémon in Pokémon Colosseum]]&lt;br /&gt;
[[Category:Pokémon with cross-generational Evolutions]]&lt;br /&gt;
&lt;br /&gt;
[[de:Dummisel]]&lt;br /&gt;
[[es:Dunsparce]]&lt;br /&gt;
[[fr:Insolourdo]]&lt;br /&gt;
[[it:Dunsparce]]&lt;br /&gt;
[[ja:ノコッチ]]&lt;br /&gt;
[[zh:土龙弟弟]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Nuzlocke_Challenge&amp;diff=4293919</id>
		<title>Nuzlocke Challenge</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Nuzlocke_Challenge&amp;diff=4293919"/>
		<updated>2025-05-05T11:53:20Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Decreased difficulty */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Basic Nuzlocke rules.png|thumb|300px|The two basic Nuzlocke rules]]&lt;br /&gt;
The &#039;&#039;&#039;Nuzlocke Challenge&#039;&#039;&#039; is a set of rules intended to create a higher level of difficulty while playing the [[Pokémon games]]. A playthrough using these rules is often called &amp;quot;&#039;&#039;&#039;a Nuzlocke&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Nuzlockes are a popular way to play the games among {{pkmn|fandom|fans}}. Many feel that the rules encourage greater Pokémon variety, create value for ones the player would not normally choose, and promote closer bonds with the player&#039;s team. The rules are not an in-game function, but self-imposed on the player&#039;s part, and thus subject to variation.&lt;br /&gt;
&lt;br /&gt;
The challenge originates from the &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://www.nuzlocke.com/ comic series]&amp;lt;/span&amp;gt; of the same name, which features a {{p|Nuzleaf}} resembling &#039;&#039;{{wp|Lost (2004 TV series)|Lost}}&#039;&#039; character {{wp|John Locke (Lost)|John Locke}} as a recurring gag character.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The basic rules were invented by Nick Franco, a Californian screenwriter and then-university-student, in March 2010. Franco posted comics depicting his playthrough of [[Pokémon Ruby]] to 4chan&#039;s /v/ board, where they gained attention and inspired others to try the challenge.&amp;lt;ref&amp;gt;https://www.vox.com/culture/2019/11/22/20976759/pokemon-what-is-nuzlocke-challenge-sword-shield&amp;lt;/ref&amp;gt; The following month, Franco launched a website for his comics and a forum for fans&#039; challenge chronicles.&amp;lt;ref&amp;gt;https://nuzlockeforums.com/forum/threads/reflecting-on-12-years-of-the-nuzlocke-challenge-nostalgia-on-how-it-all-started.20929/&amp;lt;/ref&amp;gt; Over time, the concept spread to various websites and formats such as written stories, animations and livestreams.&lt;br /&gt;
&lt;br /&gt;
Franco uses &amp;quot;Nuzlocke&amp;quot; as a screen name, while his comic is titled &amp;quot;Pokémon: Hard-Mode&amp;quot;. However, the word Nuzlocke eventually came to be associated with the ruleset itself.&lt;br /&gt;
&lt;br /&gt;
==Rules==&lt;br /&gt;
===Basic rules===&lt;br /&gt;
&amp;lt;!-- Putting a Pokémon in the PC when it faints instead of releasing it is NOT a basic rule of the Nuzlocke Challenge and any edit stating so will be reverted. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Nuzlocke Challenge has only two rules that must be followed:&lt;br /&gt;
*&#039;&#039;&#039;Limited Encounters:&#039;&#039;&#039; The {{player}} may only catch the first [[wild Pokémon]] encountered in each area, and no others. If the first wild Pokémon encountered faints or flees, there are no second chances.&lt;br /&gt;
**If the first encounter in an area is a [[Double Battle]] or [[Horde Encounter]], the player may choose which of the encountered Pokémon to catch, but only one of them.&lt;br /&gt;
*&#039;&#039;&#039;Dying&#039;&#039;&#039;: Any Pokémon that [[Fainting|faints]] is considered dead and must be {{pkmn2|released}}. Revival methods such as [[Revive]], [[Revival Blessing (move)|Revival Blessing]], etc. are forbidden. If the player runs out of living Pokémon, they&#039;ve failed the challenge and must restart the game.&lt;br /&gt;
&lt;br /&gt;
===Near-universal rules===&lt;br /&gt;
*&#039;&#039;&#039;Mandatory Nicknames:&#039;&#039;&#039; The player must nickname all of their Pokémon, for the sake of forming stronger emotional bonds.&lt;br /&gt;
*&#039;&#039;&#039;&amp;quot;Met in&amp;quot; Confirmation:&#039;&#039;&#039; If the player is unsure whether a location is a valid new encounter or not, such as multiple levels of a cave, they can look at the Pokémon&#039;s [[summary]] page to see where they were &amp;quot;Met&amp;quot; in order to confirm whether it&#039;s a new location or not.&lt;br /&gt;
**&#039;&#039;&#039;Gift Pokémon:&#039;&#039;&#039; Some players consider [[Gift Pokémon]] (such as the {{p|Eevee}} found in the [[Celadon Condominiums]]) to be separate encounters from wild Pokémon encountered in the same area.&lt;br /&gt;
***As of [http://www.nuzlocke.com/comics/pokemon-hard-mode/page/11/ White: Hard-Mode, Episode 3], it is implied that the player can accept Pokémon that are received freely from NPCs.&lt;br /&gt;
*&#039;&#039;&#039;No Resets:&#039;&#039;&#039; The player may not voluntarily soft-reset to undo progress. Being able to do so would render all other rules pointless.&lt;br /&gt;
*&#039;&#039;&#039;No Cheating:&#039;&#039;&#039; Cheating devices (such as [[GameShark]]) may not be used except to make the game harder (such as cheating to disable [[Exp. Share]] in games that don&#039;t allow such an option.)&lt;br /&gt;
*&#039;&#039;&#039;Full Wipe:&#039;&#039;&#039; A [[Black out|black out/white out]] is considered to be &#039;game over&#039; even if there are live Pokémon left in the [[Pokémon Storage System]].&lt;br /&gt;
*&#039;&#039;&#039;No Outside Trading:&#039;&#039;&#039; The player may only use Pokémon obtained through in-game methods, meaning that [[Trade|trading]] with other save files, [[Mystery Gift]]s, etc. are all prohibited.&lt;br /&gt;
**&#039;&#039;&#039;Trade Evolution Clause:&#039;&#039;&#039; There is no firm consensus on trading a [[trade Evolution]] Pokémon away and back to one&#039;s file to evolve it.&lt;br /&gt;
*&#039;&#039;&#039;Boxing:&#039;&#039;&#039; Deceased Pokémon may be permanently sent to the [[Pokémon Storage System]] or [[transfer]]red to another game rather than releasing them.&lt;br /&gt;
&lt;br /&gt;
===Optional rules===&lt;br /&gt;
Though the above rules tend to stay consistent with all players, many variant rules have been created to adjust difficulty based on personal preference. Many other rules exist besides those listed here. Regardless of the optional rules used, the run is considered a Nuzlocke Challenge so long as the two basic rules are in place.&lt;br /&gt;
&lt;br /&gt;
====Increased difficulty====&lt;br /&gt;
===== &#039;&#039;Battle restrictions&#039;&#039; =====&lt;br /&gt;
* &#039;&#039;&#039;Set Mode Clause:&#039;&#039;&#039; The battle style must be changed to &amp;quot;Set&amp;quot; in the options menu, meaning the player does not get the opportunity to switch out their Pokémon after an opponent&#039;s Pokémon faints. In [[Pokémon Scarlet and Violet]], where there is no set mode, the player must manually decide not to switch each time.&lt;br /&gt;
* &#039;&#039;&#039;Equal Parties/Fair Fight Clause:&#039;&#039;&#039; During Gym Leader and [[rival]] battles, the [[Party|active party]] must not have more Pokémon than the opponent&#039;s.&lt;br /&gt;
* &#039;&#039;&#039;No Items:&#039;&#039;&#039; No items may be used during battles except for [[held items]]. Limitation due to perceived power-level of X-items.&lt;br /&gt;
* &#039;&#039;&#039;No Heal Items:&#039;&#039;&#039; [[Potion]]s and [[Status condition healing item|status-healing items]] may not be used.&lt;br /&gt;
* &#039;&#039;&#039;No Held Items: &#039;&#039;&#039;Held items may not be used.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Leveling restrictions&#039;&#039; =====&lt;br /&gt;
* &#039;&#039;&#039;Level Cap: &#039;&#039;&#039;The player may not use Pokémon above the level of the next [[Gym Leader]]/[[Elite Four]]/{{pkmn|Champion}}&#039;s highest-levelled Pokémon (their &amp;quot;ace&amp;quot;). Pokémon that exceed the level limit might be left in storage until they become eligible, or they might have to be released.&lt;br /&gt;
* &#039;&#039;&#039;No Evolving: &#039;&#039;&#039;The player must use the B-button to cancel any evolutions under their ownership.&lt;br /&gt;
* &#039;&#039;&#039;No Child Support:&#039;&#039;&#039; The {{pkmn|Day Care}} may not be used.&lt;br /&gt;
* &#039;&#039;&#039;No Exp Share: &#039;&#039;&#039;The [[Exp. Share]] may not be used. (This does not apply to games starting from [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], where the Exp. Share can&#039;t be disabled without third-party tools.)&lt;br /&gt;
*&#039;&#039;&#039;No Candy:&#039;&#039;&#039; [[Rare Candy]] and [[Exp. Candy]] may not be used.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Overworld restrictions&#039;&#039; =====&lt;br /&gt;
* &#039;&#039;&#039;No/Limited Pokémon Centers:&#039;&#039;&#039; Pokémon Centers may not be used, or only used a certain number of times per Center, or a certain number of times between each Gym.&lt;br /&gt;
* &#039;&#039;&#039;No Buying: &#039;&#039;&#039;No items may be purchased from NPCs; the player must rely on what they find in the overworld or receive for free.&lt;br /&gt;
* &#039;&#039;&#039;Limited Balls:&#039;&#039;&#039; Only a certain number of [[Poké Ball]]s may be purchased per store.&lt;br /&gt;
* &#039;&#039;&#039;No Escape:&#039;&#039;&#039; The player may not [[Escape|flee]] from battle.&lt;br /&gt;
**&#039;&#039;&#039;No Wild Encounters:&#039;&#039;&#039; Alternatively, the player must flee whenever possible, in order to limit the amount of [[experience]] gained.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Pokémon restrictions&#039;&#039; =====&lt;br /&gt;
* &#039;&#039;&#039;Random Starter:&#039;&#039;&#039; The [[first partner Pokémon]] must be randomly chosen. A common system is: if the last digit of the character&#039;s [[Trainer ID number]] is 1-3, the player must choose the Grass-type first partner Pokémon; if it is 4-6, the Fire-type; if it is 7-9, the Water-type; if it is 0, free choice. Alternatively, use the Trainer ID {{wp|Modulo operation|modulo}} 3: remainder 0 = Grass, remainder 1 = Fire, remainder 2 = Water.&lt;br /&gt;
* &#039;&#039;&#039;Caught Only:&#039;&#039;&#039; The first partner Pokémon must be released or boxed after the first wild Pokémon is caught.&lt;br /&gt;
* &#039;&#039;&#039;One Per Gym:&#039;&#039;&#039; The player may only catch the first Pokémon after each Gym Leader instead of in each area.&lt;br /&gt;
* &#039;&#039;&#039;Ban List:&#039;&#039;&#039; Certain Pokémon such as [[Legendary Pokémon|Legendaries]], [[Pseudo-legendary Pokémon|Pseudo-Legendaries]], and/or other powerful Pokémon are banned as they excessively mitigate the difficulty of the challenge.&lt;br /&gt;
* &#039;&#039;&#039;Monotype/Monocolor Challenge:&#039;&#039;&#039; Only Pokémon of a certain [[Type]] or [[List of Pokémon by color|color]] may be used. Rather than the first Pokémon encountered in an area, the player may catch the first one which fits the category or will evolve into fitting the category. If a Pokémon would lose the category upon evolution, it may not evolve.&lt;br /&gt;
* &#039;&#039;&#039;Notepad Clause:&#039;&#039;&#039; No Pokémon may be kept in the PSS; in other words, the player may only own six Pokémon at a time. This was named after its inventor, user &amp;quot;Notepad&amp;quot; on the now-defunct original Nuzlocke Forum.&lt;br /&gt;
** &#039;&#039;&#039;Notepad Extreme/First 6 Only:&#039;&#039;&#039; The player may only own six Pokémon throughout the entire run. If all six faint or otherwise become ineligible, then it&#039;s an instant &#039;game over&#039;.&lt;br /&gt;
* &#039;&#039;&#039;Giftlocke:&#039;&#039;&#039; Only [[Gift Pokémon]] may be used. Catching and breeding Pokémon are banned.&lt;br /&gt;
* &#039;&#039;&#039;No Repels:&#039;&#039;&#039; It is forbidden to use [[Repel]]s before the first encounter on a route, as this can guarantee certain appearances. Alternatively, it is forbidden to use Repels whatsoever, in order to expose the team to more danger.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Miscellaneous&#039;&#039; =====&lt;br /&gt;
*&#039;&#039;&#039;Limited Training: &#039;&#039;&#039;Quality-of-life features such as [[Pokémon-Amie]], the [[DexNav]] and [[Super Training]] may not be used.&lt;br /&gt;
*&#039;&#039;&#039;Challenge Mode:&#039;&#039;&#039; ({{2v2|Black|White|2}} only) The difficulty must be set to [[Key System|Challenge Mode]], which increases the levels of opposing Trainers&#039; Pokémon. This is not frequently used because, due to [[List of battle glitches in Generation V#Challenge Mode stat glitch|a glitch]], the stats of NPC-owned Pokémon are based on the level in Normal Mode.&lt;br /&gt;
*&#039;&#039;&#039;Memory Only:&#039;&#039;&#039; Online aids (walkthroughs, NPC team info, etc.) may not be used.&lt;br /&gt;
*&#039;&#039;&#039;Speedrun:&#039;&#039;&#039; In addition to the Nuzlocke rules, the player tries to defeat the Champion with as little &amp;quot;time played&amp;quot; on the save file counter as possible.&lt;br /&gt;
*&#039;&#039;&#039;Progression Sacrifice:&#039;&#039;&#039; After each [[Badge]] the player randomly selects one party member to sacrifice.&lt;br /&gt;
&lt;br /&gt;
====Decreased difficulty====&lt;br /&gt;
*&#039;&#039;&#039;Slow Start:&#039;&#039;&#039; The two basic rules are not in effect until the player has gained their first [[Poké Ball]]s and thus the ability to catch Pokémon. For example, encounters starting from the {{p|Poochyena}}{{sup/3|RS}}{{sup/6|ORAS}}/{{p|Zigzagoon}}{{sup/3|E}} that the player has to save [[Professor Birch]] from, up to when the player can catch Pokémon, are not counted. Likewise, in the games where the first rival battle is immediately after obtaining the first partner Pokémon, the &amp;quot;release or permanently box a Pokémon if it faints&amp;quot; rule is often not enforced at that time.&lt;br /&gt;
*&#039;&#039;&#039;Species/Dupes Clause:&#039;&#039;&#039; The &amp;quot;first wild Pokémon in each area&amp;quot; rule does not apply in an area until a Pokémon in an evolutionary line is encountered that has not been caught yet. For example, if the player&#039;s first encounter in an area is with a {{p|Caterpie}} and they already own a Caterpie, {{p|Metapod}}, or {{p|Butterfree}}, it wouldn&#039;t count as their first encounter in that area. This allows for increased variety in a Pokémon collection.&lt;br /&gt;
**A limit may be set on how many times the player can apply the Species/Dupes Clause in an area. If this many duplicate Pokémon are encountered in an area, the Species/Dupes Clause is no longer applied for that area and the player must settle for the next Pokémon they encounter.&lt;br /&gt;
**&#039;&#039;&#039;Dusty Clause/Token Clause&#039;&#039;&#039;: During a monotype or monocolor run, for each area the player passes through which has no valid encounters, they might collect one &amp;quot;token&amp;quot; which is &amp;quot;spent&amp;quot; to catch an extra valid Pokémon in the future. Named after its inventor, user &amp;quot;Dustox&amp;quot; on the Nuzlocke Forum.&lt;br /&gt;
*&#039;&#039;&#039;Second Chance:&#039;&#039;&#039; The player may have a small number of &amp;quot;second chances&amp;quot; or revives of fallen team members. Typically this type of ruling is done by Gym, such as getting 1 revive per Badge.&lt;br /&gt;
*&#039;&#039;&#039;Shiny Clause:&#039;&#039;&#039; [[Shiny Pokémon]] can be caught even if they&#039;re not a first encounter, and do not need to be released if they faint. It&#039;s up to the player whether Shinies may be used during the challenge, or merely traded away/transferred to another game for safekeeping.&lt;br /&gt;
**&#039;&#039;&#039;Shiny Replacement Clause:&#039;&#039;&#039; A compromise where Shiny Pokémon may be used in a Nuzlocke, but another Pokémon must be released in exchange.&lt;br /&gt;
*&#039;&#039;&#039;Checkpoints:&#039;&#039;&#039; Each Gym Badge can act as a checkpoint. If the player gets a game over, they may restart from when they won their last Badge.&lt;br /&gt;
*&#039;&#039;&#039;HM Helper:&#039;&#039;&#039; If the player has no Pokémon that can use a [[field move]] that is required to continue the game, they may catch another Pokémon to use the required field move. However, this Pokémon cannot be used in battle and must be released as soon as it is no longer needed or if the player catches another Pokémon that can use the same field move.&lt;br /&gt;
*&#039;&#039;&#039;On Safari: &#039;&#039;&#039;The &amp;quot;first encounter only&amp;quot; rule is modified for the [[Safari Zone]]. One catch may be permitted for each sector of the Zone, rather than the more restrictive interpretation that the entire Zone is one area. This rule is largely used to due to the varied encounter pools of each sector, and the Safari Zones often containing many Pokémon not found elsewhere.&lt;br /&gt;
**Similarly, the [[Pokémon Den]]s of Galar&#039;s [[Wild Area]] can be interpreted as their own &amp;quot;new area&amp;quot; each, rather than only making one catch from the entire Wild Area or from each named sub-area.&lt;br /&gt;
**Areas sharing a name but divided by story progression may be considered two distinct areas, such as [[Unova]]&#039;s [[Pinwheel Forest]], which contains an outer area accessible before beating the [[Nacrene Gym]], and an inner area accessible afterwards, each with their own encounter pools.&lt;br /&gt;
*&#039;&#039;&#039;A Little Help From My Friends: &#039;&#039;&#039;Cheating devices (such as [[GameShark]]) may be used.&lt;br /&gt;
**&#039;&#039;&#039;Rare Candy Clause:&#039;&#039;&#039; Hack in infinite [[Rare Candy|Rare Candies]] to avoid tedious grinding. It was popularized by the streamer Pokémon Challenges.&lt;br /&gt;
**&#039;&#039;&#039;Master Ball Clause:&#039;&#039;&#039; Hack in infinite [[Master Ball]]s to avoid wild Pokémon accidentally being knocked out, [[Escape|running away]], or using escape moves like {{m|Teleport}} and {{m|Roar}}.&lt;br /&gt;
&lt;br /&gt;
==Variant rulesets==&lt;br /&gt;
*&#039;&#039;&#039;Hardcore Nuzlocke:&#039;&#039;&#039; A general name for any Nuzlocke variant which restricts item use and over-leveling, in order to produce a more difficult run and more strategic play.&lt;br /&gt;
*&#039;&#039;&#039;Wonderlocke&#039;&#039;&#039;: Any Pokémon caught must immediately be traded using [[Wonder Trade]] and the received Pokémon is used instead. Typically, this comes with a level restriction where if the received Pokémon is more than a certain number of levels higher than the original Pokémon, it must be traded again until an appropriate-level Pokémon is received.&lt;br /&gt;
*&#039;&#039;&#039;Soul-Link&#039;&#039;&#039;: Two-player variant where both players&#039; Pokémon are &amp;quot;soul-linked&amp;quot; based on their origin. So the first partner Pokémon are linked, the Pokémon from Route 1 are linked, and so on. If a Pokémon dies, its soulmate does too. Linked Pokémon must be in both players&#039; parties at once, i.e., one cannot leave a Pokémon in the PSS while its soulmate is on the active team.&lt;br /&gt;
**Common additional rules include restricting duplicate types between the two players. If either player is using a Pokémon of a certain type, the other player cannot use any Pokémon of that same type. If both players find the same type of Pokémon for one encounter, neither is able to use it.&lt;br /&gt;
*&#039;&#039;&#039;Egglocke&#039;&#039;&#039;: The player catches Pokémon, 1 per route as normal, but instead of using the Pokémon caught, they hatch a randomly generated egg. Usually this is done via trades or cheat devices, where the egg Pokémon are chosen by a third party, such as friends or a streaming audience.&lt;br /&gt;
*&#039;&#039;&#039;Wedlocke&#039;&#039;&#039;: Each pair of Pokémon is married/bonded based on the order they&#039;re caught in. A Pokémon can only switch out for its bondmate. If a Pokémon dies, its bondmate must be the next one sent in. If one &amp;quot;widow&amp;quot; survives a battle, they might either remarry the next catch, or get perma-boxed (&amp;quot;retire out of grief&amp;quot;).&lt;br /&gt;
*&#039;&#039;&#039;Randomizer:&#039;&#039;&#039; Randomizer mods can be used to add more variety to Nuzlockes. However, encountering a Legendary or other powerful Pokémon early can greatly reduce difficulty. Additionally, catch rates may have to be adjusted via the Randomizer in order for Legendary Pokémon to be feasibly caught using low-tier Balls.&lt;br /&gt;
*&#039;&#039;&#039;Alphabetlocke:&#039;&#039;&#039; The six Pokémon in the active party must be the first six species names in alphabetical order (or reverse alphabetical). For example, if the player has a Squirtle, Pidgey, Mankey, Beedrill, Pikachu, Geodude, Clefairy, and Abra, then the player&#039;s active team is: Abra, Beedrill, Clefairy, Geodude, Mankey, Pidgey. Then if Mankey evolves into Primeape, its new name is lower in alphabetical order, so Pikachu takes its spot on the team.&lt;br /&gt;
*&#039;&#039;&#039;Lorelocke:&#039;&#039;&#039; [https://nuzlockeforums.com/forum/threads/the-lorelocke-celebrating-5-years-ama-of-rubyclaw-and-mewstein-included-and-update-1-60-with-all-gen-7-pokemon.2197/ A large ruleset] with individual rules for each species, inspired by mythological creatures and stories.&lt;br /&gt;
*&#039;&#039;&#039;Ballocke:&#039;&#039;&#039; Instead of limiting Pokémon by route, this variant limits by type of Ball. Only one Pokémon may be caught in a Poké Ball, one may be caught in a Great Ball, one in a Quick Ball, etc.&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
*&#039;&#039;&#039;Repel Encounter Manipulation:&#039;&#039;&#039; Having a [[Repel]] active and a Pokémon in the first position at a specific level can be used to filter out unwanted encounters and in some cases guarantee specific encounters.&lt;br /&gt;
*&#039;&#039;&#039;Sacking:&#039;&#039;&#039; For difficult encounters, it is wise to have at least one Pokémon you are willing to sacrifice in order to switch to a better one. Recommended Pokémon to be sacked are: ones with weak base stats, ones whose type is shared by a more powerful teammate, or ones who could have a replacement caught in an upcoming place.&lt;br /&gt;
*&#039;&#039;&#039;Play Around The Crit:&#039;&#039;&#039; Being aware if your Pokémon is in danger of being taken out by a [[critical hit]] is key to avoiding unnecessary deaths. [[Generation I]] has a critical hit damage multiplier between 1.5× and 1.95× depending on the level, with higher levels doing more damage. From Generations {{gen|II}} to {{gen|V}}, the damage dealt by a critical hit is 2× as much as a normal hit. From [[Generation VI]] onward, critical hits deal 1.5× more damage. Also, critical hits ignore stat changes, such as increased Defense with Defense Curl.&lt;br /&gt;
*&#039;&#039;&#039;Avoid Unnecessary Encounters:&#039;&#039;&#039; Trainers use better decision-making and have higher levels on average than wild Pokémon within the same route. Avoiding non-required trainer battles increases the chance your Pokémon will survive.&lt;br /&gt;
*&#039;&#039;&#039;Be Aware of Mandatory Battles:&#039;&#039;&#039; Don&#039;t trigger mandatory battles, such as rival fights, without first making sure your team is fully healed and properly leveled.&lt;br /&gt;
*&#039;&#039;&#039;Don&#039;t Underlevel:&#039;&#039;&#039; There is no reason to have an under-leveled Pokémon during important battles. Even if adhering to Gym Leader level restrictions, make sure to have your team at the level cap before you challenge the Leader.&lt;br /&gt;
*&#039;&#039;&#039;Protect the Important Ones:&#039;&#039;&#039; Be aware of which Pokémon are best suited to upcoming Gyms, and do not expose them to unnecessary risks such as fighting a strong Route trainer.&lt;br /&gt;
*&#039;&#039;&#039;Baiting:&#039;&#039;&#039; {{pkmn|Trainer}}-owned Pokémon will choose the move that is most effective against the enemy Pokémon. As such, you can bait certain moves in order to get a free switch. A common example is having a Pokémon weak to {{type|Ground}} moves out on the field and then switch to a Pokémon that is immune to Ground moves, such as a {{type|Flying}} Pokémon or a Pokémon with {{a|Levitate}}.&lt;br /&gt;
*&#039;&#039;&#039;Generational Awareness:&#039;&#039;&#039; Be aware of changes between generations. For example: {{a|Sturdy}}, in Generations {{gen|III}} and {{gen|IV}} only, protects against [[one-hit knockout move]]s, while in Generation V onward, it protects the Pokémon from being knocked out with one hit while at full HP.&lt;br /&gt;
*&#039;&#039;&#039;PP Stall:&#039;&#039;&#039; Using healing moves or items (if allowed) in order to force a dangerous encounter to waste all their good moves. Typically, this is used for low-PP moves that deal large amounts of damage. If successful, this can lead to the enemy using {{m|Struggle}} to knock itself out.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*So far in the original Nuzlocke comics, one first partner Pokémon of each type has been used: {{p|Treecko}} in [[Pokémon Ruby and Sapphire Versions|Ruby]], {{p|Charmander}} in [[Pokémon FireRed and LeafGreen Versions|FireRed]], and {{p|Oshawott}} in the ongoing [[Pokémon Black and White Versions|White]] challenge.&lt;br /&gt;
*The original Nuzlocke run through Ruby was a failure, due to the entire active team dying in the Champion battle.&lt;br /&gt;
*In the Nuzlocke Forums&#039; [https://nuzlockeforums.com/forum/threads/final-team-frequency-4-0.20759/ log of successful runs], the most victorious Pokémon of all time is {{p|Gyarados}}, which has survived 240 recorded Champion battles at time of writing.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.nuzlocke.com/ The original Nuzlocke Comics]&lt;br /&gt;
*[https://nuzlockeforums.com/forum/index.php The Nuzlocke Forums]&lt;br /&gt;
*[https://old.reddit.com/r/nuzlocke/ Nuzlocke discussions on Reddit]&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
{{Pokémon fandom}}&lt;br /&gt;
{{Project Fandom notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Fandom]]&lt;br /&gt;
[[Category:Fanon terminology]]&lt;br /&gt;
&lt;br /&gt;
[[de:Pokémon-Challenges#Nuzlocke]]&lt;br /&gt;
[[fr:Nuzlocke Challenge]]&lt;br /&gt;
[[it:Nuzlocke Challenge]]&lt;br /&gt;
[[ja:Nuzlocke Challenge]]&lt;br /&gt;
[[zh:附录:Nuzlocke挑战]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Gholdengo_(Pok%C3%A9mon)&amp;diff=4251750</id>
		<title>Gholdengo (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Gholdengo_(Pok%C3%A9mon)&amp;diff=4251750"/>
		<updated>2025-03-01T23:33:13Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Steel|type2=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Gholdengo}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Steel|prevnum=0999|prev=Gimmighoul|nextnum=1001|next=Wo-Chien|roundleft=bl|roundright=br}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Gholdengo&lt;br /&gt;
|jname=サーフゴー&lt;br /&gt;
|jtranslit=Sāfugō&lt;br /&gt;
|tmname=Surfugo&lt;br /&gt;
|ndex=1000&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|category=Coin Entity&lt;br /&gt;
|height-ftin=3&#039;11&amp;quot;&lt;br /&gt;
|height-m=1.2&lt;br /&gt;
|weight-lbs=66.1&lt;br /&gt;
|weight-kg=30.0&lt;br /&gt;
|abilitylayout=1&lt;br /&gt;
|ability1=Good as Gold&lt;br /&gt;
|ability2=&lt;br /&gt;
|abilityd=&lt;br /&gt;
|egggroupn=0&lt;br /&gt;
|egggroup1=No Eggs Discovered&lt;br /&gt;
|egggroup2=&lt;br /&gt;
|eggcycles=50&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evhp=0&lt;br /&gt;
|evat=0&lt;br /&gt;
|evde=0&lt;br /&gt;
|evsa=2&lt;br /&gt;
|evsd=0&lt;br /&gt;
|evsp=0&lt;br /&gt;
|expyield=275&lt;br /&gt;
|lv100exp=1250000&lt;br /&gt;
|gendercode=255&lt;br /&gt;
|color=Yellow&lt;br /&gt;
|catchrate=45&lt;br /&gt;
|body=12&lt;br /&gt;
|pokefordex=gholdengo&lt;br /&gt;
|generation=9&lt;br /&gt;
|friendship=50&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Gholdengo&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;サーフゴー&#039;&#039;&#039; &#039;&#039;Surfugo&#039;&#039;) is a dual-type {{2t|Steel|Ghost}} {{OBP|Pokémon|species}} introduced in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolves]] from {{p|Gimmighoul}} when [[level]]ed up while the player has 999 [[Gimmighoul Coin]]s. Upon the evolution, the Gimmighoul Coins are consumed. Gimmighoul&#039;s evolution cannot be canceled with the B button.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
[[File:Gholdengo Surfboard.png|left|thumb|&amp;lt;!-- As this is an animated PNG, please do not turn this into a thumbnail by determining a specific set image size! --&amp;gt;Gholdengo surfing]]&lt;br /&gt;
Gholdengo is a bipedal humanoid {{OBP|Pokémon|species}} whose body is composed of 1,000 [[Gimmighoul Coin]]s stacked together, giving it a golden, cylindrical appearance. Its face has oval eyes and a mouth displaying a crooked smile. Its body has skinny arms with large hands, and short, stumpy legs with no toes. It has three fingers on each hand and four tufts of dreadlock-like &amp;quot;hair&amp;quot;, all made out of coins. It wears the strap from a {{p|Gimmighoul}}&#039;s chest as a belt, using it to fasten the chest to its side. The belt buckle has a stylized number 1,000 on it. Gholdengo is capable of creating a golden surfboard out of coins as a means of movement.&lt;br /&gt;
&lt;br /&gt;
Gholdengo is a sociable Pokémon, able to quickly befriend anybody. It overwhelms opponents by firing coins at them in quick succession. The coins that form its body are tightly packed, making it able to withstand damage. When attacked by enemies, it can let loose some of the coins on the areas of its body that are hit, in order to absorb the impact.&amp;lt;ref&amp;gt;[https://scarletviolet.pokemon.com/en-us/pokemon/gholdengo/ Gholdengo — Pokémon Scarlet and Pokémon Violet | Official Website]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Gholdengo is the [[signature move|only known Pokémon]] capable of learning the move {{m|Make It Rain}}. It is also the [[Signature Ability|only known Pokémon]] that can have {{a|Good as Gold}} as an [[Ability]].&lt;br /&gt;
{{left clear}}&lt;br /&gt;
===Evolution===&lt;br /&gt;
Gholdengo evolves from either Chest Form or Roaming Form {{p|Gimmighoul}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; flex-wrap: wrap; justify-content: space-evenly&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;max-width:100%; text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1=&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Dex/NA|gen=IX}}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=392|reg2=Kitakami|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=It has a sturdy body made up of stacked coins. Gholdengo overwhelms its enemies by firing coin after coin at them in quick succession.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{ghost color dark}}; background:#{{steel color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{steel color light}}; background:#{{steel color light}} | [[File:Pokédex Image Gholdengo SV.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Gholdengo in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=[[Evolution|Evolve]] {{p|Gimmighoul}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Availability/NA|gen=IX}}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Master Fair [[sync pair scout]]: {{sync|Lear|Gholdengo|sygna=1}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{Stats&lt;br /&gt;
|type=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|HP=87&lt;br /&gt;
|Attack=60&lt;br /&gt;
|Defense=95&lt;br /&gt;
|SpAtk=133&lt;br /&gt;
|SpDef=91&lt;br /&gt;
|Speed=84&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|Normal=0&lt;br /&gt;
|Fighting=0&lt;br /&gt;
|Flying=50&lt;br /&gt;
|Poison=0&lt;br /&gt;
|Ground=200&lt;br /&gt;
|Rock=50&lt;br /&gt;
|Bug=25&lt;br /&gt;
|Ghost=200&lt;br /&gt;
|Steel=50&lt;br /&gt;
|Fire=200&lt;br /&gt;
|Water=100&lt;br /&gt;
|Grass=50&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic=50&lt;br /&gt;
|Ice=50&lt;br /&gt;
|Dragon=50&lt;br /&gt;
|Dark=200&lt;br /&gt;
|Fairy=50&lt;br /&gt;
|notes=yes&lt;br /&gt;
|ghost=yes&lt;br /&gt;
|steel=yes&lt;br /&gt;
|newpoison=½&lt;br /&gt;
|newnormal=½&lt;br /&gt;
|newfighting=2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/level9|1|Astonish|Ghost|Physical|30|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Tackle|Normal|Physical|40|100|35}}&lt;br /&gt;
{{learnlist/level9|7|Night Shade|Ghost|Special|—|100|15}}&lt;br /&gt;
{{learnlist/level9|14|Confuse Ray|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/level9|21|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|28|Metal Sound|Steel|Status|—|85|40}}&lt;br /&gt;
{{learnlist/level9|35|Shadow Ball|Ghost|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|42|Recover|Normal|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|49|Power Gem|Rock|Special|80|100|20}}&lt;br /&gt;
{{learnlist/level9|56|Make It Rain|Steel|Special|120|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|63|Nasty Plot|Dark|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|70|Memento|Dark|Status|—|100|10}}&lt;br /&gt;
{{learnlist/levelf/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM017|Confuse Ray|Ghost|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM023|Charge Beam|Electric|Special|50|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM029|Hex|Ghost|Special|65|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM039|Low Sweep|Fighting|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM042|Night Shade|Ghost|Special|—|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM043|Fling|Dark|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM054|Psyshock|Psychic|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM068|Thunder Punch|Electric|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM072|Electro Ball|Electric|Special|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM074|Reflect|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM075|Light Screen|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM079|Dazzling Gleam|Fairy|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM082|Thunder Wave|Electric|Status|—|90|20}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM093|Flash Cannon|Steel|Special|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM099|Iron Head|Steel|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM101|Power Gem|Rock|Special|80|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM109|Trick|Psychic|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM120|Psychic|Psychic|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM121|Heavy Slam|Steel|Physical|—|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM126|Thunderbolt|Electric|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM140|Nasty Plot|Dark|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM158|Focus Blast|Fighting|Special|120|70|5}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM166|Thunder|Electric|Special|110|70|10}}&lt;br /&gt;
{{learnlist/tm9|TM170|Steel Beam|Steel|Special|140|95|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM192|Focus Punch|Fighting|Physical|150|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM198|Poltergeist|Ghost|Physical|110|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM223|Metal Sound|Steel|Status|—|85|40}}&lt;br /&gt;
{{learnlist/tmf/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/breed9null}}&lt;br /&gt;
{{learnlist/breedf/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{learnlist/prevoh/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
{{learnlist/prevo9null}}&lt;br /&gt;
{{learnlist/prevof/9|Gholdengo|Steel|Ghost|9}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Steel|type2=Ghost}}&lt;br /&gt;
{{Spindata/GO|col=6|type=Steel|ndex=1000&lt;br /&gt;
|egg=N/A&lt;br /&gt;
|buddy=5&lt;br /&gt;
|candy=Gimmighoul&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=202&lt;br /&gt;
|attack=252&lt;br /&gt;
|defense=190&lt;br /&gt;
|fast={{m|Astonish}}, {{m|Hex}}&lt;br /&gt;
|special={{m|Dazzling Gleam}}, {{m|Focus Blast}}, {{m|Shadow Ball}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox/Gimmighoul&lt;br /&gt;
|type1=Steel&lt;br /&gt;
|type2=Ghost&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1a=0999&lt;br /&gt;
|name1a=Gimmighoul&lt;br /&gt;
|name1b=Gimmighoul&lt;br /&gt;
|art1a=0999Gimmighoul&lt;br /&gt;
|type1-1a=Ghost&lt;br /&gt;
|form1a=Chest Form&lt;br /&gt;
|evo1={{Bag/s|Rare Candy|SV}} + [[File:GO Gimmighoul Coin Small.png|link=Gimmighoul Coin|40px]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}} &amp;lt;br&amp;gt;with 999 {{color2|000|Gimmighoul Coin|Gimmighoul Coins}}&amp;lt;br&amp;gt;in the {{color2|000|Bag}}&lt;br /&gt;
|no1b=0999&lt;br /&gt;
|art1b=0999Gimmighoul-Roaming&lt;br /&gt;
|type1-1b=Ghost&lt;br /&gt;
|form1b=Roaming Form&lt;br /&gt;
|no2=1000&lt;br /&gt;
|name2=Gholdengo&lt;br /&gt;
|type1-2=Steel&lt;br /&gt;
|type2-2=Ghost}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=steel|type2=ghost}}&lt;br /&gt;
{{Spritebox/NA|gen=IX}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=1000}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME|ndex=1000}}&lt;br /&gt;
{{Spritebox/Footer|1000|Gholdengo}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Student Gholdengo PT.png|thumb|250px|Gholdengo in [[POKÉTOON]]]]&lt;br /&gt;
===Main series===&lt;br /&gt;
====Major appearances====&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
&lt;br /&gt;
===Challenge the World!===&lt;br /&gt;
Gholdengo appeared in [[Challenge the World!]], battling in a {{g|GO}} match under the ownership of a Trainer.&lt;br /&gt;
&lt;br /&gt;
===POKÉTOON===&lt;br /&gt;
A Gholdengo appeared during a video in [[PT16]], under the ownership of a {{tc|Student}}.&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Gholdengo (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
[[File:Pokémon 1000th EnCOUNTer.jpg|thumb|right|250px|Gold Counter in One Thousand Pokémon]]&lt;br /&gt;
* Despite its Japanese name and ability to create a surfboard out of coins, Gholdengo is incapable of learning the move {{m|Surf}}.&lt;br /&gt;
* Gholdengo is heavily associated with the number 1,000.&lt;br /&gt;
** Its [[List of Pokémon by National Pokédex number|National Pokédex number]] is #1000.&lt;br /&gt;
*** A video titled “One Thousand Pokémon!” was made to commemorate the number of Pokémon surpassing 1,000. The video features a counter that increases as Pokémon appear, eventually turning gold when it reaches 1,000 with Gholdengo.&amp;lt;ref&amp;gt;[https://www.youtube.com/watch?v=pa08Y-fhfTI&amp;amp;t=44s &amp;quot;One Thousand Pokémon].&amp;quot; [https://www.youtube.com/c/pokemon The Official Pokémon YouTube Channel]. &#039;&#039;YouTube&#039;&#039;.&amp;lt;/ref&amp;gt;&lt;br /&gt;
** Its belt buckle has a stylized depiction of the number 1,000 on it. As Gholdengo&#039;s belt is fashioned from Chest Form Gimmighoul&#039;s chest, this symbol is also present on Chest Form Gimmighoul, albeit oriented sideways.&lt;br /&gt;
** Its body is made of 1,000 [[Gimmighoul Coin]]s.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Gholdengo&#039;s golden humanoid appearance, together with its position as the 1,000th Pokémon in the National Pokédex, may allude to award statuettes, which are often made with gold and given to honor achievements or milestones. Gholdengo also seems to take inspiration from {{wp|surfing|surfers}}, given the golden surfboard it rides on as well as its dreadlock-like appendages and friendly nature, befitting of the archetypal &amp;quot;surfer dude&amp;quot;. The recurring cylindrical shape on its body is similar to {{wp|coin wrapper}}s. &lt;br /&gt;
&lt;br /&gt;
Gholdengo is also likely based on gold or {{wp|tumbaga}} artifacts crafted by some pre-Columbian cultures of Central and South America, mainly from the modern-day {{wp|Pre-Columbian cultures of Colombia#Main cultures|Colombia}}. Some of the most notable examples are {{wp|Quimbaya artifacts}} and {{wp|tunjo}}s. These artifacts were commonly utilized as offerings in religious or funerary rituals, which may have inspired Gholdengo&#039;s {{t|Ghost}} type.&lt;br /&gt;
&lt;br /&gt;
Additionally, Gholdengo may draw inspiration from {{wp|El Dorado}}, a legend described by Spanish {{wp|conquistador}}s about a lost city of gold, originally a king whose body was covered in gold. The legend is believed to have stemmed from a ceremony done by the {{wp|Muisca}} people, in which their ruler was initiated by having him covered in gold dust and floated into a lake on a {{wp|Muisca raft|raft}} to make offerings — the raft is likely referenced by Gholdengo&#039;s surfboard-like platform.&lt;br /&gt;
&lt;br /&gt;
The association of a ghost with coins may draw inspiration from {{wp|Charon&#039;s obol}}, where the deceased are buried with coins as a preparation for the afterlife. The coins were frequently placed in the mouth or on the eyes.&lt;br /&gt;
&lt;br /&gt;
Gholdengo could also be partially inspired by &#039;&#039;{{wp|Marvel Comics}}&#039;&#039;{{&#039;}} {{wp|Silver Surfer}}, a metallic alien with a spacecraft shaped like a surfboard.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Gholdengo may be a combination of &#039;&#039;ghoul&#039;&#039; or &#039;&#039;ghost&#039;&#039;, &#039;&#039;golden&#039;&#039;, and possibly &#039;&#039;go&#039;&#039; (as in {{g|GO}}, the game its pre-Evolution Gimmighoul debuted in). It may also come from &#039;&#039;tengo&#039;&#039;, the Spanish word for &amp;quot;I have&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Surfugo may be a combination of &#039;&#039;surf&#039;&#039;, {{j|富豪}} &#039;&#039;fugō&#039;&#039; (wealthy person), &#039;&#039;gold&#039;&#039;, and possibly &#039;&#039;go&#039;&#039; (as in Pokémon GO).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Steel|type2=Ghost&lt;br /&gt;
|ja=サーフゴー &#039;&#039;Surfugo&#039;&#039;|jameaning=From &#039;&#039;surf&#039;&#039;, {{tt|富豪 &#039;&#039;fugō&#039;&#039;|wealthy person}}, &#039;&#039;gold&#039;&#039;, and &#039;&#039;{{g|GO}}&#039;&#039;&lt;br /&gt;
|fr=Gromago|frmeaning=From &#039;&#039;{{tt|gros|big}}&#039;&#039;, &#039;&#039;{{tt|magot|loot}}&#039;&#039;, and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|es=Gholdengo|esmeaning=Same as English name&lt;br /&gt;
|de=Monetigo|demeaning=From &#039;&#039;{{tt|Moneten|slang for &amp;amp;quot;money&amp;amp;quot;}}&#039;&#039;, &#039;&#039;{{tt|amigo|Spanish and Portuguese for friend}}&#039;&#039;, and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|it=Gholdengo|itmeaning=Same as English name&lt;br /&gt;
|ko=타부자고 &#039;&#039;Tabujago&#039;&#039;|komeaning=From {{tt|타보자고 &#039;&#039;Tabojago&#039;&#039;|Let&#039;s ride; Let&#039;s surf}}, {{tt|부자 (富者) &#039;&#039;buja&#039;&#039;|wealthy person}}, and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|zh_cmn=賽富豪 / 赛富豪 &#039;&#039;Sàifùháo&#039;&#039;|zh_cmnmeaning=Transcription of Japanese name; contains {{tt|賽 / 赛 &#039;&#039;sài&#039;&#039;|to compete}} and {{tt|富豪 &#039;&#039;fùháo&#039;&#039;|wealthy person}}&lt;br /&gt;
|zh_yue=賽富豪 &#039;&#039;Choifuhòuh&#039;&#039;|zh_yuemeaning=Mandarin-based transcription of Japanese name; contains {{tt|蹇 &#039;&#039;choi&#039;&#039;|to compete}} and {{tt|富豪 &#039;&#039;fuhòuh&#039;&#039;|wealthy person}}&lt;br /&gt;
|hi=अमीरगो &#039;&#039;Ameergo&#039;&#039;|himeaning=From {{tt|अमीर &#039;&#039;amīr&#039;&#039;|rich}} and &#039;&#039;Pokémon GO&#039;&#039;&lt;br /&gt;
|th=ซาร์ฟโก &#039;&#039;Sapko&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Gimmighoul Coin]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{PokémonPrevNext/Head|type=Steel|type2=Ghost}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Steel|prevnum=0999|prev=Gimmighoul|nextnum=1001|next=Wo-Chien}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[de:Monetigo]]&lt;br /&gt;
[[es:Gholdengo]]&lt;br /&gt;
[[fr:Gromago]]&lt;br /&gt;
[[it:Gholdengo]]&lt;br /&gt;
[[ja:サーフゴー]]&lt;br /&gt;
[[zh:赛富豪]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Pok%C3%A9mon_Egg&amp;diff=4246381</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=4246381"/>
		<updated>2025-02-23T13:36:15Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Special dates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{samename|sandwich ingredient|Egg (item)}} &#039;&#039;For the [[curry]] ingredient, see [[Boiled Egg]].&#039;&#039; &lt;br /&gt;
:&#039;&#039;For the Egg-related [[glitch]]es, see [[Glitch Egg]] and [[Bad Egg]].&#039;&#039;&lt;br /&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. Pokémon Eggs have appeared in all [[core series]] 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 spin-off games.&lt;br /&gt;
&lt;br /&gt;
In some animation and manga appearances, an Egg&#039;s shell will have a pattern that reflects the appearance of the Pokémon inside.&lt;br /&gt;
&lt;br /&gt;
==In the core series games==&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 Professor Elm, as quoted by a man in [[Hearthome City]], and 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|No Eggs Discovered|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;
===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;
From Generation V to VIII, 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. In [[Pokémon Brilliant Diamond and Shining Pearl]], each subsequent eggs will hatch back to back (due to the textbox with the &amp;quot;Oh?&amp;quot; message immediately apperaing when brought back in the overworld after hatching an egg) instead.&lt;br /&gt;
&lt;br /&gt;
In Generations III, IV and [[Pokémon Scarlet and Violet]], 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;
In Pokémon Scarlet and Violet, an Egg will not hatch when climbing, gliding or flying with [[Koraidon]] or [[Miraidon]].&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;
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|No Eggs Discovered}}. Pokémon in the No Eggs Discovered 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;
====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 from or traded to [[Pokémon Colosseum]] or {{XD}}.&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 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;
=====Special dates =====&lt;br /&gt;
In the [[Generation IV]] games, [[Egg cycle]]s are reduced from 255 steps to 230 steps on certain days. For example, on a reduced-cycle day, a {{p|Magikarp}} will take 1380 steps to hatch instead of 1530 steps.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background-color: #{{Frontier color}}; border: 3px solid #{{Frontier color dark}}; text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background-color: #{{Frontier color light}}&amp;quot; rowspan=&amp;quot;2&amp;quot; | Date&lt;br /&gt;
! style=&amp;quot;background-color: #{{Frontier color light}}&amp;quot; rowspan=&amp;quot;2&amp;quot; | Significance&lt;br /&gt;
! style=&amp;quot;background-color: #{{Frontier color light}}&amp;quot; colspan=&amp;quot;3&amp;quot; | Games&lt;br /&gt;
|- style=&amp;quot;background-color: #{{Frontier color light}}&amp;quot;&lt;br /&gt;
! [[Pokémon Diamond and Pearl Versions|&amp;lt;span style=&amp;quot;background-color:#{{diamond color}}; color: #000;&amp;quot;&amp;gt;&amp;amp;nbsp;D&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background-color:#{{pearl color}}; color: #000;&amp;quot;&amp;gt;&amp;amp;nbsp;P&amp;amp;nbsp;&amp;lt;/span&amp;gt;]]&lt;br /&gt;
! [[Pokémon Platinum Version|&amp;lt;span style=&amp;quot;background-color:#{{platinum color}}; color:#000;&amp;quot;&amp;gt;&amp;amp;nbsp;Pt&amp;amp;nbsp;&amp;lt;/span&amp;gt;]]&lt;br /&gt;
! [[Pokémon HeartGold and SoulSilver Versions|&amp;lt;span style=&amp;quot;background-color:#{{gold color}}; color:#000;&amp;quot;&amp;gt;&amp;amp;nbsp;HG&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;background-color:#{{silver color}}; color:#000;&amp;quot;&amp;gt;&amp;amp;nbsp;SS&amp;amp;nbsp;&amp;lt;/span&amp;gt;]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | January 12&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | [[Junichi Masuda]]&#039;s birthday&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | February 14&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|Valentine&#039;s Day}}&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | March 3&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|Hinamatsuri}}&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | April 1&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | Beginning of Japanese school year&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | May 1&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|May Day}}&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | June 11&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | Unknown&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | July 7&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|Tanabata}}&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | August 21&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | Unknown&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | September 7&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{aniseries|PtS}} premiere in North America&lt;br /&gt;
| &lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | September 28&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{game|Diamond and Pearl|s}} Japanese release date&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | October 31&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|Halloween}}&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| &lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | November 21&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{game|Ruby and Sapphire|s}} Japanese release date&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | December 14&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{game|Crystal}} Japanese release date&lt;br /&gt;
| &lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | December 24&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|Christmas Eve}}&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| &lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | December 25&lt;br /&gt;
| style=&amp;quot;text-align:left&amp;quot; | {{wp|Christmas}} Day&lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&lt;br /&gt;
| &lt;br /&gt;
| style=&amp;quot;background-color:#{{grass egg color light}}&amp;quot; | ✓&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 in 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;
==== 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;
====Generation VII====&lt;br /&gt;
Again expanding on mechanics from previous games, Generation VII builds upon the mechanics from Generation VI by allowing fathers to pass on [[Poké Ball]]s when bred with Ditto and randomizing which Poké Ball is passed down when two Pokémon of the same species breed and they are in different balls.&lt;br /&gt;
&lt;br /&gt;
====Generation VIII====&lt;br /&gt;
Again expanding on mechanics from previous games, Generation VIII builds upon the mechanics from Generation VII by allowing two Pokémon to pass Egg Moves to each other if one knows the move and the other has an open move slot for it.&lt;br /&gt;
&lt;br /&gt;
====Generation IX====&lt;br /&gt;
In {{g|Scarlet and Violet}}, Eggs can be found during [[Picnic]]s. Species that produced different baby Pokémon if holding an incense now produce these baby Pokémon naturally. Incenses do not appear in these games.&lt;br /&gt;
&lt;br /&gt;
In some cases that the game may crash, {{Shiny}} Pokémon that are hatched from the Eggs can appear again, but only if the game was saved before the Egg is hatched and it is in the {{player}}&#039;s [[party]].&lt;br /&gt;
&lt;br /&gt;
===Eggs received from in-game events ===&lt;br /&gt;
{{main|List of Pokémon Eggs from in-game events}}&lt;br /&gt;
&lt;br /&gt;
In several [[core series]] games, the player is able to obtain Pokémon Eggs from certain [[non-player character]]s.&lt;br /&gt;
&lt;br /&gt;
In the [[Generation I]] games, their [[Generation VII]] remakes, and in {{pkmn|Legends: Arceus}}, there are no Pokémon Eggs due to the absence of the {{pkmn|breeding}} mechanic. In [[Pokémon X and Y|Pokémon X, Y]], [[Pokémon Sword and Shield|Sword, and Shield]], the breeding mechanic is available but no Eggs are received from in-game events.&lt;br /&gt;
&lt;br /&gt;
Some Eggs can also be received in [[Pokémon Box Ruby &amp;amp; Sapphire]] and transferred to the [[Generation III]] games.&lt;br /&gt;
&lt;br /&gt;
===Appearance===&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; {{roundy|20px}} border: 2px solid #{{rock color dark}}; background: #{{rock color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr 2g Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr 3r Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr 3e Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr 4d Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr 5b Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr b 5b Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Spr 6x Egg.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Egg LGPE Model.png|100px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:HOMEEgg.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;
|(Unused) Image from&amp;lt;br&amp;gt;Let&#039;s Go Pikachu and Eevee&lt;br /&gt;
|Image from&amp;lt;br&amp;gt;{{color2|000|Pokémon HOME}}&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green 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 #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:EggMS3.png]]{{ani|Egg}}&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |{{bag|Mystery Egg}}&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:EggMS6.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:EggMS8.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:EggMSBDSP.png|68px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Menu LA Egg.png|68px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Menu SV Egg.png|68px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{rock color dark}}; background: #{{green color light}}; width:100px&amp;quot; |[[File:Menu HOME Egg.png|68px]]&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&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}} and {{color2|000|Generation VII|VII}}&lt;br /&gt;
|Menu sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon Sword and Shield|Sword and Shield}}&lt;br /&gt;
| Menu sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon Brilliant Diamond and Shining Pearl|Brilliant Diamond and Shining Pearl}}&lt;br /&gt;
|Dummied-out menu sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon Legends: Arceus|Legends: Arceus}}&lt;br /&gt;
|Menu sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon Scarlet and Violet|Scarlet and Violet}}&lt;br /&gt;
|Menu sprite from&amp;lt;br&amp;gt;{{color2|000|Pokémon HOME|HOME}}&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 #{{water color dark}}; background: #{{water color light}}; width:100px&amp;quot;| [[File:AniManaphyEggMS.png]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; |[[File:ManaphyEggMSBDSP.png|68px]]&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{red color dark}}; background: #{{red color light}}; width:100px&amp;quot; |[[File:HOMEManaphyEgg.png|100px]]&lt;br /&gt;
|- style=&amp;quot;font-size: 80%&amp;quot;&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg sprite from {{color2|000|Generation IV}}&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg sprite from {{color2|000|Generation V}}&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg menu sprite from {{color2|000|Generation IV|Generations IV}} and {{color2|000|Generation V|V}}&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg menu sprite from {{color2|000|Pokémon Brilliant Diamond and Shining Pearl|Brilliant Diamond and Shining Pearl}}&lt;br /&gt;
| {{pcolor|Manaphy|000}} Egg model from {{color2|000|Pokémon HOME|HOME}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In the side series games==&lt;br /&gt;
===Pokémon Stadium 2===&lt;br /&gt;
[[File:Stadium 2 Egg.png|frame|Egg]]&lt;br /&gt;
{{incomplete|section|Add image of a Shiny Egg in comparison to non-Shiny Eggs in the Pokémon Lab from Pokémon Stadium 2}}&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Stadium 2]], &amp;quot;EGG&amp;quot; is considered a [[nickname]] of the Pokémon species inside. Due to Pokémon Stadium 2 hue shifting nicknamed Pokémon into different colors, Eggs get hue shifted as well. This can be seen when viewing Eggs in the [[Pokémon Lab (Stadium)|Pokémon Lab]]. Shinies do not ever get hue shifted, and therefore, all Pokémon Eggs with a Shiny inside are the default tan color without any color change. This way, it is possible to tell if a Pokémon Egg is Shiny before it hatches.&lt;br /&gt;
&lt;br /&gt;
==In the spin-off 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 {{OBP|Cave|Snap}} 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 [[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 {{OBP|Volcano|Snap}} 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, 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 animated series are a main feature on the channel.&lt;br /&gt;
&lt;br /&gt;
Pokémon that hatch from their animated series 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|Girafarig}}, {{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 animated series 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:Oddish Egg Channel.png|Oddish Egg&lt;br /&gt;
File:Bellsprout Egg Channel.png|Bellsprout Egg&lt;br /&gt;
File:Slowpoke Egg Channel.png|Slowpoke 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:Pichu Egg Channel.png|Pichu Egg&lt;br /&gt;
File:Cleffa Egg Channel.png|Cleffa Egg&lt;br /&gt;
File:Igglybuff Egg Channel.png|Igglybuff Egg&lt;br /&gt;
File:Togepi Egg Channel.png|Togepi Egg&lt;br /&gt;
File:Hoppip Egg Channel.png|Hoppip Egg&lt;br /&gt;
File:Aipom Egg Channel.png|Aipom Egg&lt;br /&gt;
File:Wooper Egg Channel.png|Wooper Egg&lt;br /&gt;
File:Teddiursa Egg Channel.png|Teddiursa Egg&lt;br /&gt;
File:Swinub Egg Channel.png|Swinub Egg&lt;br /&gt;
File:Phanpy Egg Channel.png|Phanpy Egg&lt;br /&gt;
File:Smoochum Egg Channel.png|Smoochum Egg&lt;br /&gt;
File:Magby Egg Channel.png|Magby 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;
&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;
&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===&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;
====Pokémon Battle Chess (Set)====&lt;br /&gt;
In the Pokémon Battle Chess set, a {{p|Togepi}} Egg replaced Victini as the king piece.  Both Togepi and Victini have the same rules as an Egg and when undamaged, though they have different movement and damage rules for when each has taken damaged after hatching.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery perrow=&amp;quot;3&amp;quot;&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;
[[File:Egg Pokémon Picross.png|thumb|right|Egg puzzle in 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;
&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 it 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. In addition, if these nine slots are filled, there are three bonus Egg slots that can only hold Strange Eggs and Eggs obtained from Adventure Sync rewards. 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 five different distances which Eggs can require: 2, 5, 7, 10, and 12&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 white with orange spots, 7&amp;amp;nbsp;km Eggs are yellow with pink spots, 10&amp;amp;nbsp;km Eggs are white with purple spots, and 12&amp;amp;nbsp;km Eggs (also known as Strange Eggs) are white with red spots. 7&amp;amp;nbsp;km Eggs were introduced on June 21, 2018, initially only being able to hatch into [[Alolan form]]s, but the pool has since been expanded to include [[baby Pokémon]] as well. Strange Eggs were introduced on October 12, 2020.&lt;br /&gt;
&lt;br /&gt;
In December 2020, three bonus storage spaces were added. If the player already has nine Eggs, Eggs can still be received from weekly Adventure Sync rewards or from Team GO Rocket Leader battles and placed into one of these slots.&lt;br /&gt;
&lt;br /&gt;
Eggs can be obtained in a variety of ways. Each of the listed methods has its own separate pool of obtainable Pokémon Eggs.&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;
*Winning a [[Trainer Battle (GO)|battle]] against a {{tc|Team GO Rocket Leader}} will award a Strange Egg (12&amp;amp;nbsp;km Egg).&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, including Event Pokémon hatched after the event when it was obtained has ended.&lt;br /&gt;
&lt;br /&gt;
Hatching Eggs is the only way to obtain most baby Pokémon, along with {{p|Salandit}}, {{p|Varoom}}, {{p|Charcadet}} and {{p|Larvesta}}.&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 {{OBP|Candy|GO}} 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;math&amp;gt;Candy = \left\lfloor {stardust \over 75} \right\rfloor&amp;lt;/math&amp;gt;&lt;br /&gt;
*10&amp;amp;nbsp;km: &amp;lt;math&amp;gt;Candy = \left\lfloor {stardust \over 100} \right\rfloor&amp;lt;/math&amp;gt;&lt;br /&gt;
*12&amp;amp;nbsp;km: &amp;lt;math&amp;gt;Candy = \left\lfloor {stardust \over 200} \right\rfloor&amp;lt;/math&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 (GO)|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;
![[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;
|{{Candy}}16 - 32&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundybl|5px}}&amp;quot; |[[File:GO Egg 12 km.png|60px]]&amp;lt;br&amp;gt;12&amp;amp;nbsp;km&lt;br /&gt;
|{{Stardust}}3200 - 6400&lt;br /&gt;
| style=&amp;quot;{{roundybr|5px}}&amp;quot; |{{Candy}}16 - 32&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Masters EX===&lt;br /&gt;
{{main|Egg Pokémon (Masters)}}&lt;br /&gt;
In {{g|Masters EX}}, the player character ({{mas|Scottie}} or {{mas|Bettie}}) can form [[sync pair]]s with Pokémon that are hatched from Eggs. Eggs can appear as random drops from certain battles, and some Eggs are available only during limited-time events.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Playhouse===&lt;br /&gt;
In [[Pokémon Playhouse]], the player is able to hatch several Eggs.&lt;br /&gt;
&lt;br /&gt;
===Eevee × Tamagotchi===&lt;br /&gt;
{{incomplete|section|Add sprite image of the egg from this game}}&lt;br /&gt;
In [[Eevee × Tamagotchi]], the player&#039;s {{p|Eevee}} hatches from an Egg at the start of the game.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===&#039;&#039;Pokémon the Series&#039;&#039;===&lt;br /&gt;
[[File:Breeding house Eggs.png|thumb|220px|left|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;
[[File:Reverted Eggs anime.png|thumb|250px|Pokémon Eggs created by [[devolution]] in &#039;&#039;[[JN089|The Gates of Warp!]]&#039;&#039;]]&lt;br /&gt;
{{aniseries|PTS}} 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. Later Eggs have 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.&lt;br /&gt;
&lt;br /&gt;
In earlier [[series]], Eggs are depicted with unique patterns that match the Pokémon contained within. This was changed in &#039;&#039;[[Pokémon Journeys: The Series]]&#039;&#039;, with Eggs instead being closer to the generic Egg design from the games; however, the spots on Eggs do vary in color based on the Pokémon, rather than only being green like in the games.&lt;br /&gt;
&lt;br /&gt;
Aside from Togepi&#039;s Egg, which hatched similarly to a real egg, later Eggs are shown to flash white before hatching, then to glow white and transform into the Pokémon they contain, similarly to [[evolution]]. By &#039;&#039;[[Pokémon the Series: Black &amp;amp; White]]&#039;&#039;, hatching Eggs would be depicted as glowing and the eggshell bursting open to reveal the young Pokémon, much like in the games.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[EP263|Address Unown]]&#039;&#039;, it was revealed that Pokémon are able to see the world outside of their Eggs. Additionally, Pokémon have been seen interacting from inside their Eggs, with {{p|Manaphy}} using {{m|Heart Swap}} on the [[Team Rocket trio]] before it even hatched (it is also implied that it was the one who gave {{an|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;
In &#039;&#039;[[JN089|The Gates of Warp!]]&#039;&#039; and &#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;, {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}&#039;s battling, due to them both being instigated by [[Alternate World Team Rocket]], had caused many Pokémon to [[Devolution|devolve]] and turn back into Eggs. Once the crisis was resolved, Dialga and Palkia repaired the distortions and freed the Pokémon from their Egg forms, reversing the devolutions.&lt;br /&gt;
&lt;br /&gt;
===Pokémon hatched from Eggs ===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; text-align:center; background:#{{blue color}}; border:3px solid #{{black color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background: #{{unknown color light}}; {{roundytl|5px}}; color:#FFF&amp;quot; |Pokémon&lt;br /&gt;
! style=&amp;quot;background: #{{unknown color light}}; color:#FFF&amp;quot; |Episode appeared&amp;lt;br&amp;gt;Episode hatched&lt;br /&gt;
! style=&amp;quot;background: #{{unknown color light}}; color:#FFF&amp;quot; |Description&lt;br /&gt;
! style=&amp;quot;background: #{{unknown color light}}; {{roundytr|5px}}; color:#FFF&amp;quot; |Notes&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Togepi Egg.png|200px]]&lt;br /&gt;
|[[Misty&#039;s Togepi]]&lt;br /&gt;
|&#039;&#039;[[EP046|Attack of the Prehistoric Pokémon]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[EP050|Who Gets to Keep Togepi?]]&#039;&#039;&lt;br /&gt;
|White with blue and red triangular spots.&lt;br /&gt;
|Found by {{Ash}}. Raised by {{an|Brock}}.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Phanpy Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Phanpy]]&lt;br /&gt;
|&#039;&#039;[[EP228|Extreme Pokémon!]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[EP230|Hatching a Plan!]]&#039;&#039;&lt;br /&gt;
| Light blue with no design.&lt;br /&gt;
|Given to {{Ash}} by [[Mr. Shellby]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
| [[File:Larvitar Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Larvitar]]&lt;br /&gt;
|&#039;&#039;[[EP257|Lapras of Luxury]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[EP258|Hatch Me If You Can!]]&#039;&#039;&lt;br /&gt;
|Jade green with no design.&lt;br /&gt;
|Given to {{Ash}} by [[Professor Elm]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:May Eevee Egg.png|200px]]&lt;br /&gt;
|[[May&#039;s Eevee]]&lt;br /&gt;
|&#039;&#039;[[AG150|May&#039;s Egg-Cellent Adventure]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[AG157|Time-Warp Heals All Wounds]]&#039;&#039;&lt;br /&gt;
|Brown with a cream-colored zigzag stripe around its middle.&lt;br /&gt;
|Given to {{an|May}} by [[Christopher and Jeannie]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Happiny Egg.png|200px]]&lt;br /&gt;
|[[Brock&#039;s Happiny]]&lt;br /&gt;
|&#039;&#039;[[DP033|All Dressed Up With Somewhere To Go!]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[DP038|One Big Happiny Family!]]&#039;&#039;&lt;br /&gt;
|Light pink with a white stripe around the center and a red top.&lt;br /&gt;
|Received by {{an|Brock}} for winning the [[Pokémon Dress-Up Contest]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Cyndaquil Egg.png|200px]]&lt;br /&gt;
|[[Dawn&#039;s Cyndaquil]]&lt;br /&gt;
|&#039;&#039;[[DP143|An Egg Scramble!]]&#039;&#039;&lt;br /&gt;
|Mostly green, with a cream colored bottom and three red spots near the bottom.&lt;br /&gt;
|Received by {{an|Dawn}} for winning the [[Johto Festival]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Scraggy Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Scraggy]]&lt;br /&gt;
|&#039;&#039;[[BW012|Here Comes the Trubbish Squad!]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[BW017|Scraggy-Hatched to be Wild!]]&#039;&#039;&lt;br /&gt;
|Tan with brown spots.&lt;br /&gt;
|Given to {{Ash}} by [[Karena]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Ash Noibat Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Noibat]]&lt;br /&gt;
|&#039;&#039;[[XY076|A Not-So-Flying Start!]]&#039;&#039;&lt;br /&gt;
|Lavender with purple markings that resemble a Noibat&#039;s ears.&lt;br /&gt;
|Found by [[Ash&#039;s Hawlucha]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
| [[File:Ash Froakie Egg.png|200px]]&lt;br /&gt;
|&lt;br /&gt;
[[Ash&#039;s Froakie]]&lt;br /&gt;
|&lt;br /&gt;
|Light blue with white markings that resemble a Froakie&#039;s hands.&lt;br /&gt;
|Hatched offscreen. Shown in a flashback in &#039;&#039;[[XY092|Cloudy Fate, Bright Future!]]&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Pikipek Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Rowlet]]&lt;br /&gt;
|&lt;br /&gt;
|Very little of the Egg was seen.&lt;br /&gt;
|Hatched offscreen. Shown in a flashback in &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Lillie Egg.png|200px]]&lt;br /&gt;
|[[Snowy]]&lt;br /&gt;
|&#039;&#039;[[SM008|Lillie&#039;s Egg-xhilarating Challenge!]]&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039;&lt;br /&gt;
|White with a blue pattern that looked like flowers.&lt;br /&gt;
|Given to {{an|Lillie}} by [[Samson Oak]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Ash Riolu Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Riolu]]&lt;br /&gt;
|&#039;&#039;[[JN021|Caring for a Mystery!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with light blue spots. The pattern of the spots was identical to all Eggs in [[Pokémon GO]] at the time of its appearance.&lt;br /&gt;
|Given to {{Ash}} by the [[Vermilion City]] [[Nurse Joy]].&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Ash Pichu Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Pikachu|Ash&#039;s Pichu]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with yellow spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Ash Dratini Gastly Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Dragonite|Ash&#039;s Dratini]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with sky blue spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Ash Dratini Gastly Egg.png|200px]]&lt;br /&gt;
|[[Ash&#039;s Gengar|Ash&#039;s Gastly]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with dark purple spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Dawn Goh Piplup Scorbunny Eggs.png|200px]]&lt;br /&gt;
|[[Dawn&#039;s Piplup]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with dark blue spots.&lt;br /&gt;
| [[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Dawn Goh Piplup Scorbunny Eggs.png|200px]]&lt;br /&gt;
|[[Goh&#039;s Scorbunny]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with orange spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Goh Sobble Egg.png|200px]]&lt;br /&gt;
|[[Goh&#039;s Sobble]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with light blue spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Ash Goh Gastly Dratini Trapinch Aerodactyl Eggs.png|200px]]&lt;br /&gt;
|[[Goh&#039;s Flygon|Goh&#039;s Trapinch]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with burnt-orange spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Goh Trapinch Aerodactyl Egg.png|200px]]&lt;br /&gt;
|[[Goh&#039;s Aerodactyl]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with bluish-gray spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Goh Grookey Egg.png|200px]]&lt;br /&gt;
|&lt;br /&gt;
[[Goh&#039;s Grookey]]&lt;br /&gt;
|&#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
|Resembled an Egg from the core series games with lime green spots.&lt;br /&gt;
|[[Devolution|Devolved]] into an Egg due to the influence of {{OBP|Dialga|recurring}} and {{OBP|Palkia|recurring}}. Reverted back.&lt;br /&gt;
|- style=&amp;quot;background: #FFF&amp;quot; &lt;br /&gt;
|[[File:Cynthia Gible Egg.png|200px]]&lt;br /&gt;
|[[Cynthia&#039;s Garchomp|Cynthia&#039;s Gible]]&lt;br /&gt;
|&lt;br /&gt;
|Resembled an Egg from the core series games with dark blue spots.&lt;br /&gt;
| Hatched offscreen. Shown in a flashback in &#039;&#039;[[JN122|It&#039;s... Champion Time!]]&#039;&#039;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Pokémon hatched from Eggs that were not seen===&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;
;[[Misty&#039;s Azurill]]&lt;br /&gt;
: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;
;[[Iris&#039;s Axew]]&lt;br /&gt;
:Axew was given to Iris prior to the start of the series a few days after he had hatched.&lt;br /&gt;
&lt;br /&gt;
===Other Pokémon Eggs===&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;[[M09|Pokémon Ranger and the Temple of the Sea]]&#039;&#039;: A [[Manaphy (M09)|Manaphy]] Egg was primary to the plot of this movie. 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}}. This Egg was translucent blue with a red, yolk-like sphere and a ring of yellow dots inside of it.&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;
* &#039;&#039;[[M23|Pokémon the Movie: Secrets of the Jungle]]&#039;&#039;: {{p|Celebi}} is rumored to visit the jungle in times of peace and leave behind an egg from the future in its wake.&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;[[Pokémon Journeys: The Series]]&#039;&#039; &amp;amp; &#039;&#039;[[Pokémon Horizons: The Series]]&#039;&#039;====&lt;br /&gt;
Eggs seen in these series feature a more standardized design, closely resembling the generic Egg designs from the [[core series]] games, albeit with the color of the spots depending on the Pokémon inside.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;[[JN080|Trial on a Golden Scale!]]&#039;&#039;: {{p|Larvesta}} Eggs were seen in this episode, being the target of a [[Nito|Pokémon poacher]]. They had red spots.&lt;br /&gt;
*&#039;&#039;[[JN089|The Gates of Warp!]]&#039;&#039;: Due to the influence of {{p|Dialga}} and {{p|Palkia}}, [[Alternate World Dawn]]&#039;s {{p|Piplup}} reverted back into an Egg with dark blue spots. Multiple other reverted Eggs also appeared in the episode.&lt;br /&gt;
* &#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;: Due to the influence of {{p|Dialga}} and {{p|Palkia}}, [[Alternate World Ash]]&#039;s {{p|Infernape}} reverted back into an Egg with orange spots. Several other Egg spot colors were also seen with reverted Pokémon such as [[Alternate World Chloe]]&#039;s {{p|Eevee}}–brown, [[Alternate World Team Rocket]]&#039;s {{p|Croagunk}}, {{p|Glameow}}, {{p|Rhyhorn}}, and {{p|Stunky}}, and a Trainer&#039;s {{p|Buizel}} and {{p|Shieldon}}–orange and yellow spots, respectively. Alternate World Ash&#039;s {{p|Pichu}} and Alternate World Goh&#039;s {{p|Trapinch}}, {{p|Aerodactyl}}, {{p|Scorbunny}} reverted into Eggs very similar to their counterparts from the main world.&lt;br /&gt;
* &#039;&#039;[[HZ037|Fuecoco…Becomes a Crook?!]]&#039;&#039;: {{p|Sandile}} Eggs were seen in this episode and were the reason why the Sandile, {{p|Krokorok}}, and {{p|Krookodile}} were disturbing the group of {{OBP|Archeologists|HZ037}}.&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:Manaphy Egg anime.png|A {{OBP|Manaphy|M09}} Egg in &#039;&#039;[[M09|Pokémon Ranger and the Temple of the Sea]]&#039;&#039;&lt;br /&gt;
File:Psyduck Eggs anime.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;
File:Larvesta egg anime.png|Six {{p|Larvesta}} Eggs in &#039;&#039;[[JN080|Trial on a Golden Scale!]]&#039;&#039;&lt;br /&gt;
File:Alternate World Dawn Piplup Egg.png|A Piplup Egg in &#039;&#039;[[JN089|The Gates of Warp!]]&#039;&#039;&lt;br /&gt;
File:Alternate World Ash Pichu Egg.png|A Pichu Egg in &#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
File:Goh Sobble Egg.png|A Chimchar Egg (right) in &#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
File:Buizel Shieldon Eggs anime.png|A Buizel (left) and Shieldon (right) Egg in &#039;&#039;[[JN090|Showdown at the Gates of Warp!]]&#039;&#039;&lt;br /&gt;
File:Sandile egg anime.png|Sandile Eggs in &#039;&#039;[[HZ037|Fuecoco…Becomes a Crook?!]]&#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 [[Pokémon Gold &amp;amp; Silver: The Golden Boys]]]]&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
===={{MangaArc|Red, Green &amp;amp; Blue}}====&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;
&lt;br /&gt;
===={{MangaArc|Gold, Silver &amp;amp; Crystal}}====&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;
&lt;br /&gt;
In &#039;&#039;[[PS160|Playful Porygon2]]&#039;&#039;, [[Pika]] and [[Chuchu]], {{adv|Red}} and {{adv|Yellow}}&#039;s respective {{p|Pikachu}}, produced an Egg, which later hatched into Gold&#039;s {{p|Pichu}}, [[Pibu]]. It initially appeared as a plain Egg without a pattern, with the Pichu pattern only appearing on it shortly before it hatched.&lt;br /&gt;
&lt;br /&gt;
In a flashback shown in &#039;&#039;[[PS180|The Last Battle XIV]]&#039;&#039;, [[Pryce]]&#039;s {{p|Lapras}}, La Glace, was shown hatching from an Egg.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Diamond &amp;amp; Pearl}}====&lt;br /&gt;
In &#039;&#039;[[PS377|Hurrah for Rapidash]]&#039;&#039;, [[Roark&#039;s Cranidos]] is seen as an egg in a flashback.&lt;br /&gt;
&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;
&lt;br /&gt;
===={{MangaArc|Platinum}}====&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;
&lt;br /&gt;
===={{MangaArc|HeartGold &amp;amp; SoulSilver}}====&lt;br /&gt;
In &#039;&#039;[[PS460|All About Arceus IX]]&#039;&#039;, Red&#039;s {{p|Snorlax}}, [[Snor]], and {{adv|Emerald}}&#039;s Snorlax were revealed to have produced an Egg.&lt;br /&gt;
&lt;br /&gt;
====Gallery====&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|Togepi ([[Togebo]]) Egg&lt;br /&gt;
File:Pibu Egg.png|Pichu ([[Pibu]]) Egg&lt;br /&gt;
File:Day-Care Couple Azurill Wynaut Adventures.png|{{p|Igglybuff}} Egg&lt;br /&gt;
File:Pryce La Glace Egg Adventures.png|Pryce&#039;s {{p|Lapras}} Egg&lt;br /&gt;
File:Riley Riolu Egg Adventures.png|Riley&#039;s {{p|Riolu}} Egg&lt;br /&gt;
File:Roark Cranidos Egg Adventures.png|[[Roark&#039;s Cranidos]] Egg&lt;br /&gt;
File:Manaphy Egg Adventures.png|{{p|Manaphy}} Egg&lt;br /&gt;
File:Phione Egg Adventures.png|{{p|Phione}} Egg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Pokémon Diamond and Pearl Adventure!===&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;
===Pokémon Gold &amp;amp; Silver: The Golden Boys===&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}} hatched 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;
===Pokémon: Yeah! I Got Pokémon!===&lt;br /&gt;
*In &#039;&#039;[[GDZ55|Babysitting Isn&#039;t Easy!]]&#039;&#039;, [[Shu]] was tasked with babysitting {{p|Smoochum}}, {{p|Cleffa}}, {{p|Igglybuff}}, and {{p|Magby}} Eggs, which all ended up hatching at once.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Pocket Monsters===&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;
*{{OBP|Manaphy|M09}}, which is {{pkmn2|Mythical}}, is the only Pokémon which has been seen hatching from an Egg in the animated series 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;
**Also 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 Hoenn, but then traded to Kanto and hatched will, though identifying itself as having the Kanto player as its OT, still be marked as having been generated in Hoenn. 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 in 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;
**Both issues were 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;
**This, in turn, means hatching a Cleffa or Igglybuff from the Odd Egg is the only way to newly obtain a Pokémon that already has experience point progress towards its next level.&lt;br /&gt;
*Prior to [[Generation IV]], due to the fact that Pokémon hatched from Eggs at level 5, several [[wild Pokémon]] found in early [[route]]s had lower levels than newly-hatched Pokémon.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{rock color}}|bordercolor={{rock 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=Œuf&lt;br /&gt;
|de=Ei&lt;br /&gt;
|hi={{tt|अंडा|Aṇḍā}} &#039;&#039;{{tt|Anda|Egg}}&#039;&#039;&lt;br /&gt;
|hu=Tojás&lt;br /&gt;
|id=Telur&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=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;
==Related articles==&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;
[[Category:Methods of obtaining Pokémon]]&lt;br /&gt;
&lt;br /&gt;
[[de:Ei]]&lt;br /&gt;
[[es:Huevo Pokémon]]&lt;br /&gt;
[[fr:Œuf de Pokémon]]&lt;br /&gt;
[[it:Uova Pokémon]]&lt;br /&gt;
[[ja:タマゴ]]&lt;br /&gt;
[[zh:宝可梦的蛋]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Latias_(Pok%C3%A9mon)&amp;diff=4243789</id>
		<title>Latias (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Latias_(Pok%C3%A9mon)&amp;diff=4243789"/>
		<updated>2025-02-20T19:31:36Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In the manga */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Latias}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dragon|prevnum=0379|prev=Registeel|nextnum=0381|next=Latios|round=none}}&lt;br /&gt;
{{PokémonPrevNext/Disambig|species=Latias}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Latias&lt;br /&gt;
|jname=ラティアス&lt;br /&gt;
|jtranslit=Ratiasu&lt;br /&gt;
|tmname=Latias&lt;br /&gt;
|forme=2&lt;br /&gt;
|form2=Mega Latias&lt;br /&gt;
|image2=0380Latias-Mega.png&lt;br /&gt;
|mega=Latiasite&lt;br /&gt;
|category=Eon&lt;br /&gt;
|ndex=0380&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|height-ftin=4&#039;07&amp;quot;&lt;br /&gt;
|height-m=1.4&lt;br /&gt;
|weight-lbs=88.2&lt;br /&gt;
|weight-kg=40.0&lt;br /&gt;
|height-ftin2=5&#039;11&amp;quot;&lt;br /&gt;
|height-m2=1.8&lt;br /&gt;
|weight-lbs2=114.6&lt;br /&gt;
|weight-kg2=52.0&lt;br /&gt;
|abilitylayout=1&lt;br /&gt;
|ability1=Levitate&lt;br /&gt;
|egggroupn=0&lt;br /&gt;
|egggroup1=No Eggs Discovered&lt;br /&gt;
|eggcycles=120&lt;br /&gt;
|evtotal=3&lt;br /&gt;
|evsd=3&lt;br /&gt;
|expyield=270&lt;br /&gt;
|oldexp=211&lt;br /&gt;
|lv100exp=1,250,000&lt;br /&gt;
|gendercode=254&lt;br /&gt;
|color=Red&lt;br /&gt;
|formcolors=yes&lt;br /&gt;
|catchrate=3&lt;br /&gt;
|body=09&lt;br /&gt;
|pokefordex=latias&lt;br /&gt;
|generation=3&lt;br /&gt;
|friendship=90&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Latias&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ラティアス&#039;&#039;&#039; &#039;&#039;Latias&#039;&#039;) is a dual-type {{2t|Dragon|Psychic}} [[Legendary Pokémon]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
While it is not known to [[evolution|evolve]] into or from any other Pokémon, Latias can [[Mega Evolution|Mega Evolve]] into &#039;&#039;&#039;Mega Latias&#039;&#039;&#039; using the [[Latiasite]].&lt;br /&gt;
&lt;br /&gt;
It is a member of the [[eon duo]] along with {{p|Latios}}.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
[[File:Latias invisible anime.png|thumb|left|250px|Latias&#039;s invisibility powers]]&lt;br /&gt;
Latias is a {{OBP|Pokémon|species}} with a birdlike body stylized after a plane. Its long neck stretches forward from its squat body. It has no legs, usually floating instead. The rear half of its body is largely red and the upper half white, with jet-plane wings high on its rear and fins on the bottom near its tail. A blue triangle marks the center of its chest, while a red mask partially covers its face. Ear-like fins sit on top of its head and its eyes are yellow. It has short, three-fingered arms with a red covering on the outer side of the lower arms. Latias is a female-only species, with {{p|Latios}} being its male counterpart.&lt;br /&gt;
&lt;br /&gt;
Latias ruffles its feathers and cries loudly when there is hostility toward it. Its glass-like, downy feathers can enfold its body and refract light, which allows it to become invisible or alter its appearance. It is highly intelligent and can understand human speech. It is capable of using telepathy to communicate with others. In the [[M05|fifth movie]], Latias had the ability &amp;quot;Sight Sharing&amp;quot;, which allowed Latias and people around it to see exactly what Latios was seeing. It normally does not make contact with humans or other Pokémon and disappears when an enemy is nearby. It forms herds with several members and is usually found {{DL|List of Pokémon by habitat|Water&#039;s-edge Pokémon|near water}}. As seen in [[Pokémon Horizons: The Series|&#039;&#039;Pokémon Horizons&#039;&#039;]], like other [[Legendary Pokémon]], Latias can be found in the Pokémon paradise [[Laqua]]. Latias loves [[Latias Treat]]s made by [[Snacksworth]], who once encountered it in the past. Latias can be summoned by the [[Eon Flute]].&lt;br /&gt;
&lt;br /&gt;
Latias is the [[signature move|only known Pokémon]] capable of learning the move {{m|Mist Ball}}.&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
Latias can [[Mega Evolution|Mega Evolve]] into Mega Latias.&lt;br /&gt;
&lt;br /&gt;
As [[Mega Evolution|Mega]] Latias, the red parts of its body change to purple. Horns grow from the side of its head and run along its jaw. It loses the wings on its back and similar but larger wings attach to its lower arms, normally held in a level position. Triangle shapes now mark the forward point of its wings instead of its chest.&lt;br /&gt;
&lt;br /&gt;
Mega Latias is said to be one of the fastest Pokémon in existence. Mega Latias reach a speed of Mach 4 while outpacing a jet in flight. Due to being smaller than Mega Latios, Mega Latias is much more agile and can make very sharp turns&amp;lt;ref&amp;gt;[https://web.archive.org/web/20150202062726/http://www.pokemonrubysapphire.com/en-us/pokemon/the-eon-pokemon-appear Omega Ruby and Alpha Sapphire site | Mega Latias]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: #{{dragon color}}; {{roundy|10px}} border: 3px solid #{{psychic color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{color2|000|Mega Evolution|Mega}} Latias&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{psychic color dark}}; background: #{{dragon color light}}; width:96px; height:96px&amp;quot;| [[File:0380Latias-Mega.png|100px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* {{g|Pinball: Ruby &amp;amp; Sapphire}}: If the ball drops out of the [[Sapphire Field]] while the &amp;quot;Ball Saver&amp;quot; is active, Latias will rescue it and place it on {{p|Spoink}} without the ball being lost.&lt;br /&gt;
* [[Pokémon Omega Ruby and Alpha Sapphire| Pokémon Alpha Sapphire]]: The player can use the [[Eon Flute]] to fly around Hoenn on the back of a Mega Latias.&lt;br /&gt;
* {{g|Mystery Dungeon: Red Rescue Team and Blue Rescue Team}}: After clearing [[Northern Range]], the team go to [[Pitfall Valley]] to save Latias. She and Latios offer to join the team afterwards.&lt;br /&gt;
* {{g|Super Mystery Dungeon}}: Latias is a minor character in the game and briefly appears alongside Latios where they are being chased. They are later turned to stone and their bodies fall to the ground.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Dex/NA|gen=III}}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=196|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=&amp;lt;sc&amp;gt;Latias&amp;lt;/sc&amp;gt; is highly sensitive to the emotions of people. If it senses any hostility, this {{ScPkmn}} ruffles the feathers all over its body and cries shrilly to intimidate the foe.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=&amp;lt;sc&amp;gt;Latias&amp;lt;/sc&amp;gt; is highly intelligent and capable of understanding human speech. It is covered with a glass-like down. The {{ScPkmn}} enfolds its body with its down and refracts light to alter its appearance.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=They make a small herd of only several members. They rarely make contact with people or other {{ScPkmn}}. They disappear if they sense enemies.}}&lt;br /&gt;
{{Dex/Entry2|v=FireRed|v2=LeafGreen|entry=It can telepathically communicate with people. It changes its appearance using its down that refracts light.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=Its body is covered with a down that can refract light in such a way that it becomes invisible.}}&lt;br /&gt;
{{Dex/Entry2|v=HeartGold|v2=SoulSilver|entry=It communicates using telepathy. Its body is covered in down that refracts light to make it invisible.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=Its body is covered with a down that can refract light in such a way that it becomes invisible.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=Its body is covered with a down that can refract light in such a way that it becomes invisible.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|reg2=Hoenn|num2=205}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=It communicates using telepathy. Its body is covered in down that refracts light to make it invisible.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=It can telepathically communicate with people. It changes its appearance using its down that refracts light.}}&lt;br /&gt;
{{Dex/Entry1|v=Omega Ruby|t=FFF|entry=Latias is highly sensitive to the emotions of people. If it senses any hostility, this Pokémon ruffles the feathers all over its body and cries shrilly to intimidate the foe.}}&lt;br /&gt;
{{Dex/Entry1|v=Alpha Sapphire|t=FFF|entry=Latias is highly intelligent and capable of understanding human speech. It is covered with a glass-like down. The Pokémon enfolds its body with its down and refracts light to alter its appearance.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VII|reg1=Alola|reg2=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Generation VII]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=Its body is covered with a down that can refract light in such a way that it becomes invisible.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IX|reg1=Paldea|reg2=Kitakami}}&lt;br /&gt;
{{Dex/NE|[[Generation IX]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1/None|v=Ruby|area=[[Southern Island]] &amp;lt;small&amp;gt;(requires [[Eon Ticket]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Ruby and Sapphire#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Sapphire|t=FFF|area={{pkmn2|Roaming}} [[Hoenn]] ([[List of in-game event Pokémon in Pokémon Ruby and Sapphire#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{pkmn2|Roaming}} [[Hoenn]] or [[Southern Island]] &amp;lt;small&amp;gt;(requires [[Eon Ticket]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Emerald#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2/None|v=Diamond|v2=Pearl}}&lt;br /&gt;
{{Availability/Entry1/None|v=Platinum}}&lt;br /&gt;
{{Availability/Entry1|v=HeartGold|area={{pkmn2|Roaming}} [[Kanto]] ([[List of in-game event Pokémon in Pokémon HeartGold and SoulSilver#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=SoulSilver|area=[[Pewter City]] &amp;lt;small&amp;gt;(requires [[Enigma Stone]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon HeartGold and SoulSilver#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|land}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Field}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry1/None|v=Black 2}}&lt;br /&gt;
{{Availability/Entry1|v=White 2|area=[[Dreamyard]] ([[List of in-game event Pokémon in Pokémon Black 2 and White 2#Latias|Only one]])}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2/None|v=X|v2=Y}}&lt;br /&gt;
{{Availability/Entry1/None|v=Omega Ruby|area=[[Southern Island]] &amp;lt;small&amp;gt;(requires [[Eon Ticket]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Omega Ruby and Alpha Sapphire#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Alpha Sapphire|t=FFF|area=[[Southern Island]] ([[List of in-game event Pokémon in Pokémon Omega Ruby and Alpha Sapphire#Latias|Only one]])}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sun|v2=Moon|area=[[Trade]]}}&lt;br /&gt;
{{Availability/Entry1/None|v=Ultra Sun|area=[[Trade]]}}&lt;br /&gt;
{{Availability/Entry1|v=Ultra Moon|t=FFF|area=[[Ultra Space Wilds]] ({{DL|Ultra Space Wilds|Water World}}) ([[List of in-game event Pokémon in Pokémon Ultra Sun and Ultra Moon#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=[[Trade]]&amp;lt;sup&amp;gt;Version 1.3.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=Shield Expansion Pass|color={{shield color dark}}|t=fff|link=Pokémon Sword and Shield Expansion Pass|area=[[Max Lair]] ([[Dynamax Adventure]]) ([[List of in-game event Pokémon in Pokémon Sword and Shield#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area=[[Ramanas Park]] &amp;lt;small&amp;gt;(requires [[Soul Slate]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Brilliant Diamond and Shining Pearl#Latias|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=[[Trade]]&amp;lt;sup&amp;gt;Version 3.0.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero (Scarlet)|color={{scarlet color dark}}|t=fff|link=The Hidden Treasure of Area Zero|area=South Province: [[South Province (Area Four)|Area Four]] after receiving the [[Latias Treat]] from [[Snacksworth]] ([[List of in-game event Pokémon in Pokémon Scarlet and Violet#Latias|Only one]]) &amp;lt;small&amp;gt;(&#039;&#039;&#039;Group Quest&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero (Violet)|color={{violet color dark}}|t=fff|link=The Hidden Treasure of Area Zero|area=South Province: [[South Province (Area Four)|Area Four]] after receiving the [[Latias Treat]] from [[Snacksworth]] ([[List of in-game event Pokémon in Pokémon Scarlet and Violet#Latias|Only one]]) &amp;lt;small&amp;gt;(&#039;&#039;&#039;Solo Quest&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
In Pokémon Emerald, the roaming Pokémon is chosen in a sequence immediately after the credits where, after hearing a [[television]] report, the player is asked the color of the Pokémon in it. If red is selected, Latias roams Hoenn and Latios is found at the island. If blue is selected, Latias is found at the island and Latios roams Hoenn.&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Channel|color={{water color}}|area=[[Cobalt Coast]]}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=fff|area=Randomly on the [[Sapphire Field]]}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=Random Agent Cards, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Pitfall Valley]]{{tt|*|Automatically recruited upon completion}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Spacial Rift]] ({{tt|B10F|with Mystery Part or Secret Slab in the bag}}), [[Happy Outlook]] ({{tt|B19F|with Mystery Part or Secret Slab in the bag}})}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Spacial Rift]] ({{tt|B10F|with Mystery Part or Secret Slab in the bag}}), [[Happy Outlook]] ({{tt|B19F|with Mystery Part or Secret Slab in the bag}})}}&lt;br /&gt;
{{Availability/Entry1|v=PokéPark Wii|color={{grass color}}|link=PokéPark Wii: Pikachu&#039;s Adventure|area=[[Beach Zone]]}}&lt;br /&gt;
{{Availability/Entry1|v=Ranger: GS|color={{GS color}}|link=Pokémon Ranger: Guardian Signs|area=[[Tilikule Island]], [[Rand&#039;s House]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Meadow: All ([[Pokémon Rumble Blast#Legendary Boss Pokémon|Random Legendary Encounter]])}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Conductor Room#King of the Sky|Conductor Room: King of the Sky]], [[Challenge Battle#Open Entry Battle Royale|Challenge Battle: Open Entry Battle Royale]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Sky-High Ruins#Stage 5|Sky-High Ruins: Stage 5]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Ruby Volcano#Giant Redwood|Ruby Volcano: Giant Redwood]] &amp;lt;small&amp;gt;(Special Boss)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Picross|color={{skill color light}}|area=[[Pokémon Picross Stages#Area 25|Area 25: Stage 14]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Butterfree Sea]], [[Rayquaza Sea]], [[Celebi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Pitfall Valley]]{{tt|*|Automatically recruited upon completion}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=Event: &#039;&#039;[[Escalation battle|Take on Escalation Battles]]&#039;&#039;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Poké Fair [[sync pair scout]]: {{sync|May|Latias|Anniversary 2022}} &amp;lt;small&amp;gt;(&#039;&#039;&#039;{{me|Latias}}&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Journey Across America Latias|English|United States|70|February 25 to July 23, 2006|link=List of Journey Across America event Pokémon distributions#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latias|English|United Kingdom|70|June 10, 2006;&amp;lt;br&amp;gt;October 14 to November 19, 2006|link=List of English event Pokémon distributions in Generation III#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latias|Italian|Italy|70|June 23 to 25, 2006|link=List of Italian event Pokémon distributions in Generation III#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latias|Spanish|Spain|70|June 27 to August 27, 2006|link=List of Spanish event Pokémon distributions in Generation III#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Party of the Decade Latias|English|United States|70|August 8, 2006|link=List of Party of the Decade event Pokémon distributions#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latias|German|Germany|70|September 24 to November 5, 2006|link=List of German event Pokémon distributions in Generation III#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latias|French|France|70|September 26, 2006|link=List of French event Pokémon distributions in Generation III#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|S}}|Legendary Pokémon Celebration Latias|PAL region|Nintendo Network|60|September 1 to 23, 2018|link=List of PAL region Nintendo Network event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|US}}|Legendary Pokémon Celebration Latias|PAL region|Nintendo Network|100|September 1 to 23, 2018|link=List of PAL region Nintendo Network event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|S}}|Legendary Pokémon Celebration Latias|Taiwanese region|Nintendo Network|60|September 1 to 23, 2018|link=List of Taiwanese region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|US}}|Legendary Pokémon Celebration Latias|Taiwanese region|Nintendo Network|100|September 1 to 23, 2018|link=List of Taiwanese region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|S}}|Legendary Pokémon Celebration Latias|American region|Online|60|September 2 to December 21, 2018|link=List of American region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|US}}|Legendary Pokémon Celebration Latias|American region|Online|100|September 2 to December 21, 2018|link=List of American region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|US}}|Korean League Season 3 Latias|All|South Korea|100|May 4 to 5, 2019|link=List of local event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latias}}&lt;br /&gt;
{{eventAvail|{{gameabbrev8|SwSh}}|25th Anniversary Film Fest Alto Mare Latias|All|Online|70|August 11 to September 30, 2022|link=List of event Pokémon distributions in Pokémon Sword and Shield#Alto Mare Latias}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems&lt;br /&gt;
|type=Dragon|type2=Psychic|Latias=yes&lt;br /&gt;
|re1=Soul Dew|re1type=None|re1rar=100&lt;br /&gt;
|as1=Latiasite|as1type=None|as1rar=100&lt;br /&gt;
|event1=Soul Dew|event1type=None|event1rar=100&lt;br /&gt;
|event2=Gold Bottle Cap|event2type=None|event2rar=100&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
=====Latias=====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|HP=     80&lt;br /&gt;
|Attack= 80&lt;br /&gt;
|Defense=90&lt;br /&gt;
|SpAtk= 110&lt;br /&gt;
|SpDef= 130&lt;br /&gt;
|Speed= 110}}&lt;br /&gt;
&lt;br /&gt;
=====Mega Latias=====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
||type=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|HP=80&lt;br /&gt;
|Attack=100&lt;br /&gt;
|Defense=120&lt;br /&gt;
|SpAtk=140&lt;br /&gt;
|SpDef=150&lt;br /&gt;
|Speed=110}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|Speed=5&lt;br /&gt;
|SpeedMax=5&lt;br /&gt;
|Power=3&lt;br /&gt;
|PowerMax=4&lt;br /&gt;
|Technique=4&lt;br /&gt;
|TechniqueMax=5&lt;br /&gt;
|Stamina=2&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=5&lt;br /&gt;
|JumpMax=5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|Normal= 100&lt;br /&gt;
|Fighting=50&lt;br /&gt;
|Flying= 100&lt;br /&gt;
|Poison= 100&lt;br /&gt;
|Ground=   0&lt;br /&gt;
|Rock=   100&lt;br /&gt;
|Bug=    200&lt;br /&gt;
|Ghost=  200&lt;br /&gt;
|Steel=  100&lt;br /&gt;
|Fire=    50&lt;br /&gt;
|Water=   50&lt;br /&gt;
|Grass=   50&lt;br /&gt;
|Electric=50&lt;br /&gt;
|Psychic= 50&lt;br /&gt;
|Ice=    200&lt;br /&gt;
|Dragon= 200&lt;br /&gt;
|Dark=   200&lt;br /&gt;
|Fairy=  200&lt;br /&gt;
|notes=yes&lt;br /&gt;
|levitate=yes&lt;br /&gt;
|newground=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Latias is available in {{pkmn|Scarlet and Violet}} Version 3.0.0+.&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Latias|Dragon|Psychic|3}}&lt;br /&gt;
{{learnlist/level9|1|Stored Power|Psychic|Special|20|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Charm|Fairy|Status|—|100|20}}&lt;br /&gt;
{{learnlist/level9|5|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|10|Recover|Normal|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|15|Confusion|Psychic|Special|50|100|25||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|20|Tailwind|Flying|Status|—|—|15}}&lt;br /&gt;
{{learnlist/level9|25|Dragon Breath|Dragon|Special|60|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|30|Wish|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|35|Mist Ball|Psychic|Special|95|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|40|Zen Headbutt|Psychic|Physical|80|90|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|45|Dragon Pulse|Dragon|Special|85|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|50|Heal Pulse|Psychic|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|55|Reflect Type|Normal|Status|—|—|15}}&lt;br /&gt;
{{learnlist/level9|60|Psychic|Psychic|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|65|Guard Split|Psychic|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|70|Healing Wish|Psychic|Status|—|—|10}}&lt;br /&gt;
{{learnlist/levelf/9|Latias|Dragon|Psychic|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Latias|Dragon|Psychic|3}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM002|Charm|Fairy|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM004|Agility|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM011|Water Pulse|Water|Special|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM019|Disarming Voice|Fairy|Special|40|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM022|Chilling Water|Water|Special|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM023|Charge Beam|Electric|Special|50|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM027|Aerial Ace|Flying|Physical|60|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM032|Swift|Normal|Special|60|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM034|Icy Wind|Ice|Special|55|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM037|Draining Kiss|Fairy|Special|50|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM040|Air Cutter|Flying|Special|60|95|25}}&lt;br /&gt;
{{learnlist/tm9|TM041|Stored Power|Psychic|Special|20|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM054|Psyshock|Psychic|Special|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM059|Zen Headbutt|Psychic|Physical|80|90|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM061|Shadow Claw|Ghost|Physical|70|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM065|Air Slash|Flying|Special|75|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM074|Reflect|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM075|Light Screen|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM077|Waterfall|Water|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM078|Dragon Claw|Dragon|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM081|Grass Knot|Grass|Special|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM082|Thunder Wave|Electric|Status|—|90|20}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM097|Fly|Flying|Physical|90|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM100|Dragon Dance|Dragon|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM109|Trick|Psychic|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM110|Liquidation|Water|Physical|85|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM112|Aura Sphere|Fighting|Special|80|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM113|Tailwind|Flying|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM115|Dragon Pulse|Dragon|Special|85|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM119|Energy Ball|Grass|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM120|Psychic|Psychic|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM123|Surf|Water|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM126|Thunderbolt|Electric|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM129|Calm Mind|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM132|Baton Pass|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/tm9|TM135|Ice Beam|Ice|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM156|Outrage|Dragon|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM166|Thunder|Electric|Special|110|70|10}}&lt;br /&gt;
{{learnlist/tm9|TM168|Solar Beam|Grass|Special|120|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM169|Draco Meteor|Dragon|Special|130|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM172|Roar|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM193|Weather Ball|Normal|Special|50|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM197|Dual Wingbeat|Flying|Physical|40|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM200|Scale Shot|Dragon|Physical|25|90|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM203|Psych Up|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM208|Whirlpool|Water|Special|35|85|15}}&lt;br /&gt;
{{learnlist/tm9|TM217|Future Sight|Psychic|Special|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM222|Breaking Swipe|Dragon|Physical|60|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM226|Dragon Cheer|Dragon|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM227|Alluring Voice|Fairy|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tmf/9|Latias|Dragon|Psychic|3}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Latias|Dragon|Psychic|3}}&lt;br /&gt;
{{learnlist/breed9null}}&lt;br /&gt;
{{learnlist/breedf/9|Latias|Dragon|Psychic|3}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
====Latias====&lt;br /&gt;
{{Spindata/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Dragon|ndex=380|acquisition=Catch}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Dragon|ndex=380|rarity=Rare}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Dragon|ndex=380&lt;br /&gt;
|body=1&lt;br /&gt;
|rate={{tt|N/A|Asks to join the team after being rescued}}&lt;br /&gt;
|area=Southern Island&lt;br /&gt;
|P1=Please, show me your heart.&lt;br /&gt;
|P2=I&#039;m afraid... My health is down by half...&lt;br /&gt;
|P3=I can&#039;t keep up... Please keep trying when I&#039;m gone...&lt;br /&gt;
|PL=I went up a level! It&#039;s time to work even harder!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Dragon|ndex=380&lt;br /&gt;
|body=2&lt;br /&gt;
|rate=0.1&lt;br /&gt;
|IQ=D&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Dragon|ndex=380&lt;br /&gt;
|coset=1&lt;br /&gt;
|conto={{p|Celebi}}, {{p|Latios}}&lt;br /&gt;
|recruitment=Meet up with at [[Friendly Meadow]]&lt;br /&gt;
|P1=I&#039;m so glad I&#039;m no longer stone! I&#039;m so happy that I can fly again!&lt;br /&gt;
|P2=I may not…last much longer…&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger GS|col=6|type=Dragon&lt;br /&gt;
|group=Psychic&lt;br /&gt;
|assist=Psychic&lt;br /&gt;
|field=None&lt;br /&gt;
|past=NA&lt;br /&gt;
|num=278&lt;br /&gt;
|browser=It flies around quickly and launches orbs of light.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Dragon&lt;br /&gt;
|att=4&lt;br /&gt;
|def=5&lt;br /&gt;
|speed=4&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Dragon|ndex=380&lt;br /&gt;
|walk=1.5&lt;br /&gt;
|hp=55&lt;br /&gt;
|attack=83&lt;br /&gt;
|defense=61&lt;br /&gt;
|speed=70&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PokéPark|col=6|type=Dragon|ndex=380&lt;br /&gt;
|Pad=Latias was drawn to the Rainbow and came to the PokéPark with her {{p|Latios|brother}}. She found herself much admired for her aerial abilities at {{DL|Attraction (PokéPark)|Pelipper&#039;s Circle Circuit}}.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=6|type=Dragon|ndex=380&lt;br /&gt;
|power=4&lt;br /&gt;
|skill=Flinch Attack&lt;br /&gt;
|skilldesc=Briefly stops wild Pokémon from taking action.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Shuffle|col=6|type=Dragon|ndex=380|num=315&lt;br /&gt;
|mega=1&lt;br /&gt;
|stone=Latiasite&lt;br /&gt;
|min=80&lt;br /&gt;
|max=115&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Swap&lt;br /&gt;
|skilldesc=Sometimes replaces a disruption with this Pokémon.&lt;br /&gt;
|swapper=Hitting Streak+&lt;br /&gt;
|megaspeedup=13&lt;br /&gt;
|effectdesc=Erases Pokémon on a random jagged line horizontally.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Dragon|ndex=380&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=20&lt;br /&gt;
|candy=Latias&lt;br /&gt;
|evolution={{Mega Energy|Latias}}{{tt|300|First time}}/{{tt|60|1st Mega Level}}/{{tt|30|2nd Mega Level}}/{{tt|15|3rd Mega Level}}&lt;br /&gt;
|stamina=190|attack=228|defense=246&lt;br /&gt;
|fast={{m|Dragon Breath}}, {{m|Zen Headbutt}}, {{m|Charm}}{{tt|*|From July 9, 2019 onward}}&lt;br /&gt;
|special={{m|Psychic}}, {{m|Outrage}}, {{m|Thunder}}, {{m|Frustration}}[[File:GO Shadow icon.png|24px|link=Shadow Pokémon (GO)|As Shadow Pokémon]], {{m|Return}}[[File:GO Purified icon.png|24px|link=Shadow Pokémon (GO)|As Purified Pokémon]], {{m|Mist Ball}}{{tt|†|Event-exclusive from Pokémon Air Adventures 2022}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Mega Latias====&lt;br /&gt;
{{Spindata/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Dragon|ndex=380M&lt;br /&gt;
|coset=1&lt;br /&gt;
|conto={{p|Celebi}}, {{p|Latios}}&lt;br /&gt;
|recruitment=Meet up with at [[Friendly Meadow]]&lt;br /&gt;
|P1=I&#039;m so glad I&#039;m no longer stone! I&#039;m so happy that I can fly again!&lt;br /&gt;
|P2=I may not…last much longer…&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Dragon|ndex=380M&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=20&lt;br /&gt;
|candy=Latias&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=190&lt;br /&gt;
|attack=289&lt;br /&gt;
|defense=297&lt;br /&gt;
|fast={{m|Dragon Breath}}, {{m|Zen Headbutt}}, {{m|Charm}}{{tt|*|From July 9, 2019 onward}}&lt;br /&gt;
|special={{m|Psychic}}, {{m|Outrage}}, {{m|Thunder}}, {{m|Return}}[[File:GO Purified icon.png|24px|link=Shadow Pokémon (GO)|As Purified Pokémon]], {{m|Mist Ball}}{{tt|†|Event-exclusive from Pokémon Air Adventures 2022}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Form data===&lt;br /&gt;
====Mega Evolution====&lt;br /&gt;
{{Evobox/Formes&lt;br /&gt;
|sprite1=0380Latias&lt;br /&gt;
|name1=Latias&lt;br /&gt;
|type1-1=Dragon&lt;br /&gt;
|type2-1=Psychic&lt;br /&gt;
|forme1=Latias&lt;br /&gt;
|loc1=Default&lt;br /&gt;
|item1=Latiasite&lt;br /&gt;
|itemfile1=Dream Latiasite Sprite.png&lt;br /&gt;
|itemsize1=40px&lt;br /&gt;
|sprite2=0380Latias-Mega&lt;br /&gt;
|type1-2=Dragon&lt;br /&gt;
|type2-2=Psychic&lt;br /&gt;
|forme2=Mega Latias&lt;br /&gt;
|loc2={{color2|000|Held item|Held}} Latiasite&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;{{Evobox-1&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0380&lt;br /&gt;
|name1=Latias&lt;br /&gt;
|type1-1=Dragon&lt;br /&gt;
|type2-1=Psychic&lt;br /&gt;
}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Spritebox/NA|gen=III}}&lt;br /&gt;
{{Spritebox/3|ndex=380}}&lt;br /&gt;
{{Spritebox/4|ndex=380}}&lt;br /&gt;
{{Spritebox/5|ndex=380}}&lt;br /&gt;
{{Spritebox/6/2Forms|ndex=380|form1=M|crop=173}}&lt;br /&gt;
{{Spritebox/7/2Forms|ndex=380|form1=M|crop=188}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8|ndex=380}}&lt;br /&gt;
{{Spritebox/9|ndex=0380}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME/2Forms|ndex=0380|form1=M}}&lt;br /&gt;
{{Spritebox/Footer|0380|Latias}}&lt;br /&gt;
&lt;br /&gt;
====Other sprites====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; font-size: 80%; {{roundy|20px}} border: 2px solid #{{psychic color dark}}; background: #{{dragon color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{psychic color dark}}; background: #{{dragon color light}}; width:160px&amp;quot;| [[File:Spr 3s Latias intro.png]]&lt;br /&gt;
|-&lt;br /&gt;
| Sapphire intro&#039;s sprite&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Latias anime.png|thumb|250px|Latias in {{aniseries|JN}}]]&lt;br /&gt;
[[File:Hoopa Mega Latias.png|thumb|250px|Mega Latias in &#039;&#039;[[M18|Hoopa and the Clash of Ages]]&#039;&#039;]]&lt;br /&gt;
===Main series===&lt;br /&gt;
====Major appearances====&lt;br /&gt;
=====[[Latias (M05)]]=====&lt;br /&gt;
Latias debuted in &#039;&#039;[[M05|Pokémon Heroes: Latios &amp;amp; Latias]]&#039;&#039;. She and her brother {{OBP|Latios|M05}} were the targets of {{OBP|Annie|M05}} and [[Oakley]]. Latias assisted {{Ash}} in the mission to save Latios and the town of [[Alto Mare]].&lt;br /&gt;
&lt;br /&gt;
=====[[Latias (anime)]]=====&lt;br /&gt;
Latias made her main series debut in &#039;&#039;[[JN137|The Road Most Traveled!]]&#039;&#039;, where Ash encountered an injured Latias and helped her to recover, even saving her from being captured by {{TRT}}. At the end of the episode, she started to secretly follow Ash. In &#039;&#039;[[JN145|Rocket Revengers!]]&#039;&#039;, she revealed herself to him and showed him a vision of a {{p|Latios}} in danger. After Latios had been saved in the [[JN146|next episode]], Latias left with him.&lt;br /&gt;
&lt;br /&gt;
=====Other=====&lt;br /&gt;
In &#039;&#039;[[PK16|Pikachu&#039;s Ocean Adventure]]&#039;&#039;, a Latias and Latios used their powers to help {{AP|Pikachu}}, {{MTR}}, and the other Pokémon search for the legendary &amp;quot;{{p|Wailord}}&#039;s Tear&amp;quot; that was said to be beneath the ocean.&lt;br /&gt;
&lt;br /&gt;
Latias made her TV episode debut in [[DPS02]], under the ownership of a [[Nurse Joy]] from the [[Pokémon Inspection Agency]]. She was used against [[Forrest]]&#039;s {{p|Rhyperior}} in a {{pkmn|battle}} to test Forrest&#039;s capabilities as the potential {{FB|Gym|Leader}} of the [[Pewter Gym]], and won.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[M18|Hoopa and the Clash of Ages]]&#039;&#039;, a Latias capable of [[Mega Evolution|Mega Evolving]] was summoned alongside Latios and a {{Shiny}} {{p|Rayquaza}} by {{an|Hoopa}} to protect it from the shadow {{fd|Hoopa|Hoopa Unbound}}. The trio protected Hoopa from the shadow Hoopa and its reinforcements, [[Primal Reversion|Primal]] {{p|Groudon}}, Primal {{p|Kyogre}}, {{p|Dialga}}, {{p|Palkia}}, {{p|Giratina}}, and {{p|Kyurem}}, in [[Dahara City]]. Eventually, the battle ended after the shadow Hoopa was sealed in a [[Prison Bottle]], and Latias departed alongside Latios for their home.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
In the opening sequence of &#039;&#039;[[M06|Jirachi: Wish Maker]]&#039;&#039;, a Latias was soaring through Alto Mare alongside a Latios.&lt;br /&gt;
&lt;br /&gt;
In the opening sequence of &#039;&#039;[[M10|The Rise of Darkrai]]&#039;&#039;, a Latias was soaring across the sky alongside a Latios.&lt;br /&gt;
&lt;br /&gt;
A Latias that can Mega Evolve into Mega Latias appeared in the ending segment of &#039;&#039;[[XYS02|Mega Evolution Special II]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Latias appeared in [[HZ075]] during a flashback.&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Galar}}&lt;br /&gt;
{{Animedexbody|JN137|Latias|Team Rocket&#039;s Rotom Phone|Latias, the Eon Pokémon. A {{t|Dragon}} and {{t|Psychic}} type. Latias communicates emotions through telepathy, and the feathers all over its body can refract light, making it virtually invisible. In short, it&#039;s a [[Legendary Pokémon]], get it?}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Galar}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Omega Ruby and Alpha Sapphire Animated Trailer===&lt;br /&gt;
[[File:Mega Latias ORAS Trailer.png|thumb|250px|Mega Latias in the animated trailer]]&lt;br /&gt;
In the [[Pokémon Omega Ruby and Pokémon Alpha Sapphire Animated Trailer]], {{ga|May}}&#039;s [[Mega Evolution|Mega]] Latias was [[soaring in the sky]] alongside {{ga|Brendan}}&#039;s {{p|Latios}}.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Generations===&lt;br /&gt;
[[File:Latias Latios PG.png|thumb|left|250px|Latias in [[Pokémon Generations]]]]&lt;br /&gt;
In &#039;&#039;[[PG01|The Adventure]]&#039;&#039;, a {{pkmn2|wild}} Latias and Latios were seen near the [[Weather Institute]], during a battle between [[Red&#039;s Pikachu]] and a wild {{p|Vigoroth}}.&lt;br /&gt;
&lt;br /&gt;
===GOTCHA!===&lt;br /&gt;
A Latias briefly appeared as a silhouette in [[GOTCHA!]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Latias maid Adventures.png|thumb|left|200px|Latias as a human in [[Pokémon Adventures]]]]&lt;br /&gt;
[[File:Eon duo Adventures.png|thumb|200px|{{p|Latias}} (right) and Latios (left) in [[Pokémon Adventures]]]]&lt;br /&gt;
===Movie adaptations===&lt;br /&gt;
{{main|Latias (M05)}}&lt;br /&gt;
Latias and her brother {{OBP|Latios|M05}} play a major role in both the {{ma|Guardian Gods of the City of Water: Latias and Latios|manga adaptation}} and the [[Guardian Gods of the City of Water: Latias and Latios (graphic novel)|graphic novel]] of &#039;&#039;[[M05|Pokémon Heroes: Latios &amp;amp; Latias]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pocket Monsters DP===&lt;br /&gt;
A Latias appeared in [[PMDP29]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{main|Eon duo (Adventures)}}&lt;br /&gt;
Latias, along with Latios, was befriended by {{adv|Emerald}} and took the young {{pkmn|Trainer}} to the {{OBP|Battle Frontier|Generation III}}. She has appeared as a human a few times as the saga continued by using her ability to refract light. She first appeared in &#039;&#039;[[PS303|Never Spritz a Knotty Sudowoodo]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Latias (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==In the TFG==&lt;br /&gt;
One Latias figure has been released.&lt;br /&gt;
* {{TFG|Groundbreakers}}: {{TFG ID|Groundbreakers|Latias|17}}&lt;br /&gt;
&lt;br /&gt;
==Other appearances==&lt;br /&gt;
[[File:Latias and Latios SSBB.png|220px|thumb|Latias and Latios Super Smash Bros. Brawl]]&lt;br /&gt;
===[[Super Smash Bros. Brawl]]===&lt;br /&gt;
After Latias appears from its {{i|Poké Ball}}, she will fly off the stage. She and Latios will then alternately zoom onto the stage with {{m|Steel Wing}} damaging any opponent that collides with them. She may also cause movement of items as well.&lt;br /&gt;
&lt;br /&gt;
====Trophy information====&lt;br /&gt;
Latias appears with her counterpart Latios.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&amp;quot;Eon Pokémon. There are only female Latias and only male Latios. If they sense the presence of a human or an enemy, they will generally use the light-bending trait of their down coats to make themselves invisible. They use telepathy to speak with companions. They travel in herds, but even so, are rarely seen. They&#039;re a combination of Dragon- and Psychic-types.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===[[Super Smash Bros. for Nintendo 3DS/Wii U]]===&lt;br /&gt;
Latias returns as a Poké Ball Pokémon. She uses Steel Wing to quickly fly across the stage several times to damage targets.&lt;br /&gt;
&lt;br /&gt;
[[File:Latias Latios 3DS trophy SSB4.png|thumb|150px|Latias &amp;amp; Latios trophy in Super Smash Bros. for 3DS]]&lt;br /&gt;
Latias once again shares a trophy with her counterpart in both versions of the game.&lt;br /&gt;
&lt;br /&gt;
====Trophy information====&lt;br /&gt;
&#039;&#039;&#039;NA&#039;&#039;&#039;: &#039;&#039;Latias and Latios are Eon Pokémon. Both are Dragon/Psychic-type Pokémon. The red Latias is female, while the blue Latios is male. By folding in their arms, they can fly faster than fighter jets. They combine speed and teamwork when they cross paths to attack fighters with Steel Wing.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;PAL&#039;&#039;&#039;: &#039;&#039;Latias and Latios are Eon Pokémon. Both are Dragon- and Psychic-types. The red Latias is female, while the blue Latios is male. By folding their arms in, they become super aerodynamic and can fly faster then fighter jets. They combine speed and teamwork when they cross paths to attack fighters with Steel Wing.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===[[Super Smash Bros. Ultimate]]===&lt;br /&gt;
Latias returns as a Poké Ball summon, retaining her behavior from past games. She also appears as a {{sbw|Spirits (characters)|Spirit}} alongside Latios.&lt;br /&gt;
&lt;br /&gt;
==={{so|Eon Ticket}}===&lt;br /&gt;
Latias is featured alongside {{p|Latios}} and the Vocaloids Hatsune Miku and KAITO in the song [https://youtu.be/k7Y30h8S7Uw?si=V4rH8_OLUQ1mttMc Eon Ticket] (Japanese: &#039;&#039;&#039;むげんのチケット&#039;&#039;&#039; &#039;&#039;Mugen no Ticket&#039;&#039;), composed by marasy8 for the Hatsune Miku VOLTAGE Project.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
[[File:Latias Blaziken.jpg|thumb|200px|Pre-alpha sketch of the unused Pokémon]]&lt;br /&gt;
* Latias shares its {{pkmn|category}} with {{p|Latios}}. They are both known as the Eon Pokémon.&lt;br /&gt;
* A pre-alpha sketch depicts an [[List of unused Pokémon and character designs|unused Pokémon]] or alternative form of Latias with the traits of both a Latias and a {{p|Blaziken}}.&lt;br /&gt;
* Latias is the last [[Generation III]] Pokémon to appear in an {{pkmn|animated series}} episode, debuting in &#039;&#039;[[JN137|The Road Most Traveled!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Latias and Latios appear to be a cross between a {{wp|Jet aircraft|jet plane}} (due to their wing shape and speedy flight), a {{wp|dragon}}, a {{wp|griffin}}, and a bird. Like many birds, Latias is said to possess {{wp|down feathers}}. In particular, their lack of feet and continuous levitation might be inspired by the {{wp|common swift}}, a bird with tiny feet (its Latin name &#039;&#039;Apus&#039;&#039; means &#039;&#039;without feet&#039;&#039;) that spends most of its life in the air. Similarly, they might be inspired by the {{wp|martlet}}, a mythical bird in English heraldry that never roosts and is usually depicted with tufts of feathers in place of feet. Their red and blue plumage might be based on parrots in the genus {{wp|Eos (bird)|Eos}}. They could also be based on {{wp|junglefowl}} due to their possible {{DL|List of unused Pokémon and character designs|Blaziken / Latias|shared origin}} with {{p|Blaziken}}.&lt;br /&gt;
&lt;br /&gt;
Due to their classification as &#039;&#039;Eon&#039;&#039; Pokémon and their connection to the [[Soul Dew]], Latias and Latios might be inspired by the {{wp|Aeon (Gnosticism)|aeons in Gnosticism}}, which are said to be emanations of God. In {{wp|Valentinianism}}, these aeons form male/female pairs called syzygies. They may also be loosely based on the Chinese philosophical concept of {{wp|yin and yang}}, which are opposite but interconnected natural forces. Latias, being female and the more passive of the two, would represent yin. Their names and Latias&#039;s ability to refract light might also be a reference to {{wp|Eos}}, the Greek goddess of dawn.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Latias may be a combination of &#039;&#039;lateō&#039;&#039; (Latin for &#039;&#039;I conceal&#039;&#039;, &#039;&#039;I lie hidden&#039;&#039;) and &#039;&#039;-as&#039;&#039; (Latin feminine suffix). It might also reference &#039;&#039;{{wp|Eos}}&#039;&#039; (the Greek goddess of dawn) or &#039;&#039;{{wp|Eos (bird)|Eos}}&#039;&#039; (a genus of parrots with red and blue plumage). It&#039;s possible that its name is derived from {{wp|Plato}}&#039;s dialogue {{wp|Critias (dialogue)|Critias}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Dragon|type2=Psychic&lt;br /&gt;
|ja=ラティアス &#039;&#039;Latias&#039;&#039;|jameaning=From &#039;&#039;{{tt|lateō|Latin for &#039;I conceal&#039;, &#039;I lie hidden&#039;}}&#039;&#039; and &#039;&#039;{{tt|-as|Latin feminine suffix}}&#039;&#039;&lt;br /&gt;
|fr=Latias|frmeaning=Same as English/Japanese name&lt;br /&gt;
|es=Latias|esmeaning=Same as English/Japanese name&lt;br /&gt;
|de=Latias|demeaning=Same as English/Japanese name&lt;br /&gt;
|it=Latias|itmeaning=Same as English/Japanese name&lt;br /&gt;
|ko=라티아스 &#039;&#039;Latias&#039;&#039;|komeaning=Transcription of Japanese name&lt;br /&gt;
|zh_cmn=拉帝亞斯 / 拉帝亚斯 &#039;&#039;Lādìyǎsī&#039;&#039; / &#039;&#039;Lādìyàsī&#039;&#039;|zh_cmnmeaning=Transcription of Japanese name&lt;br /&gt;
|zh_yue=拉帝亞斯 &#039;&#039;Lādai&#039;asī&#039;&#039;|zh_yuemeaning=Mandarin-based transcription of Japanese name&lt;br /&gt;
|hi=लाटियास &#039;&#039;Latias&#039;&#039;|himeaning=Transcription of English name&lt;br /&gt;
|ru=Латиас &#039;&#039;Latias&#039;&#039;|rumeaning=Transliteration of English name&lt;br /&gt;
|th=ลาทิอาส &#039;&#039;Lathi-at&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Notes==--&amp;gt;&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Latias (M05)]]&lt;br /&gt;
* [[Latias (anime)]]&lt;br /&gt;
* [[Eon duo (Adventures)]]&lt;br /&gt;
* [[Eon duo]]&lt;br /&gt;
* [[Mega Evolution]]&lt;br /&gt;
* [[Legendary Pokémon]]&lt;br /&gt;
* [[Myths and legends involving Legendary and Mythical Pokémon]]&lt;br /&gt;
&lt;br /&gt;
{{Legendary Pokémon}}&lt;br /&gt;
{{Mega Evolution}}&lt;br /&gt;
{{Smash Bros.}}{{PokémonPrevNext/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dragon|prevnum=0379|prev=Registeel|nextnum=0381|next=Latios}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Legendary Pokémon]]&lt;br /&gt;
[[Category:Hoenn Legendary Pokémon]]&lt;br /&gt;
[[Category:Roaming Pokémon]]&lt;br /&gt;
[[Category:Pokémon with Mega Evolutions]]&lt;br /&gt;
[[Category:Pokémon that appeared in the animated series before their game debut]]&lt;br /&gt;
[[Category:Purple-colored Pokémon]]&amp;lt;!--Mega Latias--&amp;gt;&lt;br /&gt;
[[Category:Super Smash Bros. trophies]]&lt;br /&gt;
&lt;br /&gt;
[[de:Latias]]&lt;br /&gt;
[[es:Latias]]&lt;br /&gt;
[[fr:Latias]]&lt;br /&gt;
[[it:Latias]]&lt;br /&gt;
[[ja:ラティアス]]&lt;br /&gt;
[[zh:拉帝亚斯]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Latios_(Pok%C3%A9mon)&amp;diff=4242527</id>
		<title>Latios (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Latios_(Pok%C3%A9mon)&amp;diff=4242527"/>
		<updated>2025-02-18T23:42:04Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In the manga */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Latios}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dragon|prevnum=0380|prev=Latias|nextnum=0382|next=Kyogre|round=none}}&lt;br /&gt;
{{PokémonPrevNext/Disambig|species=Latios}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Latios&lt;br /&gt;
|jname=ラティオス&lt;br /&gt;
|jtranslit=Ratiosu&lt;br /&gt;
|tmname=Latios&lt;br /&gt;
|forme=2&lt;br /&gt;
|form2=Mega Latios&lt;br /&gt;
|image2=0381Latios-Mega.png&lt;br /&gt;
|mega=Latiosite&lt;br /&gt;
|category=Eon&lt;br /&gt;
|ndex=0381&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|height-ftin=6&#039;07&amp;quot;&lt;br /&gt;
|height-m=2.0&lt;br /&gt;
|weight-lbs=132.3&lt;br /&gt;
|weight-kg=60.0&lt;br /&gt;
|height-ftin2=7&#039;07&amp;quot;&lt;br /&gt;
|height-m2=2.3&lt;br /&gt;
|weight-lbs2=154.3&lt;br /&gt;
|weight-kg2=70.0&lt;br /&gt;
|abilitylayout=1&lt;br /&gt;
|ability1=Levitate&lt;br /&gt;
|egggroupn=0&lt;br /&gt;
|egggroup1=No Eggs Discovered&lt;br /&gt;
|eggcycles=120&lt;br /&gt;
|evtotal=3&lt;br /&gt;
|evsa=3&lt;br /&gt;
|expyield=270&lt;br /&gt;
|oldexp=211&lt;br /&gt;
|lv100exp=1,250,000&lt;br /&gt;
|gendercode=0&lt;br /&gt;
|color=Blue&lt;br /&gt;
|formcolors=yes&lt;br /&gt;
|catchrate=3&lt;br /&gt;
|body=09&lt;br /&gt;
|pokefordex=latios&lt;br /&gt;
|generation=3&lt;br /&gt;
|friendship=90&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Latios&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ラティオス&#039;&#039;&#039; &#039;&#039;Latios&#039;&#039;) is a dual-type {{2t|Dragon|Psychic}} [[Legendary Pokémon]] introduced in [[Generation III]].&lt;br /&gt;
&lt;br /&gt;
While it is not known to [[Evolution|evolve]] into or from any other Pokémon, Latios can [[Mega Evolution|Mega Evolve]] into &#039;&#039;&#039;Mega Latios&#039;&#039;&#039; using the [[Latiosite]].&lt;br /&gt;
&lt;br /&gt;
It is a member of the [[eon duo]] along with {{p|Latias}}.&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Latios is a {{OBP|Pokémon|species}} with a birdlike body stylized after a plane. Its body flows slowly into a thick neck, giving it a bulky appearance. It has no legs, usually floating instead. Most of its body is blue, with white areas near its arms and a white stripe on its back that extend up to its head. Jet-plane wings sit on top of its back, while two tall, jagged fins point behind it from its rear. A red triangle marks the center of its chest, while a blue mask partially covers its face. Long, ear-like fins extend from its jaws to over its head, and its eyes are red. It has three-fingered arms with a blue covering on the outer side of the lower arms. Latios is a male-only species, with {{p|Latias}} being its female counterpart.&lt;br /&gt;
&lt;br /&gt;
Latios has a gentle nature and will avoid fighting whenever possible. It can fly faster than a jet by tucking in its arms. [[M05|In the fifth movie]], Latios had the ability &amp;quot;Sight Sharing&amp;quot;, which allowed Latias and people around it to see exactly what Latios was seeing. [[Oakley]] also mentioned that it can shape-shift. It prefers compassionate Trainers, to whom it opens its heart. Latios uses telepathy to detect locations and the emotions of others and can understand human speech. It lives by the {{DL|List of Pokémon by habitat|Water&#039;s-edge Pokémon|water&#039;s edge}}. As seen in [[Pokémon Horizons: The Series|&#039;&#039;Pokémon Horizons&#039;&#039;]], like other [[Legendary Pokémon]], Latios can be found in the Pokémon paradise [[Laqua]]. Latios loves [[Latios Treat]]s made by [[Snacksworth]], who once encountered and followed it to a secret spot in the past. Latios can be summoned by the [[Eon Flute]].&lt;br /&gt;
&lt;br /&gt;
Latios is the [[signature move|only known Pokémon]] capable of learning the move {{m|Luster Purge}}.&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
Latios can [[Mega Evolution|Mega Evolve]] into Mega Latios.&lt;br /&gt;
&lt;br /&gt;
As [[Mega Evolution|Mega]] Latios, the blue parts of its body change to purple. Horns grow from the side of its head and run along its jaw. It loses the wings on its back and similar but larger wings attach to its lower arms, normally held in a level position. Triangle shapes now mark the forward point of its wings instead of its chest.&lt;br /&gt;
&lt;br /&gt;
Mega Latios is said to be one of the fastest Pokémon in the world to exist. Due to Mega Evolving, Mega Latios can achieve even higher speed in flight. Mega Latios is both larger and faster than Mega Latias. It can reach a speed of Mach 4&amp;lt;ref&amp;gt;[https://web.archive.org/web/20150202062726/http://www.pokemonrubysapphire.com/en-us/pokemon/the-eon-pokemon-appear Omega Ruby and Alpha Sapphire site | Mega Latios]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; font-size:80%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: #{{dragon color}}; {{roundy|10px}} border: 3px solid #{{psychic color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{color2|000|Mega Evolution|Mega}} Latios&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|96px}} border: 2px solid #{{psychic color dark}}; background: #{{dragon color light}}; width:96px; height:96px&amp;quot;| [[File:0381Latios-Mega.png|100px]]&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===NPC appearances===&lt;br /&gt;
* {{g|Pinball: Ruby &amp;amp; Sapphire}}: If the ball drops out of the [[Ruby Field]] while the &amp;quot;Ball Saver&amp;quot; is active, Latios will rescue it and place it on Spoink without the ball being lost.&lt;br /&gt;
* [[Pokémon Omega Ruby and Alpha Sapphire|Pokémon Omega Ruby]]: The {{player}} can use the [[Eon Flute]] to fly around Hoenn on the back of a Mega Latios.&lt;br /&gt;
* {{g|Mystery Dungeon: Red Rescue Team and Blue Rescue Team}}: Latios is the boss of [[Northern Range]], having fled there after stealing from the [[Kecleon Shop]] in [[Pokémon Square]].&lt;br /&gt;
* {{g|Super Mystery Dungeon}}: Latios is a minor character in the game and briefly appears alongside Latias where they are being chased. They are later turned to stone and their bodies fall to the ground.&lt;br /&gt;
&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Dex/NA|gen=III}}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|num1=197|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry1|v=Ruby|t=FFF|entry=&amp;lt;sc&amp;gt;Latios&amp;lt;/sc&amp;gt; has the ability to make its foe see an image of what it has seen or imagines in its head. This {{ScPkmn}} is intelligent and understands human speech.}}&lt;br /&gt;
{{Dex/Entry1|v=Sapphire|t=FFF|entry=&amp;lt;sc&amp;gt;Latios&amp;lt;/sc&amp;gt; will only open its heart to a &amp;lt;sc&amp;gt;Trainer&amp;lt;/sc&amp;gt; with a compassionate spirit. This {{ScPkmn}} can fly faster than a jet plane by folding its forelegs to minimize air resistance.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages.}}&lt;br /&gt;
{{Dex/Entry2|v=FireRed|v2=LeafGreen|entry=It has a docile temperament and dislikes fighting. Tucking in its forelegs, it can fly faster than a jet plane.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|reg2=Johto}}&lt;br /&gt;
{{Dex/Entry3|v=Diamond|v2=Pearl|v3=Platinum|entry=A highly intelligent Pokémon. By folding back its wings in flight, it can overtake jet planes.}}&lt;br /&gt;
{{Dex/Entry2|v=HeartGold|v2=SoulSilver|entry=It understands human speech and is highly intelligent. It is a tender Pokémon that dislikes fighting.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=A highly intelligent Pokémon. By folding back its wings in flight, it can overtake jet planes.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=A highly intelligent Pokémon. By folding back its wings in flight, it can overtake jet planes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|reg2=Hoenn|num2=206}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=A highly intelligent Pokémon. By folding back its wings in flight, it can overtake jet planes.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=It understands human speech and is highly intelligent. It is a tender Pokémon that dislikes fighting.}}&lt;br /&gt;
{{Dex/Entry1|v=Omega Ruby|t=FFF|entry=Latios has the ability to make others see an image of what it has seen or imagines in its head. This Pokémon is intelligent and understands human speech.}}&lt;br /&gt;
{{Dex/Entry1|v=Alpha Sapphire|t=FFF|entry=Latios will only open its heart to a Trainer with a compassionate spirit. This Pokémon can fly faster than a jet plane by folding its forelegs to minimize air resistance.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VII|reg1=Alola|reg2=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Generation VII]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|reg2=Sinnoh|reg3=Hisui}}&lt;br /&gt;
{{Dex/NE|[[Pokémon Sword and Shield|Sword, Shield]], and [[Pokémon Legends: Arceus|Legends: Arceus]]}}&lt;br /&gt;
{{Dex/Entry2|v=Brilliant Diamond|v2=Shining Pearl|entry=It is a highly intelligent Pokémon. By folding back its forelegs in flight, it can overtake jet planes.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IX|reg1=Paldea|reg2=Kitakami}}&lt;br /&gt;
{{Dex/NE|[[Generation IX]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Ruby|t=FFF|area={{pkmn2|Roaming}} [[Hoenn]] ([[List of in-game event Pokémon in Pokémon Ruby and Sapphire#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Sapphire|area=[[Southern Island]] &amp;lt;small&amp;gt;(requires [[Eon Ticket]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Ruby and Sapphire#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{pkmn2|Roaming}} [[Hoenn]] or [[Southern Island]] &amp;lt;small&amp;gt;(requires [[Eon Ticket]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Emerald#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen|area=[[Trade]], [[#In events|Event]]}}&lt;br /&gt;
{{Availability/Entry1/None|v=Colosseum}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2/None|v=Diamond|v2=Pearl}}&lt;br /&gt;
{{Availability/Entry1/None|v=Platinum}}&lt;br /&gt;
{{Availability/Entry1/None|v=HeartGold|area=[[Pewter City]] &amp;lt;small&amp;gt;(requires [[Enigma Stone]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon HeartGold and SoulSilver#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=SoulSilver|area={{pkmn2|Roaming}} [[Kanto]] ([[List of in-game event Pokémon in Pokémon HeartGold and SoulSilver#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|land}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Field}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry1|v=Black 2|t=FFF|area=[[Dreamyard]] ([[List of in-game event Pokémon in Pokémon Black 2 and White 2#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=White 2}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2/None|v=X|v2=Y|area=[[Trade]], [[#In events|Event]]}}&lt;br /&gt;
{{Availability/Entry1|v=Omega Ruby|t=FFF|area=[[Southern Island]] ([[List of in-game event Pokémon in Pokémon Omega Ruby and Alpha Sapphire#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Alpha Sapphire|area=[[Southern Island]] &amp;lt;small&amp;gt;(requires [[Eon Ticket]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Omega Ruby and Alpha Sapphire#Latios|Only one]])}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sun|v2=Moon|area=[[Trade]]}}&lt;br /&gt;
{{Availability/Entry1|v=Ultra Sun|t=FFF|area=[[Ultra Space Wilds]] ({{DL|Ultra Space Wilds|Water World}}) ([[List of in-game event Pokémon in Pokémon Ultra Sun and Ultra Moon#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Ultra Moon|area=[[Trade]]}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2/None|v=Sword|v2=Shield|area=[[Trade]]&amp;lt;sup&amp;gt;Version 1.3.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=Sword Expansion Pass|color={{sword color dark}}|t=fff|link=Pokémon Sword and Shield Expansion Pass|area=[[Max Lair]] ([[Dynamax Adventure]]) ([[List of in-game event Pokémon in Pokémon Sword and Shield#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry2|v=Brilliant Diamond|v2=Shining Pearl|area=[[Ramanas Park]] &amp;lt;small&amp;gt;(requires [[Soul Slate]])&amp;lt;/small&amp;gt; ([[List of in-game event Pokémon in Pokémon Brilliant Diamond and Shining Pearl#Latios|Only one]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=Legends: Arceus|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2/None|v=Scarlet|v2=Violet|area=[[Trade]]&amp;lt;sup&amp;gt;Version 3.0.0+&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero (Scarlet)|color={{scarlet color dark}}|t=fff|link=The Hidden Treasure of Area Zero |area=North Province: [[North Province (Area Two)|Area Two]] after receiving the [[Latios Treat]] from [[Snacksworth]] ([[List of in-game event Pokémon in Pokémon Scarlet and Violet#Latios|Only one]]) &amp;lt;small&amp;gt;(&#039;&#039;&#039;Solo Quest&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero (Violet)|color={{violet color dark}}|t=fff|link=The Hidden Treasure of Area Zero |area=North Province: [[North Province (Area Two)|Area Two]] after receiving the [[Latios Treat]] from [[Snacksworth]] ([[List of in-game event Pokémon in Pokémon Scarlet and Violet#Latios|Only one]]) &amp;lt;small&amp;gt;(&#039;&#039;&#039;Group Quest&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
In Pokémon Emerald, the roaming Pokémon is chosen in a sequence immediately after the credits where, after hearing a [[television]] report, the player is asked the color of the Pokémon in it. If blue is selected Latios roams Hoenn and Latias is found at the island. If red is selected, Latios is found at the island and Latias roams Hoenn.&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Availability/NA|gen=III}}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Channel|color={{water color}}|area=[[Cobalt Coast]]}}&lt;br /&gt;
{{Availability/Entry1|v=Pinball: R&amp;amp;S|link=Pokémon Pinball: Ruby &amp;amp; Sapphire|color={{ruby color}}|t=fff|area=Randomly on the [[Ruby Field]]}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=Random Agent Cards, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Pokémon Square]] after completing [[Pitfall Valley]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Spacial Rift|Deep Spacial Rift]] ({{tt|B5|requires Mystery Part or Secret Slab in the bag}}), [[Midnight Forest]] ({{tt|B24|requires Mystery Part or Secret Slab in the bag}})}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Spacial Rift|Deep Spacial Rift]] ({{tt|B5|requires Mystery Part or Secret Slab in the bag}}), [[Midnight Forest]] ({{tt|B24|requires Mystery Part or Secret Slab in the bag}})}}&lt;br /&gt;
{{Availability/Entry1|v=PokéPark Wii|color={{grass color}}|link=PokéPark Wii: Pikachu&#039;s Adventure|area=[[Granite Zone]]}}&lt;br /&gt;
{{Availability/Entry1|v=Ranger: GS|color={{GS color}}|link=Pokémon Ranger: Guardian Signs|area=[[Tilikule Island]], [[Rand&#039;s House]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Meadow: All ([[Pokémon Rumble Blast#Legendary Boss Pokémon|Random Legendary Encounter]])}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Conductor Room#King of the Sky|Conductor Room: King of the Sky]], [[Challenge Battle#Open Entry Battle Royale|Challenge Battle: Open Entry Battle Royale]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Sky-High Ruins#Stage 5|Sky-High Ruins: Stage 5]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Sapphire Sea#Blue Tower|Sapphire Sea: Blue Tower]] &amp;lt;small&amp;gt;(Special Boss)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Picross|color={{skill color light}}|area=[[Pokémon Picross Stages#Area 25|Area 25: Stage 12]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Butterfree Sea]], [[Rayquaza Sea]], [[Celebi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|color={{MD Red color}}|area=[[Pitfall Valley]]{{tt|*|Automatically recruited upon completion}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=Event: &#039;&#039;[[Escalation battle|Take on Escalation Battles]]&#039;&#039;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Masters EX|color={{masters color}}|area=Poké Fair [[sync pair scout]]: {{sync|Brendan|Latios|sygna=1}} &amp;lt;small&amp;gt;(&#039;&#039;&#039;{{me|Latios}}&#039;&#039;&#039;)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|Language/Region|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Journey Across America Latios|English|United States|70|February 25 to July 23, 2006|link=List of Journey Across America event Pokémon distributions#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latios|English|United Kingdom|70|June 10, 2006;&amp;lt;br&amp;gt;October 14 to November 19, 2006|link=List of English event Pokémon distributions in Generation III#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latios|Italian|Italy|70|June 23 to 25, 2006|link=List of Italian event Pokémon distributions in Generation III#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latios|Spanish|Spain|70|June 27 to August 27, 2006|link=List of Spanish event Pokémon distributions in Generation III#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Party of the Decade Latios|English|United States|70|August 8, 2006|link=List of Party of the Decade event Pokémon distributions#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latios|German|Germany|70|September 24 to November 5, 2006|link=List of German event Pokémon distributions in Generation III#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev3|RSEFRLG}}|Top 10 Distribution Latios|French|France|70|September 26, 2006|link=List of French event Pokémon distributions in Generation III#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev6|XYORAS}}|7-Eleven Latios|Japanese region|Online|50|August 1 to September 30, 2015|link=List of Japanese region serial code event Pokémon distributions in Generation VI#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev6|XYORAS}}|Pokémon Center Latios|Japanese region|Nintendo Network|50|August 31 to September 6, 2015|link=List of Japanese region Nintendo Network event Pokémon distributions in Generation VI#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|M}}|Legendary Pokémon Celebration Latios|PAL region|Nintendo Network|60|September 1 to 23, 2018|link=List of PAL region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|UM}}|Legendary Pokémon Celebration Latios|PAL region|Nintendo Network|100|September 1 to 23, 2018|link=List of PAL region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|M}}|Legendary Pokémon Celebration Latios|Taiwanese region|Nintendo Network|60|September 1 to 23, 2018|link=List of Taiwanese region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|UM}}|Legendary Pokémon Celebration Latios|Taiwanese region|Nintendo Network|100|September 1 to 23, 2018|link=List of Taiwanese region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|M}}|Legendary Pokémon Celebration Latios|American region|Online|60|September 2 to December 21, 2018|link=List of American region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|UM}}|Legendary Pokémon Celebration Latios|American region|Online|100|September 2 to December 21, 2018|link=List of American region serial code event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
{{eventAvail|{{gameabbrev7|UM}}|Korean League Season 3 Latios|all|South Korea|100|May 4 to 5, 2019|link=List of local event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon#Latios}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems&lt;br /&gt;
|type=Dragon|type2=Psychic|Latios=yes&lt;br /&gt;
|se1=Soul Dew|se1type=None|se1rar=100&lt;br /&gt;
|or1=Latiosite|or1type=None|or1rar=100&lt;br /&gt;
|event1=Soul Dew|event1type=None|event1rar=100&lt;br /&gt;
|event2=Latiosite|event2type=None|event2rar=100&lt;br /&gt;
|event3=Gold Bottle Cap|event3type=None|event3rar=100&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
=====Latios=====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|HP=     80&lt;br /&gt;
|Attack= 90&lt;br /&gt;
|Defense=80&lt;br /&gt;
|SpAtk= 130&lt;br /&gt;
|SpDef= 110&lt;br /&gt;
|Speed= 110&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=====Mega Latios=====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|HP=80&lt;br /&gt;
|Attack=130&lt;br /&gt;
|Defense=100&lt;br /&gt;
|SpAtk=160&lt;br /&gt;
|SpDef=120&lt;br /&gt;
|Speed=110}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|Speed=4&lt;br /&gt;
|SpeedMax=5&lt;br /&gt;
|Power=3&lt;br /&gt;
|PowerMax=4&lt;br /&gt;
|Technique=5&lt;br /&gt;
|TechniqueMax=5&lt;br /&gt;
|Stamina=2&lt;br /&gt;
|StaminaMax=3&lt;br /&gt;
|Jump=5&lt;br /&gt;
|JumpMax=5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|Normal=  100&lt;br /&gt;
|Fighting= 50&lt;br /&gt;
|Flying=  100&lt;br /&gt;
|Poison=  100&lt;br /&gt;
|Ground=    0&lt;br /&gt;
|Rock=    100&lt;br /&gt;
|Bug=     200&lt;br /&gt;
|Ghost=   200&lt;br /&gt;
|Steel=   100&lt;br /&gt;
|Fire=     50&lt;br /&gt;
|Water=    50&lt;br /&gt;
|Grass=    50&lt;br /&gt;
|Electric= 50&lt;br /&gt;
|Psychic=  50&lt;br /&gt;
|Ice=     200&lt;br /&gt;
|Dragon=  200&lt;br /&gt;
|Dark=    200&lt;br /&gt;
|Fairy=   200&lt;br /&gt;
|notes=yes&lt;br /&gt;
|levitate=yes&lt;br /&gt;
|newground=1}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
Latios is available in {{pkmn|Scarlet and Violet}} Version 3.0.0+.&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Latios|Dragon|Psychic|3}}&lt;br /&gt;
{{learnlist/level9|1|Stored Power|Psychic|Special|20|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Dragon Dance|Dragon|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|5|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|10|Recover|Normal|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|15|Confusion|Psychic|Special|50|100|25||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|20|Tailwind|Flying|Status|—|—|15}}&lt;br /&gt;
{{learnlist/level9|25|Dragon Breath|Dragon|Special|60|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|30|Ally Switch|Psychic|Status|—|—|15}}&lt;br /&gt;
{{learnlist/level9|35|Luster Purge|Psychic|Special|95|100|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|40|Zen Headbutt|Psychic|Physical|80|90|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|45|Dragon Pulse|Dragon|Special|85|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|50|Heal Pulse|Psychic|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|55|Simple Beam|Normal|Status|—|100|15}}&lt;br /&gt;
{{learnlist/level9|60|Psychic|Psychic|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|65|Power Split|Psychic|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|70|Memento|Dark|Status|—|100|10}}&lt;br /&gt;
{{learnlist/levelf/9|Latios|Dragon|Psychic|3}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Latios|Dragon|Psychic|3}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM004|Agility|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM011|Water Pulse|Water|Special|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM022|Chilling Water|Water|Special|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM023|Charge Beam|Electric|Special|50|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM027|Aerial Ace|Flying|Physical|60|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM032|Swift|Normal|Special|60|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM034|Icy Wind|Ice|Special|55|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM040|Air Cutter|Flying|Special|60|95|25}}&lt;br /&gt;
{{learnlist/tm9|TM041|Stored Power|Psychic|Special|20|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM050|Rain Dance|Water|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM054|Psyshock|Psychic|Special|80|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM059|Zen Headbutt|Psychic|Physical|80|90|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM061|Shadow Claw|Ghost|Physical|70|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM065|Air Slash|Flying|Special|75|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM074|Reflect|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM075|Light Screen|Psychic|Status|—|—|30}}&lt;br /&gt;
{{learnlist/tm9|TM077|Waterfall|Water|Physical|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM078|Dragon Claw|Dragon|Physical|80|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM081|Grass Knot|Grass|Special|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM082|Thunder Wave|Electric|Status|—|90|20}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM097|Fly|Flying|Physical|90|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM100|Dragon Dance|Dragon|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM109|Trick|Psychic|Status|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM110|Liquidation|Water|Physical|85|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM112|Aura Sphere|Fighting|Special|80|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM113|Tailwind|Flying|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM114|Shadow Ball|Ghost|Special|80|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM115|Dragon Pulse|Dragon|Special|85|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM119|Energy Ball|Grass|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM120|Psychic|Psychic|Special|90|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM123|Surf|Water|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM126|Thunderbolt|Electric|Special|90|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM129|Calm Mind|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM132|Baton Pass|Normal|Status|—|—|40}}&lt;br /&gt;
{{learnlist/tm9|TM135|Ice Beam|Ice|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM156|Outrage|Dragon|Physical|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM166|Thunder|Electric|Special|110|70|10}}&lt;br /&gt;
{{learnlist/tm9|TM168|Solar Beam|Grass|Special|120|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM169|Draco Meteor|Dragon|Special|130|90|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM172|Roar|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM193|Weather Ball|Normal|Special|50|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM196|Flip Turn|Water|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM197|Dual Wingbeat|Flying|Physical|40|90|10}}&lt;br /&gt;
{{learnlist/tm9|TM200|Scale Shot|Dragon|Physical|25|90|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM203|Psych Up|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM217|Future Sight|Psychic|Special|120|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM222|Breaking Swipe|Dragon|Physical|60|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM226|Dragon Cheer|Dragon|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM228|Psychic Noise|Psychic|Special|75|100|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tmf/9|Latios|Dragon|Psychic|3}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Latios|Dragon|Psychic|3}}&lt;br /&gt;
{{learnlist/breed9null}}&lt;br /&gt;
{{learnlist/breedf/9|Latios|Dragon|Psychic|3}}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
====Laitos====&lt;br /&gt;
{{Spindata/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Spindata/PinballRS|col=3|type=Dragon|ndex=381|acquisition=Catch}}&lt;br /&gt;
{{Spindata/Trozei|col=3|type=Dragon|ndex=381|rarity=Rare}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Dragon|ndex=381&lt;br /&gt;
|body=2&lt;br /&gt;
|rate={{tt|N/A|Asks to join the team after rescuing Latias}}&lt;br /&gt;
|area=Southern Island&lt;br /&gt;
|P1=Let the power of flight make your dreams come true!&lt;br /&gt;
|P2=I&#039;m not happy... Only half my HP is left.&lt;br /&gt;
|P3=I&#039;ve had it... What good am I without my speed?&lt;br /&gt;
|PL=Leveled up! I&#039;ll make dreams come true!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Dragon|ndex=381&lt;br /&gt;
|body=2&lt;br /&gt;
|rate=0.1&lt;br /&gt;
|IQ=D&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Dragon|ndex=381&lt;br /&gt;
|coset=1&lt;br /&gt;
|conto={{p|Latias}}, {{p|Xerneas}}&lt;br /&gt;
|recruitment=Meet up with at [[Friendly Meadow]]&lt;br /&gt;
|P1=Thanks to everyone, I&#039;m back from being stone. Thank you so much!&lt;br /&gt;
|P2=No! I refuse to give in!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger GS|col=6|type=Dragon&lt;br /&gt;
|group=Psychic&lt;br /&gt;
|assist=Psychic&lt;br /&gt;
|field=None&lt;br /&gt;
|past=NA&lt;br /&gt;
|num=279&lt;br /&gt;
|browser= It flies around quickly and launches orbs of light.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Dragon&lt;br /&gt;
|att=5&lt;br /&gt;
|def=4&lt;br /&gt;
|speed=4&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Dragon|ndex=381&lt;br /&gt;
|walk=1.5&lt;br /&gt;
|hp=55&lt;br /&gt;
|attack=84&lt;br /&gt;
|defense=58&lt;br /&gt;
|speed=70&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PokéPark|col=6|type=Dragon|ndex=381&lt;br /&gt;
|Pad=Latios was persuaded to come to the PokéPark by his sister {{p|Latias}}. Everyone agrees what a great idea that was, because Latios soars swiftly in {{DL|Attraction (PokéPark)|Salamence&#039;s Air Ace}}.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=6|type=Dragon|ndex=381&lt;br /&gt;
|power=4&lt;br /&gt;
|skill=Power of Five&lt;br /&gt;
|skilldesc=Increases the damage dealt by matching five Pokémon.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Shuffle|col=6|type=Dragon|ndex=381|num=316&lt;br /&gt;
|mega=1&lt;br /&gt;
|stone=Latiosite&lt;br /&gt;
|min=80&lt;br /&gt;
|max=115&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Counterattack&lt;br /&gt;
|skilldesc=Deals even more damage the more disruptions there are.&lt;br /&gt;
|swapper=Hitting Streak+&lt;br /&gt;
|megaspeedup=13&lt;br /&gt;
|effectdesc=Erases a jagged line of Pokémon horizontally.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Dragon|ndex=381&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=20&lt;br /&gt;
|candy=Latios&lt;br /&gt;
|evolution={{Mega Energy|Latios}}{{tt|300|First time}}/{{tt|60|1st Mega Level}}/{{tt|30|2nd Mega Level}}/{{tt|15|3rd Mega Level}}&lt;br /&gt;
|stamina=190&lt;br /&gt;
|attack=268&lt;br /&gt;
|defense=212&lt;br /&gt;
|fast={{m|Dragon Breath}}, {{m|Zen Headbutt}}&lt;br /&gt;
|special={{m|Psychic}}, {{m|Dragon Claw}}, {{m|Solar Beam}}, {{m|Frustration}}[[File:GO Shadow icon.png|24px|link=Shadow Pokémon (GO)|As Shadow Pokémon]], {{m|Return}}[[File:GO Purified icon.png|24px|link=Shadow Pokémon (GO)|As Purified Pokémon]], {{m|Luster Purge}}{{tt|†|Event-excluive from Pokémon Air Adventures 2022}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Mega Latios====&lt;br /&gt;
{{Spindata/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Dragon|ndex=381M&lt;br /&gt;
|coset=1&lt;br /&gt;
|conto={{p|Latias}}, {{p|Xerneas}}&lt;br /&gt;
|recruitment=Meet up with at [[Friendly Meadow]]&lt;br /&gt;
|P1=Thanks to everyone, I&#039;m back from being stone. Thank you so much!&lt;br /&gt;
|P2=No! I refuse to give in!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Dragon|ndex=381M&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=20&lt;br /&gt;
|candy=Latios&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=190&lt;br /&gt;
|attack=335&lt;br /&gt;
|defense=241&lt;br /&gt;
|fast={{m|Dragon Breath}}, {{m|Zen Headbutt}}&lt;br /&gt;
|special={{m|Psychic}}, {{m|Dragon Claw}}, {{m|Solar Beam}}, {{m|Return}}[[File:GO Purified icon.png|24px|link=Shadow Pokémon (GO)|As Purified Pokémon]], {{m|Luster Purge}}{{tt|†|Event-excluive from Pokémon Air Adventures 2022}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Form data===&lt;br /&gt;
====Mega Evolution====&lt;br /&gt;
{{Evobox/Formes&lt;br /&gt;
|sprite1=0381Latios&lt;br /&gt;
|name1=Latios&lt;br /&gt;
|type1-1=Dragon&lt;br /&gt;
|type2-1=Psychic&lt;br /&gt;
|forme1=Latios&lt;br /&gt;
|loc1=Default&lt;br /&gt;
|item1=Latiosite&lt;br /&gt;
|itemfile1=Dream Latiosite Sprite.png&lt;br /&gt;
|itemsize1=40px&lt;br /&gt;
|sprite2=0381Latios-Mega&lt;br /&gt;
|type1-2=Dragon&lt;br /&gt;
|type2-2=Psychic&lt;br /&gt;
|forme2=Mega Latios&lt;br /&gt;
|loc2={{color2|000|Held item|Held}} Latiosite&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;{{Evobox-1&lt;br /&gt;
|type1=Dragon&lt;br /&gt;
|type2=Psychic&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0381&lt;br /&gt;
|name1=Latios&lt;br /&gt;
|type1-1=Dragon&lt;br /&gt;
|type2-1=Psychic}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{Spritebox/NA|gen=III}}&lt;br /&gt;
{{Spritebox/3|ndex=381}}&lt;br /&gt;
{{Spritebox/4|ndex=381}}&lt;br /&gt;
{{Spritebox/5|ndex=381}}&lt;br /&gt;
{{Spritebox/6/2Forms|ndex=381|form1=M|crop=178}}&lt;br /&gt;
{{Spritebox/7/2Forms|ndex=381|form1=M|crop=197}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/8|ndex=381}}&lt;br /&gt;
{{Spritebox/9|ndex=0381}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME/2Forms|ndex=0381|form1=M}}&lt;br /&gt;
{{Spritebox/Footer|0381|Latios}}&lt;br /&gt;
&lt;br /&gt;
====Other sprites====&lt;br /&gt;
{| style=&amp;quot;margin:auto; text-align:center; font-size: 80%; {{roundy|20px}} border: 2px solid #{{psychic color dark}}; background: #{{dragon color}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|80px}} border: 2px solid #{{psychic color dark}}; background: #{{dragon color light}}; width:160px&amp;quot;| [[File:Spr 3r Latios intro.png]]&lt;br /&gt;
|-&lt;br /&gt;
| Ruby intro&#039;s sprite&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
[[File:Latios anime.png|thumb|250px|Latios in {{aniseries|JN}}]]&lt;br /&gt;
[[File:Hoopa Mega Latios.png|thumb|250px|Mega Latios in &#039;&#039;[[M18|Hoopa and the Clash of Ages]]&#039;&#039;]]&lt;br /&gt;
===Main series===&lt;br /&gt;
====Major appearances====&lt;br /&gt;
=====[[Latios (M05)]]=====&lt;br /&gt;
Latios debuted in &#039;&#039;[[M05|Pokémon Heroes: Latios &amp;amp; Latias]]&#039;&#039;. {{OBP|Annie|M05}} and [[Oakley]] captured Latios and used him to power the [[Defense Mechanism of Alto Mare]], along with the stolen [[Soul Dew]]. Latios ended up sacrificing himself to save [[Alto Mare]] from an enormous tidal wave.&lt;br /&gt;
&lt;br /&gt;
=====Other=====&lt;br /&gt;
In &#039;&#039;[[PK16|Pikachu&#039;s Ocean Adventure]]&#039;&#039;, a Latios and Latias used their powers to help {{AP|Pikachu}}, {{MTR}}, and the other Pokémon search for the legendary &amp;quot;{{p|Wailord}}&#039;s Tear&amp;quot; that was said to be beneath the ocean.&lt;br /&gt;
&lt;br /&gt;
Latios made his animated series debut in &#039;&#039;[[DP189|The Semi-Final Frontier!]]&#039;&#039;, under the ownership of {{si|Tobias}}. He was used during Tobias&#039;s [[Full Battle]] against {{Ash}} in the semifinals of the [[Lily of the Valley Conference]]. The Eon Pokémon defeated {{AP|Sceptile}} and {{AP|Swellow}}, but was defeated by {{AP|Pikachu}}, who was knocked out at the same time.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[M18|Hoopa and the Clash of Ages]]&#039;&#039;, a Latios capable of [[Mega Evolution|Mega Evolving]] was summoned alongside Latias and a {{Shiny}} {{p|Rayquaza}} by {{an|Hoopa}} to protect it from the shadow {{DL|List of Pokémon with form differences|Hoopa|Hoopa Unbound}}. The trio protected Hoopa from the shadow Hoopa and its reinforcements, [[Primal Reversion|Primal]] {{p|Groudon}}, Primal {{p|Kyogre}}, {{p|Dialga}}, {{p|Palkia}}, {{p|Giratina}}, and {{p|Kyurem}}, in [[Dahara City]]. Eventually, the battle ended after the shadow Hoopa was sealed in a [[Prison Bottle]], and Latios departed alongside Latias for their home.&lt;br /&gt;
&lt;br /&gt;
A Latios appeared in &#039;&#039;[[JN145|Rocket Revengers!]]&#039;&#039;, as part of {{an|Latias}}&#039;s vision. In [[JN146|the next episode]], he was revealed to be pursued by a {{OBP|Pokémon hunter|JN146}}. With Latias&#039;s assistance, he was rescued by Ash and {{ashfr}}. This Latios has a very stubborn attitude that he still believes that he doesn&#039;t trust humans yet.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
In the opening sequence of &#039;&#039;[[M06|Jirachi: Wish Maker]]&#039;&#039;, a Latios was soaring through Alto Mare alongside a Latias.&lt;br /&gt;
&lt;br /&gt;
In the opening sequence of &#039;&#039;[[M10|The Rise of Darkrai]]&#039;&#039;, a Latios was soaring across the sky alongside a Latias.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[Pokémon Ranger: Guardian Signs (animated special)#Part 1|Pokémon Ranger: Guardians Signs (Part 1)]]&#039;&#039;, the [[Pokémon Pinchers]] were pursuing a Latios.&lt;br /&gt;
&lt;br /&gt;
A Latios that can Mega Evolve into Mega Latios appeared in the ending segment of &#039;&#039;[[XYS02|Mega Evolution Special II]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A silhouetted Latios appeared in a fantasy in &#039;&#039;[[JN053|Healing the Healer!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Latios appeared in [[HZ075]] during a flashback.&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Sinnoh}}&lt;br /&gt;
{{Animedexbody|DP189|Latios|Dawn&#039;s Pokédex|Latios, the Eon Pokémon. Latios is highly intelligent and can fly faster than a jet by tucking in its wings.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Sinnoh}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Omega Ruby and Alpha Sapphire Animated Trailer===&lt;br /&gt;
[[File:Mega Latios ORAS Trailer.png|thumb|250px|Mega Latios in the animated trailer]]&lt;br /&gt;
In the [[Pokémon Omega Ruby and Pokémon Alpha Sapphire Animated Trailer]], {{ga|Brendan}}&#039;s [[Mega Evolution|Mega]] Latios was [[soaring in the sky]] alongside {{ga|May}}&#039;s {{p|Latias}}.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Generations===&lt;br /&gt;
[[File:Latias Latios PG.png|thumb|left|250px|Latios in [[Pokémon Generations]]]]&lt;br /&gt;
In &#039;&#039;[[PG01|The Adventure]]&#039;&#039;, a {{pkmn2|wild}} Latios and Latias were seen near the [[Weather Institute]], during a battle between [[Red&#039;s Pikachu]] and a wild {{p|Vigoroth}}.&lt;br /&gt;
&lt;br /&gt;
===GOTCHA!===&lt;br /&gt;
A Latios briefly appeared as a silhouette in [[GOTCHA!]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Evolutions===&lt;br /&gt;
[[File:May Latios Evolutions.png|thumb|250px|Latios in [[Pokémon Evolutions]]]]&lt;br /&gt;
A Latios briefly appeared in &#039;&#039;[[PE06|The Wish]]&#039;&#039;, under the ownership of {{ga|May}}. He was used to fly her to the [[Sky Pillar]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Eon duo Adventures.png|thumb|200px|Latios (left) and {{p|Latias}} (right) in [[Pokémon Adventures]]]]&lt;br /&gt;
[[File:Mega Latios Adventures.png|thumb|left|200px|Mega Latios in [[Pokémon Adventures]]]]&lt;br /&gt;
===Movie adaptations===&lt;br /&gt;
{{main|Latios (M05)}}&lt;br /&gt;
Latios and his sister {{OBP|Latias|M05}} play a major role in both the {{ma|Guardian Gods of the City of Water: Latias and Latios|manga adaptation}} and the [[Guardian Gods of the City of Water: Latias and Latios (graphic novel)|graphic novel]] of &#039;&#039;[[M05|Pokémon Heroes: Latios &amp;amp; Latias]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Pocket Monsters DP===&lt;br /&gt;
A Latios appeared in [[PMDP29]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{main|Eon duo (Adventures)}}&lt;br /&gt;
Latios, along with Latias, befriended {{adv|Emerald}}, and they took the young Trainer to the {{OBP|Battle Frontier|Generation III}}. He later helped [[Todd Snap]] watch the events going on at the top of the [[Battle Pyramid]], as well as verify the true identity of [[Guile Hideout]]. After the villain&#039;s defeat, he goes back to the [[Southern Island]] with Latias, having accomplished their mission. He first appeared in &#039;&#039;[[PS303|Never Spritz a Knotty Sudowoodo]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Latios returned with Latias in the {{MangaArc|Omega Ruby &amp;amp; Alpha Sapphire}} where he had the ability to Mega Evolve into Mega Latios. {{adv|Ruby}} brought him along while [[soaring in the sky]].&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Latios (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==In the TFG==&lt;br /&gt;
One Latios figure has been released.&lt;br /&gt;
* {{TFG|Groundbreakers}}: {{TFG ID|Groundbreakers|Latios|18}}&lt;br /&gt;
&lt;br /&gt;
==Other appearances==&lt;br /&gt;
[[File:Latias and Latios SSBB.png|220px|thumb|Latias and Latios in Super Smash Bros. Brawl]]&lt;br /&gt;
===[[Super Smash Bros. Brawl]]===&lt;br /&gt;
After Latios appears from its {{i|Poké Ball}}, he will fly off the stage. He and Latias will then alternately zoom onto the stage with {{m|Steel Wing}}, damaging any opponent that collides with them. He may also cause movement of items as well.&lt;br /&gt;
&lt;br /&gt;
====Trophy information====&lt;br /&gt;
Latios appears with his counterpart Latias.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&amp;quot;Eon Pokémon. There are only female Latias and only male Latios. If they sense the presence of a human or an enemy, they will generally use the light-bending trait of their down coats to make themselves invisible. They use telepathy to speak with companions. They travel in herds, but even so, are rarely seen. They&#039;re a combination of Dragon- and Psychic-types.&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===[[Super Smash Bros. for Nintendo 3DS/Wii U]]===&lt;br /&gt;
Latios returns as a Poké Ball Pokémon. He uses Steel Wing to quickly fly across the stage several times to damage targets.&lt;br /&gt;
[[File:Latias_Latios_3DS_trophy_SSB4.png|thumb|150px|Latias &amp;amp; Latios trophy in &#039;&#039;Super Smash Bros. for 3DS&#039;&#039;]]&lt;br /&gt;
Latios once again shares his trophy with his female counterpart in both versions of the game.&lt;br /&gt;
&lt;br /&gt;
====Trophy information====&lt;br /&gt;
&#039;&#039;&#039;NA&#039;&#039;&#039;: &#039;&#039;Latias and Latios are Eon Pokémon. Both are Dragon/Psychic-type Pokémon. The red Latias is female, while the blue Latios is male. By folding in their arms, they can fly faster than fighter jets. They combine speed and teamwork when they cross paths to attack fighters with Steel Wing.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;PAL&#039;&#039;&#039;: &#039;&#039;Latias and Latios are Eon Pokémon. Both are Dragon- and Psychic-types. The red Latias is female, while the blue Latios is male. Be folding their arms in, they become super aerodynamic and can fly faster than fighter jets. They combine speed and teamwork when they cross paths to attack fighters with Steel Wing.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===[[Super Smash Bros. Ultimate]]===&lt;br /&gt;
Latios returns as a Poké Ball summon, retaining his behavior from past games. He also appears as a {{sbw|Spirits (characters)|Spirit}} alongside Latias.&lt;br /&gt;
&lt;br /&gt;
==={{so|Eon Ticket}}===&lt;br /&gt;
Latios is featured alongside {{p|Latias}} and the Vocaloids Hatsune Miku and KAITO in the song [https://youtu.be/k7Y30h8S7Uw?si=V4rH8_OLUQ1mttMc Eon Ticket] (Japanese: &#039;&#039;&#039;むげんのチケット&#039;&#039;&#039; &#039;&#039;Mugen no Ticket&#039;&#039;), composed by marasy8 for the Hatsune Miku VOLTAGE Project.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Latios shares its {{pkmn|category}} with {{p|Latias}}. They are both known as the Eon Pokémon.&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Latios and Latias appear to be a cross between a {{wp|Jet aircraft|jet plane}} (due to their wing shape and speedy flight), a {{wp|dragon}}, a {{wp|griffin}}, and a bird. In particular, their lack of feet and continuous levitation might be inspired by the {{wp|common swift}}, a bird with tiny feet (its Latin name &#039;&#039;Apus&#039;&#039; means &#039;&#039;without feet&#039;&#039;) that spends most of its life in the air. Similarly, they might be inspired by the {{wp|martlet}}, a mythical bird in English heraldry that never roosts and is usually depicted with tufts of feathers in place of feet. Their red and blue plumage might be based on parrots in the genus {{wp|Eos (bird)|Eos}}. They could also be based on {{wp|junglefowl}} due to their possible {{DL|List of unused Pokémon and character designs|Blaziken / Latias|shared origin}} with {{p|Blaziken}}.&lt;br /&gt;
&lt;br /&gt;
Due to their classification as &#039;&#039;Eon&#039;&#039; Pokémon and their connection to the [[Soul Dew]], Latios and Latias might be inspired by the {{wp|Aeon (Gnosticism)|aeons in Gnosticism}}, which are said to be emanations of God. In {{wp|Valentinianism}}, these aeons form male/female pairs called syzygies. They may also be loosely based on the Chinese philosophical concept of {{wp|yin and yang}}, which are opposite but interconnected natural forces. Latios, being male and the more aggressive of the two, would represent yang. Their names and Latios&#039;s signature move {{m|Luster Purge}} might also be a reference to {{wp|Eos}}, the Greek goddess of dawn.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Latios may be a combination of &#039;&#039;lateō&#039;&#039; (Latin for &#039;&#039;I conceal&#039;&#039;, &#039;&#039;I lie hidden&#039;&#039;) and &#039;&#039;-os&#039;&#039; (Latin masculine suffix). It might also reference &#039;&#039;{{wp|Eos}}&#039;&#039; (the Greek goddess of dawn) or &#039;&#039;{{wp|Eos (bird)|Eos}}&#039;&#039; (a genus of parrots with red and blue plumage). It&#039;s possible that its name is derived from {{wp|Plato}}&#039;s dialogue {{wp|Timaeus (dialogue)|Timaios}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=Dragon|type2=Psychic&lt;br /&gt;
|ja=ラティオス &#039;&#039;Latios&#039;&#039;|jameaning=From &#039;&#039;{{tt|lateō|Latin for &#039;I conceal&#039;, &#039;I lie hidden&#039;}}&#039;&#039; and &#039;&#039;{{tt|-os|Latin masculine suffix}}&#039;&#039;&lt;br /&gt;
|fr=Latios|frmeaning=Same as English/Japanese name&lt;br /&gt;
|es=Latios|esmeaning=Same as English/Japanese name&lt;br /&gt;
|de=Latios|demeaning=Same as English/Japanese name&lt;br /&gt;
|it=Latios|itmeaning=Same as English/Japanese name&lt;br /&gt;
|ko=라티오스 &#039;&#039;Latios&#039;&#039;|komeaning=Transcription of Japanese name&lt;br /&gt;
|zh_cmn=拉帝歐斯 / 拉帝欧斯 &#039;&#039;Lādì&#039;ōusī&#039;&#039;|zh_cmnmeaning=Transcription of Japanese name&lt;br /&gt;
|zh_yue=拉帝歐斯 &#039;&#039;Lādai&#039;āusī&#039;&#039;|zh_yuemeaning=Mandarin-based transcription of Japanese name&lt;br /&gt;
|bn=ল্যাটিওস &#039;&#039;Lapras&#039;&#039;|bnmeaning=Transcription of English name&lt;br /&gt;
|hi=लाटियोस &#039;&#039;Latios&#039;&#039;|himeaning=Transcription of English name&lt;br /&gt;
|ru=Латиос &#039;&#039;Latios&#039;&#039;|rumeaning=Transliteration of English name&lt;br /&gt;
|taலாட்டியோஸ் &#039;&#039;Latios&#039;&#039;|tameaning=Transcription of English name&lt;br /&gt;
|te=లాటియోస్ &#039;&#039;Latios&#039;&#039;|temeaning=Transcription of English name&lt;br /&gt;
|th=ลาทิโอส &#039;&#039;Lathi-ot&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}{{left clear}}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Notes==--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Latios (M05)]]&lt;br /&gt;
* [[Eon duo (Adventures)]]&lt;br /&gt;
* [[Eon duo]]&lt;br /&gt;
* [[Mega Evolution]]&lt;br /&gt;
* [[Legendary Pokémon]]&lt;br /&gt;
* [[Myths and legends involving Legendary and Mythical Pokémon]]&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==External links==--&amp;gt;&lt;br /&gt;
{{Legendary Pokémon}}&lt;br /&gt;
{{Mega Evolution}}&lt;br /&gt;
{{Smash Bros.}}{{PokémonPrevNext/Head|type=Dragon|type2=Psychic}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Dragon|prevnum=0380|prev=Latias|nextnum=0382|next=Kyogre}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Legendary Pokémon]]&lt;br /&gt;
[[Category:Hoenn Legendary Pokémon]]&lt;br /&gt;
[[Category:Roaming Pokémon]]&lt;br /&gt;
[[Category:Pokémon with Mega Evolutions]]&lt;br /&gt;
[[Category:Pokémon that appeared in the animated series before their game debut]]&lt;br /&gt;
[[Category:Purple-colored Pokémon]]&amp;lt;!--Mega Latios--&amp;gt;&lt;br /&gt;
[[Category:Super Smash Bros. trophies]]&lt;br /&gt;
&lt;br /&gt;
[[de:Latios]]&lt;br /&gt;
[[es:Latios]]&lt;br /&gt;
[[fr:Latios]]&lt;br /&gt;
[[it:Latios]]&lt;br /&gt;
[[ja:ラティオス]]&lt;br /&gt;
[[zh:拉帝欧斯]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Quash_(move)&amp;diff=4241767</id>
		<title>Quash (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Quash_(move)&amp;diff=4241767"/>
		<updated>2025-02-17T11:26:24Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox|&lt;br /&gt;
n=511|&lt;br /&gt;
name=Quash|&lt;br /&gt;
jname=さきおくり|&lt;br /&gt;
jtrans=Postpone|&lt;br /&gt;
jtranslit=Sakiokuri|&lt;br /&gt;
gameimage=Quash IX.png|&lt;br /&gt;
gameimagewidth=300|&lt;br /&gt;
type=Dark |&lt;br /&gt;
damagecategory=Status |&lt;br /&gt;
basepp=15 |&lt;br /&gt;
maxpp=24 |&lt;br /&gt;
power=— |&lt;br /&gt;
accuracy=100 |&lt;br /&gt;
bdesc= |&lt;br /&gt;
gen=V |&lt;br /&gt;
category6=Clever|&lt;br /&gt;
appeal6=3|&lt;br /&gt;
jam6=0|&lt;br /&gt;
cdesc6=Causes the user to move earlier on the next turn.|&lt;br /&gt;
tm5=yes |&lt;br /&gt;
tm#5=60 |&lt;br /&gt;
tm6=yes|&lt;br /&gt;
tm#6=60|&lt;br /&gt;
tm7=yes|&lt;br /&gt;
tm#7=60|&lt;br /&gt;
na=no |&lt;br /&gt;
pokefordex=Quash |&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=no |&lt;br /&gt;
flag7=no |&lt;br /&gt;
flag8=no |&lt;br /&gt;
sound=no |&lt;br /&gt;
target=anyadjacent |&lt;br /&gt;
footnotes= }}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quash&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;さきおくり&#039;&#039;&#039; &#039;&#039;Postpone&#039;&#039;) is a non-damaging {{type|Dark}} [[move]] introduced in [[Generation V]]. It was [[TM60]] from Generation V to {{g|Ultra Sun and Ultra Moon}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===Generation V to VII===&lt;br /&gt;
The target of Quash will act last in that turn, ignoring [[priority]], provided it has not yet acted. The effect of Quash is ignored by [[After You (move)|After You]].&lt;br /&gt;
&lt;br /&gt;
If multiple Pokémon are affected by Quash, they move in the order they were affected by Quash.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Darkinium Z]] into Z-Quash, the user&#039;s {{stat|Speed}} stat is raised by one stage.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII onwards===&lt;br /&gt;
If multiple Pokémon are affected by Quash, they now move fastest to slowest.&lt;br /&gt;
&lt;br /&gt;
Due to a [[glitch]], in a [[Double Battle]] where the player who didn&#039;t initiate the challenge is down to their final Pokémon, that Pokémon&#039;s Quash originally failed when used against the opponent on their right, regardless of what move that Pokémon selected for the turn. With the release of the version 1.1 update to [[Sword and Shield]], this glitch was fixed and Quash can now correctly hit Pokémon in that position.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user suppresses the target and makes its move go last.}}&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/Games|Dark|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/6|0053|formsig=A|Persian|type=Dark|1|Field|Field|form=Alolan Form|||1|1||1}}&lt;br /&gt;
{{Moveentry/6|0198|Murkrow|type=Dark|type2=Flying|1|Flying|Flying|65|65|65||65|60}}&lt;br /&gt;
{{Moveentry/6|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|−|44{{sup/6|ORAS}}|44|30|30|30}}&lt;br /&gt;
{{Moveentry/6|0430|Honchkrow|type=Dark|type2=Flying|1|Flying|Flying|65|65|65||65|1}}&lt;br /&gt;
{{Moveentry/6|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field|||11|25||25}}&lt;br /&gt;
{{Moveentry/6|1010|Iron Leaves|type=Grass|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||||||{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Movefoot|Dark|6}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Dark|Egg Move|g1=none|g2=none|g3=none|g4=none|g5=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=1|g8g={{gameabbrev8|SwSh}}}}&lt;br /&gt;
{{Moveentry/4|0674|Pancham|type=Fighting|2|Field|Human-Like|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/4|0856|Hatenna|type=Psychic|1|Fairy|Fairy|||✔|✔}}&lt;br /&gt;
{{Moveentry/4|0877|Morpeko|type=Electric|type2=Dark|2|Field|Fairy|||✔|✔}}&lt;br /&gt;
{{Moveentry/4|0957|Tinkatink|type=Fairy|type2=Steel|1|Fairy|Fairy||||✔}}&lt;br /&gt;
{{Movefoot|Dark|4}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]===&lt;br /&gt;
{{Movehead/TMGames|Dark|g1=none|g2=none|g3=none|g4=none|g8=none|g9=none&lt;br /&gt;
|g5tm=60&lt;br /&gt;
|g6tm=60&lt;br /&gt;
|g7=1|g7tm=60|g7g={{gameabbrev7|SMUSUM}}}}&lt;br /&gt;
{{Moveentry/3|0019|formsig=A|Rattata|type=Dark|type2=Normal|1|Field|Field|form=Alolan Form|||✔}}&lt;br /&gt;
{{Moveentry/3|0020|formsig=A|Raticate|type=Dark|type2=Normal|1|Field|Field|form=Alolan Form|||✔}}&lt;br /&gt;
{{Moveentry/3|0031|Nidoqueen|type=Poison|type2=Ground|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0034|Nidoking|type=Poison|type2=Ground|2|Monster|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0052|formsig=A|Meowth|type=Dark|1|Field|Field|form=Alolan Form|||✔}}&lt;br /&gt;
{{Moveentry/3|0053|formsig=A|Persian|type=Dark|1|Field|Field|form=Alolan Form|||✔}}&lt;br /&gt;
{{Moveentry/3|0088|formsig=A|Grimer|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form|||✔}}&lt;br /&gt;
{{Moveentry/3|0089|formsig=A|Muk|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form|||✔}}&lt;br /&gt;
{{Moveentry/3|0099|Kingler|type=Water|1|Water 3|Water 3|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0198|Murkrow|type=Dark|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0199|Slowking|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0230|Kingdra|type=Water|type2=Dragon|2|Water 1|Dragon|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0243|Raikou|type=Electric|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0244|Entei|type=Fire|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0245|Suicune|type=Water|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0289|Slaking|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|−|✔{{sup/6|ORAS}}|✔}}&lt;br /&gt;
{{Moveentry/3|0393|Piplup|type=Water|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0394|Prinplup|type=Water|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0395|Empoleon|type=Water|type2=Steel|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0416|Vespiquen|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0430|Honchkrow|type=Dark|type2=Flying|1|Flying|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0442|Spiritomb|type=Ghost|type2=Dark|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0493|Arceus|type=Normal|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0675|Pangoro|type=Fighting|type2=Dark|2|Field|Human-Like||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0720|Hoopa|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0727|Incineroar|type=Fire|type2=Dark|1|Field|Field|||✔}}&lt;br /&gt;
{{Moveentry/3|0741|Oricorio|type=Fire|type2=Flying|1|Flying|Flying|form=All forms|||✔}}&lt;br /&gt;
{{Moveentry/3|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field|||✔}}&lt;br /&gt;
{{Moveentry/3|0770|Palossand|type=Ghost|type2=Ground|1|Amorphous|Amorphous|||✔}}&lt;br /&gt;
{{Moveentry/3|0771|Pyukumuku|type=Water|1|Water 1|Water 1|||✔}}&lt;br /&gt;
{{Moveentry/3|0775|Komala|type=Normal|1|Field|Field|||✔}}&lt;br /&gt;
{{Moveentry/3|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|||✔{{sup/7|USUM}}}}&lt;br /&gt;
{{Movefoot|Dark|5}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
Unlike the core series games, Quash is a status move which causes the target to {{DL|Status condition (Mystery Dungeon)|flinch}}. It is the only non-damaging move to do this.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=dark}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=10|ppmax=30|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=dark|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|It causes an enemy to flinch, making it unable to attack on the next turn.{{tt|*|Move Summary}}&amp;lt;br&amp;gt;It causes an enemy to flinch.{{tt|*|Move Description}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Dark|&lt;br /&gt;
genV=Quash V|&lt;br /&gt;
genVI=Quash VI|&lt;br /&gt;
genVII=Quash VII|&lt;br /&gt;
genVIII=Quash VIII&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Dark|&lt;br /&gt;
PSMD=Quash PSMD&lt;br /&gt;
}}&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Although Quash was introduced in [[Generation V]], no Pokémon introduced in that generation can learn it.&lt;br /&gt;
* Many Pokémon that learn this move share a royal theme, these Pokémon are: {{p|Nidoqueen}}, {{p|Nidoking}}, {{rf|Alolan}} {{p|Meowth}}, Alolan {{p|Persian}}, {{p|Kingler}}, {{p|Slowking}}, {{p|Kingdra}}, {{p|Slaking}}, {{p|Empoleon}}, {{p|Vespiquen}}, and {{p|Palossand}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{dark color}}|bordercolor={{dark color light}}&lt;br /&gt;
|zh_yue=延後 &#039;&#039;{{tt|Yìhnhauh|Postpone}}&#039;&#039;&lt;br /&gt;
|zh_cmn=延後 / 延后 &#039;&#039;{{tt|Yánhòu|Postpone}}&#039;&#039;&lt;br /&gt;
|fr=À la Queue&lt;br /&gt;
|de=Verzögerung&lt;br /&gt;
|it=Spintone&lt;br /&gt;
|ko=순서미루기 &#039;&#039;{{tt|Sunseo Mirugi|Procrastination Order}}&#039;&#039;&lt;br /&gt;
|es=Último Lugar}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{After You|dark}}&lt;br /&gt;
{{Generation V TMs}}&lt;br /&gt;
{{Generation VI TMs}}&lt;br /&gt;
{{Generation VII TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Verzögerung]]&lt;br /&gt;
[[es:Último lugar]]&lt;br /&gt;
[[fr:À la Queue]]&lt;br /&gt;
[[it:Spintone]]&lt;br /&gt;
[[ja:さきおくり]]&lt;br /&gt;
[[zh:延后（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=After_You_(move)&amp;diff=4241766</id>
		<title>After You (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=After_You_(move)&amp;diff=4241766"/>
		<updated>2025-02-17T11:25:47Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=495&lt;br /&gt;
|name=After You&lt;br /&gt;
|jname=おさきにどうぞ&lt;br /&gt;
|jtrans=After You&lt;br /&gt;
|jtranslit=Osaki ni Dōzo&lt;br /&gt;
|gameimage=After You IX.png&lt;br /&gt;
|gameimage2=After You IX 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=15&lt;br /&gt;
|maxpp=24&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=—&lt;br /&gt;
|gen=V&lt;br /&gt;
|category=Cute&lt;br /&gt;
|appeal6=3&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Causes the user to move later on the next turn.&lt;br /&gt;
|pokefordex=After%20You&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=no&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|ignoresub=yes&lt;br /&gt;
|na=no&lt;br /&gt;
|mtb2w2=yes&lt;br /&gt;
|mtoras=yes&lt;br /&gt;
|mtusum=yes&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;After You&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;おさきにどうぞ&#039;&#039;&#039; &#039;&#039;After You&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation V]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
The target will move next on the current turn, ignoring [[priority]]. After You bypasses {{stat|accuracy}} checks to always hit, unless the target is in the [[semi-invulnerable turn]] of a move such as {{m|Dig}} or {{m|Fly}}. It fails if the target has already moved on the same turn. After You ignores the effects of {{m|Quash}}.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-After You, the user&#039;s {{stat|Speed}} stat is raised by one stage.&lt;br /&gt;
&lt;br /&gt;
===Generations V to VII===&lt;br /&gt;
After You fails if the order remains the same after using After You.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII onwards===&lt;br /&gt;
After You no longer fails if the turn order remains the same after using After You.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user helps the target and makes it use its move right after the user.}}&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/Games|Normal|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/6|0035|Clefairy|type=Fairy|1|Fairy|Fairy|52{{sup/5|BW}}&amp;lt;br&amp;gt;58{{sup/5|B2W2}}|1, 58|58{{sup/7|SMUSUM}}|12|12|12}}&lt;br /&gt;
{{Moveentry/6|0036|Clefable|type=Fairy|1|Fairy|Fairy|−|−|−|1|1|{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/6|0146|formsig=G|Moltres|type=Dark|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=Galarian Form||||40||40}}&lt;br /&gt;
{{Moveentry/6|0175|Togepi|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|53|53|53|28|28}}&lt;br /&gt;
{{Moveentry/6|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|53|53|53|28|28}}&lt;br /&gt;
{{Moveentry/6|0427|Buneary|type=Normal|2|Field|Human-Like|43|43|43|12|12}}&lt;br /&gt;
{{Moveentry/6|0428|Lopunny|type=Normal|2|Field|Human-Like|43|43|43|12|12}}&lt;br /&gt;
{{Moveentry/6|0468|Togekiss|type=Fairy|type2=Flying|2|Flying|Fairy|−|1|1|1|1}}&lt;br /&gt;
{{Moveentry/6|0504|Patrat|type=Normal|1|Field|Field|23|23|23|}}&lt;br /&gt;
{{Moveentry/6|0505|Watchog|type=Normal|1|Field|Field|25|25|25|}}&lt;br /&gt;
{{Moveentry/6|0531|Audino|type=Normal|1|Fairy|Fairy|40|40{{sup/6|XY}}&amp;lt;br&amp;gt;41{{sup/6|ORAS}}|41|28}}&lt;br /&gt;
{{Moveentry/6|0548|Petilil|type=Grass|1|Grass|Grass|44|44|44|27||27}}&lt;br /&gt;
{{Moveentry/6|0549|Lilligant|type=Grass|1|Grass|Grass|−|−|−|1||1}}&lt;br /&gt;
{{Moveentry/6|0549|formsig=H|Lilligant|type=Grass|type2=Fighting|1|Grass|Grass|form=Hisuian Form||||||1}}&lt;br /&gt;
{{Moveentry/6|0556|Maractus|type=Grass|1|Grass|Grass|57|1, 57|1, 57|1}}&lt;br /&gt;
{{Moveentry/6|0572|Minccino|type=Normal|1|Field|Field|49|49|49|28||28}}&lt;br /&gt;
{{Moveentry/6|0573|Cinccino|type=Normal|1|Field|Field|−|−|−|1||{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/6|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field|||4|5||5}}&lt;br /&gt;
{{Moveentry/6|0826|Orbeetle|type=Bug|type2=Psychic|1|Bug|Bug||||40}}&lt;br /&gt;
{{Moveentry/6|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like||||1}}&lt;br /&gt;
{{Moveentry/6|0876|Indeedee|type=Psychic|type2=Normal|1|Fairy|Fairy|form=Male||||25||25}}&lt;br /&gt;
{{Movefoot|Normal|6}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/6|0043|Oddish|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0143|Snorlax|type=Normal|1|Monster|Monster|✔|✔|✔|−|✔|−|note=Chain breed}}&lt;br /&gt;
{{Moveentry/6|0179|Mareep|type=Electric|2|Monster|Field|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0194|Wooper|type=Water|type2=Ground|2|Water 1|Field|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0194|formsig=P|Wooper|type=Poison|type2=Ground|2|Water 1|Field|form=Paldean Form||||||✔}}&lt;br /&gt;
{{Moveentry/6|0287|Slakoth|type=Normal|1|Field|Field|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0446|Munchlax|type=Normal|1|Monster|Monster|✔|✔|✔|−|✔|−|note=Chain breed}}&lt;br /&gt;
{{Moveentry/6|0506|Lillipup|type=Normal|1|Field|Field||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0535|Tympole|type=Water|1|Water 1|Water 1||✔|✔|−|note=Chain breed}}&lt;br /&gt;
{{Moveentry/6|0682|Spritzee|type=Fairy|1|Fairy|Fairy||−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0684|Swirlix|type=Fairy|1|Fairy|Fairy||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0764|Comfey|type=Fairy|1|Grass|Grass|||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0856|Hatenna|type=Psychic|1|Fairy|Fairy||||✔||✔}}&lt;br /&gt;
{{Moveentry/6|0924|Tandemaus|type=Normal|2|Field|Fairy||||||✔}}&lt;br /&gt;
{{Movefoot|Normal|6}}&lt;br /&gt;
&lt;br /&gt;
===By [[Move Tutor]]===&lt;br /&gt;
{{Movehead/TMGames|Normal|g1=none|g2=none|g3=none|g4=none|g8=none|g9=none&lt;br /&gt;
|g5tm=tutor|g5g={{gameabbrev5|B2W2}}&lt;br /&gt;
|g6tm=tutor|g6g={{gameabbrev6|ORAS}}&lt;br /&gt;
|g7=1|g7tm=tutor|g7g={{gameabbrev7|USUM}}}}&lt;br /&gt;
{{Moveentry/3|0035|Clefairy|type=Fairy|1|Fairy|Fairy|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0036|Clefable|type=Fairy|1|Fairy|Fairy|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0043|Oddish|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0044|Gloom|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0045|Vileplume|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0046|Paras|type=Bug|type2=Grass|2|Bug|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0047|Parasect|type=Bug|type2=Grass|2|Bug|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0079|Slowpoke|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0080|Slowbro|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0143|Snorlax|type=Normal|1|Monster|Monster|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0175|Togepi|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0179|Mareep|type=Electric|2|Monster|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0180|Flaaffy|type=Electric|2|Monster|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0181|Ampharos|type=Electric|2|Monster|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0182|Bellossom|type=Grass|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0185|Sudowoodo|type=Rock|1|Mineral|Mineral|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0191|Sunkern|type=Grass|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0192|Sunflora|type=Grass|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0194|Wooper|type=Water|type2=Ground|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0195|Quagsire|type=Water|type2=Ground|2|Water 1|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0199|Slowking|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0213|Shuckle|type=Bug|type2=Rock|1|Bug|Bug|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0218|Slugma|type=Fire|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0219|Magcargo|type=Fire|type2=Rock|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0241|Miltank|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0287|Slakoth|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0288|Vigoroth|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0289|Slaking|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0322|Numel|type=Fire|type2=Ground|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0323|Camerupt|type=Fire|type2=Ground|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0324|Torkoal|type=Fire|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0352|Kecleon|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0427|Buneary|type=Normal|2|Field|Human-Like|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0428|Lopunny|type=Normal|2|Field|Human-Like|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0438|Bonsly|type=Rock|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0468|Togekiss|type=Fairy|type2=Flying|2|Flying|Fairy|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0504|Patrat|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0505|Watchog|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0506|Lillipup|type=Normal|1|Field|Field|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0507|Herdier|type=Normal|1|Field|Field|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0508|Stoutland|type=Normal|1|Field|Field|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0517|Munna|type=Psychic|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0518|Musharna|type=Psychic|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0527|Woobat|type=Psychic|type2=Flying|2|Field|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0528|Swoobat|type=Psychic|type2=Flying|2|Field|Flying|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0531|Audino|type=Normal|1|Fairy|Fairy|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0535|Tympole|type=Water|1|Water 1|Water 1|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0536|Palpitoad|type=Water|type2=Ground|1|Water 1|Water 1|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0537|Seismitoad|type=Water|type2=Ground|1|Water 1|Water 1|−|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0548|Petilil|type=Grass|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0549|Lilligant|type=Grass|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0556|Maractus|type=Grass|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0562|Yamask|type=Ghost|2|Mineral|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0563|Cofagrigus|type=Ghost|2|Mineral|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0572|Minccino|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0573|Cinccino|type=Normal|1|Field|Field|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0577|Solosis|type=Psychic|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0578|Duosion|type=Psychic|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0579|Reuniclus|type=Psychic|1|Amorphous|Amorphous|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0590|Foongus|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0591|Amoonguss|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0605|Elgyem|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0606|Beheeyem|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0669|Flabébé|type=Fairy|1|Fairy|Fairy|form=All forms||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0670|Floette|type=Fairy|1|Fairy|Fairy|form=All forms||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0670|formsig=E|Floette|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|form=Eternal Flower||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0671|Florges|type=Fairy|1|Fairy|Fairy|form=All forms||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0679|Honedge|type=Steel|type2=Ghost|1|Mineral|Mineral||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0680|Doublade|type=Steel|type2=Ghost|1|Mineral|Mineral||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0681|Aegislash|type=Steel|type2=Ghost|1|Mineral|Mineral||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0682|Spritzee|type=Fairy|1|Fairy|Fairy||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0683|Aromatisse|type=Fairy|1|Fairy|Fairy||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0684|Swirlix|type=Fairy|1|Fairy|Fairy||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0685|Slurpuff|type=Fairy|1|Fairy|Fairy||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0703|Carbink|type=Rock|type2=Fairy|2|Fairy|Mineral||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0712|Bergmite|type=Ice|2|Monster|Mineral||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0713|Avalugg|type=Ice|2|Monster|Mineral||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0719|Diancie|type=Rock|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||✔|✔}}&lt;br /&gt;
{{Moveentry/3|0742|Cutiefly|type=Bug|type2=Fairy|2|Bug|Fairy|||✔}}&lt;br /&gt;
{{Moveentry/3|0743|Ribombee|type=Bug|type2=Fairy|2|Bug|Fairy|||✔}}&lt;br /&gt;
{{Moveentry/3|0747|Mareanie|type=Poison|type2=Water|1|Water 1|Water 1|||✔}}&lt;br /&gt;
{{Moveentry/3|0748|Toxapex|type=Poison|type2=Water|1|Water 1|Water 1|||✔}}&lt;br /&gt;
{{Moveentry/3|0755|Morelull|type=Grass|type2=Fairy|1|Grass|Grass|||✔}}&lt;br /&gt;
{{Moveentry/3|0756|Shiinotic|type=Grass|type2=Fairy|1|Grass|Grass|||✔}}&lt;br /&gt;
{{Moveentry/3|0764|Comfey|type=Fairy|1|Grass|Grass|||✔}}&lt;br /&gt;
{{Moveentry/3|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field|||✔}}&lt;br /&gt;
{{Moveentry/3|0769|Sandygast|type=Ghost|type2=Ground|1|Amorphous|Amorphous|||✔}}&lt;br /&gt;
{{Moveentry/3|0770|Palossand|type=Ghost|type2=Ground|1|Amorphous|Amorphous|||✔}}&lt;br /&gt;
{{Moveentry/3|0777|Togedemaru|type=Electric|type2=Steel|2|Field|Fairy|||✔}}&lt;br /&gt;
{{Moveentry/3|0778|Mimikyu|type=Ghost|type2=Fairy|1|Amorphous|Amorphous|||✔}}&lt;br /&gt;
{{Moveentry/3|0779|Bruxish|type=Water|type2=Psychic|1|Water 2|Water 2|||✔}}&lt;br /&gt;
{{Moveentry/3|0801|Magearna|type=Steel|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||✔}}&lt;br /&gt;
{{Moveentry/3|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|||✔}}&lt;br /&gt;
{{Movefoot|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
After You has the same effect as {{m|Baton Pass}}. The user switches positions with a teammate, and the switched ally receives a random stat boost. In [[Pokémon Mystery Dungeon: Gates to Infinity|Gates to Infinity]], the user will switch places with the teammate in front. In [[Super Mystery Dungeon]], the user switches with a teammate anywhere on the floor who is ordered first on the team list (or second on the list if the user is listed first).&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=30|ppmax=99|acc=—%|range={{tt|Front|Indicated as Others in-game}}|target={{tt|Teammate|Indicated as Others in-game}}}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=30|ppmax=99|acc=—%|range={{tt|Entire floor|Indicated as User in-game}}|target=Party}}&lt;br /&gt;
{{MDMovefoot|type=normal|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|After switching positions with your teammate, it boosts your teammate&#039;s Attack, Defense, Special Attack, Special Defense, accuracy, or evasiveness. (The stat change returns to normal when it goes to the next floor or steps on a [[File:IconTileGTI.png]]Wonder Tile.)}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|After switching your position with your teammate, it boosts your teammate&#039;s Attack, Defense, Sp. Atk, Sp. Def, accuracy, or evasiveness. The stat returns to normal when the Pokémon goes to the next floor or steps on a [[File:IconTileSMD.png]]Wonder Tile.}}&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=normal|exp=yes|gen=The user lets an ally attack first.|image1=Shoko Patrat After You Adventures.png|image1p=Patrat}}&lt;br /&gt;
{{movep|type=normal|ms=504|pkmn=Patrat|method=Patrat surprises an opponent by running away from it, giving an ally the chance to use an attack first.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Shoko|user1=Shoko&#039;s four Patrat|startcode=PS522|startname=Homecoming|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genV=After You V&lt;br /&gt;
|genVI=After You VI&lt;br /&gt;
|genVI2=After You VI 2&lt;br /&gt;
|genVII=After You VII&lt;br /&gt;
|genVII2=After You VII 2&lt;br /&gt;
|genVIII=After You VIII&lt;br /&gt;
|genVIII2=After You VIII 2&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PMDGTI=After You PMD GTI&lt;br /&gt;
|PSMD=After You PSMD&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|Néih Sīn Chíng|After You}}&#039;&#039;&lt;br /&gt;
|zh_cmn=您先請 / 您先请 &#039;&#039;{{tt|Nín Xiān Qǐng|After You}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;你先請 &#039;&#039;{{tt|Nǐ Xiān Qǐng|You First}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Après Vous&lt;br /&gt;
|de=Galanterie&lt;br /&gt;
|it=Cortesia&lt;br /&gt;
|pt_br=Depois de Você&lt;br /&gt;
|ko=당신먼저 &#039;&#039;Dangsin Meonjeo&#039;&#039;&lt;br /&gt;
|es=Cede Paso&lt;br /&gt;
|vi=Nhường Quyền}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{After You}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that cannot miss]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
[[Category:Moves in Pokémon Mystery Dungeon: Gates to Infinity]]&lt;br /&gt;
[[Category:Moves in Pokémon Mystery Dungeon: Rescue Team DX]]&lt;br /&gt;
&lt;br /&gt;
[[de:Galanterie]]&lt;br /&gt;
[[es:Cede paso]]&lt;br /&gt;
[[fr:Après Vous]]&lt;br /&gt;
[[it:Cortesia]]&lt;br /&gt;
[[ja:おさきにどうぞ]]&lt;br /&gt;
[[zh:您先请（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Teatime_(move)&amp;diff=4238498</id>
		<title>Teatime (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Teatime_(move)&amp;diff=4238498"/>
		<updated>2025-02-12T21:24:43Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=752&lt;br /&gt;
|name=Teatime&lt;br /&gt;
|jname=おちゃかい&lt;br /&gt;
|jtrans=Tea Party&lt;br /&gt;
|jtranslit=Ochakai&lt;br /&gt;
|gameimage=Teatime IX.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=—&lt;br /&gt;
|gen=VIII&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=no&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=all&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Teatime&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;おちゃかい&#039;&#039;&#039; &#039;&#039;Tea Party&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation VIII]]. It is the [[signature move]] of {{p|Polteageist}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
Teatime causes all Pokémon on the field to eat their held [[Berry]]. This move bypasses {{OBP|substitute|doll}}s.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon has eaten its Berry, Teatime fails to work on that Pokémon. The Berry is eaten even if it would not have any effect, such as eating a [[Mago Berry]] at full health. If no Pokémon on the field has a held Berry, Teatime fails with the message &amp;quot;But nothing happened!&amp;quot;. Teatime causes Pokémon to eat their Berries even in the presence of {{a|Unnerve}} or {{m|Magic Room}}. This move does not affect Pokémon under the effect of {{m|Max Guard}}.&lt;br /&gt;
&lt;br /&gt;
Pokémon in the [[semi-invulnerable]] turn of a move are not affected by Teatime. If Teatime has its type changed by {{m|Electrify}} or {{m|Plasma Fists}}, Pokémon with {{a|Volt Absorb}}, {{a|Lightning Rod}} or {{a|Motor Drive}} will not use up their Berries but will instead gain the benefit of the Ability regardless of whether they are holding a Berry or not.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII===&lt;br /&gt;
====Pokémon Brilliant Diamond and Shining Pearl====&lt;br /&gt;
Teatime cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|SwShLA}}|The user has teatime with all the Pokémon in the battle. Each Pokémon eats its held Berry.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|BDSP}}|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;
{{movedescentry|{{gameabbrev9|SV}}|The user has teatime with all the Pokémon currently in the battle. Each Pokémon eats its held Berry.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==Learnset==&lt;br /&gt;
{{Movehead/Games|Normal|g1=none|g2=none|g3=none|g4=none|g5=none|g6=none|g7=none|g8=1|g8g={{gameabbrev8|SwSh}}}}&lt;br /&gt;
{{Moveentry/2|0855|Polteageist|type=Ghost|2|Mineral|Amorphous|form=All forms|1, {{tt|Evo.|Learned upon evolving}}|{{tt|Evo.|Learned upon evolving}}}}&lt;br /&gt;
{{Movefoot|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=normal|gen=The user has teatime with all the Pokémon currently around it.|image1=RVT Polteageist Teatime 1.png|image1p=Polteageist|image2=RVT Polteageist Teatime 2.png|image2p=Pouring tea}}&lt;br /&gt;
{{movep|type=normal|ms=855|pkmn=Polteageist|method=Polteageist dances and releases musical notes and sparkling lights from its body. The musical notes hit nearby teacups, which float over to Polteageist, who fills them up with its tea and serves them to the Pokémon around it.}}&lt;br /&gt;
{{movebtm|type=normal|user=Rising Volt Tacklers|user1=Rising Volt Tacklers&#039; Polteageist|startcode=HZ030|startname=Slip and Crash! A Mystery Pokémon?!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genVIII=Teatime VIII&lt;br /&gt;
|genVIII2=Teatime VIII 2&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|Chàhwúi|Tea Party}}&#039;&#039;&lt;br /&gt;
|zh_cmn=茶會 / 茶会 &#039;&#039;{{tt|Cháhuì|Tea Party}}&#039;&#039;&lt;br /&gt;
|fr=Thérémonie&lt;br /&gt;
|de=Teatime&lt;br /&gt;
|it=Ora del Tè&lt;br /&gt;
|ko=다과회 &#039;&#039;{{tt|Dagwahoe|Tea Party}}&#039;&#039;&lt;br /&gt;
|pt_br=Hora do Chá&lt;br /&gt;
|es=Hora del Té&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 usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
[[Category:Item-manipulating moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
&lt;br /&gt;
[[de:Teatime]]&lt;br /&gt;
[[es:Hora del té]]&lt;br /&gt;
[[fr:Thérémonie]]&lt;br /&gt;
[[it:Ora del Tè]]&lt;br /&gt;
[[ja:おちゃかい]]&lt;br /&gt;
[[zh:茶会（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Switcheroo_(move)&amp;diff=4238494</id>
		<title>Switcheroo (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Switcheroo_(move)&amp;diff=4238494"/>
		<updated>2025-02-12T21:22:14Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{redirect|Switcheroo|the facility involving the [[Battle Agency]]|Festival Plaza}}&lt;br /&gt;
{{MoveInfobox|&lt;br /&gt;
n=415 |&lt;br /&gt;
name=Switcheroo |&lt;br /&gt;
jname=すりかえ |&lt;br /&gt;
jtrans=Secret Switch |&lt;br /&gt;
jtranslit=Surikae |&lt;br /&gt;
gameimage=Switcheroo IX.png |&lt;br /&gt;
gameimagewidth=300 |&lt;br /&gt;
type=Dark |&lt;br /&gt;
damagecategory=Status |&lt;br /&gt;
basepp=10 |&lt;br /&gt;
maxpp=16 |&lt;br /&gt;
power=— |&lt;br /&gt;
accuracy=100 |&lt;br /&gt;
bdesc= |&lt;br /&gt;
gen=IV |&lt;br /&gt;
category=Cool |&lt;br /&gt;
appealsc=0 |&lt;br /&gt;
scdesc=Steals the Voltage of the Pokémon that just went. |&lt;br /&gt;
category6=Clever |&lt;br /&gt;
appeal6=2 |&lt;br /&gt;
jam6=1 |&lt;br /&gt;
cdesc6=Badly startles Pokémon that used a move of the same type. |&lt;br /&gt;
pokefordex=switcheroo |&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=no |&lt;br /&gt;
flag7=no |&lt;br /&gt;
flag8=no |&lt;br /&gt;
sound=no |&lt;br /&gt;
target=anyadjacent |&lt;br /&gt;
footnotes= }}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Switcheroo&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;すりかえ&#039;&#039;&#039; &#039;&#039;Secret Switch&#039;&#039;) is a non-damaging {{type|Dark}} [[move]] introduced in [[Generation IV]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
The user switches [[held item]]s with the target. If only one of them is holding an item, the item is moved to the other.&lt;br /&gt;
&lt;br /&gt;
Switcheroo fails if:&lt;br /&gt;
* Neither Pokémon has a held item.&lt;br /&gt;
* The user is a [[wild Pokémon]].&lt;br /&gt;
* The target is behind a {{OBP|substitute|doll}}.&lt;br /&gt;
* The target has {{a|Sticky Hold}} (even if it has no held item).&lt;br /&gt;
* Either Pokémon is holding:&lt;br /&gt;
** [[Mail]]&lt;br /&gt;
** any [[Z-Crystal]]&lt;br /&gt;
** a [[Drive]], if either Pokémon is {{p|Genesect}}&lt;br /&gt;
** a [[Mega Stone]], if either Pokémon could use it to [[Mega Evolution|Mega Evolve]]&lt;br /&gt;
** a [[colored orbs|colored orb]], if either Pokémon could use it to undergo [[Primal Reversion]]&lt;br /&gt;
** a [[Memory]], if either Pokémon is {{p|Silvally}}&lt;br /&gt;
** a [[Rusted Sword]], if either Pokémon is {{p|Zacian}}&lt;br /&gt;
** a [[Rusted Shield]], if either Pokémon is {{p|Zamazenta}}&lt;br /&gt;
** a [[Booster Energy]], if either Pokémon is a [[Paradox Pokémon]] (excluding {{p|Koraidon}} and {{p|Miraidon}})&lt;br /&gt;
** a [[Wellspring Mask]], [[Hearthflame Mask]], or [[Cornerstone Mask]], if either Pokémon is {{p|Ogerpon}}&lt;br /&gt;
&lt;br /&gt;
In Link Battles, [[Battle facility|battle facilities]], [[Secret Base]]s, and the [[Trainer House]], items stolen will be returned at the end of the battle.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
In these generations, Switcheroo fails if either Pokémon has {{a|Multitype}} or either Pokémon is holding a [[Griseous Orb]].&lt;br /&gt;
&lt;br /&gt;
===Generation V onwards===&lt;br /&gt;
Switcheroo no longer switches a Trainer&#039;s Pokémon&#039;s items permanently; however, items switched in wild battles are permanently switched.&lt;br /&gt;
&lt;br /&gt;
Switcheroo can now exchange a Griseous Orb, but still fails if either Pokémon holds a Griseous Orb and either Pokémon is {{p|Giratina}}. Switcheroo can now exchange items with a Pokémon that has {{a|Multitype}}, but still fails if either Pokémon holds a [[Plate]] and either Pokémon is {{p|Arceus}}.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Darkinium Z]] into Z-Switcheroo, the user&#039;s {{stat|Speed}} is raised two stages, then the move itself fails after obtaining the Z-Power since it is not possible to exchange a Z-Crystal.&lt;br /&gt;
&lt;br /&gt;
Switcheroo will always fail when used in a [[Max Raid Battle]], regardless of the items or target. (It works as normal against [[Dynamax]] Pokémon in other battles.)&lt;br /&gt;
&lt;br /&gt;
In {{g|Sword and Shield}}, due to a presumed [[glitch]] in accounting for the removal of colored orbs, Switcheroo would fail in versions 1.2.0 through 1.3.1 if it was used by or against {{p|Groudon}} or {{p|Kyogre}} and either the user or the target was not holding an item. This behavior was corrected in version 1.3.2.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user trades held items with the foe faster than the eye can follow.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user trades held items with the target faster than the eye can follow.}}&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/Games|Dark|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/7|0053|Persian|type=Normal|1|Field|Field|1|1|1|1|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0053|formsig=A|Persian|type=Dark|1|Field|Field|form=Alolan Form||||1|1||1}}&lt;br /&gt;
{{Moveentry/7|0097|Hypno|type=Psychic|1|Human-Like|Human-Like|1|1|1|1||1|1}}&lt;br /&gt;
{{Moveentry/7|0264|Linoone|type=Normal|1|Field|Field|1|1|1|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0264|formsig=G|Linoone|type=Dark|type2=Normal|1|Field|Field|form=Galarian Form|||||1}}&lt;br /&gt;
{{Moveentry/7|0311|Plusle|type=Electric|1|Fairy|Fairy|−|−|−|−||−|13}}&lt;br /&gt;
{{Moveentry/7|0312|Minun|type=Electric|1|Fairy|Fairy|−|−|13{{sup/6|ORAS}}|13||13|13}}&lt;br /&gt;
{{Moveentry/7|0335|Zangoose|type=Normal|1|Field|Field|−|−|−|−||−|33}}&lt;br /&gt;
{{Moveentry/7|0386|Deoxys|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=Normal Forme|−|−|−|−||37|−}}&lt;br /&gt;
{{Moveentry/7|0386|formsig=D|Deoxys|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=Defense Forme|−|−|−|−||37|−}}&lt;br /&gt;
{{Moveentry/7|0655|Delphox|type=Fire|type2=Psychic|1|Field|Field|||1|1|||1}}&lt;br /&gt;
{{Moveentry/7|0686|Inkay|type=Dark|type2=Psychic|2|Water 1|Water 2|||23|23|31||31}}&lt;br /&gt;
{{Moveentry/7|0687|Malamar|type=Dark|type2=Psychic|2|Water 1|Water 2|||23|23|33||33}}&lt;br /&gt;
{{Moveentry/7|0742|Cutiefly|type=Bug|type2=Fairy|2|Bug|Fairy||||−|36||36}}&lt;br /&gt;
{{Moveentry/7|0743|Ribombee|type=Bug|type2=Fairy|2|Bug|Fairy||||−|40||40}}&lt;br /&gt;
{{Moveentry/7|0781|Dhelmise|type=Ghost|type2=Grass|1|Mineral|Mineral||||1|24}}&lt;br /&gt;
{{Moveentry/7|0862|Obstagoon|type=Dark|type2=Normal|1|Field|Field|||||1}}&lt;br /&gt;
{{Moveentry/7|0944|Shroodle|type=Poison|type2=Normal|1|Field|Field|||||||11}}&lt;br /&gt;
{{Moveentry/7|0945|Grafaiai|type=Poison|type2=Normal|1|Field|Field|||||||11}}&lt;br /&gt;
{{Movefoot|Dark|7}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Dark|Egg Move|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/7|0019|formsig=A|Rattata|type=Dark|type2=Normal|1|Field|Field|form=Alolan Form|||||✔}}&lt;br /&gt;
{{Moveentry/7|0023|Ekans|type=Poison|2|Field|Dragon|✔{{sup/4|HGSS}}|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0187|Hoppip|type=Grass|type2=Flying|2|Fairy|Grass|−|−|−|−||−|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0190|Aipom|type=Normal|1|Field|Field|−|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0215|formsig=H|Sneasel|type=Fighting|type2=Poison|1|Field|Field|form=Hisuian Form|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0309|Electrike|type=Electric|1|Field|Field|✔{{sup/4|HGSS}}|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0331|Cacnea|type=Grass|2|Grass|Human-Like|−|✔|✔|✔||✔|✔{{tt|*|Version 2.0.1 onwards}}}}&lt;br /&gt;
{{Moveentry/7|0336|Seviper|type=Poison|2|Field|Dragon|✔{{sup/4|HGSS}}|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0341|Corphish|type=Water|2|Water 1|Water 3|−|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0361|Snorunt|type=Ice|2|Fairy|Mineral|−|−|✔|✔|✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0390|Chimchar|type=Fire|2|Field|Human-Like|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0418|Buizel|type=Water|2|Water 1|Field|−|✔|✔|✔||✔|−}}&lt;br /&gt;
{{Moveentry/7|0427|Buneary|type=Normal|2|Field|Human-Like|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0540|Sewaddle|type=Bug|type2=Grass|1|Bug|Bug||−|−|−|||✔}}&lt;br /&gt;
{{Moveentry/7|0546|Cottonee|type=Grass|type2=Fairy|2|Grass|Fairy||✔|✔|✔|✔||✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0566|Archen|type=Rock|type2=Flying|2|Flying|Water 3|||✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0656|Froakie|type=Water|1|Water 1|Water 1|||−|−|||✔}}&lt;br /&gt;
{{Moveentry/7|0688|Binacle|type=Rock|type2=Water|1|Water 3|Water 3|||✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0707|Klefki|type=Steel|type2=Fairy|1|Mineral|Mineral|||✔|✔|✔||✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0714|Noibat|type=Flying|type2=Dragon|2|Flying|Dragon|||✔|✔|−||✔{{tt|*|Version 2.0.1 onwards}}|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0924|Tandemaus|type=Normal|2|Field|Fairy|||||||✔}}&lt;br /&gt;
{{Movefoot|Dark|7}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Switcheroo swaps the user&#039;s and the target&#039;s held items. Prior to {{pkmn|Super Mystery Dungeon}}, this move will fail if at least one of the Pokémon is not holding an item. From Super Mystery Dungeon, the move will still succeed even if either the user or the target does not have an item.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=dark}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=16|acc=—%|range=Front|target=Enemy|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=16|acc=—%|range=Front|target=Enemy|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=25|ppmax=40|acc=—%|range=Front|target=All|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=dark|TDS=yes|BSL=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TD}}|Switches the user&#039;s hold item with the target&#039;s hold item. It works only if both Pokémon are holding items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|S}}|Switches the user&#039;s held item with the target&#039;s held item. It works only if both Pokémon are holding items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンのどうぐと じぶんの どうぐを いれかえる じぶんと てきポケモンの りょうほうが どうぐを もっていないと せいこうしない|Switches the user&#039;s held item with the target&#039;s held item. It works only if both Pokémon are holding items}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}&amp;lt;br/&amp;gt;{{gameabbrevmd|RTDX}}|It swaps your held item with a target&#039;s held item. The move succeeds even if either you or the target doesn&#039;t have an item.}}&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=dark|exp=yes|gen=The user trades held items with its opponent.|image1=Al Hypno Switcheroo Adventures.png|image1p=Hypno}}&lt;br /&gt;
{{movep|type=dark|ms=097|pkmn=Hypno|method=Hypno switches the places of an item it is holding with one that its opponent is holding.}}&lt;br /&gt;
{{movebtm|type=dark|user=Team Rocket Elite Trio|user1=Al&#039;s Hypno|startcode=PS460|startname=All About Arceus IX|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=Dark|&lt;br /&gt;
genIV=Switcheroo IV|&lt;br /&gt;
genV=Switcheroo V|&lt;br /&gt;
genVI=Switcheroo VI|&lt;br /&gt;
genVII=Switcheroo VII|&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Dark&lt;br /&gt;
|genVIII=Switcheroo VIII&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Dark|&lt;br /&gt;
PBR=Switcheroo PBR|&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Dark|&lt;br /&gt;
PMDTDS=Switcheroo PMD TDS|&lt;br /&gt;
PSMD=Switcheroo PSMD|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Generation IX]], Switcheroo has the same animation as {{m|Trick}}.&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{dark color}}|bordercolor={{dark color light}}&lt;br /&gt;
|zh_yue=掉包 &#039;&#039;{{tt|Diuhbāau|Switcheroo}}&#039;&#039;&lt;br /&gt;
|zh_cmn=掉包 &#039;&#039;{{tt|Diàobāo|Switcheroo}}&#039;&#039;&lt;br /&gt;
|fr=Passe-Passe&lt;br /&gt;
|de=Wechseldich&lt;br /&gt;
|el=Υποχθόνια Αλλαγή&lt;br /&gt;
|it=Rapidscambio&lt;br /&gt;
|ko=바꿔치기 &#039;&#039;Bakkweochigi&#039;&#039;&lt;br /&gt;
|es=Trapicheo&lt;br /&gt;
|vi=Đánh Tráo&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Trick|Dark}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can jam]]&lt;br /&gt;
[[Category:Item-manipulating moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Wechseldich]]&lt;br /&gt;
[[es:Trapicheo]]&lt;br /&gt;
[[fr:Passe-Passe]]&lt;br /&gt;
[[it:Rapidscambio]]&lt;br /&gt;
[[ja:すりかえ]]&lt;br /&gt;
[[zh:掉包（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Trick_(move)&amp;diff=4238493</id>
		<title>Trick (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Trick_(move)&amp;diff=4238493"/>
		<updated>2025-02-12T21:21:48Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=271&lt;br /&gt;
|name=Trick&lt;br /&gt;
|jname=トリック&lt;br /&gt;
|jtrans=Trick&lt;br /&gt;
|jtranslit=Torikku&lt;br /&gt;
|gameimage=Trick IX.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|gen=III&lt;br /&gt;
|mtpt=yes&lt;br /&gt;
|mths=yes&lt;br /&gt;
|mtb2w2=yes&lt;br /&gt;
|mtoras=yes&lt;br /&gt;
|mtusum=yes&lt;br /&gt;
|tr8=yes&lt;br /&gt;
|tr#8=38&lt;br /&gt;
|na=no&lt;br /&gt;
|category=Smart&lt;br /&gt;
|appeal=2&lt;br /&gt;
|jam=0&lt;br /&gt;
|cdesc=Works well if it&#039;s the same type as the one before.&lt;br /&gt;
|appealsc=0&lt;br /&gt;
|scdesc=Steals the Voltage of the Pokémon that just went.&lt;br /&gt;
|category6=Clever&lt;br /&gt;
|appeal6=2&lt;br /&gt;
|jam6=1&lt;br /&gt;
|cdesc6=Badly startles Pokémon that used a move of the same type.&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=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Trick&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;トリック&#039;&#039;&#039; &#039;&#039;Trick&#039;&#039;) is a non-damaging {{type|Psychic}} [[move]] introduced in [[Generation III]]. It was [[TR38]] in {{g|Sword and Shield}}, and is [[TM109]] in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
The user switches [[held item]]s with the target. If only one of them is holding an item, the item is moved to the other.&lt;br /&gt;
&lt;br /&gt;
Trick fails if:&lt;br /&gt;
* Neither Pokémon has a held item.&lt;br /&gt;
* The user is a [[wild Pokémon]].&lt;br /&gt;
* The target is behind a {{OBP|substitute|doll}}.&lt;br /&gt;
* The target has {{a|Sticky Hold}} (even if it has no held item).&lt;br /&gt;
* It is used in the [[Trainer Tower]] or [[Trainer Hill]].&lt;br /&gt;
* Either Pokémon is holding:&lt;br /&gt;
** an [[Berry#e-Reader Berries|e-Reader Berry]]&lt;br /&gt;
** [[Mail]] (except in the Japanese version of {{game|Ruby and Sapphire|s}})&lt;br /&gt;
** any [[Z-Crystal]]&lt;br /&gt;
** a [[Drive]], if either Pokémon is {{p|Genesect}}&lt;br /&gt;
** a [[Mega Stone]], if either Pokémon could use it to [[Mega Evolution|Mega Evolve]]&lt;br /&gt;
** a [[colored orbs|colored orb]], if either Pokémon could use it to undergo [[Primal Reversion]]&lt;br /&gt;
** a [[Memory]], if either Pokémon is {{p|Silvally}}&lt;br /&gt;
** a [[Rusted Sword]], if either Pokémon is {{p|Zacian}}&lt;br /&gt;
** a [[Rusted Shield]], if either Pokémon is {{p|Zamazenta}}&lt;br /&gt;
** a [[Booster Energy]], if either Pokémon is a [[Paradox Pokémon]] (excluding {{p|Koraidon}} and {{p|Miraidon}})&lt;br /&gt;
** a [[Wellspring Mask]], [[Hearthflame Mask]], or [[Cornerstone Mask]], if either Pokémon is {{p|Ogerpon}}&lt;br /&gt;
&lt;br /&gt;
Additionally, in some generations Trick can fail under additional circumstances.&lt;br /&gt;
&lt;br /&gt;
In Link Battles, [[Battle facility|battle facilities]], [[Secret Base]]s, and the [[Trainer House]], items stolen will be returned at the end of the battle.&lt;br /&gt;
&lt;br /&gt;
===Generations III and IV===&lt;br /&gt;
In Japanese {{game|Ruby and Sapphire|s}}, Trick can exchange [[Mail]], but doing so may cause {{DL|List of battle glitches in Generation III|Mail corruption}}. In international releases of Pokémon Ruby and Sapphire, as well as all releases of subsequent games, Trick will fail if either Pokémon is holding Mail.&lt;br /&gt;
&lt;br /&gt;
In these generations, Trick fails if either Pokémon has {{a|Multitype}} or either Pokémon is holding a [[Griseous Orb]].&lt;br /&gt;
&lt;br /&gt;
===Generation V onwards===&lt;br /&gt;
Trick no longer switches a Trainer&#039;s Pokémon&#039;s items permanently; however, items switched in wild battles are permanently switched.&lt;br /&gt;
&lt;br /&gt;
Trick can now exchange the Griseous Orb, but still fails if either Pokémon holds the Griseous Orb and either Pokémon is {{p|Giratina}}. Trick can now exchange items with a Pokémon that has {{a|Multitype}}, but still fails if either Pokémon holds a [[Plate]] and either Pokémon is {{p|Arceus}}.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Psychium Z]] into Z-Trick, the user&#039;s {{stat|Speed}} is boosted by two stages, then the move itself fails after obtaining the Z-Power since it is not possible to exchange a Z-Crystal.&lt;br /&gt;
&lt;br /&gt;
Trick will always fail when used in a [[Max Raid Battle]] or a [[Tera Raid Battle]], regardless of the items or target. (It works as normal against [[Dynamax]] Pokémon in other battles.)&lt;br /&gt;
&lt;br /&gt;
In {{g|Sword and Shield}}, due to a presumed [[glitch]] in accounting for the removal of [[colored orbs]], Trick would fail in versions 1.2.0 through 1.3.1 if it was used by or against {{p|Groudon}} or {{p|Kyogre}} and either the user or the target was not holding an item. This behavior was corrected in version 1.3.2.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Psychic}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}|Tricks the foe into trading held items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|A move that tricks the foe into trading held items with the user.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|Tricks the target into trading held items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user catches the foe off guard and swaps the foe&#039;s held item with its own.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}|The user catches the target off guard and swaps its held item with its own.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev9|SV}}|The user catches the target off guard and swaps the target&#039;s held item with its own.}}&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/Games|Psychic|g1=none|g2=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/8|0064|Kadabra|type=Psychic|1|Human-Like|Human-Like|43|46|52|50{{sup/6|XY}}&amp;lt;br&amp;gt;46{{sup/6|ORAS}}|46|−|−}}&lt;br /&gt;
{{Moveentry/8|0065|Alakazam|type=Psychic|1|Human-Like|Human-Like|43|46|52|50{{sup/6|XY}}&amp;lt;br&amp;gt;46{{sup/6|ORAS}}|46|−|−}}&lt;br /&gt;
{{Moveentry/8|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|37{{sup/3|RSE}}&amp;lt;br&amp;gt;36{{sup/3|FRLG}}|36|36|36|36|−|−}}&lt;br /&gt;
{{Moveentry/8|0353|Shuppet|type=Ghost|1|Amorphous|Amorphous|−|50|55{{sup/5|BW}}&amp;lt;br&amp;gt;50{{sup/5|B2W2}}|50|50||50|42}}&lt;br /&gt;
{{Moveentry/8|0354|Banette|type=Ghost|1|Amorphous|Amorphous|−|66|75{{sup/5|BW}}&amp;lt;br&amp;gt;58{{sup/5|B2W2}}|58|58||58|46}}&lt;br /&gt;
{{Moveentry/8|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||36|36|36|36|−|−}}&lt;br /&gt;
{{Moveentry/8|0479|Rotom|type=Electric|type2=Ghost|1|Amorphous|Amorphous|form=All available forms||1|1|1|1|45|45|45}}&lt;br /&gt;
{{Moveentry/8|0710|Pumpkaboo|type=Ghost|type2=Grass|1|Amorphous|Amorphous|form=All forms||||1|1|40}}&lt;br /&gt;
{{Moveentry/8|0711|Gourgeist|type=Ghost|type2=Grass|1|Amorphous|Amorphous|form=All forms||||1|1|40}}&lt;br /&gt;
{{Moveentry/8|0720|Hoopa|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||||1|1|||10}}&lt;br /&gt;
{{Moveentry/8|0801|Magearna|type=Steel|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||||−|−||54}}&lt;br /&gt;
{{Moveentry/8|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|||||47{{sup/7|USUM}}|60}}&lt;br /&gt;
{{Moveentry/8|0908|Meowscarada|type=Grass|type2=Dark|2|Field|Grass||||||||{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Movefoot|Psychic|8}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]/[[TR]]===&lt;br /&gt;
{{Movehead/TMGames|Psychic|g1=none|g2=none|g3=none&lt;br /&gt;
|g4tm=tutor|g4g={{gameabbrev4|PtHGSS}}&lt;br /&gt;
|g5tm=tutor|g5g={{gameabbrev5|B2W2}}&lt;br /&gt;
|g6tm=tutor|g6g={{gameabbrev6|ORAS}}&lt;br /&gt;
|g7=1|g7tm=tutor|g7g={{gameabbrev7|USUM}}&lt;br /&gt;
|g8=1|g8tm=38|g8g={{gameabbrev8|SwSh}}|tmhm8=TR&lt;br /&gt;
|g9tm=109}}&lt;br /&gt;
{{Moveentry/6|0035|Clefairy|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0036|Clefable|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0063|Abra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0064|Kadabra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0065|Alakazam|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0079|Slowpoke|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0079|formsig=G|Slowpoke|type=Psychic|2|Monster|Water 1|form=Galarian Form|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0080|Slowbro|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0080|formsig=G|Slowbro|type=Poison|type2=Psychic|2|Monster|Water 1|form=Galarian Form|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0092|Gastly|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0093|Haunter|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0094|Gengar|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0096|Drowzee|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0097|Hypno|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0102|Exeggcute|type=Grass|type2=Psychic|1|Grass|Grass|−|−|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0103|Exeggutor|type=Grass|type2=Psychic|1|Grass|Grass|−|−|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0103|formsig=A|Exeggutor|type=Grass|type2=Dragon|1|Grass|Grass|form=Alolan Form||||−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0121|Starmie|type=Water|type2=Psychic|1|Water 3|Water 3|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0124|Jynx|type=Ice|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0137|Porygon|type=Normal|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0144|formsig=G|Articuno|type=Psychic|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=Galarian Form|||||−|✔}}&lt;br /&gt;
{{Moveentry/6|0150|Mewtwo|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0161|Sentret|type=Normal|1|Field|Field|−|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0162|Furret|type=Normal|1|Field|Field|−|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0175|Togepi|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0177|Natu|type=Psychic|type2=Flying|1|Flying|Flying|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0178|Xatu|type=Psychic|type2=Flying|1|Flying|Flying|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0196|Espeon|type=Psychic|1|Field|Field|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0199|Slowking|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0199|formsig=G|Slowking|type=Poison|type2=Psychic|2|Monster|Water 1|form=Galarian Form|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0200|Misdreavus|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0203|Girafarig|type=Normal|type2=Psychic|1|Field|Field|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0233|Porygon2|type=Normal|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0234|Stantler|type=Normal|1|Field|Field|−|−|−|−||✔}}&lt;br /&gt;
{{Moveentry/6|0238|Smoochum|type=Ice|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0242|Blissey|type=Normal|1|Fairy|Fairy|−|−|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0249|Lugia|type=Psychic|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0251|Celebi|type=Psychic|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0263|Zigzagoon|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0263|formsig=G|Zigzagoon|type=Dark|type2=Normal|1|Field|Field|form=Galarian Form|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0264|Linoone|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0264|formsig=G|Linoone|type=Dark|type2=Normal|1|Field|Field|form=Galarian Form|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0280|Ralts|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0281|Kirlia|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0282|Gardevoir|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0292|Shedinja|type=Bug|type2=Ghost|1|Mineral|Mineral|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0307|Meditite|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0308|Medicham|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0313|Volbeat|type=Bug|2|Bug|Human-Like|−|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0314|Illumise|type=Bug|2|Bug|Human-Like|−|−|−|−||✔}}&lt;br /&gt;
{{Moveentry/6|0325|Spoink|type=Psychic|1|Field|Field|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0326|Grumpig|type=Psychic|1|Field|Field|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0327|Spinda|type=Normal|2|Field|Human-Like|−|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/6|0343|Baltoy|type=Ground|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0344|Claydol|type=Ground|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0352|Kecleon|type=Normal|1|Field|Field|✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/6|0353|Shuppet|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0354|Banette|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0355|Duskull|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0356|Dusclops|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0358|Chimecho|type=Psychic|1|Amorphous|Amorphous|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0375|Metang|type=Steel|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0376|Metagross|type=Steel|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0380|Latias|type=Dragon|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0381|Latios|type=Dragon|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0385|Jirachi|type=Steel|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0386|Deoxys|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0425|Drifloon|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0426|Drifblim|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0429|Mismagius|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0433|Chingling|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0436|Bronzor|type=Steel|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0437|Bronzong|type=Steel|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0442|Spiritomb|type=Ghost|type2=Dark|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0468|Togekiss|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0474|Porygon-Z|type=Normal|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0475|Gallade|type=Psychic|type2=Fighting|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0477|Dusknoir|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0478|Froslass|type=Ice|type2=Ghost|2|Fairy|Mineral|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0479|Rotom|type=Electric|type2=Ghost|1|Amorphous|Amorphous|form=All forms|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0480|Uxie|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0481|Mesprit|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0482|Azelf|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0483|Dialga|type=Steel|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|form=All forms|−|−|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0484|Palkia|type=Water|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|form=All forms|−|−|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0488|Cresselia|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0491|Darkrai|type=Dark|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0493|Arceus|type=Normal|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0494|Victini|type=Psychic|type2=Fire|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0509|Purrloin|type=Dark|1|Field|Field||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0510|Liepard|type=Dark|1|Field|Field||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0517|Munna|type=Psychic|1|Field|Field||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0518|Musharna|type=Psychic|1|Field|Field||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0527|Woobat|type=Psychic|type2=Flying|2|Field|Flying||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0528|Swoobat|type=Psychic|type2=Flying|2|Field|Flying||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0555|Darmanitan|type=Fire|1|Field|Field||−|−|−|✔|}}&lt;br /&gt;
{{Moveentry/6|0561|Sigilyph|type=Psychic|type2=Flying|1|Flying|Flying||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0562|Yamask|type=Ghost|2|Mineral|Amorphous||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0562|formsig=G|Yamask|type=Ground|type2=Ghost|2|Mineral|Amorphous|form=Galarian Form|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0563|Cofagrigus|type=Ghost|2|Mineral|Amorphous||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0570|Zorua|type=Dark|1|Field|Field||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0570|formsig=H|Zorua|type=Normal|type2=Ghost|1|Field|Field|form=Hisuian Form||||||✔}}&lt;br /&gt;
{{Moveentry/6|0571|Zoroark|type=Dark|1|Field|Field||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0571|formsig=H|Zoroark|type=Normal|type2=Ghost|1|Field|Field|form=Hisuian Form||||||✔}}&lt;br /&gt;
{{Moveentry/6|0574|Gothita|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0575|Gothorita|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0576|Gothitelle|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0577|Solosis|type=Psychic|1|Amorphous|Amorphous||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0578|Duosion|type=Psychic|1|Amorphous|Amorphous||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0579|Reuniclus|type=Psychic|1|Amorphous|Amorphous||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0592|Frillish|type=Water|type2=Ghost|1|Amorphous|Amorphous|form=All forms||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0593|Jellicent|type=Water|type2=Ghost|1|Amorphous|Amorphous|form=All forms||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0605|Elgyem|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0606|Beheeyem|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0607|Litwick|type=Ghost|type2=Fire|1|Amorphous|Amorphous||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0608|Lampent|type=Ghost|type2=Fire|1|Amorphous|Amorphous||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0609|Chandelure|type=Ghost|type2=Fire|1|Amorphous|Amorphous||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0623|Golurk|type=Ground|type2=Ghost|1|Mineral|Mineral||−|−|−|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0648|Meloetta|type=Normal|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0653|Fennekin|type=Fire|1|Field|Field|||−|−||✔}}&lt;br /&gt;
{{Moveentry/6|0654|Braixen|type=Fire|1|Field|Field|||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0655|Delphox|type=Fire|type2=Psychic|1|Field|Field|||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0670|Floette|type=Fairy|1|Fairy|Fairy|form=All forms|||−|−||✔}}&lt;br /&gt;
{{Moveentry/6|0671|Florges|type=Fairy|1|Fairy|Fairy|form=All forms|||−|−||✔}}&lt;br /&gt;
{{Moveentry/6|0677|Espurr|type=Psychic|1|Field|Field|||✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0678|Meowstic|type=Psychic|1|Field|Field|form=All forms|||✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0686|Inkay|type=Dark|type2=Psychic|2|Water 1|Water 2|||−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0687|Malamar|type=Dark|type2=Psychic|2|Water 1|Water 2|||−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0708|Phantump|type=Ghost|type2=Grass|2|Grass|Amorphous|||✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0709|Trevenant|type=Ghost|type2=Grass|2|Grass|Amorphous|||✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0710|Pumpkaboo|type=Ghost|type2=Grass|1|Amorphous|Amorphous|form=All forms|||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0711|Gourgeist|type=Ghost|type2=Grass|1|Amorphous|Amorphous|form=All forms|||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0720|Hoopa|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0742|Cutiefly|type=Bug|type2=Fairy|2|Bug|Fairy||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0743|Ribombee|type=Bug|type2=Fairy|2|Bug|Fairy||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0764|Comfey|type=Fairy|1|Grass|Grass||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0769|Sandygast|type=Ghost|type2=Ground|1|Amorphous|Amorphous||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0770|Palossand|type=Ghost|type2=Ground|1|Amorphous|Amorphous||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0778|Mimikyu|type=Ghost|type2=Fairy|1|Amorphous|Amorphous||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0788|Tapu Fini|type=Water|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||||✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0792|Lunala|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0801|Magearna|type=Steel|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|form=All forms||||−|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0825|Dottler|type=Bug|type2=Psychic|1|Bug|Bug|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0826|Orbeetle|type=Bug|type2=Psychic|1|Bug|Bug|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0854|Sinistea|type=Ghost|2|Mineral|Amorphous|form=All forms|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0855|Polteageist|type=Ghost|2|Mineral|Amorphous|form=All forms|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0856|Hatenna|type=Psychic|1|Fairy|Fairy|||||−|✔}}&lt;br /&gt;
{{Moveentry/6|0857|Hattrem|type=Psychic|1|Fairy|Fairy|||||−|✔}}&lt;br /&gt;
{{Moveentry/6|0858|Hatterene|type=Psychic|type2=Fairy|1|Fairy|Fairy|||||−|✔}}&lt;br /&gt;
{{Moveentry/6|0859|Impidimp|type=Dark|type2=Fairy|2|Fairy|Human-Like|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0860|Morgrem|type=Dark|type2=Fairy|2|Fairy|Human-Like|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0861|Grimmsnarl|type=Dark|type2=Fairy|2|Fairy|Human-Like|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0862|Obstagoon|type=Dark|type2=Normal|1|Field|Field|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0867|Runerigus|type=Ground|type2=Ghost|2|Mineral|Amorphous|||||✔|}}&lt;br /&gt;
{{Moveentry/6|0876|Indeedee|type=Psychic|type2=Normal|1|Fairy|Fairy|form=All forms|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0898|Calyrex|type=Psychic|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||||✔|✔}}&lt;br /&gt;
{{Moveentry/6|0899|Wyrdeer|type=Normal|type2=Psychic|1|Field|Field||||||✔}}&lt;br /&gt;
{{Moveentry/6|0908|Meowscarada|type=Grass|type2=Dark|2|Field|Grass||||||✔}}&lt;br /&gt;
{{Moveentry/6|0936|Armarouge|type=Fire|type2=Psychic|1|Human-Like|Human-Like||||||✔}}&lt;br /&gt;
{{Moveentry/6|0954|Rabsca|type=Bug|type2=Psychic|1|Bug|Bug||||||✔}}&lt;br /&gt;
{{Moveentry/6|0955|Flittle|type=Psychic|1|Flying|Flying||||||✔}}&lt;br /&gt;
{{Moveentry/6|0956|Espathra|type=Psychic|1|Flying|Flying||||||✔}}&lt;br /&gt;
{{Moveentry/6|0971|Greavard|type=Ghost|1|Field|Field||||||✔}}&lt;br /&gt;
{{Moveentry/6|0972|Houndstone|type=Ghost|1|Field|Field||||||✔}}&lt;br /&gt;
{{Moveentry/6|0981|Farigiraf|type=Normal|type2=Psychic|1|Field|Field||||||✔}}&lt;br /&gt;
{{Moveentry/6|0985|Scream Tail|type=Fairy|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||||||✔}}&lt;br /&gt;
{{Moveentry/6|1000|Gholdengo|type=Steel|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||||✔}}&lt;br /&gt;
{{Moveentry/6|1006|Iron Valiant|type=Fairy|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||||||✔}}&lt;br /&gt;
{{Moveentry/6|1015|Munkidori|type=Poison|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||||||✔}}&lt;br /&gt;
{{Movefoot|Psychic|6}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Psychic|Egg Move|g1=none|g2=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=1|g8g={{gameabbrev8|BDSP}}}}&lt;br /&gt;
{{Moveentry/7|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0161|Sentret|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|−|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0263|Zigzagoon|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|−|−|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0313|Volbeat|type=Bug|2|Bug|Human-Like|✔|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/7|0325|Spoink|type=Psychic|1|Field|Field|✔|✔|✔|✔|✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0327|Spinda|type=Normal|2|Field|Human-Like|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0352|Kecleon|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/7|0439|Mime Jr.|type=Psychic|type2=Fairy|1|Human-Like|Human-Like||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0577|Solosis|type=Psychic|1|Amorphous|Amorphous|||✔|✔|✔||−}}&lt;br /&gt;
{{Moveentry/7|0677|Espurr|type=Psychic|1|Field|Field||||✔|✔||−|note=Chain breed}}&lt;br /&gt;
{{Movefoot|Psychic|7}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation V]]====&lt;br /&gt;
{{Movehead/Special|Psychic}}&lt;br /&gt;
{{Moveentry/1|0263|Zigzagoon|type=Normal|1|Field|Field|{{pkmn|Dream World}} - {{dwa|Pleasant Forest}}}}&lt;br /&gt;
{{Moveentry/1|0313|Volbeat|type=Bug|2|Bug|Human-Like|{{pkmn|Dream World}} - {{dwa|Spooky Manor}}}}&lt;br /&gt;
{{Moveentry/1|0355|Duskull|type=Ghost|1|Amorphous|Amorphous|{{pkmn|Dream World}} - {{dwa|Spooky Manor}}}}&lt;br /&gt;
{{Moveentry/1|0578|Duosion|type=Psychic|1|Amorphous|Amorphous|{{pkmn|Dream World}} - {{dwa|Spooky Manor}}}}&lt;br /&gt;
{{Movefoot|Psychic|1}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn2|event}}===&lt;br /&gt;
====[[Generation V]]====&lt;br /&gt;
{{Movehead/Special|Psychic}}&lt;br /&gt;
{{Moveentry/1|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|{{DL|List of local Japanese event Pokémon distributions in Generation V|Chief Golgo&#039;s Sableye}}{{sup/5|BW}}}}&lt;br /&gt;
{{Movefoot|Psychic|1}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Trick swaps the user&#039;s and the target&#039;s held items. Prior to {{pkmn|Super Mystery Dungeon}}, this move will fail if at least one of the Pokémon is not holding an item. From Super Mystery Dungeon, the move will still succeed even if either the user or the target does not have an item.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=psychic}}&lt;br /&gt;
{{MDMoveRow|game=RB|pp=17|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=17|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=17|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=25|ppmax=40|acc=—%|range=Front|target=All|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=psychic|RB=yes|TDS=yes|BSL=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
==={{g|UNITE}}===&lt;br /&gt;
In Pokémon UNITE, Trick is {{p|Hoopa}}&#039;s first move. It is obtained by reaching level 4 and upgrading {{m|Confusion}} into it instead of {{m|Hyperspace Hole}}. The user creates a link between itself and an ally Pokémon using a ring, increasing both of their movement speeds and granting them each a shield for a short time. When the user uses Shadow Ball or performs a basic attack, the ring on the linked Pokémon also unleashes the same move or attack. The user can also use this move on itself, increasing user’s movement speed and granting itself a shield for a short time. Additionally, it increases the damage dealt by Shadow Ball. At level 10, this move also restores the linked ally Pokémon’s HP when it deals damage to opposing Pokémon. While in Unbound form, this move is replaced by {{m|Psybeam}}.&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Psychic}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Switches the user&#039;s hold item with the target&#039;s hold item. It only works if both Pokémon hold items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TD}}|Switches the user&#039;s hold item with the target&#039;s hold item. It works only if both Pokémon are holding items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|S}}|Switches the user&#039;s held item with the target&#039;s held item. It works only if both Pokémon are holding items.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンのどうぐと じぶんのどうぐを いれかえる じぶんと てきポケモンの りょうほうが どうぐを もっていないと せいこうしない|Switches the user&#039;s held item with the target&#039;s held item. It works only if both Pokémon are holding items}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}&amp;lt;br/&amp;gt;{{gameabbrevmd|RTDX}}|It swaps your held item with a target&#039;s held item. The move succeeds even if either you or the target doesn&#039;t have an item.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=psychic|exp=yes|gen=The user catches the foe off guard and swaps the foe&#039;s held item with its own.|image1=Rhonda Mr Mime Trick.png|image1p=Mr. Mime}}&lt;br /&gt;
{{movep|type=psychic|ms=122|pkmn=Mr. Mime|method=Mr. Mime&#039;s body becomes outlined in light blue, and an item it&#039;s holding glows white and disappears. It then switches places with an item the opponent was holding.}}&lt;br /&gt;
{{movebtm|type=psychic|user=Rhonda (AG141)|user1=Rhonda&#039;s Mr. Mime|startcode=AG141|startname=Hail to the Chef!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Phantom Thief Pokémon 7===&lt;br /&gt;
{{movemanga|type=psychic|exp=yes|gen=The user switches its held item with the opponent&#039;s.|image1=Hiori Mime Jr Trick.png|image1p=Mime Jr.}}&lt;br /&gt;
{{movep|type=psychic|ms=439|pkmn=Mime Jr.|method=Mime Jr. glows brightly and any item it is holding teleports into the opponent&#039;s hand and vice versa.}}&lt;br /&gt;
{{movebtmManga|type=psychic|user=Hiori|user1=Hiori&#039;s Mime Jr.|startcode=P7-02|startname=Seven&#039;s Real Identity In Peril|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=psychic|exp=yes|gen=The user switches its held item with the opponent&#039;s.|image1=Amber Volbeat Trick Adventures.png|image1p=Volbeat|image2=Emerald Linoone Trick Adventures.png|image2p=Linoone}}&lt;br /&gt;
{{movep|type=psychic|ms=313|pkmn=Volbeat|method=Volbeat opens his arms and legs wide and a wide beam of light comes off his body and covers the opponent. The held items of both Pokémon then switch.}}&lt;br /&gt;
{{movemid|type=psychic|user=Amber (Adventures)|user1=Amber&#039;s Volbeat|startcode=PS242|startname=Very Vexing Volbeat|notes=Debut}}&lt;br /&gt;
{{movep|type=psychic|ms=264|pkmn=Linoone|method=Linoone quickly switches its held item with the opponent&#039;s.}}&lt;br /&gt;
{{movebtmManga|type=psychic|user=Linoone (Pokémon)|user1=The Battle Factory&#039;s Linoone|startcode=PS306|startname=Pinsir Me, I Must Be Dreaming}}&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;
|genIII=Trick III&lt;br /&gt;
|genIV=Trick IV&lt;br /&gt;
|genV=Trick V&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|genVI=Trick VI&lt;br /&gt;
|genVII=Trick VII&lt;br /&gt;
|genVIII=Trick VIII&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|Colo=Trick Colo&lt;br /&gt;
|XD=Trick XD&lt;br /&gt;
|PBR=Trick PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Psychic&lt;br /&gt;
|PMDRB=Trick PMD RB&lt;br /&gt;
|PSMD=Trick PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Generation IV]], despite being able to learn this move via [[Move Tutor]], it will always fail when used by {{p|Arceus}} due to its Ability {{a|Multitype}}. In later generations, it can successfully use the move as long as neither Pokémon is holding a [[Plate]].&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{psychic color}}|bordercolor={{psychic color light}}&lt;br /&gt;
|zh_yue=戲法 &#039;&#039;{{tt|Heifaat|Trick}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;騙術 &#039;&#039;{{tt|Pinseuht|Trick}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=戲法 / 戏法 &#039;&#039;{{tt|Xìfǎ|Trick}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;騙術 / 骗术 &#039;&#039;{{tt|Piànshù|Trick}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|nl=Truc&lt;br /&gt;
|fi=Temppu&lt;br /&gt;
|fr=Tour de Magie&amp;lt;sup&amp;gt;{{gen|VIII}}+&amp;lt;/sup&amp;gt;&amp;lt;br&amp;gt;Tourmagik&amp;lt;sup&amp;gt;{{gen|III}}–{{gen|VII}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|de=Trickbetrug&lt;br /&gt;
|el=Ταχυδακτυλουργικό&lt;br /&gt;
|it=Raggiro&lt;br /&gt;
|ko=트릭 {{tt|&#039;&#039;Teurik&#039;&#039;|Trick}}&lt;br /&gt;
|pt_br=Travessura (games, TCG, manga)&amp;lt;br&amp;gt;Truque&lt;br /&gt;
|pt_eu=Truque&lt;br /&gt;
|sr=Trik&lt;br /&gt;
|es=Truco&lt;br /&gt;
|vi=Gian Manh&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Trick}}&lt;br /&gt;
{{Generation VIII TMs}}&lt;br /&gt;
{{Generation IX TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can jam]]&lt;br /&gt;
[[Category:Item-manipulating moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Trickbetrug]]&lt;br /&gt;
[[es:Truco]]&lt;br /&gt;
[[fr:Tour de Magie]]&lt;br /&gt;
[[it:Raggiro]]&lt;br /&gt;
[[ja:トリック]]&lt;br /&gt;
[[zh:戏法（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Recycle_(move)&amp;diff=4238488</id>
		<title>Recycle (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Recycle_(move)&amp;diff=4238488"/>
		<updated>2025-02-12T21:18:01Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{search|move|the {{TCG|Item card}} or {{TCG|Trainer card}} in the {{Trading Card Game}}|Recycle (Fossil 61)}}&lt;br /&gt;
{{MoveInfobox&lt;br /&gt;
|n=278&lt;br /&gt;
|name=Recycle&lt;br /&gt;
|jname=リサイクル&lt;br /&gt;
|jtrans=Recycle&lt;br /&gt;
|jtranslit=Risaikuru&lt;br /&gt;
|gameimage=Recycle IX.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=—&lt;br /&gt;
|gen=III&lt;br /&gt;
|category=Smart&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=Steals the Voltage of the Pokémon that just went.&lt;br /&gt;
|category6=Clever&lt;br /&gt;
|appeal6=1&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Shows off the Pokémon&#039;s appeal about as well as the move used just before it.&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=no&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=yes&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|na=no&lt;br /&gt;
|tm4=yes&lt;br /&gt;
|tm#4=67&lt;br /&gt;
|mtb2w2=yes&lt;br /&gt;
|mtoras=yes&lt;br /&gt;
|mtusum=yes&lt;br /&gt;
|tmbdsp=yes&lt;br /&gt;
|tm#bdsp=67&lt;br /&gt;
|target=self&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Recycle&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;リサイクル&#039;&#039;&#039; &#039;&#039;Recycle&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation III]]. It is [[TM67]] in [[Generation IV]] and [[Pokémon Brilliant Diamond and Shining Pearl]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
Recycle allows the user to recover a [[held item]] (such as a [[Berry]]) that has been previously consumed in battle.&lt;br /&gt;
&lt;br /&gt;
Items that were transferred to another Pokémon (such as via {{m|Thief}}) are not consumed by that process, so cannot be recovered by Recycle simply due to being transferred. Once an item is recovered (including via other effects such as {{a|Harvest}} or {{a|Pickup}}), it is no longer treated as a consumed item, so it cannot be restored again unless it is consumed again.&lt;br /&gt;
&lt;br /&gt;
Recycle cannot recover items that were {{m|Knock Off|knocked off}}. Recycle cannot restore a burst [[Air Balloon]] or an item destroyed by {{m|Incinerate}}.&lt;br /&gt;
&lt;br /&gt;
===Generations III and IV===&lt;br /&gt;
Recycle allows the user to recover a held item that a Pokémon in its current position had previously consumed during the battle. Recycle fails if the user already has a held item.&lt;br /&gt;
&lt;br /&gt;
Consumed items are tracked by position on the field. A Pokémon can recycle an item that was consumed by a different Pokémon, as long as that item was consumed while it was in the user&#039;s current position. Each position only tracks one consumed item at a time; if a Pokémon consumes an item, then another Pokémon is switched into that position and consumes another item, the original consumed item is no longer tracked—it cannot be restored, even if the other item is restored.&lt;br /&gt;
&lt;br /&gt;
Items consumed by {{m|Fling}}, {{m|Natural Gift}}, {{m|Bug Bite}}, and {{m|Pluck}} can be recovered; they are considered to be consumed in the position of the Pokémon that was holding the item before the move was used.&lt;br /&gt;
&lt;br /&gt;
Recycle cannot recover items that were knocked off by {{m|Knock Off}}. (In these generations, knocked-off items remain visible on the summary screen and are restored at the end of the battle.) If a Pokémon has a knocked off item and uses Recycle, it can successfully recover a consumed item (but not the knocked off item), but how this functions varies between generations.&lt;br /&gt;
* In Generation III, if a Pokémon with a knocked-off item uses Recycle, it recovers the consumed item and its knocked-off item is permanently lost (it will not be restored at the end of the battle). Its new item now functions as its held item. If its original held item was [[Mail]], this can cause [[List of battle glitches in Generation III#Mail corruption|corruption]].&lt;br /&gt;
* In Generation IV, if a Pokémon with a knocked-off item uses Recycle, it recovers the consumed item as its current held item, but it is still listed as holding its knocked-off item on its summary screen. At the end of the battle, its knocked-off item is restored (regardless of what its held item was at the end of the battle).&lt;br /&gt;
** If a Pokémon replaces its knocked-off item in this way, it can use that held item, but {{m|Trick}} and {{m|Switcheroo}} fail if used by or targeting that Pokémon, and its held item cannot be stolen by {{m|Thief}} or {{m|Covet}} (nor can it steal items by using those moves). Bug Bite, Pluck, and Fling all function normally with the recovered item, however.&lt;br /&gt;
&lt;br /&gt;
===Generation V onwards===&lt;br /&gt;
Recycle allows the user to recover a held item that the user had previously consumed during the battle. Recycle fails if the user already has a held item.&lt;br /&gt;
&lt;br /&gt;
Consumed items are tracked by the Pokémon that consumed them, and are not forgotten even if switched out. A Pokémon may only have one consumed item at a time; if a Pokémon consumes an item, then obtains another and consumes it, the original consumed item cannot be restored, even if the second item is restored and transferred to another Pokémon.&lt;br /&gt;
&lt;br /&gt;
Recycle can no longer restore items lost via {{m|Bug Bite}} and {{m|Pluck}}. Recycle can restore the user&#039;s Berry if it was consumed via {{m|Teatime}}.&lt;br /&gt;
&lt;br /&gt;
Recycle can now be stolen by {{m|Snatch}}.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-Recycle, the user&#039;s {{stat|Speed}} stat rises by two stages, then the move itself will fail after obtaining the Z-Power since it won&#039;t be possible to restore its own Z-Crystal.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}|Recycles a used item for one more use.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|A move that recycles a used item for use once more.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|Recycles a used hold item for one more use.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPt}}{{gameabbrevss|PBR}}|The user recycles a single-use item that has been used in battle so it can be used again.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|HGSS}}|The user recycles a held item that has been used in battle so it can be used again.{{tt|*|Move}}&amp;lt;br&amp;gt;The user recycles a single-use item that has been used in battle so it can be used again.{{tt|*|TM}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user recycles a held item that has been used in battle so it can be used again.}}&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/Games|Normal|g1=none|g2=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/8|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|33|32|32|32|32|24|24}}&lt;br /&gt;
{{Moveentry/8|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form||||||1}}&lt;br /&gt;
{{Moveentry/8|0137|Porygon|type=Normal|1|Mineral|Mineral|44|34|34|34|34|5|5|5}}&lt;br /&gt;
{{Moveentry/8|0143|Snorlax|type=Normal|1|Monster|Monster|−|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/8|0233|Porygon2|type=Normal|1|Mineral|Mineral|44|34|34|34|34|1|1|1}}&lt;br /&gt;
{{Moveentry/8|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||32|32|32|32|24|24}}&lt;br /&gt;
{{Moveentry/8|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered||17|17|1{{sup/6|ORAS}}|1|8|8|8}}&lt;br /&gt;
{{Moveentry/8|0474|Porygon-Z|type=Normal|1|Mineral|Mineral||−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/8|0511|Pansage|type=Grass|1|Field|Field|||37|37|37|}}&lt;br /&gt;
{{Moveentry/8|0513|Pansear|type=Fire|1|Field|Field|||37|37|37|}}&lt;br /&gt;
{{Moveentry/8|0515|Panpour|type=Water|1|Field|Field|||37|37|37|}}&lt;br /&gt;
{{Moveentry/8|0568|Trubbish|type=Poison|1|Mineral|Mineral|||3|3|3|3}}&lt;br /&gt;
{{Moveentry/8|0569|Garbodor|type=Poison|1|Mineral|Mineral|||1, 3|1, 3|1, 3|1}}&lt;br /&gt;
{{Moveentry/8|0707|Klefki|type=Steel|type2=Fairy|1|Mineral|Mineral||||40|40|28||28}}&lt;br /&gt;
{{Moveentry/8|0841|Flapple|type=Grass|type2=Dragon|2|Grass|Dragon||||||1||1}}&lt;br /&gt;
{{Moveentry/8|0842|Appletun|type=Grass|type2=Dragon|2|Grass|Dragon||||||1||1}}&lt;br /&gt;
{{Moveentry/8|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like||||||1}}&lt;br /&gt;
{{Moveentry/8|1011|Dipplin|type=Grass|type2=Dragon|2|Grass|Dragon||||||||1}}&lt;br /&gt;
{{Moveentry/8|1019|Hydrapple|type=Grass|type2=Dragon|2|Grass|Dragon||||||||1}}&lt;br /&gt;
{{Movefoot|Normal|8}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g2=none|g3=none|g4=none|g5=none|g6=none|g7=none|g8=1|g8g={{gameabbrev8|SwSh}}}}&lt;br /&gt;
{{Moveentry/2|0088|formsig=A|Grimer|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form||✔{{tt|*|Version 2.0.1 onwards}}}}&lt;br /&gt;
{{Moveentry/2|0100|Voltorb|type=Electric|1|Mineral|Mineral||✔}}&lt;br /&gt;
{{Moveentry/2|0100|formsig=H|Voltorb|type=Electric|type2=Grass|1|Mineral|Mineral|form=Hisuian Form||✔}}&lt;br /&gt;
{{Moveentry/2|0433|Chingling|type=Psychic|1|Amorphous|Amorphous||✔}}&lt;br /&gt;
{{Moveentry/2|0436|Bronzor|type=Steel|type2=Psychic|1|Mineral|Mineral|−|✔}}&lt;br /&gt;
{{Moveentry/2|0840|Applin|type=Grass|type2=Dragon|2|Grass|Dragon|✔|✔}}&lt;br /&gt;
{{Movefoot|Normal|7}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]/[[Move Tutor]]===&lt;br /&gt;
{{Movehead/TMGames|Normal|g1=none|g2=none|g3=none|g9=none&lt;br /&gt;
|g4tm=67&lt;br /&gt;
|g5tm=tutor|g5g={{gameabbrev5|B2W2}}&lt;br /&gt;
|g6tm=tutor|g6g={{gameabbrev6|ORAS}}&lt;br /&gt;
|g7=1|g7tm=tutor|g7g={{gameabbrev7|USUM}}&lt;br /&gt;
|g8=1|g8tm=67|g8g={{gameabbrev8|BDSP}}}}&lt;br /&gt;
{{Moveentry/5|0026|formsig=A|Raichu|type=Electric|type2=Psychic|2|Field|Fairy|form=Alolan Form||||✔|}}&lt;br /&gt;
{{Moveentry/5|0035|Clefairy|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0036|Clefable|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0039|Jigglypuff|type=Normal|type2=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0040|Wigglytuff|type=Normal|type2=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0063|Abra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0064|Kadabra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0065|Alakazam|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0079|Slowpoke|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0080|Slowbro|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0081|Magnemite|type=Electric|type2=Steel|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0082|Magneton|type=Electric|type2=Steel|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0089|formsig=A|Muk|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form||||✔|}}&lt;br /&gt;
{{Moveentry/5|0096|Drowzee|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0097|Hypno|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0113|Chansey|type=Normal|1|Fairy|Fairy|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0120|Staryu|type=Water|1|Water 3|Water 3|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0121|Starmie|type=Water|type2=Psychic|1|Water 3|Water 3|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0124|Jynx|type=Ice|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0137|Porygon|type=Normal|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0143|Snorlax|type=Normal|1|Monster|Monster|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0150|Mewtwo|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0163|Hoothoot|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0164|Noctowl|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0174|Igglybuff|type=Normal|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0199|Slowking|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0203|Girafarig|type=Normal|type2=Psychic|1|Field|Field|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0225|Delibird|type=Ice|type2=Flying|2|Water 1|Field|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0233|Porygon2|type=Normal|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0238|Smoochum|type=Ice|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0242|Blissey|type=Normal|1|Fairy|Fairy|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0280|Ralts|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0281|Kirlia|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0282|Gardevoir|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0307|Meditite|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0308|Medicham|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0325|Spoink|type=Psychic|1|Field|Field|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0326|Grumpig|type=Psychic|1|Field|Field|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0327|Spinda|type=Normal|2|Field|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0337|Lunatone|type=Rock|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0338|Solrock|type=Rock|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0343|Baltoy|type=Ground|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0344|Claydol|type=Ground|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0352|Kecleon|type=Normal|1|Field|Field|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0358|Chimecho|type=Psychic|1|Amorphous|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0385|Jirachi|type=Steel|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0386|Deoxys|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0425|Drifloon|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0426|Drifblim|type=Ghost|type2=Flying|1|Amorphous|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0433|Chingling|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0436|Bronzor|type=Steel|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0437|Bronzong|type=Steel|type2=Psychic|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0440|Happiny|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0462|Magnezone|type=Electric|type2=Steel|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0474|Porygon-Z|type=Normal|1|Mineral|Mineral|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0475|Gallade|type=Psychic|type2=Fighting|2|Human-Like|Amorphous|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0480|Uxie|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0481|Mesprit|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0482|Azelf|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0488|Cresselia|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0493|Arceus|type=Normal|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/5|0511|Pansage|type=Grass|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0512|Simisage|type=Grass|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0513|Pansear|type=Fire|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0514|Simisear|type=Fire|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0515|Panpour|type=Water|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0516|Simipour|type=Water|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0568|Trubbish|type=Poison|1|Mineral|Mineral||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0569|Garbodor|type=Poison|1|Mineral|Mineral||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0574|Gothita|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0575|Gothorita|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0576|Gothitelle|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0599|Klink|type=Steel|1|Mineral|Mineral||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0600|Klang|type=Steel|1|Mineral|Mineral||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0601|Klinklang|type=Steel|1|Mineral|Mineral||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0605|Elgyem|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0606|Beheeyem|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0631|Heatmor|type=Fire|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0648|Meloetta|type=Normal|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0649|Genesect|type=Bug|type2=Steel|1|No Eggs Discovered|No Eggs Discovered|form=All forms||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0654|Braixen|type=Fire|1|Field|Field|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0655|Delphox|type=Fire|type2=Psychic|1|Field|Field|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0659|Bunnelby|type=Normal|1|Field|Field|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0660|Diggersby|type=Normal|type2=Ground|1|Field|Field|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0677|Espurr|type=Psychic|1|Field|Field|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0678|Meowstic|type=Psychic|1|Field|Field|form=All forms|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0702|Dedenne|type=Electric|type2=Fairy|2|Field|Fairy|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0707|Klefki|type=Steel|type2=Fairy|1|Mineral|Mineral|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0720|Hoopa|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||✔|✔|}}&lt;br /&gt;
{{Moveentry/5|0755|Morelull|type=Grass|type2=Fairy|1|Grass|Grass||||✔|}}&lt;br /&gt;
{{Moveentry/5|0756|Shiinotic|type=Grass|type2=Fairy|1|Grass|Grass||||✔|}}&lt;br /&gt;
{{Moveentry/5|0769|Sandygast|type=Ghost|type2=Ground|1|Amorphous|Amorphous||||✔|}}&lt;br /&gt;
{{Moveentry/5|0770|Palossand|type=Ghost|type2=Ground|1|Amorphous|Amorphous||||✔|}}&lt;br /&gt;
{{Moveentry/5|0771|Pyukumuku|type=Water|1|Water 1|Water 1||||✔|}}&lt;br /&gt;
{{Moveentry/5|0800|Necrozma|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=All forms||||✔|}}&lt;br /&gt;
{{Moveentry/5|0805|Stakataka|type=Rock|type2=Steel|1|No Eggs Discovered|No Eggs Discovered||||✔|}}&lt;br /&gt;
{{Moveentry/5|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||✔|}}&lt;br /&gt;
{{Movefoot|Normal|5}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation V]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0081|Magnemite|type=Electric|type2=Steel|1|Mineral|Mineral|{{pkmn|Dream World}} - {{dwa|Rugged Mountain}}}}&lt;br /&gt;
{{Moveentry/1|0120|Staryu|type=Water|1|Water 3|Water 3|{{pkmn|Dream World}} - {{dwa|Sparkling Sea}}}}&lt;br /&gt;
{{Moveentry/1|0143|Snorlax|type=Normal|1|Monster|Monster|{{pkmn|Dream World}} - {{dwa|Dream Park}}}}&lt;br /&gt;
{{Moveentry/1|0163|Hoothoot|type=Normal|type2=Flying|1|Flying|Flying|{{pkmn|Dream World}} - {{dwa|Windswept Sky}}}}&lt;br /&gt;
{{Moveentry/1|0325|Spoink|type=Psychic|1|Field|Field|{{pkmn|Dream World}} - {{dwa|Spooky Manor}}}}&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 the [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|Rescue Team]], [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers]] and [[Pokémon Mystery Dungeon (WiiWare)|Adventure Squad]] series, Recycle turns a [[Used TM]] into the TM it contained. In the Explorers series, it cannot turn back Used TMs that originally contained Recycle.&lt;br /&gt;
&lt;br /&gt;
From [[Pokémon Mystery Dungeon: Gates to Infinity|Gates to Infinity]] onwards, Recycle instead converts a {{DL|Seed|Plain Seed}} into a random [[Seed]] or an [[Oran Berry]]. However, they cannot be converted to {{DL|Seed|Joy Seed|Joy}}, {{DL|Seed|Life Seed|Life}}, or {{DL|Seed|Doom Seed}}s.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=RB|pp=17|acc=—%|range=Others|target=Others}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=10|acc=—%|range=Others|target=Others}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=10|acc=—%|range=Others|target=Others}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=30|ppmax=99|acc=—%|range=Others|target=Others}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=30|ppmax=99|acc=—%|range=Others|target=Others}}&lt;br /&gt;
{{MDMovefoot|type=normal|RB=yes|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Repairs the item [[File:MDBag TM Sprite.png]]Used TM and restores it to its original, unused state.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Repairs TMs designated as a Used TM and restores them so they can be reused. Caution: you can&#039;t recycle a Used TM that taught Recycle.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|わざマシン『しようごマシン』を つかうまえの じょうたいに もどすことが できる ただし わざマシン『リサイクル』は もとに もどせないので きをつけよう！|Repairs TMs designated as a Used TM and restores them so they can be reused. Caution: you can&#039;t recycle a Used TM that taught Recycle!}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|It changes the [[File:MDBag Seed V Sprite.png]]Plain Seed left over after a [[File:MDBag Seed V Sprite.png]]Reviver Seed is used up to a different item.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|It changes a [[File:MDBag Seed VI Sprite.png]]Plain Seed to a different item.{{tt|*|Move Summary}}&amp;lt;br&amp;gt;It changes the [[File:MDBag Seed VI Sprite.png]]Plain Seed to a different item. A [[File:MDBag Seed VI Sprite.png]]Plain Seed is what remains after using a [[File:MDBag Seed VI Sprite.png]]Reviver Seed or [[File:MDBag Seed VI Sprite.png]]Tiny Reviver Seed to revive.{{tt|*|Move Description}}}}&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=normal|exp=yes|gen=The user reuses the effect of an item it already used.|image1=Blue Porygon2 Recycle.png|image1p=Porygon2}}&lt;br /&gt;
{{movep|type=normal|ms=233|pkmn=Porygon2|method=Porygon2 reuses the effect of an item that it has already used.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Blue&#039;s Porygon2|startcode=PS285|startname=Once More into the Unown|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=Normal&lt;br /&gt;
|genIII=Recycle III&lt;br /&gt;
|genIV=Recycle IV&lt;br /&gt;
|genV=Recycle V&lt;br /&gt;
|genVI=Recycle VI&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genVII=Recycle VII&lt;br /&gt;
|genVIII=Recycle VIII&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=normal&lt;br /&gt;
|Colo=Recycle Colo&lt;br /&gt;
|XD=Recycle XD&lt;br /&gt;
|PBR=Recycle PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=normal&lt;br /&gt;
|PMDRB=Recycle PMD RB&lt;br /&gt;
|PMDTDS=Recycle PMD TDS&lt;br /&gt;
|PMDGTI=Recycle PMD GTI&lt;br /&gt;
|PSMD=Recycle PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Generation III]], the status screen erroneously states that the move has 100% accuracy, even though it targets the user (thus it ignores accuracy and evasion checks).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color light}}&lt;br /&gt;
|zh_yue=回收利用 &#039;&#039;{{tt|Wùihsāu Leihyuhng|Recycle}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;回收 &#039;&#039;{{tt|Wùihsāu|Reclaim}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=回收利用 &#039;&#039;{{tt|Huíshōu Lìyòng|Recycle}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;回收 &#039;&#039;{{tt|Huíshōu|Reclaim}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Recyclage&lt;br /&gt;
|de=Aufbereitung&lt;br /&gt;
|el=Ανακύκλωση &#039;&#039;Anakýklusi&#039;&#039;&lt;br /&gt;
|it=Riciclo&lt;br /&gt;
|ko=리사이클 {{tt|&#039;&#039;Risaikeul&#039;&#039;|Recycle}}&lt;br /&gt;
|pt_br=Reciclagem&lt;br /&gt;
|es=Reciclaje&lt;br /&gt;
|ru=Переработка &#039;&#039;Pererabotka&#039;&#039;&lt;br /&gt;
|sr=Recikliranje&lt;br /&gt;
|vi=Tái Sử Dụng&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Generation IV TMs}}&lt;br /&gt;
{{Generation VIII TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Item-manipulating moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Aufbereitung]]&lt;br /&gt;
[[es:Reciclaje]]&lt;br /&gt;
[[fr:Recyclage]]&lt;br /&gt;
[[it:Riciclo]]&lt;br /&gt;
[[ja:リサイクル]]&lt;br /&gt;
[[zh:回收利用（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Natural_Gift_(move)&amp;diff=4238194</id>
		<title>Natural Gift (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Natural_Gift_(move)&amp;diff=4238194"/>
		<updated>2025-02-12T16:17:41Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=363&lt;br /&gt;
|name=Natural Gift&lt;br /&gt;
|jname=しぜんのめぐみ&lt;br /&gt;
|jtrans=Nature&#039;s Blessing&lt;br /&gt;
|jtranslit=Shizen no Megumi&lt;br /&gt;
|gameimage=Natural Gift VII.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=100&lt;br /&gt;
|bdesc=The foe is hit with a Physical attack. Depending on the user&#039;s held berry, the type and base power of the attack will vary.&lt;br /&gt;
|gen=IV&lt;br /&gt;
|tm4=yes&lt;br /&gt;
|tm#4=83&lt;br /&gt;
|na=no&lt;br /&gt;
|category=Cool&lt;br /&gt;
|appealsc=2&lt;br /&gt;
|scdesc=Earn +2 if the Pokémon performs last in the turn.&lt;br /&gt;
|category6=Clever&lt;br /&gt;
|appeal6=1&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Works better the more the crowd is excited.&lt;br /&gt;
|pokefordex=Natural%20Gift&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=no&lt;br /&gt;
|flag7=yes&lt;br /&gt;
|flag8=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Natural Gift&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;しぜんのめぐみ&#039;&#039;&#039; &#039;&#039;Nature&#039;s Blessing&#039;&#039;) is a {{type|Normal}} [[move]] introduced in [[Generation IV]]. It was [[TM83]] in Generation IV.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===Generation IV===&lt;br /&gt;
Natural Gift inflicts damage and has no secondary effect. Natural Gift&#039;s power and type vary depending on the user&#039;s held [[Berry]]. Using Natural Gift consumes the held Berry, even if the move fails due to accuracy miss. The move will fail if the user is not holding a Berry, or if it cannot use its held Berry (due to {{a|Klutz}}, {{m|Magic Room}}, or {{m|Embargo}}).&lt;br /&gt;
&lt;br /&gt;
If Natural Gift cannot be fully executed due to [[rain|heavy rain]] or [[harsh sunlight|extremely harsh sunlight]], the Berry is not consumed.&lt;br /&gt;
&lt;br /&gt;
Natural Gift is affected by {{a|Normalize}}.&lt;br /&gt;
&lt;br /&gt;
===Generation V to VII===&lt;br /&gt;
Natural Gift is unaffected by Normalize, {{a|Pixilate}}, {{a|Refrigerate}}, and {{a|Aerilate}}. However, it is affected by {{m|Ion Deluge}} (if the move would be Normal-type) and {{m|Electrify}}.&lt;br /&gt;
&lt;br /&gt;
If a [[Red Card]] forces the user to leave the battlefield, the Berry is not consumed. If {{m|Powder}} prevents the move from being executed, the Berry is not consumed.&lt;br /&gt;
&lt;br /&gt;
Consuming a berry via Natural Gift has nothing to do with {{a|Unnerve}}, {{a|Cheek Pouch}}, or {{m|Belch}}.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII onwards===&lt;br /&gt;
Natural Gift cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
===Power===&lt;br /&gt;
The type and power of Natural Gift vary as follows.&lt;br /&gt;
{| class=&amp;quot;roundy sortable&amp;quot; style=&amp;quot;text-align:center; margin:auto; border: 3px solid #{{normal color dark}}; background: #{{normal color}}&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{normal color light}}; {{roundytl|5px}}&amp;quot; | No.&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; class=&amp;quot;unsortable&amp;quot; style=&amp;quot;background-color: #{{normal color light}}&amp;quot; | Spr&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{normal color light}}&amp;quot; | Berry&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{normal color light}}&amp;quot; | Type&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{normal color light}}; {{roundytr|5px}}&amp;quot; | Power&lt;br /&gt;
|- style=&amp;quot;background-color: #{{normal color light}}&amp;quot;&lt;br /&gt;
! IV-V&lt;br /&gt;
! VI&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 01&lt;br /&gt;
| {{bag/s|Cheri Berry|SV}}&lt;br /&gt;
| {{color2|000|Cheri Berry}}&lt;br /&gt;
{{typetable|Fire}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 02&lt;br /&gt;
| {{bag/s|Chesto Berry|SV}}&lt;br /&gt;
| {{color2|000|Chesto Berry}}&lt;br /&gt;
{{typetable|Water}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 03&lt;br /&gt;
| {{bag/s|Pecha Berry|SV}}&lt;br /&gt;
| {{color2|000|Pecha Berry}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 04&lt;br /&gt;
| {{bag/s|Rawst Berry|SV}}&lt;br /&gt;
| {{color2|000|Rawst Berry}}&lt;br /&gt;
{{typetable|Grass}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 05&lt;br /&gt;
| {{bag/s|Aspear Berry|SV}}&lt;br /&gt;
| {{color2|000|Aspear Berry}}&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 06&lt;br /&gt;
| {{bag/s|Leppa Berry|SV}}&lt;br /&gt;
| {{color2|000|Leppa Berry}}&lt;br /&gt;
{{typetable|Fighting}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 07&lt;br /&gt;
| {{bag/s|Oran Berry|SV}}&lt;br /&gt;
| {{color2|000|Oran Berry}}&lt;br /&gt;
{{typetable|Poison}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 08&lt;br /&gt;
| {{bag/s|Persim Berry|SV}}&lt;br /&gt;
| {{color2|000|Persim Berry}}&lt;br /&gt;
{{typetable|Ground}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 09&lt;br /&gt;
| {{bag/s|Lum Berry|SV}}&lt;br /&gt;
| {{color2|000|Lum Berry}}&lt;br /&gt;
{{typetable|Flying}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 10&lt;br /&gt;
| {{bag/s|Sitrus Berry|SV}}&lt;br /&gt;
| {{color2|000|Sitrus Berry}}&lt;br /&gt;
{{typetable|Psychic}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 11&lt;br /&gt;
| {{bag/s|Figy Berry|SV}}&lt;br /&gt;
| {{color2|000|Figy Berry}}&lt;br /&gt;
{{typetable|Bug}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 12&lt;br /&gt;
| {{bag/s|Wiki Berry|SV}}&lt;br /&gt;
| {{color2|000|Wiki Berry}}&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 13&lt;br /&gt;
| {{bag/s|Mago Berry|SV}}&lt;br /&gt;
| {{color2|000|Mago Berry}}&lt;br /&gt;
{{typetable|Ghost}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 14&lt;br /&gt;
| {{bag/s|Aguav Berry|SV}}&lt;br /&gt;
| {{color2|000|Aguav Berry}}&lt;br /&gt;
{{typetable|Dragon}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 15&lt;br /&gt;
| {{bag/s|Iapapa Berry|SV}}&lt;br /&gt;
| {{color2|000|Iapapa Berry}}&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 16&lt;br /&gt;
| {{bag/s|Razz Berry|SV}}&lt;br /&gt;
| {{color2|000|Razz Berry}}&lt;br /&gt;
{{typetable|Steel}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 17&lt;br /&gt;
| {{bag/s|Bluk Berry|SV}}&lt;br /&gt;
| {{color2|000|Bluk Berry}}&lt;br /&gt;
{{typetable|Fire}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 18&lt;br /&gt;
| {{bag/s|Nanab Berry|SV}}&lt;br /&gt;
| {{color2|000|Nanab Berry}}&lt;br /&gt;
{{typetable|Water}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 19&lt;br /&gt;
| {{bag/s|Wepear Berry|SV}}&lt;br /&gt;
| {{color2|000|Wepear Berry}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 20&lt;br /&gt;
| {{bag/s|Pinap Berry|SV}}&lt;br /&gt;
| {{color2|000|Pinap Berry}}&lt;br /&gt;
{{typetable|Grass}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 21&lt;br /&gt;
| {{bag/s|Pomeg Berry|SV}}&lt;br /&gt;
| {{color2|000|Pomeg Berry}}&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 22&lt;br /&gt;
| {{bag/s|Kelpsy Berry|SV}}&lt;br /&gt;
| {{color2|000|Kelpsy Berry}}&lt;br /&gt;
{{typetable|Fighting}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 23&lt;br /&gt;
| {{bag/s|Qualot Berry|SV}}&lt;br /&gt;
| {{color2|000|Qualot Berry}}&lt;br /&gt;
{{typetable|Poison}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 24&lt;br /&gt;
| {{bag/s|Hondew Berry|SV}}&lt;br /&gt;
| {{color2|000|Hondew Berry}}&lt;br /&gt;
{{typetable|Ground}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 25&lt;br /&gt;
| {{bag/s|Grepa Berry|SV}}&lt;br /&gt;
| {{color2|000|Grepa Berry}}&lt;br /&gt;
{{typetable|Flying}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 26&lt;br /&gt;
| {{bag/s|Tamato Berry|SV}}&lt;br /&gt;
| {{color2|000|Tamato Berry}}&lt;br /&gt;
{{typetable|Psychic}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 27&lt;br /&gt;
| {{bag/s|Cornn Berry|SV}}&lt;br /&gt;
| {{color2|000|Cornn Berry}}&lt;br /&gt;
{{typetable|Bug}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 28&lt;br /&gt;
| {{bag/s|Magost Berry|SV}}&lt;br /&gt;
| {{color2|000|Magost Berry}}&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 29&lt;br /&gt;
| {{bag/s|Rabuta Berry|SV}}&lt;br /&gt;
| {{color2|000|Rabuta Berry}}&lt;br /&gt;
{{typetable|Ghost}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 30&lt;br /&gt;
| {{bag/s|Nomel Berry|SV}}&lt;br /&gt;
| {{color2|000|Nomel Berry}}&lt;br /&gt;
{{typetable|Dragon}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 31&lt;br /&gt;
| {{bag/s|Spelon Berry|SV}}&lt;br /&gt;
| {{color2|000|Spelon Berry}}&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 32&lt;br /&gt;
| {{bag/s|Pamtre Berry|SV}}&lt;br /&gt;
| {{color2|000|Pamtre Berry}}&lt;br /&gt;
{{typetable|Steel}}&lt;br /&gt;
| 70&lt;br /&gt;
| 90&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 33&lt;br /&gt;
| {{bag/s|Watmel Berry|SV}}&lt;br /&gt;
| {{color2|000|Watmel Berry}}&lt;br /&gt;
{{typetable|Fire}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 34&lt;br /&gt;
| {{bag/s|Durin Berry|SV}}&lt;br /&gt;
| {{color2|000|Durin Berry}}&lt;br /&gt;
{{typetable|Water}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 35&lt;br /&gt;
| {{bag/s|Belue Berry|SV}}&lt;br /&gt;
| {{color2|000|Belue Berry}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 36&lt;br /&gt;
| {{bag/s|Occa Berry|SV}}&lt;br /&gt;
| {{color2|000|Occa Berry}}&lt;br /&gt;
{{typetable|Fire}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 37&lt;br /&gt;
| {{bag/s|Passho Berry|SV}}&lt;br /&gt;
| {{color2|000|Passho Berry}}&lt;br /&gt;
{{typetable|Water}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 38&lt;br /&gt;
| {{bag/s|Wacan Berry|SV}}&lt;br /&gt;
| {{color2|000|Wacan Berry}}&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 39&lt;br /&gt;
| {{bag/s|Rindo Berry|SV}}&lt;br /&gt;
| {{color2|000|Rindo Berry}}&lt;br /&gt;
{{typetable|Grass}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 40&lt;br /&gt;
| {{bag/s|Yache Berry|SV}}&lt;br /&gt;
| {{color2|000|Yache Berry}}&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 41&lt;br /&gt;
| {{bag/s|Chople Berry|SV}}&lt;br /&gt;
| {{color2|000|Chople Berry}}&lt;br /&gt;
{{typetable|Fighting}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 42&lt;br /&gt;
| {{bag/s|Kebia Berry|SV}}&lt;br /&gt;
| {{color2|000|Kebia Berry}}&lt;br /&gt;
{{typetable|Poison}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 43&lt;br /&gt;
| {{bag/s|Shuca Berry|SV}}&lt;br /&gt;
| {{color2|000|Shuca Berry}}&lt;br /&gt;
{{typetable|Ground}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 44&lt;br /&gt;
| {{bag/s|Coba Berry|SV}}&lt;br /&gt;
| {{color2|000|Coba Berry}}&lt;br /&gt;
{{typetable|Flying}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 45&lt;br /&gt;
| {{bag/s|Payapa Berry|SV}}&lt;br /&gt;
| {{color2|000|Payapa Berry}}&lt;br /&gt;
{{typetable|Psychic}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 46&lt;br /&gt;
| {{bag/s|Tanga Berry|SV}}&lt;br /&gt;
| {{color2|000|Tanga Berry}}&lt;br /&gt;
{{typetable|Bug}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 47&lt;br /&gt;
| {{bag/s|Charti Berry|SV}}&lt;br /&gt;
| {{color2|000|Charti Berry}}&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 48&lt;br /&gt;
| {{bag/s|Kasib Berry|SV}}&lt;br /&gt;
| {{color2|000|Kasib Berry}}&lt;br /&gt;
{{typetable|Ghost}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 49&lt;br /&gt;
| {{bag/s|Haban Berry|SV}}&lt;br /&gt;
| {{color2|000|Haban Berry}}&lt;br /&gt;
{{typetable|Dragon}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 50&lt;br /&gt;
| {{bag/s|Colbur Berry|SV}}&lt;br /&gt;
| {{color2|000|Colbur Berry}}&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 51&lt;br /&gt;
| {{bag/s|Babiri Berry|SV}}&lt;br /&gt;
| {{color2|000|Babiri Berry}}&lt;br /&gt;
{{typetable|Steel}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 52&lt;br /&gt;
| {{bag/s|Chilan Berry|SV}}&lt;br /&gt;
| {{color2|000|Chilan Berry}}&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
| 60&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 53&lt;br /&gt;
| {{bag/s|Liechi Berry|SV}}&lt;br /&gt;
| {{color2|000|Liechi Berry}}&lt;br /&gt;
{{typetable|Grass}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 54&lt;br /&gt;
| {{bag/s|Ganlon Berry|SV}}&lt;br /&gt;
| {{color2|000|Ganlon Berry}}&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 55&lt;br /&gt;
| {{bag/s|Salac Berry|SV}}&lt;br /&gt;
| {{color2|000|Salac Berry}}&lt;br /&gt;
{{typetable|Fighting}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 56&lt;br /&gt;
| {{bag/s|Petaya Berry|SV}}&lt;br /&gt;
| {{color2|000|Petaya Berry}}&lt;br /&gt;
{{typetable|Poison}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 57&lt;br /&gt;
| {{bag/s|Apicot Berry|SV}}&lt;br /&gt;
| {{color2|000|Apicot Berry}}&lt;br /&gt;
{{typetable|Ground}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 58&lt;br /&gt;
| {{bag/s|Lansat Berry|SV}}&lt;br /&gt;
| {{color2|000|Lansat Berry}}&lt;br /&gt;
{{typetable|Flying}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 59&lt;br /&gt;
| {{bag/s|Starf Berry|SV}}&lt;br /&gt;
| {{color2|000|Starf Berry}}&lt;br /&gt;
{{typetable|Psychic}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 60&lt;br /&gt;
| {{bag/s|Enigma Berry|SV}}&lt;br /&gt;
| {{color2|000|Enigma Berry}}&lt;br /&gt;
{{typetable|Bug}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 61&lt;br /&gt;
| {{bag/s|Micle Berry|SV}}&lt;br /&gt;
| {{color2|000|Micle Berry}}&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 62&lt;br /&gt;
| {{bag/s|Custap Berry|SV}}&lt;br /&gt;
| {{color2|000|Custap Berry}}&lt;br /&gt;
{{typetable|Ghost}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 63&lt;br /&gt;
| {{bag/s|Jaboca Berry|SV}}&lt;br /&gt;
| {{color2|000|Jaboca Berry}}&lt;br /&gt;
{{typetable|Dragon}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! 64&lt;br /&gt;
| {{bag/s|Rowap Berry|SV}}&lt;br /&gt;
| {{color2|000|Rowap Berry}}&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
| 80&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! data-sort-value=&amp;quot;65&amp;quot; | &amp;amp;mdash;&lt;br /&gt;
| {{bag/s|Roseli Berry|SV}}&lt;br /&gt;
| {{color2|000|Roseli Berry}}&lt;br /&gt;
{{typetable|Fairy}}&lt;br /&gt;
| &amp;amp;mdash;&lt;br /&gt;
| 80&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! data-sort-value=&amp;quot;66&amp;quot; | &amp;amp;mdash;&lt;br /&gt;
| {{bag/s|Kee Berry|SV}}&lt;br /&gt;
| {{color2|000|Kee Berry}}&lt;br /&gt;
{{typetable|Fairy}}&lt;br /&gt;
| &amp;amp;mdash;&lt;br /&gt;
| 100&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
! data-sort-value=&amp;quot;67&amp;quot; | &amp;amp;mdash;&lt;br /&gt;
| {{bag/s|Maranga Berry|SV}}&lt;br /&gt;
| {{color2|000|Maranga Berry}}&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
| &amp;amp;mdash;&lt;br /&gt;
| 100&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; style=&amp;quot;background-color: #{{normal color light}}; {{roundybottom|5px}}&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}|The user draws power to attack by using its held Berry. The Berry determines its type and power.{{tt|*|Move}}&amp;lt;br&amp;gt;The user draws power from the Berry it is holding to attack. The Berry determines its type and power.{{tt|*|TM}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|PBR}}&amp;lt;br&amp;gt;{{gameabbrev5|BWB2W2}}|The user draws power to attack by using its held Berry. The Berry determines its type and power.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}|The user draws power to attack by using its held Berry. The Berry determines the move&#039;s type and power.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|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/Games|Normal|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=none|g9=none}}&lt;br /&gt;
{{Moveentry/4|0043|Oddish|type=Grass|type2=Poison|1|Grass|Grass|29|29|29{{sup/6|XY}}&amp;lt;br&amp;gt;39{{sup/6|ORAS}}|39|}}&lt;br /&gt;
{{Moveentry/4|0044|Gloom|type=Grass|type2=Poison|1|Grass|Grass|35|35|35{{sup/6|XY}}&amp;lt;br&amp;gt;44{{sup/6|ORAS}}|44|}}&lt;br /&gt;
{{Moveentry/4|0102|Exeggcute|type=Grass|type2=Psychic|1|Grass|Grass|37|37|37|37|}}&lt;br /&gt;
{{Moveentry/4|0114|Tangela|type=Grass|1|Grass|Grass|40|40{{sup/5|BW}}&amp;lt;br&amp;gt;33{{sup/5|B2W2}}|33|33|}}&lt;br /&gt;
{{Moveentry/4|0152|Chikorita|type=Grass|2|Monster|Grass|23|23|23|23|}}&lt;br /&gt;
{{Moveentry/4|0153|Bayleef|type=Grass|2|Monster|Grass|26|26|26|26|}}&lt;br /&gt;
{{Moveentry/4|0154|Meganium|type=Grass|2|Monster|Grass|26|26|26|26|}}&lt;br /&gt;
{{Moveentry/4|0191|Sunkern|type=Grass|1|Grass|Grass|−|31{{sup/5|B2W2}}|31|31|}}&lt;br /&gt;
{{Moveentry/4|0192|Sunflora|type=Grass|1|Grass|Grass|−|31{{sup/5|B2W2}}|31|31|}}&lt;br /&gt;
{{Moveentry/4|0204|Pineco|type=Bug|1|Bug|Bug|20{{sup/4|DP}}&amp;lt;br&amp;gt;23{{sup/4|PtHGSS}}|23|23|23|}}&lt;br /&gt;
{{Moveentry/4|0205|Forretress|type=Bug|type2=Steel|1|Bug|Bug|20{{sup/4|DP}}&amp;lt;br&amp;gt;23{{sup/4|PtHGSS}}|23|23|23|}}&lt;br /&gt;
{{Moveentry/4|0231|Phanpy|type=Ground|1|Field|Field|19|19|19{{sup/6|XY}}&amp;lt;br&amp;gt;15{{sup/6|ORAS}}|15|}}&lt;br /&gt;
{{Moveentry/4|0249|Lugia|type=Psychic|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|51{{sup/4|DPPt}}&amp;lt;br&amp;gt;85{{sup/4|HGSS}}|85|85|85|}}&lt;br /&gt;
{{Moveentry/4|0250|Ho-Oh|type=Fire|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|51{{sup/4|DPPt}}&amp;lt;br&amp;gt;85{{sup/4|HGSS}}|85|85|85|}}&lt;br /&gt;
{{Moveentry/4|0251|Celebi|type=Psychic|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|46|46|46|46|}}&lt;br /&gt;
{{Moveentry/4|0270|Lotad|type=Water|type2=Grass|2|Water 1|Grass|15|15|15{{sup/6|XY}}&amp;lt;br&amp;gt;12{{sup/6|ORAS}}|12|}}&lt;br /&gt;
{{Moveentry/4|0333|Swablu|type=Normal|type2=Flying|2|Flying|Dragon|32|32{{sup/5|BW}}&amp;lt;br&amp;gt;21{{sup/5|B2W2}}|21{{sup/6|XY}}&amp;lt;br&amp;gt;20{{sup/6|ORAS}}|20|}}&lt;br /&gt;
{{Moveentry/4|0334|Altaria|type=Dragon|type2=Flying|2|Flying|Dragon|32|32{{sup/5|BW}}&amp;lt;br&amp;gt;21{{sup/5|B2W2}}|21{{sup/6|XY}}&amp;lt;br&amp;gt;20{{sup/6|ORAS}}|20|}}&lt;br /&gt;
{{Moveentry/4|0357|Tropius|type=Grass|type2=Flying|2|Monster|Grass|57|67|1, 67{{sup/6|XY}}&amp;lt;br&amp;gt;30{{sup/6|ORAS}}|30|}}&lt;br /&gt;
{{Moveentry/4|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered|44|49|49|49|}}&lt;br /&gt;
{{Moveentry/4|0465|Tangrowth|type=Grass|1|Grass|Grass|40|40{{sup/5|BW}}&amp;lt;br&amp;gt;33{{sup/5|B2W2}}|33|33|}}&lt;br /&gt;
{{Moveentry/4|0480|Uxie|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|66|66|1, 66|1, 66|}}&lt;br /&gt;
{{Moveentry/4|0481|Mesprit|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|66|66|1, 66|1, 66|}}&lt;br /&gt;
{{Moveentry/4|0482|Azelf|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|66|66|1, 66|1, 66|}}&lt;br /&gt;
{{Moveentry/4|0492|Shaymin|type=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|46|46|46|46|}}&lt;br /&gt;
{{Moveentry/4|0493|Arceus|type=Normal|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|1|1|1|1|}}&lt;br /&gt;
{{Moveentry/4|0511|Pansage|type=Grass|1|Field|Field||40|40|40|}}&lt;br /&gt;
{{Moveentry/4|0513|Pansear|type=Fire|1|Field|Field||40|40|40|}}&lt;br /&gt;
{{Moveentry/4|0515|Panpour|type=Water|1|Field|Field||40|40|40|}}&lt;br /&gt;
{{Moveentry/4|0661|Fletchling|type=Normal|type2=Flying|1|Flying|Flying|||29|29|}}&lt;br /&gt;
{{Moveentry/4|0662|Fletchinder|type=Fire|type2=Flying|1|Flying|Flying|||31|31|}}&lt;br /&gt;
{{Moveentry/4|0663|Talonflame|type=Fire|type2=Flying|1|Flying|Flying|||31|31|}}&lt;br /&gt;
{{Moveentry/4|0764|Comfey|type=Fairy|1|Grass|Grass||||22|}}&lt;br /&gt;
{{Moveentry/4|0780|Drampa|type=Normal|type2=Dragon|2|Monster|Dragon||||25|}}&lt;br /&gt;
{{Movefoot|Normal|4}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=none|g9=none}}&lt;br /&gt;
{{Moveentry/3|0046|Paras|type=Bug|type2=Grass|2|Bug|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0069|Bellsprout|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0084|Doduo|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0102|Exeggcute|type=Grass|type2=Psychic|1|Grass|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0113|Chansey|type=Normal|1|Fairy|Fairy|✔|✔|✔||note=Chain breed}}&lt;br /&gt;
{{Moveentry/3|0114|Tangela|type=Grass|1|Grass|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0133|Eevee|type=Normal|1|Field|Field|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0143|Snorlax|type=Normal|1|Monster|Monster|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0161|Sentret|type=Normal|1|Field|Field|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0191|Sunkern|type=Grass|1|Grass|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0241|Miltank|type=Normal|1|Field|Field|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0252|Treecko|type=Grass|2|Monster|Dragon|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0285|Shroomish|type=Grass|2|Fairy|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0315|Roselia|type=Grass|type2=Poison|2|Fairy|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0357|Tropius|type=Grass|type2=Flying|2|Monster|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0406|Budew|type=Grass|type2=Poison|2|Fairy|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0420|Cherubi|type=Grass|2|Fairy|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0440|Happiny|type=Normal|1|Fairy|Fairy|✔|✔|✔||note=Chain breed}}&lt;br /&gt;
{{Moveentry/3|0446|Munchlax|type=Normal|1|Monster|Monster|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0459|Snover|type=Grass|type2=Ice|2|Monster|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0495|Snivy|type=Grass|2|Field|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0546|Cottonee|type=Grass|type2=Fairy|2|Grass|Fairy|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0548|Petilil|type=Grass|1|Grass|Grass|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0582|Vanillite|type=Ice|1|Mineral|Mineral|✔|✔|✔||note=Breed from TM}}&lt;br /&gt;
{{Moveentry/3|0585|Deerling|type=Normal|type2=Grass|1|Field|Field|form=All forms|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/3|0702|Dedenne|type=Electric|type2=Fairy|2|Field|Fairy||✔|✔|}}&lt;br /&gt;
{{Movefoot|Normal|3}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]===&lt;br /&gt;
{{Movehead/TMGames|Normal|g1=none|g2=none|g3=none|g5=none|g6=none|g7=none|g8=none|g9=none&lt;br /&gt;
|g4tm=83}}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| colspan=14 style=&amp;quot;text-align: center; background-color: #{{Red color light}}&amp;quot; | &#039;&#039;&#039;Every Pokémon can learn this move by TM&amp;lt;br&amp;gt;&#039;&#039;except&#039;&#039; the ones listed below and only if marked with ✘.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
{{Moveentry/1|0010|Caterpie|type=Bug|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0011|Metapod|type=Bug|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0013|Weedle|type=Bug|type2=Poison|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0014|Kakuna|type=Bug|type2=Poison|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0129|Magikarp|type=Water|2|Water 2|Dragon|✘}}&lt;br /&gt;
{{Moveentry/1|0132|Ditto|type=Normal|1|Ditto|Ditto|✘}}&lt;br /&gt;
{{Moveentry/1|0201|Unown|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✘}}&lt;br /&gt;
{{Moveentry/1|0202|Wobbuffet|type=Psychic|1|Amorphous|Amorphous|✘}}&lt;br /&gt;
{{Moveentry/1|0235|Smeargle|type=Normal|1|Field|Field|✘}}&lt;br /&gt;
{{Moveentry/1|0265|Wurmple|type=Bug|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0266|Silcoon|type=Bug|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0268|Cascoon|type=Bug|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0360|Wynaut|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✘}}&lt;br /&gt;
{{Moveentry/1|0374|Beldum|type=Steel|type2=Psychic|1|Mineral|Mineral|✘}}&lt;br /&gt;
{{Moveentry/1|0401|Kricketot|type=Bug|1|Bug|Bug|✘}}&lt;br /&gt;
{{Moveentry/1|0412|Burmy|type=Bug|1|Bug|Bug|form=All forms|✘}}&lt;br /&gt;
{{Moveentry/1|0415|Combee|type=Bug|type2=Flying|1|Bug|Bug|✘}}&lt;br /&gt;
{{Movefoot|Normal|6}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation IV]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0133|Eevee|type=Normal|1|Field|Field|[[Hayley&#039;s trades#Eevee|My Pokémon Ranch]]}}&lt;br /&gt;
{{Moveentry/1|0142|Aerodactyl|type=Rock|type2=Flying|1|Flying|Flying|[[Hayley&#039;s trades#Aerodactyl|My Pokémon Ranch]]}}&lt;br /&gt;
{{Moveentry/1|0422|formsig=E|Shellos|type=Water|2|Water 1|Amorphous|[[Hayley&#039;s trades#Shellos|My Pokémon Ranch]]|form=East Sea}}&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|0100|Voltorb|type=Electric|1|Mineral|Mineral|{{pkmn|Dream World}} - {{dwa|Icy Cave}}}}&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;
Natural Gift deals damage. The move&#039;s type and power will change if it holds a Seed or a Berry, though unlike the core series games, it can be used without an item. The item will not be consumed.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pow=1|pp=17|acc=88%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pow=1|pp=17|acc=88%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=18|ppmax=50|acc=95%|accmax=98%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pow=5|powmax=99|pp=18|ppmax=40|acc=95%|accmax=98%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=normal|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
====Pokémon Mystery Dungeon: Explorers of Time, Darkness, and Sky====&lt;br /&gt;
{| class=&amp;quot;roundy sortable&amp;quot; style=&amp;quot;text-align:center; margin:auto; border: 3px solid #{{normal color dark}}; background: #{{normal color}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}; {{roundytl|5px}}&amp;quot; | Item&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}&amp;quot; | Type&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}; {{roundytr|5px}}&amp;quot; | Power&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| No item or not a Seed/Berry&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; style=&amp;quot;background-color: #{{normal color}} | {{color2|fff|Normal (type)|Normal}}&lt;br /&gt;
| 1&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Joy Seed]]&lt;br /&gt;
| 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Plain Seed]]&lt;br /&gt;
| 16&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Life Seed]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{fighting color}} | {{color2|fff|Fighting (type)|Fighting}}&lt;br /&gt;
| 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Violent Seed]]&lt;br /&gt;
| 6&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Quick Seed]]&lt;br /&gt;
{{typetable|Flying}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Oran Berry]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; style=&amp;quot;background-color: #{{poison color}} | {{color2|fff|Poison (type)|Poison}}&lt;br /&gt;
| 2&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Via Seed]]&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Oren Berry]], [[Vile Seed]]&lt;br /&gt;
| 6&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Reviver Seed]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{ground color}} | {{color2|fff|Ground (type)|Ground}}&lt;br /&gt;
| 2&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Reviser Seed]]&lt;br /&gt;
| 11&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Hunger Seed]]&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
| 6&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Stun Seed]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{bug color}} | {{color2|fff|Bug (type)|Bug}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Vanish Seed]]&lt;br /&gt;
| 6&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Dropeye Seed]], [[Eyedrop Seed]], [[Totter Seed]]&lt;br /&gt;
{{typetable|Ghost}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Doom Seed]], [[Dough Seed]]&lt;br /&gt;
{{typetable|Steel}}&lt;br /&gt;
| 2&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Cheri Berry]]&lt;br /&gt;
{{typetable|Fire}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Chesto Berry]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{water color}} | {{color2|fff|Water (type)|Water}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Pure Seed]]&lt;br /&gt;
| 6&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Heal Seed]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{grass color}} | {{color2|fff|Grass (type)|Grass}}&lt;br /&gt;
| 2&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Rawst Berry]]&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Pecha Berry]]&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Warp Seed]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{psychic color}} | {{color2|fff|Psychic (type)|Psychic}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Sitrus Berry]]&lt;br /&gt;
| 4&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Sleep Seed]], [[Slip Seed]]&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
| 3&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Blast Seed]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{dragon color}} | {{color2|fff|Dragon (type)|Dragon}}&lt;br /&gt;
| 6&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Golden Seed]]&lt;br /&gt;
| 11&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Blinker Seed]], [[X-Eye Seed]]&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;background-color: #{{normal color light}}; {{roundybottom|5px}}&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Pokémon Mystery Dungeon: Gates to Infinity====&lt;br /&gt;
{{incomplete|section|needs=Other food incl. Grimy food}}&lt;br /&gt;
{| class=&amp;quot;roundy sortable&amp;quot; style=&amp;quot;text-align:center; margin:auto; border: 3px solid #{{normal color dark}}; background: #{{normal color}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}; {{roundytl|5px}}&amp;quot; | Item&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}; {{roundytr|5px}}&amp;quot; | Type&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Apple]], [[Plain Seed]] all other held items&lt;br /&gt;
{{typetable|Normal}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Training Seed]], [[Violent Seed]]&lt;br /&gt;
{{typetable|Fighting}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Quick Seed]]&lt;br /&gt;
{{typetable|Flying}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Oran Berry]], [[Blinker Seed]], [[Vile Seed]]&lt;br /&gt;
{{typetable|Poison}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Reviver Seed]]&lt;br /&gt;
{{typetable|Ground}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Blast Seed]]&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Stun Seed]]&lt;br /&gt;
{{typetable|Bug}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Totter Seed]], [[Eyedrop Seed]]&lt;br /&gt;
{{typetable|Ghost}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Doom Seed]]&lt;br /&gt;
{{typetable|Steel}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Cheri Berry]], [[Life Seed]]&lt;br /&gt;
{{typetable|Fire}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Chesto Berry]], [[Pure Seed]]&lt;br /&gt;
{{typetable|Water}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Rawst Berry]], [[Heal Seed]]&lt;br /&gt;
{{typetable|Grass}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Pecha Berry]], [[Encourage Seed]]&lt;br /&gt;
{{typetable|Electric}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Sitrus Berry]], [[Warp Seed]]&lt;br /&gt;
{{typetable|Psychic}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Sleep Seed]]&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Golden Seed]], [[Joy Seed]]&lt;br /&gt;
{{typetable|Dragon}}&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Blinker Seed]]&lt;br /&gt;
{{typetable|Dark}}&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #{{normal color light}}; {{roundybottom|5px}}&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Pokémon Super Mystery Dungeon====&lt;br /&gt;
In {{g|Super Mystery Dungeon}}, holding a food item will increase the power of the move as well as changing its type. Oddly, the [[Oran Berry]] causes the move to become {{t|Fairy}} type, which differs from previous Mystery Dungeon games as well as the core series games.&lt;br /&gt;
{| class=&amp;quot;roundy sortable&amp;quot; style=&amp;quot;text-align:center; margin:auto; border: 3px solid #{{normal color dark}}; background: #{{normal color}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}; {{roundytl|5px}}&amp;quot; | Item&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}&amp;quot; | Type&lt;br /&gt;
! style=&amp;quot;background-color: #{{normal color light}}; {{roundytr|5px}}&amp;quot; | Power&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Apple]]&lt;br /&gt;
| rowspan=5 style=&amp;quot;background-color: #{{normal color}} | {{color2|fff|Normal (type)|Normal}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Big Apple]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Apple|Perfect Apple]]&lt;br /&gt;
| 175%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Apple|Golden Apple]]&lt;br /&gt;
| 175%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Plain Seed]]&lt;br /&gt;
| 110%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Training Seed]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{fighting color}} | {{color2|fff|Fighting (type)|Fighting}}&lt;br /&gt;
|  125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Violent Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Quick Seed]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{flying color}} | {{color2|fff|Flying (type)|Flying}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Eyedrop Seed]]&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Grimy Food]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{poison color}} | {{color2|fff|Poison (type)|Poison}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Blinker Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Tiny Reviver Seed]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{ground color}} | {{color2|fff|Ground (type)|Ground}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Reviver Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Blast Seed]]&lt;br /&gt;
{{typetable|Rock}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Stun Seed]]&lt;br /&gt;
{{typetable|Bug}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Totter Seed]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{ghost color}} | {{color2|fff|Ghost (type)|Ghost}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Sleep Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Seed|Soothing Seed]]&lt;br /&gt;
{{typetable|Steel}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Cheri Berry]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{fire color}} | {{color2|fff|Fire (type)|Fire}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Life Seed]]&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Chesto Berry]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{water color}} | {{color2|fff|Water (type)|Water}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Pure Seed]]&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Rawst Berry]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{grass color}} | {{color2|fff|Grass (type)|Grass}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Heal Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Pecha Berry]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{electric color}} | {{color2|fff|Electric (type)|Electric}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Encourage Seed]]&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Sitrus Berry]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{psychic color}} | {{color2|fff|Psychic (type)|Psychic}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Warp Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Seed|Decoy Seed]]&lt;br /&gt;
{{typetable|Ice}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Golden Banana]]&lt;br /&gt;
| rowspan=3 style=&amp;quot;background-color: #{{dragon color}} | {{color2|fff|Dragon (type)|Dragon}}&lt;br /&gt;
| 175%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Golden Seed]]&lt;br /&gt;
| 175%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Joy Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Vile Seed]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{dark color}} | {{color2|fff|Dark (type)|Dark}}&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Seed|Ban Seed]]&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Oran Berry]]&lt;br /&gt;
| rowspan=2 style=&amp;quot;background-color: #{{fairy color}} | {{color2|fff|Fairy (type)|Fairy}}&lt;br /&gt;
| 125%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| [[Energy Seed]]&lt;br /&gt;
| 150%&lt;br /&gt;
|- style=&amp;quot;background:#FFF&amp;quot;&lt;br /&gt;
| All other held items&lt;br /&gt;
| style=&amp;quot;background:#{{unknown color}}&amp;quot; | {{color|FFF|Typeless}}&lt;br /&gt;
| 100%&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;background-color: #{{normal color light}}; {{roundybottom|5px}}&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TD}}|Inflicts damage on the target. The move&#039;s type and power will change, based on the kind of Berry the user is holding, if any.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|S}}|Inflicts damage on the target. The move&#039;s type and power will change based on the kind of Berry the user is holding, if any.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンに ダメージをあたえる きのみを もっていると わざの タイプや いりょくが かわる|Inflicts damage on the target. The move&#039;s type and power will change based on the kind of Berry the user is holding, if any}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|It damages an enemy. The move&#039;s type and power will change based on the kind of Berry you are holding, if any.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|The move&#039;s type changes, and its power goes up if you&#039;re carrying an item.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|It damages an enemy. If you&#039;re holding food, such as Berries or seeds, the move&#039;s type will change and the power will go up.}}&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=normal|exp=yes|gen=The user draws power to attack by using its held Berry. The Berry determines the move&#039;s type and power.|image1=Jupiter Tangrowth Natural Gift Water.png|image1p=Tangrowth (Water)|image2=Jupiter Tangrowth Natural Gift Fire.png|image2p=Tangrowth (Fire)|image3=Jupiter Tangrowth Natural Gift Ground.png|image3p=Tangrowth (Ground)|image4=Jupiter Tangrowth Natural Gift Electric.png|image4p=Tangrowth (Electric)}}&lt;br /&gt;
{{movep|type=fire|ms=465|pkmn=Tangrowth|method=Tangrowth creates a large ring of fire that erupts out of the ground all around it.}}&lt;br /&gt;
{{movemid|type=fire|user=Jupiter|user1=Jupiter&#039;s Tangrowth|startcode=PS396|startname=Getting Past Gastrodon|notes=Debut&amp;lt;br&amp;gt;Holding a {{color2|000|Bluk Berry}}&amp;lt;br&amp;gt;Fire-type move}}&lt;br /&gt;
{{movep|type=water|ms=465|pkmn=Tangrowth|method=Tangrowth fires a large spiral of water from the center of its body at the opponent.}}&lt;br /&gt;
{{movemid|type=water|user=Jupiter|user1=Jupiter&#039;s Tangrowth|startcode=PS398|startname=Tackling Tangrowth|notes=Holding a {{color2|000|Passho Berry}} or {{color2|000|Durin Berry}}&amp;lt;br&amp;gt;Water-type move}}&lt;br /&gt;
{{movep|type=electric|ms=465|pkmn=Tangrowth|method=Tangrowth shoots a large sphere of electricity at the opponent and traps them inside of it, shocking them.}}&lt;br /&gt;
{{movemid|type=electric|user=Jupiter|user1=Jupiter&#039;s Tangrowth|startcode=PS437|startname=The Final Dimensional Duel VII|notes=Holding an unknown Berry&amp;lt;br&amp;gt;Electric-type move}}&lt;br /&gt;
{{movep|type=ground|ms=465|pkmn=Tangrowth|method=Tangrowth makes the ground break up underneath the opponent.}}&lt;br /&gt;
{{movemid|type=ground|user=Jupiter|user1=Jupiter&#039;s Tangrowth|startcode=PS437|startname=The Final Dimensional Duel VII|notes=Holding a {{color2|000|Hondew Berry}}&amp;lt;br&amp;gt;Ground-type move}}&lt;br /&gt;
{{movep|type=rock|ms=465|pkmn=Tangrowth|method=Tangrowth makes rocks shoot up from the ground and strike the opponent.}}&lt;br /&gt;
{{movebtmManga|type=rock|user=Jupiter|user1=Jupiter&#039;s Tangrowth|startcode=PS437|startname=The Final Dimensional Duel VII|notes=Holding a {{color2|000|Magost Berry}}&amp;lt;br&amp;gt;Rock-type move}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Normal|&lt;br /&gt;
genIV=Natural Gift IV|&lt;br /&gt;
genV=Natural Gift V|&lt;br /&gt;
genVI=Natural Gift VI|&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Normal|&lt;br /&gt;
PBR=Natural Gift PBR|&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Normal|&lt;br /&gt;
PMDTDS=Natural Gift PMD TDS|&lt;br /&gt;
PMDGTI=Natural Gift PMD GTI|&lt;br /&gt;
PSMD=Natural Gift PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* For the [[Cram-o-matic]], every [[Berry]] uses the same type as the type the Natural Gift gets converted to with that Berry, and its value correlates to Natural Gift&#039;s [[power]] in [[Generation VII]]:&lt;br /&gt;
** 2 Cram-o-matic points: 80 power, except {{cat|damage-reducing Berries}} and {{cat|Berries that may cause confusion}}&lt;br /&gt;
** 4 Cram-o-matic points: 80 power, only {{cat|damage-reducing Berries}} and {{cat|Berries that may cause confusion}}&lt;br /&gt;
** 6 Cram-o-matic points: 90 power&lt;br /&gt;
** 10 Cram-o-matic points: 100 power&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color light}}&lt;br /&gt;
|zh_yue=自然之恩 &#039;&#039;{{tt|Jihyìhn-jī Yān|Nature&#039;s Grace}}&#039;&#039;&lt;br /&gt;
|zh_cmn=自然之恩 &#039;&#039;{{tt|Zìrán-zhī Ēn|Nature&#039;s Grace}}&#039;&#039; {{tt|*|Games, DP Complete Pokédex Guidebook, Pokémon Adventures}}&amp;lt;br&amp;gt;自然恩惠 &#039;&#039;{{tt|Zìrán Ēnhuì|Natural Grace}}&#039;&#039; {{tt|*|Pokémon Adventures (Coro Coro)}}&lt;br /&gt;
|nl=Natuurlijke Gift&lt;br /&gt;
|fr=Don Naturel&lt;br /&gt;
|de=Beerenkräfte&lt;br /&gt;
|el=Φυσικό Χάρισμα&lt;br /&gt;
|it=Dononaturale&lt;br /&gt;
|ko=자연의은혜 &#039;&#039;{{tt|Jayeonui-eunhae|Nature&#039;s Grace}}&#039;&#039;&lt;br /&gt;
|es=Don Natural&lt;br /&gt;
|sr=Prirodni dar&lt;br /&gt;
|vi=Đặc Ân Thiên Nhiên&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Fling|Normal}}&lt;br /&gt;
{{Generation IV TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that change type]]&lt;br /&gt;
[[Category:Moves that have variable power]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Item-manipulating moves]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Beerenkräfte]]&lt;br /&gt;
[[es:Don natural]]&lt;br /&gt;
[[fr:Don Naturel]]&lt;br /&gt;
[[it:Dononaturale]]&lt;br /&gt;
[[ja:しぜんのめぐみ]]&lt;br /&gt;
[[zh:自然之恩（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Fling_(move)&amp;diff=4238193</id>
		<title>Fling (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Fling_(move)&amp;diff=4238193"/>
		<updated>2025-02-12T16:17:03Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=374&lt;br /&gt;
|name=Fling&lt;br /&gt;
|jname=なげつける&lt;br /&gt;
|jtrans=Fling&lt;br /&gt;
|jtranslit=Nagetsukeru&lt;br /&gt;
|gameimage=Fling IX.png&lt;br /&gt;
|gameimage2=Fling IX 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Dark&lt;br /&gt;
|damagecategory=Physical&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|gen=IV&lt;br /&gt;
|category=Tough&lt;br /&gt;
|appealsc=1&lt;br /&gt;
|scdesc=Earn +3 if the Pokémon gets the lowest score.&lt;br /&gt;
|category6=Cute&lt;br /&gt;
|appeal6=3&lt;br /&gt;
|cdesc6=Brings down the energy of any Pokémon that have already used a move this turn.&lt;br /&gt;
|pokefordex=fling&lt;br /&gt;
|tm4=yes&lt;br /&gt;
|tm#4=56&lt;br /&gt;
|tm5=yes&lt;br /&gt;
|tm#5=56&lt;br /&gt;
|tm6=yes&lt;br /&gt;
|tm#6=56&lt;br /&gt;
|tm7=yes&lt;br /&gt;
|tm#7=56&lt;br /&gt;
|tm8=yes&lt;br /&gt;
|tm#8=59&lt;br /&gt;
|tmbdsp=yes&lt;br /&gt;
|tm#bdsp=56&lt;br /&gt;
|tm9=yes&lt;br /&gt;
|tm#9=043&lt;br /&gt;
|na=no&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;
|flag7=no&lt;br /&gt;
|flag8=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Fling&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;なげつける&#039;&#039;&#039; &#039;&#039;Fling&#039;&#039;) is a damage-dealing {{type|Dark}} [[move]] introduced in [[Generation IV]].&lt;br /&gt;
&lt;br /&gt;
It is:&lt;br /&gt;
* [[TM56]] from Generation IV to {{g|Ultra Sun and Ultra Moon}}, and in {{g|Brilliant Diamond and Shining Pearl}}.&lt;br /&gt;
* [[TM59]] in {{g|Sword and Shield}}.&lt;br /&gt;
* [[TM043]] in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
{{MoveResearch|The following items are missing, or the damage dealt is unknown: [[Max Honey]], [[Wishing Chip]] and [[TM]]s (Generation 4).}}&lt;br /&gt;
Fling inflicts damage; the power of the move is determined by the user&#039;s [[held item]].&lt;br /&gt;
&lt;br /&gt;
Fling fails if the user has no held item, or if their held item is a [[TM]], an [[Apricorn]], a [[Gem]], any type of [[Poké Ball]], [[Mail]], a [[Z-Crystal]], an [[Ability Capsule]], an [[Ability Patch]], a [[Festival Ticket]], the [[Red Orb]], the [[Blue Orb]], the [[Rusted Sword]], or the [[Rusted Shield]]. Fling also fails if used by a {{p|Giratina}} holding the [[Griseous Orb]], an {{p|Arceus}} holding a [[plate]], a {{p|Genesect}} holding a [[drive]], a {{p|Silvally}} holding a [[memory]], a Pokémon holding a [[Mega Stone]] that allows it to [[Mega Evolution|Mega Evolve]], a Pokémon with the [[Ability]] {{a|Protosynthesis}} or {{a|Quark Drive}} holding [[Booster Energy]], or an {{p|Ogerpon}} holding the [[Cornerstone Mask]], the [[Wellspring Mask]], or the [[Hearthflame Mask]]. After using Fling, the item is consumed, even if the target was protected by a {{cat|protection moves|protection move}}.&lt;br /&gt;
&lt;br /&gt;
The power of Fling based on the held item is detailed in the following table.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;margin:auto; background: #{{dark color light}}; border: 5px solid #{{dark color}}&amp;quot;&lt;br /&gt;
! Power&lt;br /&gt;
! Items&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |10&lt;br /&gt;
| All {{Berries}}, all [[Incense]]s, all [[Mint]]s, all [[Nectar]]s, all [[Scarf|Scarves]], all [[Sweet]]s&amp;lt;br /&amp;gt;[[Air Balloon]], [[Big Root]], [[Bright Powder]], [[Choice Band]], [[Choice Scarf]], [[Choice Specs]], [[Destiny Knot]], [[Discount Coupon]], [[Electric Seed]], [[Expert Belt]], [[Fairy Feather]], [[Focus Band]], [[Focus Sash]], [[Grassy Seed]], [[Lagging Tail]], [[Leftovers]], [[Mental Herb]], [[Metal Powder]], [[Misty Seed]], [[Muscle Band]], [[Power Herb]], [[Psychic Seed]], [[Quick Powder]], [[Reaper Cloth]], [[Red Card]], [[Ring Target]], [[Shed Shell]], [[Silk Scarf]], [[Silver Powder]], [[Smooth Rock]], [[Soft Sand]], [[Soothe Bell]], [[White Herb]], [[Wide Lens]], [[Wise Glasses]], [[Zoom Lens]]&amp;lt;br /&amp;gt;[[Bread]], [[Coconut Milk]], [[Fresh Cream]], [[Fried Food]], [[Fruit Bunch]], [[Instant Noodles]], [[Mixed Mushrooms]], [[Pack of Potatoes]], [[Packaged Curry]], [[Pasta]], [[Precooked Burger]], [[Pungent Root]], [[Salad Mix]], [[Sausages]], [[Smoke-Poke Tail]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |20&lt;br /&gt;
| All [[Feather]]s&amp;lt;br /&amp;gt;[[Boiled Egg]], [[Fancy Apple]], [[Large Leek]], [[Moomoo Cheese]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |30&lt;br /&gt;
| All [[status condition healing item]]s (besides Berries), all [[Potion]]s, all [[herbal medicine]], all [[drink]]s, all [[Vitamin]]s, all [[Shard]]s, all [[Mulch]]es, all [[battle item]]s, all [[Flute]]s, all [[Exp. Candy]], all [[Tera Shard]]s&amp;lt;br /&amp;gt;[[Ether]], [[Elixir]], [[Max Ether]], [[Max Elixir]], [[Repel]], [[Super Repel]], [[Max Repel]], [[Ability Shield]], [[Absorb Bulb]], [[Adrenaline Orb]], [[Amulet Coin]], [[Armorite Ore]], [[Auspicious Armor]], [[Balm Mushroom]], [[Berry Juice]], [[Big Bamboo Shoot]], [[Big Malasada]], [[Big Mushroom]], [[Big Nugget]]&amp;lt;sup&amp;gt;Gen V-VII&amp;lt;/sup&amp;gt;, [[Big Pearl]], [[Binding Band]], {{i|Black Belt}}, [[Black Glasses]], [[Black Sludge]], [[Booster Energy]], [[Bottle Cap]], [[Casteliacone]], [[Cell Battery]], [[Charcoal]], [[Cleanse Tag]], [[Clear Amulet]], [[Comet Shard]], [[Covert Cloak]], [[Deep Sea Scale]], [[Dragon Scale]], [[Dynamax Candy]], [[Eject Button]], [[Escape Rope]], [[Everstone]], [[Fire Stone]], [[Flame Orb]], [[Float Stone]], [[Fluffy Tail]], [[Galarica Cuff]], [[Galarica Twig]], [[Galarica Wreath]], [[Gold Bottle Cap]], [[Heart Scale]], [[Honey]], [[Ice Stone]], [[King&#039;s Rock]], [[Lava Cookie]], [[Leader&#039;s Crest]], [[Leaf Stone]], [[Life Orb]], [[Light Ball]], [[Light Clay]], [[Loaded Dice]], [[Lucky Egg]], [[Luminous Moss]], [[Lumiose Galette]], [[Magnet]], [[Malicious Armor]], [[Max Mushrooms]], [[Max Revive]], [[Metal Coat]], {{i|Metronome}}, [[Miracle Seed]], [[Mirror Herb]], [[Moon Stone]], [[Mystic Water]], [[Never-Melt Ice]], [[Nugget]], [[Old Gateau]], [[Pass Orb]], [[Pearl String]], {{i|Pearl}}, [[Poké Doll]], [[Poké Toy]], [[Prism Scale]], [[Protective Pads]], [[Punching Glove]], [[Rare Candy]], [[Razor Fang]], [[Relic Band]], [[Relic Copper]], [[Relic Crown]], [[Relic Gold]], [[Relic Silver]], [[Relic Statue]], [[Relic Vase]], [[Revive]], [[Sacred Ash]], [[Scope Lens]], [[Shalour Sable]], [[Shell Bell]], [[Shoal Salt]], [[Shoal Shell]], [[Smoke Ball]], [[Snowball]], [[Soul Dew]], [[Spell Tag]], [[Star Piece]], [[Strange Souvenir]], [[Stardust]], [[Sun Stone]], [[Sweet Apple]], [[Sweet Heart]], [[Syrupy Apple]], [[Tart Apple]], [[Thunder Stone]], [[Tiny Bamboo Shoot]], [[Tiny Mushroom]], [[Toxic Orb]], [[Throat Spray]], [[Twisted Spoon]], [[Upgrade]], [[Water Stone]]&amp;lt;br /&amp;gt;[[Brittle Bones]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |40&lt;br /&gt;
| [[Eviolite]], [[Icy Rock]], [[Lucky Punch]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |50&lt;br /&gt;
| All [[Memory|Memories]]&amp;lt;br /&amp;gt;[[Dubious Disc]], [[Eject Pack]], [[Sharp Beak]], [[Wishing Piece]]&amp;lt;br /&amp;gt;[[Gigantamix]], [[Spice Mix]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |60&lt;br /&gt;
| [[Adamant Orb]], [[Cornerstone Mask]], [[Damp Rock]], [[Griseous Orb]], [[Hearthflame Mask]], [[Heat Rock]], [[Leek]], [[Lustrous Orb]], [[Macho Brace]], [[Rocky Helmet]], [[Terrain Extender]], [[Utility Umbrella]], [[Wellspring Mask]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |70&lt;br /&gt;
| All [[Drive]]s, all [[Power item]]s&amp;lt;br /&amp;gt;[[Dragon Fang]], [[Poison Barb]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |80&lt;br /&gt;
| All [[Mega Stone]]s&amp;lt;br /&amp;gt;[[Assault Vest]], [[Blunder Policy]], [[Chipped Pot]], [[Cracked Pot]], [[Dawn Stone]], [[Dusk Stone]], [[Electirizer]], [[Heavy-Duty Boots]], [[Magmarizer]], [[Masterpiece Teacup]], [[Odd Keystone]], [[Oval Stone]], [[Protector]], [[Quick Claw]], [[Razor Claw]], [[Sachet]], [[Safety Goggles]], [[Shiny Stone]], [[Sticky Barb]], [[Tin of Beans]], [[Unremarkable Teacup]], [[Weakness Policy]], [[Whipped Dream]], [[Bach&#039;s Food Tin]], [[Bob&#039;s Food Tin]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |90&lt;br /&gt;
| All [[Plate]]s&amp;lt;br /&amp;gt;[[Deep Sea Tooth]], [[Grip Claw]], [[Thick Club]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |100&lt;br /&gt;
| All [[Fossil]]s&amp;lt;br /&amp;gt;[[Hard Stone]], [[Rare Bone]], [[Room Service]]&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;c&amp;quot; |130&lt;br /&gt;
| [[Iron Ball]], [[Big Nugget]]&amp;lt;sup&amp;gt;Gen VIII-IX&amp;lt;/sup&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
If the user holds a [[TR]], Fling&#039;s power is equal to the power of the move the TR contains, unless the move does not list a specific power (i.e. it is a [[status move]] or has {{cat|Moves that have variable power|variable power}} with no default power), in which case it has 10 power. Due to this, {{TR|71|Leaf Storm}} and {{TR|43|Overheat}} match the Iron Ball in producing the maximum possible Fling power of 130.&lt;br /&gt;
&lt;br /&gt;
If the user&#039;s held item can boost the power of moves (such as the [[Black Glasses]] or [[Life Orb]]), the power of Fling is boosted by the held item accordingly (if applicable). Because the user is no longer holding the item after using the move, the Life Orb does not reduce the user&#039;s HP when it boosts the power of Fling.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon holding a Berry uses Fling, that Berry will activate for the target (even if its usual trigger condition is not satisfied). Additionally, some other items have special effects when a Pokémon holding them uses Fling:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundtable&amp;quot; style=&amp;quot;margin:auto; background: #{{dark color light}}; border: 5px solid #{{dark color}}&amp;quot;&lt;br /&gt;
! Item&lt;br /&gt;
! Effect&lt;br /&gt;
! Power&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|Flame Orb|SV}} [[Flame Orb]]&lt;br /&gt;
|{{status|Burn}}s the target&lt;br /&gt;
|30&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|King&#039;s Rock|SV}} [[King&#039;s Rock]]&lt;br /&gt;
|Causes the target to [[flinch]]&lt;br /&gt;
|30&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|Light Ball|SV}} [[Light Ball]]&lt;br /&gt;
|{{status|Paralysis|Paralyzes}} the target&lt;br /&gt;
|30&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|Mental Herb|SV}} [[Mental Herb]]&lt;br /&gt;
|Cures the effects of {{status|infatuation}}, {{m|Taunt}}, {{m|Encore}}, {{m|Torment}}, {{m|Disable}}, and {{m|Heal Block}} from the target&amp;lt;br /&amp;gt;In Generation IV, only cures infatuation&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|Poison Barb|SV}} [[Poison Barb]]&lt;br /&gt;
|{{status|Poison}}s the target&lt;br /&gt;
|70&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|Razor Fang|SV}} [[Razor Fang]]&lt;br /&gt;
|Causes the target to [[flinch]]&lt;br /&gt;
|30&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|Toxic Orb|SV}} [[Toxic Orb]]&lt;br /&gt;
|{{status|Poison|Badly poisons}} the target&lt;br /&gt;
|30&lt;br /&gt;
|-&lt;br /&gt;
|{{bag/s|White Herb|SV}} [[White Herb]]&lt;br /&gt;
|Restores lowered stats of the target&lt;br /&gt;
|10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{m|Embargo}}, {{a|Klutz}} (from [[Generation V]] onward), and {{m|Magic Room}} all prevent the usage of Fling. In [[Generation IV]] only, if the target of Fling is under the effect of Embargo and the user was holding an item with a special effect, the item&#039;s effect will not activate.&lt;br /&gt;
&lt;br /&gt;
Fling can also be used as part of a [[Contest combination|Contest Spectacular combination]], with the user gaining an extra three appeal points if {{m|Celebrate}}, {{m|Covet}}, {{m|Happy Hour}}, or {{m|Wish}} was used in the prior turn.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user flings its held item at the foe to attack. Its power and effects depend on the item.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}|The user flings its held item at the target to attack. Its power and effects depend on the item.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user flings its held item at the target to attack. This move&#039;s power and effects depend on the item.}}&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/Games|Dark|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/7|0057|Primeape|type=Fighting|1|Field|Field|1|1|1|1||1|1}}&lt;br /&gt;
{{Moveentry/7|0088|Grimer|type=Poison|1|Amorphous|Amorphous|28|28{{sup/5|BW}}&amp;lt;br&amp;gt;29{{sup/5|B2W2}}|29{{sup/6|XY}}&amp;lt;br&amp;gt;26{{sup/6|ORAS}}|26||26|−}}&lt;br /&gt;
{{Moveentry/7|0088|formsig=A|Grimer|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form||||26|||−|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0089|Muk|type=Poison|1|Amorphous|Amorphous|28|28{{sup/5|BW}}&amp;lt;br&amp;gt;29{{sup/5|B2W2}}|29{{sup/6|XY}}&amp;lt;br&amp;gt;26{{sup/6|ORAS}}|26||26|−}}&lt;br /&gt;
{{Moveentry/7|0089|formsig=A|Muk|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form||||26|||−|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0104|Cubone|type=Ground|1|Monster|Monster|33|33|33|33|20|20}}&lt;br /&gt;
{{Moveentry/7|0105|Marowak|type=Ground|1|Monster|Monster|37|37|37|37|20|20}}&lt;br /&gt;
{{Moveentry/7|0105|formsig=A|Marowak|type=Fire|type2=Ghost|1|Monster|Monster|form=Alolan Form||||37|20}}&lt;br /&gt;
{{Moveentry/7|0113|Chansey|type=Normal|1|Fairy|Fairy|27|34|34|34{{sup/7|SM}}&amp;lt;br&amp;gt;35{{sup/7|USUM}}|20|20|20}}&lt;br /&gt;
{{Moveentry/7|0143|Snorlax|type=Normal|1|Monster|Monster|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0190|Aipom|type=Normal|1|Field|Field|36|36|36|36||36|36}}&lt;br /&gt;
{{Moveentry/7|0216|Teddiursa|type=Normal|1|Field|Field|57|57|1, 57|1, 57||1, 57|1}}&lt;br /&gt;
{{Moveentry/7|0217|Ursaring|type=Normal|1|Field|Field|−|−|−|−||1|−}}&lt;br /&gt;
{{Moveentry/7|0242|Blissey|type=Normal|1|Fairy|Fairy|27|34|34|34|20|20|20}}&lt;br /&gt;
{{Moveentry/7|0263|Zigzagoon|type=Normal|1|Field|Field|45|49|49{{sup/6|XY}}&amp;lt;br&amp;gt;41{{sup/6|ORAS}}|41|27|27}}&lt;br /&gt;
{{Moveentry/7|0264|Linoone|type=Normal|1|Field|Field|59|65|65{{sup/6|XY}}&amp;lt;br&amp;gt;48{{sup/6|ORAS}}|48|33|33}}&lt;br /&gt;
{{Moveentry/7|0279|Pelipper|type=Water|type2=Flying|2|Water 1|Flying|43|43{{sup/5|BW}}&amp;lt;br&amp;gt;46{{sup/5|B2W2}}|46{{sup/6|XY}}&amp;lt;br&amp;gt;39{{sup/6|ORAS}}|28|34|34|34}}&lt;br /&gt;
{{Moveentry/7|0289|Slaking|type=Normal|1|Field|Field|49|55|1, 55{{sup/6|XY}}&amp;lt;br&amp;gt;1, 47{{sup/6|ORAS}}|1, 47||1, 47|45}}&lt;br /&gt;
{{Moveentry/7|0424|Ambipom|type=Normal|1|Field|Field|36|36|36|36||36|36}}&lt;br /&gt;
{{Moveentry/7|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered|36|41|41|41|32|32|32}}&lt;br /&gt;
{{Moveentry/7|0461|Weavile|type=Dark|type2=Ice|1|Field|Field|38|42{{sup/5|BW}}&amp;lt;br&amp;gt;28{{sup/5|B2W2}}|28|28|42|42|42|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0511|Pansage|type=Grass|1|Field|Field||28|28|28}}&lt;br /&gt;
{{Moveentry/7|0513|Pansear|type=Fire|1|Field|Field||28|28|28}}&lt;br /&gt;
{{Moveentry/7|0515|Panpour|type=Water|1|Field|Field||28|28|28}}&lt;br /&gt;
{{Moveentry/7|0656|Froakie|type=Water|1|Water 1|Water 1|||25|25|||25|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0657|Frogadier|type=Water|1|Water 1|Water 1|||28|28|||28|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like|||24|24|−||−}}&lt;br /&gt;
{{Moveentry/7|0766|Passimian|type=Fighting|1|Field|Field||||39|30||30}}&lt;br /&gt;
{{Moveentry/7|0903|Sneasler|type=Fighting|type2=Poison|1|Field|Field|||||||1}}&lt;br /&gt;
{{Moveentry/7|0979|Annihilape|type=Fighting|type2=Ghost|1|Field|Field|||||||1}}&lt;br /&gt;
{{Movefoot|Dark|7}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]===&lt;br /&gt;
{{Movehead/TMGames|Dark|g1=none|g2=none|g3=none&lt;br /&gt;
|g1tm=56&lt;br /&gt;
|g2tm=56&lt;br /&gt;
|g3tm=56&lt;br /&gt;
|g4tm=56&lt;br /&gt;
|g5tm=56&lt;br /&gt;
|g6tm=56&lt;br /&gt;
|g7=1|g7tm=56|g7g={{gameabbrev7|SMUSUM}}&lt;br /&gt;
|g8=2|g8tm-1=59|g8g-1={{gameabbrev8|SwSh}}|g8tm-2=56|g8g-2={{gameabbrev8|BDSP}}&lt;br /&gt;
|g9tm=043}}&lt;br /&gt;
{{Moveentry/7|0004|Charmander|type=Fire|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0005|Charmeleon|type=Fire|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0006|Charizard|type=Fire|type2=Flying|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0007|Squirtle|type=Water|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0008|Wartortle|type=Water|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0009|Blastoise|type=Water|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0025|Pikachu|type=Electric|2|Field|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0026|Raichu|type=Electric|2|Field|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0026|formsig=A|Raichu|type=Electric|type2=Psychic|2|Field|Fairy|form=Alolan Form||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0027|Sandshrew|type=Ground|1|Field|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0027|formsig=A|Sandshrew|type=Ice|type2=Steel|1|Field|Field|form=Alolan Form||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0028|Sandslash|type=Ground|1|Field|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0028|formsig=A|Sandslash|type=Ice|type2=Steel|1|Field|Field|form=Alolan Form||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0031|Nidoqueen|type=Poison|type2=Ground|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0034|Nidoking|type=Poison|type2=Ground|2|Monster|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0035|Clefairy|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0036|Clefable|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0039|Jigglypuff|type=Normal|type2=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0040|Wigglytuff|type=Normal|type2=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0044|Gloom|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/7|0045|Vileplume|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0052|formsig=G|Meowth|type=Steel|1|Field|Field|form=Galarian Form|||||−||✔}}&lt;br /&gt;
{{Moveentry/7|0054|Psyduck|type=Water|2|Water 1|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0055|Golduck|type=Water|2|Water 1|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0056|Mankey|type=Fighting|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0057|Primeape|type=Fighting|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0061|Poliwhirl|type=Water|1|Water 1|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0062|Poliwrath|type=Water|type2=Fighting|1|Water 1|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0063|Abra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0064|Kadabra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0065|Alakazam|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0066|Machop|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0067|Machoke|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0068|Machamp|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0074|Geodude|type=Rock|type2=Ground|1|Mineral|Mineral|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0074|formsig=A|Geodude|type=Rock|type2=Electric|1|Mineral|Mineral|form=Alolan Form||||✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0075|Graveler|type=Rock|type2=Ground|1|Mineral|Mineral|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0075|formsig=A|Graveler|type=Rock|type2=Electric|1|Mineral|Mineral|form=Alolan Form||||✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0076|Golem|type=Rock|type2=Ground|1|Mineral|Mineral|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0076|formsig=A|Golem|type=Rock|type2=Electric|1|Mineral|Mineral|form=Alolan Form||||✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0080|Slowbro|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0080|formsig=G|Slowbro|type=Poison|type2=Psychic|2|Monster|Water 1|form=Galarian Form|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0086|Seel|type=Water|2|Water 1|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0087|Dewgong|type=Water|type2=Ice|2|Water 1|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0088|Grimer|type=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0088|formsig=A|Grimer|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form||||✔|||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0089|Muk|type=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0089|formsig=A|Muk|type=Poison|type2=Dark|1|Amorphous|Amorphous|form=Alolan Form||||✔|||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0093|Haunter|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0094|Gengar|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0096|Drowzee|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0097|Hypno|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0098|Krabby|type=Water|1|Water 3|Water 3|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0099|Kingler|type=Water|1|Water 3|Water 3|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0104|Cubone|type=Ground|1|Monster|Monster|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0105|Marowak|type=Ground|1|Monster|Monster|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0105|formsig=A|Marowak|type=Fire|type2=Ghost|1|Monster|Monster|form=Alolan Form||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0106|Hitmonlee|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0107|Hitmonchan|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0108|Lickitung|type=Normal|1|Monster|Monster|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0112|Rhydon|type=Ground|type2=Rock|2|Monster|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0113|Chansey|type=Normal|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0115|Kangaskhan|type=Normal|1|Monster|Monster|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form|||||✔||}}&lt;br /&gt;
{{Moveentry/7|0124|Jynx|type=Ice|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0125|Electabuzz|type=Electric|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0126|Magmar|type=Fire|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0127|Pinsir|type=Bug|1|Bug|Bug|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0143|Snorlax|type=Normal|1|Monster|Monster|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0149|Dragonite|type=Dragon|type2=Flying|2|Water 1|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0150|Mewtwo|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0157|Typhlosion|type=Fire|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0158|Totodile|type=Water|2|Monster|Water 1|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0159|Croconaw|type=Water|2|Monster|Water 1|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0160|Feraligatr|type=Water|2|Monster|Water 1|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0161|Sentret|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0162|Furret|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0165|Ledyba|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔|✔||✔|}}&lt;br /&gt;
{{Moveentry/7|0166|Ledian|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔|✔||✔|}}&lt;br /&gt;
{{Moveentry/7|0172|Pichu|type=Electric|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0174|Igglybuff|type=Normal|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0175|Togepi|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0180|Flaaffy|type=Electric|2|Monster|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0181|Ampharos|type=Electric|2|Monster|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0182|Bellossom|type=Grass|1|Grass|Grass|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0183|Marill|type=Water|type2=Fairy|2|Water 1|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0184|Azumarill|type=Water|type2=Fairy|2|Water 1|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0185|Sudowoodo|type=Rock|1|Mineral|Mineral|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0186|Politoed|type=Water|1|Water 1|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0187|Hoppip|type=Grass|type2=Flying|2|Fairy|Grass|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0188|Skiploom|type=Grass|type2=Flying|2|Fairy|Grass|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0189|Jumpluff|type=Grass|type2=Flying|2|Fairy|Grass|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0190|Aipom|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0195|Quagsire|type=Water|type2=Ground|2|Water 1|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0199|Slowking|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0199|formsig=G|Slowking|type=Poison|type2=Psychic|2|Monster|Water 1|form=Galarian Form|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0207|Gligar|type=Ground|type2=Flying|1|Bug|Bug|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0209|Snubbull|type=Fairy|2|Field|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0210|Granbull|type=Fairy|2|Field|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0212|Scizor|type=Bug|type2=Steel|1|Bug|Bug|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0214|Heracross|type=Bug|type2=Fighting|1|Bug|Bug|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0215|Sneasel|type=Dark|type2=Ice|1|Field|Field|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0215|formsig=H|Sneasel|type=Fighting|type2=Poison|1|Field|Field|form=Hisuian Form|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0216|Teddiursa|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0217|Ursaring|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0225|Delibird|type=Ice|type2=Flying|2|Water 1|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0238|Smoochum|type=Ice|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0239|Elekid|type=Electric|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0240|Magby|type=Fire|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0241|Miltank|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0242|Blissey|type=Normal|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0248|Tyranitar|type=Rock|type2=Dark|1|Monster|Monster|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0251|Celebi|type=Psychic|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0252|Treecko|type=Grass|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0253|Grovyle|type=Grass|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0254|Sceptile|type=Grass|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0256|Combusken|type=Fire|type2=Fighting|1|Field|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0257|Blaziken|type=Fire|type2=Fighting|1|Field|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0259|Marshtomp|type=Water|type2=Ground|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0260|Swampert|type=Water|type2=Ground|2|Monster|Water 1|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0263|Zigzagoon|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0263|formsig=G|Zigzagoon|type=Dark|type2=Normal|1|Field|Field|form=Galarian Form|||||✔|||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0264|Linoone|type=Normal|1|Field|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0264|formsig=G|Linoone|type=Dark|type2=Normal|1|Field|Field|form=Galarian Form|||||✔|||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0271|Lombre|type=Water|type2=Grass|2|Water 1|Grass|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0272|Ludicolo|type=Water|type2=Grass|2|Water 1|Grass|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0274|Nuzleaf|type=Grass|type2=Dark|2|Field|Grass|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0275|Shiftry|type=Grass|type2=Dark|2|Field|Grass|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0279|Pelipper|type=Water|type2=Flying|2|Water 1|Flying|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0280|Ralts|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0281|Kirlia|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0282|Gardevoir|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0286|Breloom|type=Grass|type2=Fighting|2|Fairy|Grass|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0287|Slakoth|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0288|Vigoroth|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0289|Slaking|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0293|Whismur|type=Normal|2|Monster|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0294|Loudred|type=Normal|2|Monster|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0295|Exploud|type=Normal|2|Monster|Field|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0296|Makuhita|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0297|Hariyama|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0303|Mawile|type=Steel|type2=Fairy|2|Field|Fairy|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0306|Aggron|type=Steel|type2=Rock|1|Monster|Monster|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0307|Meditite|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0308|Medicham|type=Fighting|type2=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0311|Plusle|type=Electric|1|Fairy|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0312|Minun|type=Electric|1|Fairy|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0313|Volbeat|type=Bug|2|Bug|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0314|Illumise|type=Bug|2|Bug|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0316|Gulpin|type=Poison|1|Amorphous|Amorphous|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0317|Swalot|type=Poison|1|Amorphous|Amorphous|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0326|Grumpig|type=Psychic|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0327|Spinda|type=Normal|2|Field|Human-Like|✔|✔|✔|✔||✔|}}&lt;br /&gt;
{{Moveentry/7|0331|Cacnea|type=Grass|2|Grass|Human-Like|✔|✔|✔|✔||✔|✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0332|Cacturne|type=Grass|type2=Dark|2|Grass|Human-Like|✔|✔|✔|✔||✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0335|Zangoose|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0341|Corphish|type=Water|2|Water 1|Water 3|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0342|Crawdaunt|type=Water|type2=Dark|2|Water 1|Water 3|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0352|Kecleon|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|}}&lt;br /&gt;
{{Moveentry/7|0354|Banette|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0355|Duskull|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0356|Dusclops|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0377|Regirock|type=Rock|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0378|Regice|type=Ice|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0379|Registeel|type=Steel|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0383|Groudon|type=Ground|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0384|Rayquaza|type=Dragon|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0385|Jirachi|type=Steel|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0386|Deoxys|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0390|Chimchar|type=Fire|2|Field|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0391|Monferno|type=Fire|type2=Fighting|2|Field|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0392|Infernape|type=Fire|type2=Fighting|2|Field|Human-Like|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0393|Piplup|type=Water|2|Water 1|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0394|Prinplup|type=Water|2|Water 1|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0395|Empoleon|type=Water|type2=Steel|2|Water 1|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0400|Bibarel|type=Normal|type2=Water|2|Water 1|Field|✔|✔|✔|✔||✔|}}&lt;br /&gt;
{{Moveentry/7|0408|Cranidos|type=Rock|1|Monster|Monster|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0409|Rampardos|type=Rock|1|Monster|Monster|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0416|Vespiquen|type=Bug|type2=Flying|1|Bug|Bug|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0417|Pachirisu|type=Electric|2|Field|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0418|Buizel|type=Water|2|Water 1|Field|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0419|Floatzel|type=Water|2|Water 1|Field|−|−|−|−||−|✔}}&lt;br /&gt;
{{Moveentry/7|0424|Ambipom|type=Normal|1|Field|Field|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0426|Drifblim|type=Ghost|type2=Flying|1|Amorphous|Amorphous|−|−|−|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/7|0427|Buneary|type=Normal|2|Field|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0428|Lopunny|type=Normal|2|Field|Human-Like|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0440|Happiny|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0445|Garchomp|type=Dragon|type2=Ground|2|Monster|Dragon|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0447|Riolu|type=Fighting|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0448|Lucario|type=Fighting|type2=Steel|2|Field|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0451|Skorupi|type=Poison|type2=Bug|2|Bug|Water 3|✔|✔|✔|✔|✔|✔||STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0452|Drapion|type=Poison|type2=Dark|2|Bug|Water 3|✔|✔|✔|✔|✔|✔||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0453|Croagunk|type=Poison|type2=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0454|Toxicroak|type=Poison|type2=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0455|Carnivine|type=Grass|1|Grass|Grass|✔|✔|✔|✔||✔|}}&lt;br /&gt;
{{Moveentry/7|0460|Abomasnow|type=Grass|type2=Ice|2|Monster|Grass|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0461|Weavile|type=Dark|type2=Ice|1|Field|Field|✔|✔|✔|✔|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0463|Lickilicky|type=Normal|1|Monster|Monster|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0464|Rhyperior|type=Ground|type2=Rock|2|Monster|Field|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0465|Tangrowth|type=Grass|1|Grass|Grass|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0466|Electivire|type=Electric|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0467|Magmortar|type=Fire|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0468|Togekiss|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/7|0472|Gliscor|type=Ground|type2=Flying|1|Bug|Bug|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0475|Gallade|type=Psychic|type2=Fighting|2|Human-Like|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0477|Dusknoir|type=Ghost|1|Amorphous|Amorphous|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0478|Froslass|type=Ice|type2=Ghost|2|Fairy|Mineral|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0480|Uxie|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0481|Mesprit|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0482|Azelf|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0484|Palkia|type=Water|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0486|Regigigas|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/7|0489|Phione|type=Water|2|Water 1|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0490|Manaphy|type=Water|2|Water 1|Fairy|✔|✔|✔|✔||✔|✔}}&lt;br /&gt;
{{Moveentry/7|0491|Darkrai|type=Dark|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|✔||✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0494|Victini|type=Psychic|type2=Fire|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0499|Pignite|type=Fire|type2=Fighting|1|Field|Field||✔|✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0500|Emboar|type=Fire|type2=Fighting|1|Field|Field||✔|✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0501|Oshawott|type=Water|1|Field|Field||✔|✔|✔|||✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0502|Dewott|type=Water|1|Field|Field||✔|✔|✔|||✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0503|Samurott|type=Water|1|Field|Field||✔|✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0503|formsig=H|Samurott|type=Water|type2=Dark|1|Field|Field|form=Hisuian Form|||||||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0504|Patrat|type=Normal|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0505|Watchog|type=Normal|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0511|Pansage|type=Grass|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0512|Simisage|type=Grass|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0513|Pansear|type=Fire|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0514|Simisear|type=Fire|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0515|Panpour|type=Water|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0516|Simipour|type=Water|1|Field|Field||✔|✔|✔|||}}&lt;br /&gt;
{{Moveentry/7|0529|Drilbur|type=Ground|1|Field|Field||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0530|Excadrill|type=Ground|type2=Steel|1|Field|Field||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0531|Audino|type=Normal|1|Fairy|Fairy||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0532|Timburr|type=Fighting|1|Human-Like|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0533|Gurdurr|type=Fighting|1|Human-Like|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0534|Conkeldurr|type=Fighting|1|Human-Like|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0537|Seismitoad|type=Water|type2=Ground|1|Water 1|Water 1||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0538|Throh|type=Fighting|1|Human-Like|Human-Like||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0539|Sawk|type=Fighting|1|Human-Like|Human-Like||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0547|Whimsicott|type=Grass|type2=Fairy|2|Grass|Fairy||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0551|Sandile|type=Ground|type2=Dark|1|Field|Field||−|−|−|−||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0552|Krokorok|type=Ground|type2=Dark|1|Field|Field||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0553|Krookodile|type=Ground|type2=Dark|1|Field|Field||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0554|Darumaka|type=Fire|1|Field|Field||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0554|formsig=G|Darumaka|type=Ice|1|Field|Field|form=Galarian Form|||||✔||}}&lt;br /&gt;
{{Moveentry/7|0555|Darmanitan|type=Fire|1|Field|Field||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0555|formsig=G|Darmanitan|type=Ice|1|Field|Field|form=Galarian Form|||||✔||}}&lt;br /&gt;
{{Moveentry/7|0559|Scraggy|type=Dark|type2=Fighting|2|Field|Dragon||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0560|Scrafty|type=Dark|type2=Fighting|2|Field|Dragon||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0569|Garbodor|type=Poison|1|Mineral|Mineral||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0570|Zorua|type=Dark|1|Field|Field||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0570|formsig=H|Zorua|type=Normal|type2=Ghost|1|Field|Field|form=Hisuian Form|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0571|Zoroark|type=Dark|1|Field|Field||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0571|formsig=H|Zoroark|type=Normal|type2=Ghost|1|Field|Field|form=Hisuian Form|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0572|Minccino|type=Normal|1|Field|Field||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0573|Cinccino|type=Normal|1|Field|Field||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0574|Gothita|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0575|Gothorita|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0576|Gothitelle|type=Psychic|1|Human-Like|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0579|Reuniclus|type=Psychic|1|Amorphous|Amorphous||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0587|Emolga|type=Electric|type2=Flying|1|Field|Field||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0610|Axew|type=Dragon|2|Monster|Dragon||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0611|Fraxure|type=Dragon|2|Monster|Dragon||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0612|Haxorus|type=Dragon|2|Monster|Dragon||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0613|Cubchoo|type=Ice|1|Field|Field||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0614|Beartic|type=Ice|1|Field|Field||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0619|Mienfoo|type=Fighting|2|Field|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0620|Mienshao|type=Fighting|2|Field|Human-Like||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0621|Druddigon|type=Dragon|2|Dragon|Monster||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0622|Golett|type=Ground|type2=Ghost|1|Mineral|Mineral||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0623|Golurk|type=Ground|type2=Ghost|1|Mineral|Mineral||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0624|Pawniard|type=Dark|type2=Steel|1|Human-Like|Human-Like||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0625|Bisharp|type=Dark|type2=Steel|1|Human-Like|Human-Like||✔|✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0631|Heatmor|type=Fire|1|Field|Field||✔|✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0641|Tornadus|type=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0642|Thundurus|type=Electric|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0643|Reshiram|type=Dragon|type2=Fire|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0644|Zekrom|type=Dragon|type2=Electric|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0645|Landorus|type=Ground|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0646|Kyurem|type=Dragon|type2=Ice|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||✔|✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0648|Meloetta|type=Normal|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||✔|✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0650|Chespin|type=Grass|1|Field|Field|||✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0651|Quilladin|type=Grass|1|Field|Field|||✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0652|Chesnaught|type=Grass|type2=Fighting|1|Field|Field|||✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0656|Froakie|type=Water|1|Water 1|Water 1|||✔|✔|||✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0657|Frogadier|type=Water|1|Water 1|Water 1|||✔|✔|||✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0658|Greninja|type=Water|type2=Dark|1|Water 1|Water 1|form=All available forms|||✔|✔|||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0659|Bunnelby|type=Normal|1|Field|Field|||✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0660|Diggersby|type=Normal|type2=Ground|1|Field|Field|||✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0674|Pancham|type=Fighting|2|Field|Human-Like|||✔|✔|✔|||STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0675|Pangoro|type=Fighting|type2=Dark|2|Field|Human-Like|||✔|✔|✔|||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0686|Inkay|type=Dark|type2=Psychic|2|Water 1|Water 2|||✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0687|Malamar|type=Dark|type2=Psychic|2|Water 1|Water 2|||✔|✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0688|Binacle|type=Rock|type2=Water|1|Water 3|Water 3|||✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0689|Barbaracle|type=Rock|type2=Water|1|Water 3|Water 3|||✔|✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like|||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0702|Dedenne|type=Electric|type2=Fairy|2|Field|Fairy|||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0720|Hoopa|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|||✔|✔|||✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0721|Volcanion|type=Fire|type2=Water|1|No Eggs Discovered|No Eggs Discovered|||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0727|Incineroar|type=Fire|type2=Dark|1|Field|Field||||✔|✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0735|Gumshoos|type=Normal|1|Field|Field||||✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0739|Crabrawler|type=Fighting|1|Water 3|Water 3||||✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0740|Crabominable|type=Fighting|type2=Ice|1|Water 3|Water 3||||✔|||✔}}&lt;br /&gt;
{{Moveentry/7|0745|formsig=Mn|Lycanroc|type=Rock|1|Field|Field|form=Midnight Form||||−|−||✔}}&lt;br /&gt;
{{Moveentry/7|0753|Fomantis|type=Grass|1|Grass|Grass||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0754|Lurantis|type=Grass|1|Grass|Grass||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0757|Salandit|type=Poison|type2=Fire|2|Monster|Dragon||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0758|Salazzle|type=Poison|type2=Fire|2|Monster|Dragon||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0759|Stufful|type=Normal|type2=Fighting|1|Field|Field||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0760|Bewear|type=Normal|type2=Fighting|1|Field|Field||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0762|Steenee|type=Grass|1|Grass|Grass||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0763|Tsareena|type=Grass|1|Grass|Grass||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0764|Comfey|type=Fairy|1|Grass|Grass||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0766|Passimian|type=Fighting|1|Field|Field||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0768|Golisopod|type=Bug|type2=Water|2|Bug|Water 3||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0769|Sandygast|type=Ghost|type2=Ground|1|Amorphous|Amorphous||||−|−||✔}}&lt;br /&gt;
{{Moveentry/7|0770|Palossand|type=Ghost|type2=Ground|1|Amorphous|Amorphous||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0775|Komala|type=Normal|1|Field|Field||||−|||✔}}&lt;br /&gt;
{{Moveentry/7|0776|Turtonator|type=Fire|type2=Dragon|2|Monster|Dragon||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0777|Togedemaru|type=Electric|type2=Steel|2|Field|Fairy||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0778|Mimikyu|type=Ghost|type2=Fairy|1|Amorphous|Amorphous||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0779|Bruxish|type=Water|type2=Psychic|1|Water 2|Water 2||||−|||✔}}&lt;br /&gt;
{{Moveentry/7|0780|Drampa|type=Normal|type2=Dragon|2|Monster|Dragon||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0782|Jangmo-o|type=Dragon|1|Dragon|Dragon||||−|−||✔}}&lt;br /&gt;
{{Moveentry/7|0783|Hakamo-o|type=Dragon|type2=Fighting|1|Dragon|Dragon||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0784|Kommo-o|type=Dragon|type2=Fighting|1|Dragon|Dragon||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0786|Tapu Lele|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0787|Tapu Bulu|type=Grass|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0788|Tapu Fini|type=Water|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0794|Buzzwole|type=Bug|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0795|Pheromosa|type=Bug|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0796|Xurkitree|type=Electric|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0799|Guzzlord|type=Dark|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered||||✔|✔|||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0800|Necrozma|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|form=All available forms||||✔|✔||✔}}&lt;br /&gt;
{{Moveentry/7|0802|Marshadow|type=Fighting|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||✔|✔||}}&lt;br /&gt;
{{Moveentry/7|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||✔{{sup/7|USUM}}|✔||}}&lt;br /&gt;
{{Moveentry/7|0807|Zeraora|type=Electric|1|No Eggs Discovered|No Eggs Discovered||||✔{{sup/7|USUM}}|✔||}}&lt;br /&gt;
{{Moveentry/7|0810|Grookey|type=Grass|2|Field|Grass|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0811|Thwackey|type=Grass|2|Field|Grass|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0812|Rillaboom|type=Grass|2|Field|Grass|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0815|Cinderace|type=Fire|2|Field|Human-Like|||||−||✔}}&lt;br /&gt;
{{Moveentry/7|0817|Drizzile|type=Water|2|Water 1|Field|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0818|Inteleon|type=Water|2|Water 1|Field|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0819|Skwovet|type=Normal|1|Field|Field|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0820|Greedent|type=Normal|1|Field|Field|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0849|Toxtricity|type=Electric|type2=Poison|1|Human-Like|Human-Like|form=All forms|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0859|Impidimp|type=Dark|type2=Fairy|2|Fairy|Human-Like|||||−||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0860|Morgrem|type=Dark|type2=Fairy|2|Fairy|Human-Like|||||−||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0861|Grimmsnarl|type=Dark|type2=Fairy|2|Fairy|Human-Like|||||−||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0862|Obstagoon|type=Dark|type2=Normal|1|Field|Field|||||✔|||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0863|Perrserker|type=Steel|1|Field|Field|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|||||✔||}}&lt;br /&gt;
{{Moveentry/7|0868|Milcery|type=Fairy|2|Fairy|Amorphous|||||✔||−}}&lt;br /&gt;
{{Moveentry/7|0869|Alcremie|type=Fairy|2|Fairy|Amorphous|form=All forms|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0877|Morpeko|type=Electric|type2=Dark|2|Field|Fairy|||||✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0878|Cufant|type=Steel|2|Field|Mineral|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0879|Copperajah|type=Steel|2|Field|Mineral|||||✔||✔}}&lt;br /&gt;
{{Moveentry/7|0892|Urshifu|type=Fighting|type2=Dark|1|No Eggs Discovered|No Eggs Discovered|form=Single Strike Style|||||✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0892|Urshifu|type=Fighting|type2=Water|1|No Eggs Discovered|No Eggs Discovered|form=Rapid Strike Style|||||−||✔}}&lt;br /&gt;
{{Moveentry/7|0893|Zarude|type=Dark|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||||✔||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0901|Ursaluna|type=Ground|type2=Normal|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0901|formsig=B|Ursaluna|type=Ground|type2=Normal|1|Field|Field|form=Bloodmoon|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0903|Sneasler|type=Fighting|type2=Poison|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0907|Floragato|type=Grass|2|Field|Grass|||||||✔|STAB=&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0908|Meowscarada|type=Grass|type2=Dark|2|Field|Grass|||||||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0914|Quaquaval|type=Water|type2=Fighting|2|Flying|Water 1|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0918|Spidops|type=Bug|1|Bug|Bug|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0920|Lokix|type=Bug|type2=Dark|1|Bug|Bug|||||||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0921|Pawmi|type=Electric|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0922|Pawmo|type=Electric|type2=Fighting|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0923|Pawmot|type=Electric|type2=Fighting|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0930|Arboliva|type=Grass|type2=Normal|1|Grass|Grass|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0934|Garganacl|type=Rock|1|Mineral|Mineral|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0936|Armarouge|type=Fire|type2=Psychic|1|Human-Like|Human-Like|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0937|Ceruledge|type=Fire|type2=Ghost|1|Human-Like|Human-Like|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0944|Shroodle|type=Poison|type2=Normal|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0945|Grafaiai|type=Poison|type2=Normal|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0950|Klawf|type=Rock|1|Water 3|Water 3|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0953|Rellor|type=Bug|1|Bug|Bug|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0954|Rabsca|type=Bug|type2=Psychic|1|Bug|Bug|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0957|Tinkatink|type=Fairy|type2=Steel|1|Fairy|Fairy|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0958|Tinkatuff|type=Fairy|type2=Steel|1|Fairy|Fairy|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0959|Tinkaton|type=Fairy|type2=Steel|1|Fairy|Fairy|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0963|Finizen|type=Water|2|Field|Water 2|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0964|Palafin|type=Water|2|Field|Water 2|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0973|Flamigo|type=Flying|type2=Fighting|1|Flying|Flying|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0979|Annihilape|type=Fighting|type2=Ghost|1|Field|Field|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0983|Kingambit|type=Dark|type2=Steel|1|Human-Like|Human-Like|||||||✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/7|0985|Scream Tail|type=Fairy|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0991|Iron Bundle|type=Ice|type2=Water|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0992|Iron Hands|type=Fighting|type2=Electric|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|0995|Iron Thorns|type=Rock|type2=Electric|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|1000|Gholdengo|type=Steel|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|1006|Iron Valiant|type=Fairy|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|1014|Okidogi|type=Poison|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|1015|Munkidori|type=Poison|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|||||||✔}}&lt;br /&gt;
{{Moveentry/7|1017|Ogerpon|type=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||||||✔}}&lt;br /&gt;
{{Movefoot|Dark|7}}&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: Explorers of Time and Explorers of Darkness|Explorers]] series, Fling is a [[status move]] that sends the enemy in front flying across the room. If there is another enemy Pokémon in range, the target will collide, causing both Pokémon to take 10 HP damage. Despite being classified as a status move, it is only affected by {{m|Taunt}} in [[Pokémon Mystery Dungeon: Explorers of Sky|Explorers of Sky]].&lt;br /&gt;
&lt;br /&gt;
In [[Pokémon Super Mystery Dungeon]], using Fling opens the inventory and allows the leader to choose an item to fling (excluding held items). It only works when a visible enemy is within a fan-shaped area up to 10 tiles in front. Like [[Gravelerock]]s, the item will be flung in an arc, but otherwise has the same effect as when thrown normally. Partner Pokémon can use this move to fling their held item. Though Fling is listed as a status move, it is unaffected by {{a|Prankster}}.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=dark}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=16|acc=—%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=16|acc=—%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=13|ppmax=50|acc=—%|range=Others|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=13|ppmax=30|acc=100%|range=Front area|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=dark|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===[[Pokémon Rumble]]===&lt;br /&gt;
Fling will deal damage but also throws coins.&lt;br /&gt;
&lt;br /&gt;
==={{g|Rumble Rush}}===&lt;br /&gt;
{{RumbleRushPhysicalAttack|move=Fling|type=Dark&lt;br /&gt;
|stars=1&lt;br /&gt;
|pow=14.63376&lt;br /&gt;
|charge=0.5&lt;br /&gt;
|range=Projectile&lt;br /&gt;
|hits=1&lt;br /&gt;
|projectiles=1&lt;br /&gt;
|crit=1.5&lt;br /&gt;
|effect=None}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Hurls the target at another Pokémon to inflict damage.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|ポケモンを なげとばして てきポケモンに ぶつけて ダメージをあたえる|Hurls a Pokémon to collide with and inflict damage on an enemy Pokémon.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|You throw your held item in an arc and hit another Pokémon with it. It causes the same effect as when you throw an item at an enemy.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You throw your held item in an arc, hitting another Pokémon with it. It causes the same effect as throwing an item at an enemy.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|You throw an item in an arc, hitting another Pokémon with it. It causes the same effect as throwing an item at an enemy.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=dark|exp=yes|gen=The user throws objects it picks up at the foe.|image1=Bianca Emboar Fling.png|image1p=Emboar|image2=Ultra Ranger Passimian Fling.png|image2p=Passimian}}&lt;br /&gt;
{{movep|type=dark|ms=500|pkmn=Emboar|method=Emboar picks up one or multiple objects and then throws them at the opponent, one at a time. The larger the object, the more damage is dealt. It can also throw its opponent.}}&lt;br /&gt;
{{movemid|type=dark|user=Bianca&#039;s Emboar|startcode=BW072|startname=A Clubsplosion of Excitement!|notes=Debut}}&lt;br /&gt;
{{movep|type=dark|ms=766|pkmn=Passimian|method=Passimian throws a ball of mud at the opponent.}}&lt;br /&gt;
{{movebtm|type=dark|user=Ultra Rangers|user1=An Ultra Ranger&#039;s Passimian|startcode=SM100|startname=Battling the Beast Within!}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=dark|exp=yes|gen=The user throws its held item at the foe.|image1=Lax Fling.png|image1p=Munchlax}}&lt;br /&gt;
{{movep|type=dark|ms=446|pkmn=Munchlax|method=Munchlax pulls items from out of its fur and tosses them at the opponent.}}&lt;br /&gt;
{{movebtmManga|type=dark|user=Lax (Adventures)|user1=Diamond&#039;s Lax|startcode=PS362|startname=Dramatic Drapion &amp;amp; Crafty Kricketune II|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=Dark&lt;br /&gt;
|genIV=Fling IV&lt;br /&gt;
|genV=Fling V&lt;br /&gt;
|genVI=Fling VI&lt;br /&gt;
|genVI2=Fling VI 2&lt;br /&gt;
|genVII=Fling VII&lt;br /&gt;
|genVII2=Fling VII 2&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Dark&lt;br /&gt;
|genVIII=Fling VIII&lt;br /&gt;
|genVIII2=Fling VIII 2&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Dark&lt;br /&gt;
|PBR=Fling PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Dark&lt;br /&gt;
|PMDTDS=Fling PMD TDS&lt;br /&gt;
|PMDGTI=Fling PMD GTI&lt;br /&gt;
|PSMD=Fling PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Fling is one of two moves with a 100% chance of causing [[flinch]]ing (if holding a [[King&#039;s Rock]] or [[Razor Fang]]), the other being {{m|Fake Out}}.&lt;br /&gt;
* Fling is the only {{type|Dark}} move able to cause {{status|paralysis}} (if holding a [[Light Ball]]), a {{status|burn}} (if holding a [[Flame Orb]]), or {{status|poison}}ing (if holding a [[Poison Barb]] or [[Toxic Orb]]).&lt;br /&gt;
* In the {{pkmn|animated series}}, Fling can also be used to throw the remains of attacks, such as when [[Bianca&#039;s Emboar]] flung the remains of [[Trip]]&#039;s {{p|Conkeldurr}}&#039;s {{m|Stone Edge}} at it. It can also be used to throw the opponent.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{dark color}}|bordercolor={{dark color light}}&lt;br /&gt;
|zh_yue=投擲 &#039;&#039;{{tt|Tàuhjaahk|Throw}}&#039;&#039;&lt;br /&gt;
|zh_cmn=投擲 / 投掷 &#039;&#039;{{tt|Tóuzhí / Tóuzhì|Throw}}&#039;&#039;&lt;br /&gt;
|fr=Dégommage&lt;br /&gt;
|de=Schleuder&lt;br /&gt;
|el=Εκσφενδόνιση&lt;br /&gt;
|it=Lancio&lt;br /&gt;
|ko=내던지기 &#039;&#039;{{tt|Naedeonjigi|Fling}}&#039;&#039;&lt;br /&gt;
|pl=Rzut&lt;br /&gt;
|pt_br=Lança-item ([[BW072]])&amp;lt;br&amp;gt;Arremessar (TCG)&lt;br /&gt;
|pt_eu=Lançar&amp;lt;br&amp;gt;Atirar&lt;br /&gt;
|ru=бросать&lt;br /&gt;
|es_la=Tiro&lt;br /&gt;
|es_eu=Lanzamiento&lt;br /&gt;
|sr=Bacanje&lt;br /&gt;
|vi=Ném&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Fling}}&lt;br /&gt;
{{Generation IV TMs}}&lt;br /&gt;
{{Generation V TMs}}&lt;br /&gt;
{{Generation VI TMs}}&lt;br /&gt;
{{Generation VII TMs}}&lt;br /&gt;
{{Generation VIII TMs}}&lt;br /&gt;
{{Generation IX TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can inflict a burn]]&lt;br /&gt;
[[Category:Moves that can inflict paralysis]]&lt;br /&gt;
[[Category:Moves that can inflict poison]]&lt;br /&gt;
[[Category:Moves that can cause flinching]]&lt;br /&gt;
[[Category:Moves that have variable power]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Item-manipulating moves]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Schleuder]]&lt;br /&gt;
[[es:Lanzamiento]]&lt;br /&gt;
[[fr:Dégommage]]&lt;br /&gt;
[[it:Lancio]]&lt;br /&gt;
[[ja:なげつける]]&lt;br /&gt;
[[zh:投掷（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Me_First_(move)&amp;diff=4238192</id>
		<title>Me First (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Me_First_(move)&amp;diff=4238192"/>
		<updated>2025-02-12T16:15:51Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=382&lt;br /&gt;
|name=Me First&lt;br /&gt;
|jname=さきどり&lt;br /&gt;
|jtrans=Take in Advance&lt;br /&gt;
|jtranslit=Sakidori&lt;br /&gt;
|gameimage=Me First VII.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|gameimage2=Me First VII 2.png&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=20&lt;br /&gt;
|maxpp=32&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=—&lt;br /&gt;
|bdesc=If the user is faster then the foe, the user will copy the foe&#039;s next attack and use it with 150% power.&lt;br /&gt;
|gen=IV&lt;br /&gt;
|category=Cute&lt;br /&gt;
|appeal=2&lt;br /&gt;
|jam=0&lt;br /&gt;
|cdesc=Appeals first in the next turn&lt;br /&gt;
|appealsc=2&lt;br /&gt;
|scdesc=Enables the user to perform first in the next turn.&lt;br /&gt;
|category6=Clever&lt;br /&gt;
|appeal6=3&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Causes the user to move earlier on the next turn.&lt;br /&gt;
|pokefordex=Me%20First&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|flag7=no&lt;br /&gt;
|flag8=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=adjacentfoe&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Me First&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;さきどり&#039;&#039;&#039; &#039;&#039;Take in Advance&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation IV]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===Generation IV to VI===&lt;br /&gt;
If the target has not made its move this turn, but has selected a damage-dealing move, Me First copies that move preemptively and increases the [[power]] by 50%. It bypasses {{stat|accuracy}} checks to always hit, unless the opponent is in the [[semi-invulnerable turn]] of a move such as {{m|Dig}} or {{m|Fly}}. Me First will fail if the target selected a non-damaging move, or if the target already executed its move this turn.&lt;br /&gt;
&lt;br /&gt;
If the target is about to recharge from a move like {{m|Frenzy Plant}} this turn, Me First will copy the move. If a {{cat|Consecutively executed moves|consecutively executed move}} like {{m|Outrage}} is copied, it will force the user of Me First to use the move for several turns, but the 50% increase in power only applies to the first turn.&lt;br /&gt;
&lt;br /&gt;
Unlike other moves, if the target of Me First is a vacant slot or a Pokémon that already fainted before the Me First user&#039;s turn, Me First will fail instead of being redirected to an adjacent non-fainted opponent.&lt;br /&gt;
&lt;br /&gt;
In Generation V only, if a Pokémon holds a {{cat|Choice items|Choice item}} and uses Me First, it will not become locked into any move, and is free to select a different move on a later turn. In all other generations, it will become locked into Me First, rather than the move it copied (if any, and even if the Pokémon knows that move separately in one of its own move slots).&lt;br /&gt;
&lt;br /&gt;
The [[Assault Vest]] does not prevent a Pokémon from selecting Me First, the only status move for which this is the case.&lt;br /&gt;
&lt;br /&gt;
===Generation VII===&lt;br /&gt;
Now, when Pokémon holding a {{cat|Choice items|Choice item}} copy a {{cat|Consecutively executed moves|consecutively executed move}} or {{m|Bide}} with Me First, that move will fail after the first turn, because it is locked into Me First and attempting to use a different move.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-Me First, the user&#039;s {{stat|Speed}} stat rises by two stages. Additionally, the copied move will become its corresponding [[Z-Move]].&lt;br /&gt;
&lt;br /&gt;
===Generation VIII onwards===&lt;br /&gt;
Me First cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
===Uncallable moves===&lt;br /&gt;
Me First will fail if the target chose a [[Z-Move]] or any of the following moves. {{cat|Moves that call other moves}} are considered to be the original [[status move]] (not the move it calls), so Me First will always fail if the target has selected one of those moves.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #{{normal color light}}; border:5px solid #{{normal color}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; style=&amp;quot;background: #FFF; border:1px solid #{{normal color light}}; border-collapse:collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#{{normal color light}}&amp;quot;&lt;br /&gt;
!rowspan=2|{{color2|000|Move}}&lt;br /&gt;
!rowspan=2|{{color2|000|Type}}&lt;br /&gt;
!rowspan=2|{{color2|000|Damage category|Cat}}&lt;br /&gt;
!colspan=4|{{color2|000|Generation|Generations}}&lt;br /&gt;
|- style=&amp;quot;background: #{{normal color light}}&amp;quot;&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation IV|IV}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation V|V}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation VI|VI}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation VII|VII}}&lt;br /&gt;
{{movelist|Beak Blast|Flying|cat=Physical}}|| || || ||{{yes}}&lt;br /&gt;
{{movelist|Belch|Poison|cat=Special}}|| || ||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Chatter|Flying|cat=Special}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Counter|Fighting|cat=Physical}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Covet|Normal|cat=Physical}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Focus Punch|Fighting|cat=Physical}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Metal Burst|Steel|cat=Physical}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Mirror Coat|Psychic|cat=Special}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Shell Trap|Fire|cat=Special}}|| || || ||{{yes}}&lt;br /&gt;
{{movelist|Struggle|Normal|cat=Physical}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
{{movelist|Thief|Dark|cat=Physical}}||{{yes}}||{{yes}}||{{yes}}||{{yes}}&lt;br /&gt;
|}&lt;br /&gt;
|}&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user tries to cut ahead of the foe to steal and use the foe&#039;s intended move with greater power.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}|The user tries to cut ahead of the target to steal and use the target&#039;s intended move with greater power.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|XYORAS}}|The user cuts ahead of the target to steal and use the target&#039;s intended move with greater power. This move fails if it isn&#039;t used first.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev7|SMUSUMPE}}|The user cuts ahead of the target to copy and use the target&#039;s intended move with greater power. This move fails if it isn&#039;t used first.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|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/Games|Normal|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=none|g9=none}}&lt;br /&gt;
{{Moveentry/4|0055|Golduck|type=Water|2|Water 1|Field|−|−|−|1|}}&lt;br /&gt;
{{Moveentry/4|0108|Lickitung|type=Normal|1|Monster|Monster|37|41|41|41|}}&lt;br /&gt;
{{Moveentry/4|0150|Mewtwo|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|79|71|93|93|}}&lt;br /&gt;
{{Moveentry/4|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|70|70|70|70|}}&lt;br /&gt;
{{Moveentry/4|0161|Sentret|type=Normal|1|Field|Field|42|42|42|42|}}&lt;br /&gt;
{{Moveentry/4|0162|Furret|type=Normal|1|Field|Field|50|50|50|50|}}&lt;br /&gt;
{{Moveentry/4|0177|Natu|type=Psychic|type2=Flying|1|Flying|Flying|20|20|20{{sup/6|XY}}&amp;lt;br&amp;gt;50{{sup/6|ORAS}}|50|}}&lt;br /&gt;
{{Moveentry/4|0178|Xatu|type=Psychic|type2=Flying|1|Flying|Flying|20|20|20{{sup/6|XY}}&amp;lt;br&amp;gt;57{{sup/6|ORAS}}|57|}}&lt;br /&gt;
{{Moveentry/4|0234|Stantler|type=Normal|1|Field|Field|53|55|1, 55|1, 55|}}&lt;br /&gt;
{{Moveentry/4|0359|Absol|type=Dark|1|Field|Field|57|57{{sup/5|BW}}&amp;lt;br&amp;gt;60{{sup/5|B2W2}}|1, 60{{sup/6|XY}}&amp;lt;br&amp;gt;41{{sup/6|ORAS}}|41|}}&lt;br /&gt;
{{Moveentry/4|0448|Lucario|type=Fighting|type2=Steel|2|Field|Human-Like|29|29{{sup/5|BW}}&amp;lt;br&amp;gt;19{{sup/5|B2W2}}|37|37|}}&lt;br /&gt;
{{Moveentry/4|0463|Lickilicky|type=Normal|1|Monster|Monster|37|41|41|41|}}&lt;br /&gt;
{{Moveentry/4|0617|Accelgor|type=Bug|1|Bug|Bug||28|28|28|}}&lt;br /&gt;
{{Moveentry/4|0661|Fletchling|type=Normal|type2=Flying|1|Flying|Flying|||41|41|}}&lt;br /&gt;
{{Moveentry/4|0662|Fletchinder|type=Fire|type2=Flying|1|Flying|Flying|||46|46|}}&lt;br /&gt;
{{Moveentry/4|0663|Talonflame|type=Fire|type2=Flying|1|Flying|Flying|||49|49|}}&lt;br /&gt;
{{Moveentry/4|0678|formsig=F|Meowstic|type=Psychic|1|Field|Field|form=Female|||1|1|}}&lt;br /&gt;
{{Moveentry/4|0795|Pheromosa|type=Bug|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||||59|}}&lt;br /&gt;
{{Movefoot|Normal|4}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=none|g9=none}}&lt;br /&gt;
{{Moveentry/4|0019|Rattata|type=Normal|1|Field|Field|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0019|formsig=A|Rattata|type=Dark|type2=Normal|1|Field|Field|form=Alolan Form||||✔|}}&lt;br /&gt;
{{Moveentry/4|0079|Slowpoke|type=Water|type2=Psychic|2|Monster|Water 1|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0127|Pinsir|type=Bug|1|Bug|Bug|−|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0200|Misdreavus|type=Ghost|1|Amorphous|Amorphous|−|−|✔|✔||note=Chain breed}}&lt;br /&gt;
{{Moveentry/4|0234|Stantler|type=Normal|1|Field|Field|−|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0261|Poochyena|type=Dark|1|Field|Field|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0359|Absol|type=Dark|1|Field|Field|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0418|Buizel|type=Water|2|Water 1|Field|−|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0453|Croagunk|type=Poison|type2=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0522|Blitzle|type=Electric|1|Field|Field||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0540|Sewaddle|type=Bug|type2=Grass|1|Bug|Bug||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0551|Sandile|type=Ground|type2=Dark|1|Field|Field||−|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0580|Ducklett|type=Water|type2=Flying|2|Water 1|Flying||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0618|Stunfisk|type=Ground|type2=Electric|2|Water 1|Amorphous||−|✔|✔||note=Chain breed}}&lt;br /&gt;
{{Moveentry/4|0619|Mienfoo|type=Fighting|2|Field|Human-Like||✔|✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0674|Pancham|type=Fighting|2|Field|Human-Like|||✔|✔|}}&lt;br /&gt;
{{Moveentry/4|0701|Hawlucha|type=Fighting|type2=Flying|2|Human-Like|Flying|||✔|✔|note=Only in the Human-Like Egg Group in Gens VI-VII}}&lt;br /&gt;
{{Movefoot|Normal|4}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation V]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0019|Rattata|type=Normal|1|Field|Field|{{pkmn|Dream World}} - {{dwa|Pleasant Forest}}}}&lt;br /&gt;
{{Moveentry/1|0127|Pinsir|type=Bug|1|Bug|Bug|{{pkmn|Dream World}} - {{dwa|Dream Park}}}}&lt;br /&gt;
{{Moveentry/1|0580|Ducklett|type=Water|type2=Flying|2|Water 1|Flying|{{pkmn|Dream World}} - {{dwa|Windswept Sky}}}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
====[[Generation VII]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0542|Leavanny|type=Bug|type2=Grass|1|Bug|Bug|{{DL|QR Scanner|Island Scan}} - [[Poni Meadow]]{{sup/7|SM}}}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Me First targets an enemy in front, and uses a random damaging move that the enemy knows; the move will fail if the target has none. The damage of the called move is boosted by 50% in the [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers]] series (damage is also boosted in the [[Pokémon Mystery Dungeon (WiiWare)|Adventure Squad]] series).&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=22|acc=—%|range={{tt|Front|Indicated as Special in-game}}|target=All|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=22|acc=—%|range={{tt|Front|Indicated as Special in-game}}|target=All|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=15|ppmax=30|acc=—%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=normal|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TD}}|Causes the user to unleash a random move drawn from the facing enemy&#039;s move list. The move&#039;s power is boosted for greater damage. The move fails if the enemy has no damage-dealing moves.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|S}}|Causes the user to unleash a random move drawn from the facing Pokémon&#039;s move list. The move&#039;s power is boosted for greater damage. The move fails if the Pokémon has no damage-dealing moves.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|しょうめんの ポケモンの おぼえているわざのひとつを ランダムで えらんで はつどうする あたえるダメージも おおきくなる あいてが ダメージを あたえるわざを もっていないときは しっぱいになる|Causes the user to unleash a random move drawn from the facing Pokémon&#039;s move list. The move&#039;s power is boosted  for greater damage. The move  fails if the Pokémon has no damage-dealing moves}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You use one of the attack moves that the enemy knows.{{tt|*|Move Summary}}&amp;lt;br&amp;gt;You use one of the enemy&#039;s physical or special moves.{{tt|*|Move Description}}}}&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=normal|exp=yes|gen=The user cuts ahead of the target to copy and use the target&#039;s intended move.|image1=Kit Me First Cyrus Honchkrow Night Slash Adventures.png|image1p=Lickilicky;&amp;lt;br&amp;gt;using {{mcolor|Night Slash|000}}}}&lt;br /&gt;
{{movep|type=normal|ms=463|pkmn=Lickilicky|method=Lickilicky uses the same move that the target is about to use.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Kit|user1=Diamond&#039;s Kit|startcode=PS438|startname=The Final Dimensional Duel VIII|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=Normal&lt;br /&gt;
|genIV=Me First IV&lt;br /&gt;
|genV=Me First V&lt;br /&gt;
|genVI=Me First VI&lt;br /&gt;
|genVI2=Me First VI 2&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PBR=Me First PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PSMD=Me First PSMD&lt;br /&gt;
}}&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In link {{pkmn|battle}}s between {{player}}s, the user of Me First turns to face its own {{pkmn|Trainer}} during the &amp;quot;stealing&amp;quot; animation before executing the copied move normally.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color light}}&lt;br /&gt;
|zh_yue=搶先一步 &#039;&#039;{{tt|Chéungsīn Yātbouh|One Step Ahead}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;先搶先贏 &#039;&#039;{{tt|Sīnchéung Sīnyìhng|First Come, First Served}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=搶先一步 / 抢先一步 &#039;&#039;{{tt|Qiǎngxiān Yībù|One Step Ahead}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;先搶先贏 &#039;&#039;{{tt|Xiānqiǎng Xiānyíng|First Come, First Served}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Moi d&#039;Abord&lt;br /&gt;
|de=Egotrip&lt;br /&gt;
|el=Προτεραιότητα &#039;&#039;Protéraióteta&#039;&#039;&lt;br /&gt;
|it=Precedenza&lt;br /&gt;
|ko=선취 &#039;&#039;Seonchwi&#039;&#039;&lt;br /&gt;
|pl=Zwycięzca{{tt|*|Diamond and Pearl (TCG)}}&lt;br /&gt;
|pt_br=Primeiro Eu&lt;br /&gt;
|es=Yo Primero&lt;br /&gt;
|vi=Giành Quyền&lt;br /&gt;
|tr=İlk Ben}}&lt;br /&gt;
&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that call other moves]]&lt;br /&gt;
[[Category:Moves that cannot miss]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Egotrip]]&lt;br /&gt;
[[es:Yo primero]]&lt;br /&gt;
[[fr:Moi d&#039;Abord]]&lt;br /&gt;
[[it:Precedenza]]&lt;br /&gt;
[[ja:さきどり]]&lt;br /&gt;
[[zh:抢先一步（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Mimic_(move)&amp;diff=4238191</id>
		<title>Mimic (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Mimic_(move)&amp;diff=4238191"/>
		<updated>2025-02-12T16:15:28Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=102&lt;br /&gt;
|name=Mimic&lt;br /&gt;
|jname=ものまね&lt;br /&gt;
|jtranslit=Monomane&lt;br /&gt;
|jtrans=Mimic&lt;br /&gt;
|gameimage=Mimic IX.png&lt;br /&gt;
|gameimage2=Mimic IX 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy={{tt|—|100 in Generations I-II}}&lt;br /&gt;
|category=Cute&lt;br /&gt;
|appeal=1&lt;br /&gt;
|jam=0&lt;br /&gt;
|tm1=yes&lt;br /&gt;
|tm#1=31&lt;br /&gt;
|mtfl=yes&lt;br /&gt;
|mtxd=yes&lt;br /&gt;
|mte=yes&lt;br /&gt;
|na=no&lt;br /&gt;
|gen=I&lt;br /&gt;
|cdesc=Makes the appeal as good as the one before it.&lt;br /&gt;
|appealsc=0&lt;br /&gt;
|scdesc=Steals the Voltage of the Pokémon that just went.&lt;br /&gt;
|appeal6=1&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Shows off the Pokémon&#039;s appeal about as well as the move used just before it.&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mimic&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ものまね&#039;&#039;&#039; &#039;&#039;Mimic&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation I]]. It is [[TM31]] in Generation I.&lt;br /&gt;
&lt;br /&gt;
In [[Generation II]], it was the [[signature move]] of {{p|Sudowoodo}}, but other Pokémon could still inherit it via {{pkmn|breeding}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
{{MoveResearch|What moves that call other moves can mimic copy?}}&lt;br /&gt;
&lt;br /&gt;
Mimic copies a [[move]] from the target. The user will retain the copied move in Mimic&#039;s place, until the user faints or is switched out, or the battle ends.&lt;br /&gt;
&lt;br /&gt;
The user&#039;s [[summary]] remains unaffected by this, still displaying original moves.&lt;br /&gt;
&lt;br /&gt;
===Generation I===&lt;br /&gt;
In battles against a [[non-player character]] or [[wild Pokémon]], Mimic allows the user to see the target&#039;s moveset and select one of its moves to copy. However, in link battles as well as the {{jpn|Pokémon Stadium|Japanese}} and [[Pokémon Stadium|English Pokémon Stadium]] games, Mimic does not display the target&#039;s moveset; it copies one of the target&#039;s moves at random.&lt;br /&gt;
&lt;br /&gt;
Unlike in later generations, Mimic can copy all selectable moves, including the opponent&#039;s Mimic, {{m|Transform}}, and {{m|Metronome}}, as well as any move that the user already knows. However, Mimic can&#039;t copy {{m|Struggle}} because it is not a normally selectable move.&lt;br /&gt;
&lt;br /&gt;
[[File:Mimic Horn Drill PP.png|thumb|left|Horn Drill copied by Mimic with current PP higher than maximum PP&amp;lt;br&amp;gt;(9/5 PP)]]&lt;br /&gt;
In this generation only, the copied move will use Mimic&#039;s [[PP]] (therefore, Mimic itself loses PP whenever a move copied by Mimic is used). If a Pokémon uses Mimic as a result of {{m|Mirror Move}} or {{m|Metronome}}, then the copied move will use the PP of the move that called it. If the player uses any PP-healing items, they will heal up to Mimic&#039;s (or Mirror Move&#039;s, or Metronome&#039;s) maximum PP.&lt;br /&gt;
&lt;br /&gt;
Due to an [[List of battle glitches in Generation I#Mimic PP glitch|oversight]] in this generation only, moves copied by Mimic display an incorrect maximum PP value. The maximum PP displayed is taken from the copied move, instead of displaying Mimic&#039;s maximum PP.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon uses Mimic which was acquired from {{m|Transform}} (or if a Pokémon uses Mimic as a result of Mirror Move or Metronome acquired from Transform), then the 5 PP that is given by Transform will be used for the copied move as well, instead of using the Pokémon&#039;s own PP.&lt;br /&gt;
&lt;br /&gt;
Due to an [[List of battle glitches in Generation I#Mimic level up glitch|oversight]] in this generation only, if a Pokémon that used Mimic levels up in battle and learns a new [[move]], Mimic&#039;s effect is reverted. The move copied by Mimic is lost, and Mimic will be usable again.&lt;br /&gt;
&lt;br /&gt;
If Mimic copies a [[bound|binding]] move, and if the target switches out when its PP is 0 and before its duration is over, {{DL|List of glitches in Generation I|Struggle bypassing|the current PP of the move will roll over to 63}} and full [[PP Up]]s will be applied to it. This increased PP value can be used normally (and, as usual, other moves copied by Mimic will also use this PP value), and the user will retain the full PP Ups indefinitely. However, if the move&#039;s PP is healed (for instance, by using a PP-healing item or a [[Pokémon Center]]), then it will return to its legitimate maximum value (with full PP Ups).&lt;br /&gt;
&lt;br /&gt;
Mimic has an [[accuracy]] of 100.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
Mimic now copies the target&#039;s last used move. Using a move copied by Mimic does not deduct any PP from Mimic itself anymore.&lt;br /&gt;
&lt;br /&gt;
A move copied by Mimic will have 5 [[PP]], even if a [[PP Up]] or [[PP Max]] is used on Mimic to increase its PP.&lt;br /&gt;
&lt;br /&gt;
It now fails to copy the moves {{m|Sketch}}, {{m|Transform}}, {{m|Struggle}}, {{m|Metronome}}, or any move the user already knows.&lt;br /&gt;
&lt;br /&gt;
===Generation III===&lt;br /&gt;
Mimic now bypasses {{stat|accuracy}} checks to always hit, unless the opponent is in the [[semi-invulnerable turn]] of a move such as {{m|Dig}} or {{m|Fly}}. &lt;br /&gt;
&lt;br /&gt;
It fails to copy [[Shadow move]]s.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
Mimic can now be used to copy {{m|Transform}}, which could cause [[Mimic glitch|a glitch]] in early copies of the Japanese {{game|Diamond and Pearl|s}}. To trigger the glitch, a Pokémon must use Mimic to copy and use Transform, then faint. If the Mimic-using Pokémon&#039;s owner wins the battle, all moves gained from the use of Transform are retained after the battle.&lt;br /&gt;
&lt;br /&gt;
It copies {{m|Me First}}, not the move called by Me First. &lt;br /&gt;
&lt;br /&gt;
Mimic will fail to copy {{m|Chatter}}.&lt;br /&gt;
&lt;br /&gt;
===Generation V onwards===&lt;br /&gt;
The mimicked move now has the max PP as opposed to 5. Mimic is no longer able to copy Transform. A {{p|Rayquaza}} that mimics {{m|Dragon Ascent}} will not trigger the requirement for [[Mega Evolution]].&lt;br /&gt;
&lt;br /&gt;
Mimic will fail to copy [[Z-Move]]s and [[Max Move]]s.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-Mimic, the user&#039;s {{stat|accuracy}} is raised by one stage.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII===&lt;br /&gt;
====Pokémon Legends: Arceus====&lt;br /&gt;
{{LegendsMove&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=10&lt;br /&gt;
|actionspeed-user=0&lt;br /&gt;
|actionspeed-user-agile=0&lt;br /&gt;
|actionspeed-user-strong=0&lt;br /&gt;
|actionspeed-target=0&lt;br /&gt;
|actionspeed-target-agile=0&lt;br /&gt;
}}&lt;br /&gt;
Mimic cannot be [[move mastery|mastered]].&lt;br /&gt;
&lt;br /&gt;
===Other effects===&lt;br /&gt;
Two Pokémon can [[Evolution|evolve]] when they know Mimic: {{p|Bonsly}} into {{p|Sudowoodo}} and {{p|Mime Jr.}} into {{p|Mr. Mime}}.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Stad}}{{gameabbrevss|Stad2}}|A move for learning one of the opponent&#039;s moves, for use during that battle only.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev2|GSC}}|Copies a move used by the foe.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}|Copies a move used by the foe during one battle.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|The user copies the move last used by the foe for the rest of the battle.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|Copies a move used by the target during one battle.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user copies the move last used by the foe. The move can be used for the rest of the battle.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}|The user copies the target&#039;s last move. The move can be used during battle until the Pokémon is switched out.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev9|SV}}|The user copies the move last used by the target. The copied move can be used until the user of Mimic leaves the battle.}}&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/Games|Normal|g1=none|g7=2|g8=3}}&lt;br /&gt;
{{Moveentry/11|0039|Jigglypuff|type=Normal|type2=Fairy|1|Fairy|Fairy|−|39|41|45|45{{sup/6|XY}}&amp;lt;br&amp;gt;37{{sup/6|ORAS}}|38|24|28|28||28}}&lt;br /&gt;
{{Moveentry/11|0040|Wigglytuff|type=Normal|type2=Fairy|1|Fairy|Fairy|−|−|−|−|−|−|−|1|1||1}}&lt;br /&gt;
{{Moveentry/11|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|−|−|18|18{{sup/5|BW}}&amp;lt;br&amp;gt;15{{sup/5|B2W2}}|15|15|16|32|32|25}}&lt;br /&gt;
{{Moveentry/11|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form||||||||1}}&lt;br /&gt;
{{Moveentry/11|0133|Eevee|type=Normal|1|Field|Field|−|−|−|−|−|−|−|−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0134|Vaporeon|type=Water|1|Field|Field|−|−|−|−|−|−|−|−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0135|Jolteon|type=Electric|1|Field|Field|−|−|−|−|−|−|−|−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0136|Flareon|type=Fire|1|Field|Field|−|−|−|−|−|−|−|−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|−|−|−|−|−|−|1|−|−|−|−}}&lt;br /&gt;
{{Moveentry/11|0185|Sudowoodo|type=Rock|1|Mineral|Mineral|1|1|17|17{{sup/5|BW}}&amp;lt;br&amp;gt;15{{sup/5|B2W2}}|15|15||16|16|29|16}}&lt;br /&gt;
{{Moveentry/11|0196|Espeon|type=Psychic|1|Field|Field|−|−|−|−|−|−||−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0197|Umbreon|type=Dark|1|Field|Field|−|−|−|−|−|−||−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0438|Bonsly|type=Rock|1|No Eggs Discovered|No Eggs Discovered|||17|17{{sup/5|BW}}&amp;lt;br&amp;gt;33{{sup/5|B2W2}}|15|15||16|16|29|16}}&lt;br /&gt;
{{Moveentry/11|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|||18|18{{sup/5|BW}}&amp;lt;br&amp;gt;15{{sup/5|B2W2}}|15|15||32|32|25}}&lt;br /&gt;
{{Moveentry/11|0441|Chatot|type=Normal|type2=Flying|1|Flying|Flying|||29|33|33|33|||33|30}}&lt;br /&gt;
{{Moveentry/11|0470|Leafeon|type=Grass|1|Field|Field|||−|−|−|−||−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0471|Glaceon|type=Ice|1|Field|Field|||−|−|−|−||−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0700|Sylveon|type=Fairy|1|Field|Field|||||−|−||−|−|25|−}}&lt;br /&gt;
{{Moveentry/11|0778|Mimikyu|type=Ghost|type2=Fairy|1|Amorphous|Amorphous||||||19||24|||24}}&lt;br /&gt;
{{Moveentry/11|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like||||||||1}}&lt;br /&gt;
{{Moveentry/11|0931|Squawkabilly|type=Normal|type2=Flying|1|Flying|Flying|form=All forms|||||||||||1}}&lt;br /&gt;
{{Movefoot|Normal|11}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8g={{gameabbrev8|BDSP}}}}&lt;br /&gt;
{{Moveentry/8|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0173|Cleffa|type=Fairy|1|Fairy|Fairy|✔|✔|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0209|Snubbull|type=Fairy|2|Field|Fairy|−|−|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0439|Mime Jr.|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0676|Furfrou|type=Normal|1|Field|Field|form=All forms|||||✔|✔}}&lt;br /&gt;
{{Movefoot|Normal|8}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]/[[Move Tutor]]===&lt;br /&gt;
{{Movehead/TMGames|Normal|g2=none|g4=none|g5=none|g6=none|g7=none|g8=none|g9=none&lt;br /&gt;
|g1tm=31&lt;br /&gt;
|g3tm=tutor|g3g={{gameabbrev3|FRLG}}{{gameabbrev3|E}}{{gameabbrevss|XD}}}}&lt;br /&gt;
|-&lt;br /&gt;
| colspan=8 style=&amp;quot;text-align: center; background-color: #{{Red color light}}&amp;quot; | &#039;&#039;&#039;All Pokémon can learn this move via TM or by Move Tutor&amp;lt;br&amp;gt;&#039;&#039;except&#039;&#039; the ones listed below only if marked with ✘.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
{{Moveentry/2|0010|Caterpie|type=Bug|1|Bug|Bug|✘|✘}}&lt;br /&gt;
{{Moveentry/2|0011|Metapod|type=Bug|1|Bug|Bug|✘|✘}}&lt;br /&gt;
{{Moveentry/2|0013|Weedle|type=Bug|type2=Poison|1|Bug|Bug|✘|✘}}&lt;br /&gt;
{{Moveentry/2|0014|Kakuna|type=Bug|type2=Poison|1|Bug|Bug|✘|✘}}&lt;br /&gt;
{{Moveentry/2|0129|Magikarp|type=Water|2|Water 2|Dragon|✘|✘}}&lt;br /&gt;
{{Moveentry/2|0132|Ditto|type=Normal|1|Ditto|Ditto|✘|✘}}&lt;br /&gt;
{{Moveentry/2|0201|Unown|type=Psychic|1|No Eggs Discovered|No Eggs Discovered||✘}}&lt;br /&gt;
{{Moveentry/2|0202|Wobbuffet|type=Psychic|1|Amorphous|Amorphous||✘}}&lt;br /&gt;
{{Moveentry/2|0235|Smeargle|type=Normal|1|Field|Field||✘}}&lt;br /&gt;
{{Moveentry/2|0265|Wurmple|type=Bug|1|Bug|Bug||✘}}&lt;br /&gt;
{{Moveentry/2|0266|Silcoon|type=Bug|1|Bug|Bug||✘}}&lt;br /&gt;
{{Moveentry/2|0268|Cascoon|type=Bug|1|Bug|Bug||✘}}&lt;br /&gt;
{{Moveentry/2|0360|Wynaut|type=Psychic|1|No Eggs Discovered|No Eggs Discovered||✘}}&lt;br /&gt;
{{Moveentry/2|0374|Beldum|type=Steel|type2=Psychic|1|Mineral|Mineral||✘}}&lt;br /&gt;
{{Movefoot|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn2|event}}===&lt;br /&gt;
====[[Generation II]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0174|Igglybuff|type=Normal|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|{{DL|List of PCNY event Pokémon distributions in Generation II|Mimic Igglybuff|New York City Pokémon Center}}}}&lt;br /&gt;
{{Moveentry/1|0190|Aipom|type=Normal|1|Field|Field|{{DL|List of PCNY event Pokémon distributions in Generation II|Mimic Aipom|New York City Pokémon Center}}}}&lt;br /&gt;
{{Moveentry/1|0202|Wobbuffet|type=Psychic|1|Amorphous|Amorphous|{{DL|List of PCNY event Pokémon distributions in Generation II|Mimic Wobbuffet|New York City Pokémon Center}}}}&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;
Mimic targets the enemy in front, copying the last move they used. Prior to {{pkmn|Super Mystery Dungeon}}, Mimic will immediately use the enemy&#039;s last used move against the enemy. From Super Mystery Dungeon onwards, Mimic instead copies the enemy&#039;s last used move for the duration of the dungeon floor. The copied move can then be used from the next turn. &lt;br /&gt;
&lt;br /&gt;
Not all moves can be copied. In the [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|Rescue Team]] series, Mimic cannot copy itself, {{m|Encore}}, {{m|Sketch}} or a [[:Category:Moves that call other moves|move that calls other moves]] (except {{m|Sleep Talk}} and {{m|Snatch}}). In the [[Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|Explorers]] series, the move can now copy {{m|Nature Power}} and {{m|Metronome}}, as well as {{m|Me First}}.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=RB|pp=17|acc=100%|range=Front|target=Enemy}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=17|acc=100%|range=Front|target=Enemy}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=17|acc=100%|range=Front|target=Enemy}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=20|ppmax=40|acc=—%|range=Front|target=All|cuts=Yes}}&lt;br /&gt;
{{MDMovefoot|type=normal|RB=yes|TDS=yes|BSL=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Makes the user deploy the same move as the one last used by the foe facing it. Some moves cannot be mimicked.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Causes the user to unleash the same move as the one last used by the enemy it is facing. Some moves can&#039;t be mimicked.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|しょうめんの てきポケモンが さいごに くりだしたわざと おなじ わざをくりだす いくつか ものまねできないわざも ある|Causes the user to unleash the same move as the one last used by the enemy it is facing. Some moves can&#039;t be mimicked}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|It mimics an enemy&#039;s last move.{{tt|*|Move Summary}}&amp;lt;br&amp;gt;You counter the enemy by mimicking the enemy&#039;s last move.{{tt|*|Move Description}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=normal|exp=yes|gen=The user copies the target&#039;s last move. The move can be used for the rest of the battle.|image1=Katie Walrein Mimic.png|image1p=Walrein|image2=James Mime Jr Mimic Pin Missile.png|image2p=Mime Jr.;&amp;lt;br&amp;gt;using {{mcolor|Pin Missile|000}}|image3=Sudowoodo Mimic Flamethrower.png|image3p=Sudowoodo;&amp;lt;br&amp;gt;using {{mcolor|Flamethrower|000}}|image4=Brock Bonsly Mimic.png|image4p=Bonsly}}&lt;br /&gt;
{{movep|type=normal|ms=185|pkmn=Sudowoodo|method=Sudowoodo instantly copies the last move used by the opponent. Sometimes, the branches on its head will glow gold.}}&lt;br /&gt;
{{movemid|type=normal|user=Sudowoodo (Pokémon)|user1=A wild Sudowoodo|startcode=EP162|startname=Type Casting|notes=Debut}}&lt;br /&gt;
{{movemid|type=normal|user=Brock&#039;s Sudowoodo|startcode=DP014|startname=Leave It to Brocko!}}&lt;br /&gt;
{{movep|type=normal|ms=365|pkmn=Walrein|method=Walrein flashes purple and it copies and learns the last move used by the opponent until the end of the battle.}}&lt;br /&gt;
{{movemid|type=normal|user=Katie (Hoenn)|user1=Katie&#039;s Walrein|startcode=AG129|startname=A Judgment Brawl}}&lt;br /&gt;
{{movep|type=normal|ms=439|pkmn=Mime Jr.|method=Mime Jr. instantly copies the last move used by the opponent. Sometimes the ball on its head glows white.}}&lt;br /&gt;
{{movemid|type=normal|user=James&#039;s Mime Jr.|startcode=AG162|startname=Spontaneous Combusken!}}&lt;br /&gt;
{{movep|type=normal|ms=438|pkmn=Bonsly|method=The three green orbs on Bonsly&#039;s head glow gold and it copies the last move used by the opponent.}}&lt;br /&gt;
{{movebtm|type=normal|user=Brock&#039;s Bonsly|startcode=DP013|startname=A Staravia is Born!}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===The Electric Tale of Pikachu===&lt;br /&gt;
{{movemanga|type=normal|exp=yes|gen=The user copies the move last used by the target.|image1=Mikey Eevee Mimic Pin Missile EToP.png|image1p=Eevee;&amp;lt;br&amp;gt;using {{mcolor|Pin Missile|000}}}}&lt;br /&gt;
{{movep|type=normal|ms=133|pkmn=Eevee|method=Eevee instantly copies the last move the opponent used.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Mikey|user1=Mikey&#039;s Eevee|startcode=ET06|startname=To Evolve or Not to Evolve, That is the Question!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
===Phantom Thief Pokémon 7===&lt;br /&gt;
{{movemanga|type=normal|exp=yes|gen=The user copies the move last used by the target.|image1=Hiori Mime Jr Mimic Psywave.png|image1p=Mime Jr.;&amp;lt;br&amp;gt;using {{mcolor|Psywave|000}}|image2=Hiori Mime Jr Mimic Dark Void.png|image2p=Mime Jr.;&amp;lt;br&amp;gt;using {{mcolor|Dark Void|000}}}}&lt;br /&gt;
{{movep|type=normal|ms=439|pkmn=Mime Jr.|method=Mime Jr. copies the move last used by the opponent.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Hiori|user1=Hiori&#039;s Mime Jr.|startcode=P7-08|startname=Lily Regains Her Memories!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{Movemanga|type=normal|exp=yes|gen=The user copies the move last used by the target.|image1=Erika Bellsprout Mimic DoubleSlap Adventures.png|image1p=Bellsprout;&amp;lt;br&amp;gt;using {{mcolor|Double Slap|000}}|image2=Sudobo Mimic Primeape Cross Chop Adventures.png|image2p=Sudowoodo;&amp;lt;br&amp;gt;using {{mcolor|Cross Chop|000}}}}&lt;br /&gt;
{{movep|type=normal|ms=069|pkmn=Bellsprout|method=Bellsprout instantly copies the move the opponent last used.}}&lt;br /&gt;
{{MovemidManga|type=normal|user=Erika|user1=Erika&#039;s Bellsprout|startcode=PS020|startname=Meanwhile... Vileplume!|notes=Debut}}&lt;br /&gt;
{{movep|type=normal|ms=185|pkmn=Sudowoodo|method=Sudowoodo instantly copies the move last used by the opponent. It can also use the move to form its body to look like the opponent.}}&lt;br /&gt;
{{MovebtmManga|type=normal|user=Sudobo|user1=Gold&#039;s Sudobo|startcode=PS108|startname=Quilava Quandary}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genI=Mimic I&lt;br /&gt;
|genII=Mimic II&lt;br /&gt;
|genIII=Mimic III&lt;br /&gt;
|genIV=Mimic IV&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genV=Mimic V&lt;br /&gt;
|genVI=Mimic VI&lt;br /&gt;
|genVI2=Mimic VI 2&lt;br /&gt;
|genVII=Mimic VII&lt;br /&gt;
|genVII2=Mimic VII 2&lt;br /&gt;
|genVIII=Mimic VIII&lt;br /&gt;
|genVIII2=Mimic VIII 2&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|LA=Mimic LA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Stad=Mimic Stadium&lt;br /&gt;
|Stad2=Mimic Stad2&lt;br /&gt;
|Colo=Mimic Colo&lt;br /&gt;
|XD=Mimic XD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PBR=Mimic PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PMDRB=Mimic PMD RB&lt;br /&gt;
|PSMD=Mimic PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* In [[Generation III]], the status screen erroneously states that the move has 100% accuracy, even though it ignores accuracy and evasion checks.&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|Mòuhfóng|Mimic}}&#039;&#039;&lt;br /&gt;
|zh_cmn=模仿 &#039;&#039;{{tt|Mófǎng|Mimic}}&#039;&#039;&lt;br /&gt;
|cs=Nápodoba&lt;br /&gt;
|nl=Immitatie&lt;br /&gt;
|fi=Matkinta&lt;br /&gt;
|fr=Copie&lt;br /&gt;
|de=Mimikry&lt;br /&gt;
|pt=Mímica&lt;br /&gt;
|el=Μίμιση &#039;&#039;Mímisi&#039;&#039;&lt;br /&gt;
|he=חיקוי &#039;&#039;Khikuy&#039;&#039;&lt;br /&gt;
|id=Meniru&lt;br /&gt;
|it=Mimica&lt;br /&gt;
|ko=흉내내기 &#039;&#039;{{tt|Hyungnaenaegi|Mimicking}}&#039;&#039;&lt;br /&gt;
|sr=Imitiranje&lt;br /&gt;
|es_eu=Mimético&lt;br /&gt;
|es_la=Mímica&amp;lt;br&amp;gt;Simulador ([[AG129]])&lt;br /&gt;
|ro=Mimic&lt;br /&gt;
|pl=Naśladowanie&amp;lt;!--{{tt|*|Diamond and Pearl series onwards}}&amp;lt;br&amp;gt;Atak Naśladowczy{{tt|*|EP162}}--&amp;gt;&lt;br /&gt;
|sv=Härma&lt;br /&gt;
|vi=Bắt Chước&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Generation I TMs}}&amp;lt;br&amp;gt;&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Evolution-inducing moves]]&lt;br /&gt;
[[Category:Moves that cannot miss]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves in Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves in Pokémon Legends: Arceus]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Mimikry]]&lt;br /&gt;
[[es:Mimético]]&lt;br /&gt;
[[fr:Copie]]&lt;br /&gt;
[[it:Mimica]]&lt;br /&gt;
[[ja:ものまね]]&lt;br /&gt;
[[zh:模仿（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Encore_(move)&amp;diff=4238190</id>
		<title>Encore (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Encore_(move)&amp;diff=4238190"/>
		<updated>2025-02-12T16:13:37Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{redirect|Encore|the bad status condition in the Mystery Dungeon series|Status condition (Mystery Dungeon)#Volatile status conditions|Status condition (Mystery Dungeon)}}&lt;br /&gt;
{{MoveInfobox&lt;br /&gt;
|n=227&lt;br /&gt;
|name=Encore&lt;br /&gt;
|jname=アンコール&lt;br /&gt;
|jtrans=Encore&lt;br /&gt;
|jtranslit=Ankōru&lt;br /&gt;
|gameimage=Encore IX.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=5&lt;br /&gt;
|maxpp=8&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|gen=II&lt;br /&gt;
|category=Cute&lt;br /&gt;
|appeal=2&lt;br /&gt;
|jam=0&lt;br /&gt;
|cdesc=Makes all Pokémon after the user nervous.&lt;br /&gt;
|appealsc=1&lt;br /&gt;
|scdesc=Earn +3 if two Pokémon raise the Voltage in a row.&lt;br /&gt;
|appeal6=2&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Makes the remaining Pokémon nervous.&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=yes&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=yes&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
|na=no&lt;br /&gt;
|tr8=yes&lt;br /&gt;
|tr#8=30&lt;br /&gt;
|tm9=yes&lt;br /&gt;
|tm#9=122&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Encore&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;アンコール&#039;&#039;&#039; &#039;&#039;Encore&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation II]]. It was [[TR30]] in {{g|Sword and Shield}}, and is [[TM122]] in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
Encore temporarily prevents the target from using any move except the last used move.&lt;br /&gt;
&lt;br /&gt;
In every generation, Encore fails if the last move the target used was {{m|Transform}}, {{m|Mimic}}, {{m|Sketch}}, {{m|Mirror Move}}, Encore itself, {{m|Struggle}}, or a move that has no [[PP]] left. It also fails if the foe has not used a move yet.&lt;br /&gt;
&lt;br /&gt;
If the Pokémon affected by Encore runs out of [[PP]] for the affected move, the effects of Encore end immediately. If the move the Pokémon is locked into by Encore is currently blocked by {{m|Disable}}, {{m|Gravity}}, {{m|Heal Block}}, {{m|Imprison}}, {{m|Taunt}}, {{m|Throat Chop}}, or {{m|Torment}}, the Pokémon will be forced to use {{m|Struggle}}. In particular, a Pokémon under the effect of both Encore and Torment will be forced to use {{m|Struggle}} every two turns.&lt;br /&gt;
&lt;br /&gt;
Encore can hit through a {{OBP|substitute|doll}}.&lt;br /&gt;
&lt;br /&gt;
Encore cannot affect a Pokémon under the effect of {{a|Aroma Veil}}. Encore will fail if used against a Pokémon that has an active {{m|Shell Trap}} in waiting.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon is forced to use {{m|Beak Blast}} on a turn it chose another move, Beak Blast will fail.&lt;br /&gt;
&lt;br /&gt;
Encore can be used successfully any turn after the opponent went to sleep using {{m|Rest}} as long as it doesn&#039;t use Sleep Talk or wake up; moreover, the duration of Encore also takes into account the turns that the target spends sleeping without doing anything. Encore also works if the opponent had used Rest while at maximum HP.&lt;br /&gt;
&lt;br /&gt;
If the target has {{a|Truant}}, Encore will still work, forcing it to be locked into the last used move.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
Encore lasts for 2 to 6 turns.&lt;br /&gt;
&lt;br /&gt;
Encore fails if the last move the target used was a {{cat|Moves that call other moves|move that calls other moves}} (i.e. {{m|Sleep Talk}} and {{m|Metronome}}).&lt;br /&gt;
&lt;br /&gt;
If a Pokémon is affected by Encore before it can use its move that turn, it will be forced to use the move that Encore has locked it into.&lt;br /&gt;
&lt;br /&gt;
In Pokémon Stadium 2, if {{m|Roar}} or {{m|Whirlwind}} are used and the Pokémon that was forcefully summoned uses Encore in the next turn, Encore fails; however if Roar or Whirlwind are used when there is only one opposing Pokémon and it uses Encore in the next turn, then Encore succeeds.&lt;br /&gt;
&lt;br /&gt;
===Generation III===&lt;br /&gt;
Encore will no longer fail against {{cat|Moves that call other moves|moves that call other moves}}, aside from {{m|Mirror Move}}.&lt;br /&gt;
&lt;br /&gt;
A Pokémon affected by Encore cannot select the targets of its moves. If the Pokémon chooses to use the move, if that move can target a foe, a random foe will be targeted.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon is affected by Encore before it uses its move that turn, and it is now locked into a move other than the one it selected, it will be forced to use the move that Encore has locked it into; even if the move it is forced to use has a different [[priority]] than the move it had selected, the Pokémon will still move with the priority of the move it had selected. If the move the Pokémon is forced to use is the same as it had selected, the move will execute on its designated target that turn; otherwise, if the move it is locked into is a move that can target a single opponent, it will target a random opponent. If a Pokémon is forced to use {{m|Focus Punch}} on a turn it chose another move, the charging message does not appear, but it will still lose its focus if it took damage from an attack that turn.&lt;br /&gt;
&lt;br /&gt;
===Generation IV===&lt;br /&gt;
Encore now lasts for 3 to 7 turns in {{2v2|Diamond|Pearl}} and 4 to 8 turns in {{v2|Platinum}} and {{2v2|HeartGold|SoulSilver}}, despite its description saying otherwise. This is likely because Encore starts counting on the turn it was used, which means Encore will have no effect for one turn if the target moves before it receives the encore.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon is forced to use {{m|Acupressure}} on a turn it chose another move, it will randomly target either itself or an ally when executed.&lt;br /&gt;
&lt;br /&gt;
===Generations V and VI===&lt;br /&gt;
Encore now lasts exactly 3 turns. It can now be reflected by {{m|Magic Coat}}, but will then fail.&lt;br /&gt;
&lt;br /&gt;
A Pokémon affected by Encore can now select the target of its moves.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon is forced to use {{m|Focus Punch}} on a turn it chose another move, the charging message does not appear and it can be executed regardless of whether the Pokémon took damage that turn. If a Pokémon is forced to use {{m|Acupressure}} on a turn it chose another move, it will always target the user, not an ally.&lt;br /&gt;
&lt;br /&gt;
Encore can be used as a part of a [[Contest combination|Contest Spectacular combination]], causing certain moves ({{m|Counter}}, {{m|Destiny Bond}}, {{m|Grudge}}, {{m|King&#039;s Shield}}, {{m|Metal Burst}}, {{m|Mirror Coat}} and {{m|Spite}}) to give an extra three appeal points if any of them is used in the next turn.&lt;br /&gt;
&lt;br /&gt;
===Generation VII onwards===&lt;br /&gt;
Encore once again fails if the target&#039;s last move was a {{cat|Moves that call other moves|move that calls other moves}}, and additionally fails if it was {{m|Dynamax Cannon}} or a [[Z-Move]]. A Pokémon affected by Encore can use a Z-Move even if it is locked into another move (including on the same turn it became affected by Encore).&lt;br /&gt;
&lt;br /&gt;
If a Pokémon is forced to use a move at an increased [[priority]] due to selecting a priority move before being affected by an even faster Encore, Pokémon affected by {{m|Psychic Terrain}}, {{a|Queenly Majesty}}, {{a|Dazzling}}, or {{a|Armor Tail}} will block that move, even if the move that ends up being used does not normally have priority. Dark-type Pokémon will also block the move if the reason for the increased priority was {{a|Prankster}}, no matter if the replacement move is a status move or not.&lt;br /&gt;
&lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-Encore, the user&#039;s {{stat|Speed}} stat is raised by one stage.&lt;br /&gt;
&lt;br /&gt;
Encore fails if it targets a [[Dynamax]] Pokémon. Dynamax Pokémon that are affected by Encore (due to being inflicted with it before Dynamaxing) can use moves regardless of Encore. If a Pokémon&#039;s Dynamax recently ended, and Encore is then used against it before it can make another move, it will be forced to use the base move that powered up into its most recent Max Move.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Stad2}}|Forces the target to continue to use the move it used last for the next two to six turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev2|GSC}}|Makes the foe repeat 2-6 times.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}|Makes the foe repeat its last move over 2 to 6 turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|Makes the foe use the move it last used repeatedly for two to six turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|Makes target repeat its last move for 2 to 6 turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DP}}{{gameabbrevss|PBR}}|The user compels the foe to keep using only the move it last used for two to six turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|PtHGSS}}|The user compels the foe to keep using only the move it last used for three to seven turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}|The user compels the target to keep using only the move it last used for three turns.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user compels the target to keep using the move it encored for three turns.}}&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/Games|Normal|g1=none|g7=2|g8=2}}&lt;br /&gt;
{{Moveentry/10|0026|Raichu|type=Electric|2|Field|Fairy|−|−|−|−|−|−|1|−|−|−}}&lt;br /&gt;
{{Moveentry/10|0026|formsig=A|Raichu|type=Electric|type2=Psychic|2|Field|Fairy|form=Alolan Form||||||−|1|−||−}}&lt;br /&gt;
{{Moveentry/10|0035|Clefairy|type=Fairy|1|Fairy|Fairy|4|5|4|4|1|1|22|1|1|8}}&lt;br /&gt;
{{Moveentry/10|0036|Clefable|type=Fairy|1|Fairy|Fairy|−|−|−|−|−|−|−|1|1|{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/10|0055|Golduck|type=Water|2|Water 1|Field|−|−|−|−|−|−|1|−|−|−}}&lt;br /&gt;
{{Moveentry/10|0057|Primeape|type=Fighting|1|Field|Field|−|−|−|−|−|−|1||−|−}}&lt;br /&gt;
{{Moveentry/10|0065|Alakazam|type=Psychic|1|Human-Like|Human-Like|−|−|−|−|−|−|1|−|−}}&lt;br /&gt;
{{Moveentry/10|0068|Machamp|type=Fighting|1|Human-Like|Human-Like|−|−|−|−|−|−|1|−|−}}&lt;br /&gt;
{{Moveentry/10|0086|Seel|type=Water|2|Water 1|Field|−|−|13|13|13|13|8||13|13}}&lt;br /&gt;
{{Moveentry/10|0087|Dewgong|type=Water|type2=Ice|2|Water 1|Field|−|−|13|13|13|13|1, 8||13|13}}&lt;br /&gt;
{{Moveentry/10|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|31|25{{sup/3|RSE}}&amp;lt;br&amp;gt;26{{sup/3|FRLG}}|11|11{{sup/5|BW}}&amp;lt;br&amp;gt;18{{sup/5|B2W2}}|18|18|26|1|1}}&lt;br /&gt;
{{Moveentry/10|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form||||||||1}}&lt;br /&gt;
{{Moveentry/10|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|4|4|4|4|4|4||16|16|16}}&lt;br /&gt;
{{Moveentry/10|0175|Togepi|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|25|21{{sup/3|RSE}}&amp;lt;br&amp;gt;17{{sup/3|FRLG}}|19|17|17|17||−|−}}&lt;br /&gt;
{{Moveentry/10|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|25|21{{sup/3|RSE}}&amp;lt;br&amp;gt;17{{sup/3|FRLG}}|19|17|17|17||−|−}}&lt;br /&gt;
{{Moveentry/10|0202|Wobbuffet|type=Psychic|1|Amorphous|Amorphous|−|−|−|−|−|−||1|1}}&lt;br /&gt;
{{Moveentry/10|0213|Shuckle|type=Bug|type2=Rock|1|Bug|Bug|14|14|14{{sup/4|DP}}&amp;lt;br&amp;gt;9{{sup/4|PtHGSS}}|7{{sup/5|BW}}&amp;lt;br&amp;gt;5{{sup/5|B2W2}}|5|5||−|−}}&lt;br /&gt;
{{Moveentry/10|0287|Slakoth|type=Normal|1|Field|Field||7|7|7|7{{sup/6|XY}}&amp;lt;br&amp;gt;6{{sup/6|ORAS}}|6|||6|6}}&lt;br /&gt;
{{Moveentry/10|0288|Vigoroth|type=Normal|1|Field|Field||1, 7|1, 7|1, 7|1, 7{{sup/6|XY}}&amp;lt;br&amp;gt;1, 6{{sup/6|ORAS}}|1, 6|||1, 6|1}}&lt;br /&gt;
{{Moveentry/10|0289|Slaking|type=Normal|1|Field|Field||1, 7|1, 7|1, 7|1, 7{{sup/6|XY}}&amp;lt;br&amp;gt;1, 6{{sup/6|ORAS}}|1, 6|||1, 6|1}}&lt;br /&gt;
{{Moveentry/10|0311|Plusle|type=Electric|1|Fairy|Fairy||22|17|17|17{{sup/6|XY}}&amp;lt;br&amp;gt;10{{sup/6|ORAS}}|10|||10|10}}&lt;br /&gt;
{{Moveentry/10|0312|Minun|type=Electric|1|Fairy|Fairy||22|17|17|17{{sup/6|XY}}&amp;lt;br&amp;gt;10{{sup/6|ORAS}}|10|||10|10}}&lt;br /&gt;
{{Moveentry/10|0313|Volbeat|type=Bug|2|Bug|Human-Like||−|−|−|−|−|||26|−}}&lt;br /&gt;
{{Moveentry/10|0314|Illumise|type=Bug|2|Bug|Human-Like||25|25|25|25{{sup/6|XY}}&amp;lt;br&amp;gt;26{{sup/6|ORAS}}|26|||26|26}}&lt;br /&gt;
{{Moveentry/10|0316|Gulpin|type=Poison|1|Amorphous|Amorphous||23|23|23|23{{sup/6|XY}}&amp;lt;br&amp;gt;20{{sup/6|ORAS}}|20|||20|20}}&lt;br /&gt;
{{Moveentry/10|0317|Swalot|type=Poison|1|Amorphous|Amorphous||23|23|23|23{{sup/6|XY}}&amp;lt;br&amp;gt;20{{sup/6|ORAS}}|20|||20|20}}&lt;br /&gt;
{{Moveentry/10|0360|Wynaut|type=Psychic|1|No Eggs Discovered|No Eggs Discovered||1|1|1|1|1||1|1}}&lt;br /&gt;
{{Moveentry/10|0363|Spheal|type=Ice|type2=Water|2|Water 1|Field||7|7|7|7{{sup/6|XY}}&amp;lt;br&amp;gt;9{{sup/6|ORAS}}|9||33|33}}&lt;br /&gt;
{{Moveentry/10|0364|Sealeo|type=Ice|type2=Water|2|Water 1|Field||1, 7{{sup/3|RSE}}&amp;lt;br&amp;gt;7{{sup/3|FRLG}}|1, 7|1, 7|1, 7{{sup/6|XY}}&amp;lt;br&amp;gt;9{{sup/6|ORAS}}|9||35|35}}&lt;br /&gt;
{{Moveentry/10|0365|Walrein|type=Ice|type2=Water|2|Water 1|Field||1, 7{{sup/3|RSE}}&amp;lt;br&amp;gt;7{{sup/3|FRLG}}|1, 7|1, 7|1, 7{{sup/6|XY}}&amp;lt;br&amp;gt;7{{sup/6|ORAS}}|7||35|35}}&lt;br /&gt;
{{Moveentry/10|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|||11|11{{sup/5|BW}}&amp;lt;br&amp;gt;18{{sup/5|B2W2}}|18|18||8|8}}&lt;br /&gt;
{{Moveentry/10|0501|Oshawott|type=Water|1|Field|Field||||31|31|31||||31}}&lt;br /&gt;
{{Moveentry/10|0502|Dewott|type=Water|1|Field|Field||||36|36|37||||37}}&lt;br /&gt;
{{Moveentry/10|0503|Samurott|type=Water|1|Field|Field||||38|38|39||||39}}&lt;br /&gt;
{{Moveentry/10|0503|formsig=H|Samurott|type=Water|type2=Dark|1|Field|Field|form=Hisuian Form||||||||||39}}&lt;br /&gt;
{{Moveentry/10|0572|Minccino|type=Normal|1|Field|Field||||15|15|15||24||24}}&lt;br /&gt;
{{Moveentry/10|0573|Cinccino|type=Normal|1|Field|Field||||−|−|−||1||{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/10|0587|Emolga|type=Electric|type2=Flying|1|Field|Field||||38|38|38||35}}&lt;br /&gt;
{{Moveentry/10|0698|Amaura|type=Rock|type2=Ice|1|Monster|Monster|||||44|44||4}}&lt;br /&gt;
{{Moveentry/10|0699|Aurorus|type=Rock|type2=Ice|1|Monster|Monster|||||46|46||1}}&lt;br /&gt;
{{Moveentry/10|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like|||||20|20||16||16}}&lt;br /&gt;
{{Moveentry/10|0728|Popplio|type=Water|2|Water 1|Field||||||18||24||24}}&lt;br /&gt;
{{Moveentry/10|0729|Brionne|type=Water|2|Water 1|Field||||||19||30||30}}&lt;br /&gt;
{{Moveentry/10|0730|Primarina|type=Water|type2=Fairy|2|Water 1|Field||||||19||30||30}}&lt;br /&gt;
{{Moveentry/10|0758|Salazzle|type=Poison|type2=Fire|2|Monster|Dragon||||||1||1||1}}&lt;br /&gt;
{{Moveentry/10|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like||||||||1}}&lt;br /&gt;
{{Moveentry/10|0876|Indeedee|type=Psychic|type2=Normal|1|Fairy|Fairy|form=Male||||||||5||5}}&lt;br /&gt;
{{Moveentry/10|0924|Tandemaus|type=Normal|2|Field|Fairy||||||||||22}}&lt;br /&gt;
{{Moveentry/10|0925|Maushold|type=Normal|2|Field|Fairy|form=All forms||||||||||22}}&lt;br /&gt;
{{Moveentry/10|0963|Finizen|type=Water|2|Field|Water 2||||||||||34}}&lt;br /&gt;
{{Moveentry/10|0964|Palafin|type=Water|2|Field|Water 2||||||||||34}}&lt;br /&gt;
{{Movefoot|Normal|10}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]/[[TR]]===&lt;br /&gt;
{{Movehead/TMGames|Normal|g1=none|g2=none|g3=none|g4=none|g5=none|g6=none|g7=none&lt;br /&gt;
|g8=1|g8tm=30|tmhm8=TR|g8g={{gameabbrev8|SwSh}}&lt;br /&gt;
|g9tm=122}}&lt;br /&gt;
{{Moveentry/2|0025|Pikachu|type=Electric|2|Field|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0026|Raichu|type=Electric|2|Field|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0026|formsig=A|Raichu|type=Electric|type2=Psychic|2|Field|Fairy|form=Alolan Form|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0035|Clefairy|type=Fairy|1|Fairy|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0036|Clefable|type=Fairy|1|Fairy|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0037|Vulpix|type=Fire|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0037|formsig=A|Vulpix|type=Ice|1|Field|Field|form=Alolan Form|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0038|Ninetales|type=Fire|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0038|formsig=A|Ninetales|type=Ice|type2=Fairy|1|Field|Field|form=Alolan Form|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0039|Jigglypuff|type=Normal|type2=Fairy|1|Fairy|Fairy|−|✔}}&lt;br /&gt;
{{Moveentry/2|0040|Wigglytuff|type=Normal|type2=Fairy|1|Fairy|Fairy|−|✔}}&lt;br /&gt;
{{Moveentry/2|0054|Psyduck|type=Water|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0055|Golduck|type=Water|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0056|Mankey|type=Fighting|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0057|Primeape|type=Fighting|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0060|Poliwag|type=Water|1|Water 1|Water 1|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0061|Poliwhirl|type=Water|1|Water 1|Water 1|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0062|Poliwrath|type=Water|type2=Fighting|1|Water 1|Water 1|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0063|Abra|type=Psychic|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0064|Kadabra|type=Psychic|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0065|Alakazam|type=Psychic|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0066|Machop|type=Fighting|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0067|Machoke|type=Fighting|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0068|Machamp|type=Fighting|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0069|Bellsprout|type=Grass|type2=Poison|1|Grass|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0070|Weepinbell|type=Grass|type2=Poison|1|Grass|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0071|Victreebel|type=Grass|type2=Poison|1|Grass|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0086|Seel|type=Water|2|Water 1|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0087|Dewgong|type=Water|type2=Ice|2|Water 1|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0093|Haunter|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0094|Gengar|type=Ghost|type2=Poison|1|Amorphous|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0096|Drowzee|type=Psychic|1|Human-Like|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0097|Hypno|type=Psychic|1|Human-Like|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0107|Hitmonchan|type=Fighting|1|Human-Like|Human-Like|−|✔}}&lt;br /&gt;
{{Moveentry/2|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form|✔|}}&lt;br /&gt;
{{Moveentry/2|0124|Jynx|type=Ice|type2=Psychic|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0143|Snorlax|type=Normal|1|Monster|Monster|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0149|Dragonite|type=Dragon|type2=Flying|2|Water 1|Dragon|−|✔}}&lt;br /&gt;
{{Moveentry/2|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0152|Chikorita|type=Grass|2|Monster|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0153|Bayleef|type=Grass|2|Monster|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0154|Meganium|type=Grass|2|Monster|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0172|Pichu|type=Electric|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0174|Igglybuff|type=Normal|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|−|✔}}&lt;br /&gt;
{{Moveentry/2|0175|Togepi|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|}}&lt;br /&gt;
{{Moveentry/2|0176|Togetic|type=Fairy|type2=Flying|2|Flying|Fairy|✔|}}&lt;br /&gt;
{{Moveentry/2|0182|Bellossom|type=Grass|1|Grass|Grass|−|✔}}&lt;br /&gt;
{{Moveentry/2|0183|Marill|type=Water|type2=Fairy|2|Water 1|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0184|Azumarill|type=Water|type2=Fairy|2|Water 1|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0186|Politoed|type=Water|1|Water 1|Water 1|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0187|Hoppip|type=Grass|type2=Flying|2|Fairy|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0188|Skiploom|type=Grass|type2=Flying|2|Fairy|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0189|Jumpluff|type=Grass|type2=Flying|2|Fairy|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0191|Sunkern|type=Grass|1|Grass|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0192|Sunflora|type=Grass|1|Grass|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0194|Wooper|type=Water|type2=Ground|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0195|Quagsire|type=Water|type2=Ground|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0202|Wobbuffet|type=Psychic|1|Amorphous|Amorphous|✔|}}&lt;br /&gt;
{{Moveentry/2|0209|Snubbull|type=Fairy|2|Field|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0210|Granbull|type=Fairy|2|Field|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0213|Shuckle|type=Bug|type2=Rock|1|Bug|Bug|✔|}}&lt;br /&gt;
{{Moveentry/2|0231|Phanpy|type=Ground|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0232|Donphan|type=Ground|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0271|Lombre|type=Water|type2=Grass|2|Water 1|Grass|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0272|Ludicolo|type=Water|type2=Grass|2|Water 1|Grass|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0280|Ralts|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0281|Kirlia|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0282|Gardevoir|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0287|Slakoth|type=Normal|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0288|Vigoroth|type=Normal|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0289|Slaking|type=Normal|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0298|Azurill|type=Normal|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0311|Plusle|type=Electric|1|Fairy|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0312|Minun|type=Electric|1|Fairy|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0313|Volbeat|type=Bug|2|Bug|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0314|Illumise|type=Bug|2|Bug|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0316|Gulpin|type=Poison|1|Amorphous|Amorphous||✔}}&lt;br /&gt;
{{Moveentry/2|0317|Swalot|type=Poison|1|Amorphous|Amorphous||✔}}&lt;br /&gt;
{{Moveentry/2|0325|Spoink|type=Psychic|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0326|Grumpig|type=Psychic|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0331|Cacnea|type=Grass|2|Grass|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0332|Cacturne|type=Grass|type2=Dark|2|Grass|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0353|Shuppet|type=Ghost|1|Amorphous|Amorphous||✔}}&lt;br /&gt;
{{Moveentry/2|0354|Banette|type=Ghost|1|Amorphous|Amorphous||✔}}&lt;br /&gt;
{{Moveentry/2|0358|Chimecho|type=Psychic|1|Amorphous|Amorphous||✔}}&lt;br /&gt;
{{Moveentry/2|0360|Wynaut|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|}}&lt;br /&gt;
{{Moveentry/2|0363|Spheal|type=Ice|type2=Water|2|Water 1|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0364|Sealeo|type=Ice|type2=Water|2|Water 1|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0365|Walrein|type=Ice|type2=Water|2|Water 1|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0385|Jirachi|type=Steel|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0390|Chimchar|type=Fire|2|Field|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0391|Monferno|type=Fire|type2=Fighting|2|Field|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0392|Infernape|type=Fire|type2=Fighting|2|Field|Human-Like||✔}}&lt;br /&gt;
{{Moveentry/2|0417|Pachirisu|type=Electric|2|Field|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0427|Buneary|type=Normal|2|Field|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0428|Lopunny|type=Normal|2|Field|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|}}&lt;br /&gt;
{{Moveentry/2|0446|Munchlax|type=Normal|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0453|Croagunk|type=Poison|type2=Fighting|1|Human-Like|Human-Like|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0454|Toxicroak|type=Poison|type2=Fighting|1|Human-Like|Human-Like|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0457|Lumineon|type=Water|1|Water 2|Water 2||✔}}&lt;br /&gt;
{{Moveentry/2|0468|Togekiss|type=Fairy|type2=Flying|2|Flying|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0475|Gallade|type=Psychic|type2=Fighting|2|Human-Like|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0480|Uxie|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0481|Mesprit|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0482|Azelf|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0494|Victini|type=Psychic|type2=Fire|1|No Eggs Discovered|No Eggs Discovered|✔|}}&lt;br /&gt;
{{Moveentry/2|0501|Oshawott|type=Water|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0502|Dewott|type=Water|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0503|Samurott|type=Water|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0503|formsig=H|Samurott|type=Water|type2=Dark|1|Field|Field|form=Hisuian Form||✔}}&lt;br /&gt;
{{Moveentry/2|0509|Purrloin|type=Dark|1|Field|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0510|Liepard|type=Dark|1|Field|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0531|Audino|type=Normal|1|Fairy|Fairy|✔|}}&lt;br /&gt;
{{Moveentry/2|0546|Cottonee|type=Grass|type2=Fairy|2|Grass|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0547|Whimsicott|type=Grass|type2=Fairy|2|Grass|Fairy|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0548|Petilil|type=Grass|1|Grass|Grass|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0549|Lilligant|type=Grass|1|Grass|Grass|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0549|formsig=H|Lilligant|type=Grass|type2=Fighting|1|Grass|Grass|form=Hisuian Form||✔}}&lt;br /&gt;
{{Moveentry/2|0554|Darumaka|type=Fire|1|Field|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0554|formsig=G|Darumaka|type=Ice|1|Field|Field|form=Galarian Form|✔|}}&lt;br /&gt;
{{Moveentry/2|0555|Darmanitan|type=Fire|1|Field|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0555|formsig=G|Darmanitan|type=Ice|1|Field|Field|form=Galarian Form|✔|}}&lt;br /&gt;
{{Moveentry/2|0559|Scraggy|type=Dark|type2=Fighting|2|Field|Dragon|−|✔}}&lt;br /&gt;
{{Moveentry/2|0560|Scrafty|type=Dark|type2=Fighting|2|Field|Dragon|−|✔}}&lt;br /&gt;
{{Moveentry/2|0570|Zorua|type=Dark|1|Field|Field|−|✔}}&lt;br /&gt;
{{Moveentry/2|0571|Zoroark|type=Dark|1|Field|Field|✔|✔{{tt|*|Version 2.0.1 onwards}}}}&lt;br /&gt;
{{Moveentry/2|0572|Minccino|type=Normal|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0573|Cinccino|type=Normal|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0577|Solosis|type=Psychic|1|Amorphous|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0578|Duosion|type=Psychic|1|Amorphous|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0579|Reuniclus|type=Psychic|1|Amorphous|Amorphous|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0587|Emolga|type=Electric|type2=Flying|1|Field|Field|✔|}}&lt;br /&gt;
{{Moveentry/2|0588|Karrablast|type=Bug|1|Bug|Bug|✔|}}&lt;br /&gt;
{{Moveentry/2|0589|Escavalier|type=Bug|type2=Steel|1|Bug|Bug|✔|}}&lt;br /&gt;
{{Moveentry/2|0613|Cubchoo|type=Ice|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0614|Beartic|type=Ice|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0616|Shelmet|type=Bug|1|Bug|Bug|✔|}}&lt;br /&gt;
{{Moveentry/2|0617|Accelgor|type=Bug|1|Bug|Bug|✔|}}&lt;br /&gt;
{{Moveentry/2|0653|Fennekin|type=Fire|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0654|Braixen|type=Fire|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0655|Delphox|type=Fire|type2=Psychic|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0682|Spritzee|type=Fairy|1|Fairy|Fairy|✔|}}&lt;br /&gt;
{{Moveentry/2|0683|Aromatisse|type=Fairy|1|Fairy|Fairy|✔|}}&lt;br /&gt;
{{Moveentry/2|0698|Amaura|type=Rock|type2=Ice|1|Monster|Monster|✔|}}&lt;br /&gt;
{{Moveentry/2|0699|Aurorus|type=Rock|type2=Ice|1|Monster|Monster|✔|}}&lt;br /&gt;
{{Moveentry/2|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0719|Diancie|type=Rock|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0728|Popplio|type=Water|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0729|Brionne|type=Water|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0730|Primarina|type=Water|type2=Fairy|2|Water 1|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0733|Toucannon|type=Normal|type2=Flying|1|Flying|Flying||✔}}&lt;br /&gt;
{{Moveentry/2|0758|Salazzle|type=Poison|type2=Fire|2|Monster|Dragon|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0764|Comfey|type=Fairy|1|Grass|Grass|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0765|Oranguru|type=Normal|type2=Psychic|1|Field|Field|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0777|Togedemaru|type=Electric|type2=Steel|2|Field|Fairy|✔|}}&lt;br /&gt;
{{Moveentry/2|0801|Magearna|type=Steel|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0806|Blacephalon|type=Fire|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|✔|}}&lt;br /&gt;
{{Moveentry/2|0848|Toxel|type=Electric|type2=Poison|1|No Eggs Discovered|No Eggs Discovered|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0849|Toxtricity|type=Electric|type2=Poison|1|Human-Like|Human-Like|form=All forms|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|✔|}}&lt;br /&gt;
{{Moveentry/2|0869|Alcremie|type=Fairy|2|Fairy|Amorphous|form=All forms|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0876|Indeedee|type=Psychic|type2=Normal|1|Fairy|Fairy|form=Male|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0893|Zarude|type=Dark|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0898|Calyrex|type=Psychic|type2=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All forms|✔|✔}}&lt;br /&gt;
{{Moveentry/2|0909|Fuecoco|type=Fire|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0910|Crocalor|type=Fire|1|Field|Field||✔{{tt|*|Version 2.0.1 onwards}}}}&lt;br /&gt;
{{Moveentry/2|0911|Skeledirge|type=Fire|type2=Ghost|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0912|Quaxly|type=Water|2|Flying|Water 1||✔}}&lt;br /&gt;
{{Moveentry/2|0913|Quaxwell|type=Water|2|Flying|Water 1||✔}}&lt;br /&gt;
{{Moveentry/2|0914|Quaquaval|type=Water|type2=Fighting|2|Flying|Water 1||✔}}&lt;br /&gt;
{{Moveentry/2|0921|Pawmi|type=Electric|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0922|Pawmo|type=Electric|type2=Fighting|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0923|Pawmot|type=Electric|type2=Fighting|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0924|Tandemaus|type=Normal|2|Field|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0925|Maushold|type=Normal|2|Field|Fairy|form=All forms||✔}}&lt;br /&gt;
{{Moveentry/2|0930|Arboliva|type=Grass|type2=Normal|1|Grass|Grass||✔}}&lt;br /&gt;
{{Moveentry/2|0944|Shroodle|type=Poison|type2=Normal|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0945|Grafaiai|type=Poison|type2=Normal|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0957|Tinkatink|type=Fairy|type2=Steel|1|Fairy|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0958|Tinkatuff|type=Fairy|type2=Steel|1|Fairy|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0959|Tinkaton|type=Fairy|type2=Steel|1|Fairy|Fairy||✔}}&lt;br /&gt;
{{Moveentry/2|0963|Finizen|type=Water|2|Field|Water 2||✔}}&lt;br /&gt;
{{Moveentry/2|0964|Palafin|type=Water|2|Field|Water 2||✔}}&lt;br /&gt;
{{Moveentry/2|0979|Annihilape|type=Fighting|type2=Ghost|1|Field|Field||✔}}&lt;br /&gt;
{{Moveentry/2|0985|Scream Tail|type=Fairy|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered||✔}}&lt;br /&gt;
{{Moveentry/2|0991|Iron Bundle|type=Ice|type2=Water|1|No Eggs Discovered|No Eggs Discovered||✔}}&lt;br /&gt;
{{Moveentry/2|1006|Iron Valiant|type=Fairy|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||✔}}&lt;br /&gt;
{{Moveentry/2|1017|Ogerpon|type=Grass|1|No Eggs Discovered|No Eggs Discovered|form=All forms||✔}}&lt;br /&gt;
{{Movefoot|Normal|2}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=1|g8g={{gameabbrev8|BDSP}}}}&lt;br /&gt;
{{Moveentry/8|0037|formsig=A|Vulpix|type=Ice|1|Field|Field|form=Alolan Form||||||✔||−}}&lt;br /&gt;
{{Moveentry/8|0054|Psyduck|type=Water|2|Water 1|Field|−|−|✔{{sup/4|HGSS}}|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0056|Mankey|type=Fighting|1|Field|Field|−|−|✔{{sup/4|HGSS}}|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0060|Poliwag|type=Water|1|Water 1|Water 1|−|−|✔{{sup/4|HGSS}}|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0063|Abra|type=Psychic|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0066|Machop|type=Fighting|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0069|Bellsprout|type=Grass|type2=Poison|1|Grass|Grass|✔|✔|✔|✔|✔|✔|✔|−|note=Chain breed}}&lt;br /&gt;
{{Moveentry/8|0086|Seel|type=Water|2|Water 1|Field|✔|✔|✔|✔|✔|✔|✔|−|note=Chain breed in Gen II}}&lt;br /&gt;
{{Moveentry/8|0165|Ledyba|type=Bug|type2=Flying|1|Bug|Bug|−|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0172|Pichu|type=Electric|2|Field|Fairy|✔|✔|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0187|Hoppip|type=Grass|type2=Flying|2|Fairy|Grass|✔|✔|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0191|Sunkern|type=Grass|1|Grass|Grass|−|✔|✔|✔|✔|✔|✔|✔|note=Chain breed}}&lt;br /&gt;
{{Moveentry/8|0194|Wooper|type=Water|type2=Ground|2|Water 1|Field|−|−|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0280|Ralts|type=Psychic|type2=Fairy|2|Human-Like|Amorphous||−|✔{{sup/4|HGSS}}|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0298|Azurill|type=Normal|type2=Fairy|2|Water 1|Fairy||✔|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0313|Volbeat|type=Bug|2|Bug|Human-Like||−|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0314|Illumise|type=Bug|2|Bug|Human-Like||−|✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0327|Spinda|type=Normal|2|Field|Human-Like||✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0390|Chimchar|type=Fire|2|Field|Human-Like|||✔|✔|✔|✔|✔|−}}&lt;br /&gt;
{{Moveentry/8|0427|Buneary|type=Normal|2|Field|Human-Like|||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0441|Chatot|type=Normal|type2=Flying|1|Flying|Flying|||✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0509|Purrloin|type=Dark|1|Field|Field||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0531|Audino|type=Normal|1|Fairy|Fairy||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0546|Cottonee|type=Grass|type2=Fairy|2|Grass|Fairy||||✔|✔|✔||−}}&lt;br /&gt;
{{Moveentry/8|0548|Petilil|type=Grass|1|Grass|Grass||||−|−|✔{{sup/7|USUM}}||−}}&lt;br /&gt;
{{Moveentry/8|0554|Darumaka|type=Fire|1|Field|Field||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0613|Cubchoo|type=Ice|1|Field|Field||||✔|✔|✔||−}}&lt;br /&gt;
{{Moveentry/8|0616|Shelmet|type=Bug|1|Bug|Bug||||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/8|0777|Togedemaru|type=Electric|type2=Steel|2|Field|Fairy||||||✔}}&lt;br /&gt;
{{Moveentry/8|0909|Fuecoco|type=Fire|1|Field|Field||||||||✔}}&lt;br /&gt;
{{Movefoot|Normal|8}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation V]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0054|Psyduck|type=Water|2|Water 1|Field|{{pkmn|Dream World}} - {{dwa|Pleasant Forest}}}}&lt;br /&gt;
{{Moveentry/1|0187|Hoppip|type=Grass|type2=Flying|2|Fairy|Grass|{{pkmn|Dream World}} - {{dwa|Windswept Sky}}}}&lt;br /&gt;
{{Moveentry/1|0202|Wobbuffet|type=Psychic|1|Amorphous|Amorphous|{{pkmn|Dream World}} - {{dwa|Spooky Manor}}}}&lt;br /&gt;
{{Moveentry/1|0546|Cottonee|type=Grass|type2=Fairy|2|Grass|Fairy|{{pkmn|Dream World}} - {{dwa|Pleasant Forest}}}}&lt;br /&gt;
{{Moveentry/1|0616|Shelmet|type=Bug|1|Bug|Bug|{{pkmn|Dream World}} - {{dwa|Pleasant Forest}}}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
====[[Generation IX]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0057|Primeape|type=Fighting|1|Field|Field|[[Terastal phenomenon|Wild Tera Pokémon]] - [[Glaseado Mountain]]{{sup/9|SV}}}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn2|event}}===&lt;br /&gt;
====[[Generation II]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0231|Phanpy|type=Ground|1|Field|Field|[[List of Japanese event Pokémon distributions in Generation II#Phanpy|Pokémon Center Mystery Egg #1]]}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
====[[Generation III]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0331|Cacnea|type=Grass|2|Grass|Human-Like|[[List of Japanese event Pokémon distributions in Generation III#Cacnea|PokéPark Eggs]]}}&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|0510|Liepard|type=Dark|1|Field|Field|{{DL|List of local Korean event Pokémon distributions in Generation V|Se Jun&#039;s Liepard}}}}&lt;br /&gt;
{{Moveentry/1|0616|Shelmet|type=Bug|1|Bug|Bug|[[Summer 2011 Shelmet]]}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
====[[Generation VI]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0025|Pikachu|type=Electric|2|Field|Fairy|[[PGL Pikachu]]}}&lt;br /&gt;
{{Moveentry/1|0280|Ralts|type=Psychic|type2=Fairy|2|Human-Like|Amorphous|[[List of local event Pokémon distributions in Generation VI#Ralts 2|Pokémon Center Mega Tokyo Egg Ralts]]&amp;lt;br&amp;gt;[[List of local event Pokémon distributions in Generation VI#Ralts|Pokémon Center Hiroshima Egg Ralts]]}}&lt;br /&gt;
{{Movefoot|Normal|1}}&lt;br /&gt;
&lt;br /&gt;
====[[Generation VII]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0055|Golduck|type=Water|2|Water 1|Field|{{DL|List of local event Pokémon distributions in Pokémon Sun, Moon, Ultra Sun, and Ultra Moon|Ryota Otsubo&#039;s Golduck}}}}&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;
Encore inflicts the {{DL|Status condition (Mystery Dungeon)|Encore}} status condition on the enemy. The afflicted Pokémon will only be able to use the move it had most recently used. This status lasts for 6-11{{sup/md|RB}}{{sup/md|TDS}} / 11{{sup/md|GtI}}{{sup/md|SMD}} turns. From [[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 can be reflected by {{m|Magic Coat}}.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=RB|pp=12|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=12|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=12|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=10|ppmax=50|acc=95%|accmax=98%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=10|ppmax=30|acc=95%|accmax=98%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=normal|RB=yes|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Inflicts the Encore status on the target, making it capable of using only the move it last used.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Afflicts the targeted enemy with an Encore status condition. A Pokémon with the Encore status can use only the move it last used.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンを アンコールじょうたいにかえる アンコールじょうたいになると さいごに だしたわざしか だせなくなる|Afflicts the targeted enemy with an Encore status condition. A Pokémon with the Encore status can use only the move it last used}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|It causes the Encore status condition to an enemy. With the Encore status, it can use only the move it last used.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|It demands an encore from an enemy.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=normal|exp=yes|gen=The user creates a white ball which is fired at the opponent, forcing it to repeat its last move.|image1=Ursula Plusle Minun Encore.png|image1p=Plusle and Minun|image2=Ursula Plusle Minun Encore effect.png|image2p=Effect on target}}&lt;br /&gt;
{{movep|type=normal|ms=311|pkmn=Plusle|method=Plusle raises its hands and a white orb of energy appears between them. Plusle then fires the orb at the opponent. When the orb hits, the opponent&#039;s body sparkles white. As long as the opponent is sparkling white, it can only use the move it last used.}}&lt;br /&gt;
{{movemid|type=normal|user=Ursula|user1=Ursula&#039;s Plusle|startcode=DP162|startname=Playing the Performance Encore!|notes=Debut}}&lt;br /&gt;
{{movep|type=normal|ms=312|pkmn=Minun|method=Minun raises its hands and a white orb of energy appears between them. Minun then fires the orb at the opponent. When the orb hits, the opponent&#039;s body sparkles white. As long as the opponent is sparkling white, it can only use the move it last used.}}&lt;br /&gt;
{{movebtm|type=normal|user=Ursula|user1=Ursula&#039;s Minun|startcode=DP162|startname=Playing the Performance Encore!|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 points at the opponent and waves its finger around, causing the opponent to only use the last move it used for a brief period of time.|image1=Sabrina Mr Mime Encore Adventures.png|image1p=Mr. Mime}}&lt;br /&gt;
{{movep|type=normal|ms=122|pkmn=Mr. Mime|method=Mr. Mime points both of its pointer fingers at the opponent and waves them around. The opponent can only then use the last move it used for a short period of time.}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Sabrina|user1=Sabrina&#039;s Mr. Mime|startcode=PS158|startname=Silly Scyther|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=Normal&lt;br /&gt;
|genII=Encore II&lt;br /&gt;
|genIII=Encore III&lt;br /&gt;
|genIV=Encore IV&lt;br /&gt;
|genV=Encore V&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genVI=Encore VI&lt;br /&gt;
|SMUSUM=Encore VII&lt;br /&gt;
|LGPE=Encore PE&lt;br /&gt;
|genVIII=Encore VIII&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|Stad2=Encore Stad2&lt;br /&gt;
|Colo=Encore Colo&lt;br /&gt;
|XD=Encore XD&lt;br /&gt;
|PBR=Encore PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|PMDRB=Encore PMD RB&lt;br /&gt;
|PMDTDS=Encore PMD TDS&lt;br /&gt;
|PMDGTI=Encore PMD GTI&lt;br /&gt;
|PSMD=Encore PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
[[File:Encore PBR end.png|256px|thumb|right|Encore ending in Battle Revolution.]]&lt;br /&gt;
* Encore displays an animation when it ends in [[Pokémon Battle Revolution]].&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color light}}&lt;br /&gt;
|zh_yue=再來一次 &#039;&#039;{{tt|Joilòihyātchi|One More Time}}&#039;&#039;&lt;br /&gt;
|zh_cmn=再來一次 / 再来一次 &#039;&#039;{{tt|Zàiláiyīcì|One More Time}}&#039;&#039;&lt;br /&gt;
|nl=Toegift&lt;br /&gt;
|fr=Encore&lt;br /&gt;
|de=Zugabe&lt;br /&gt;
|el=Επανάληψη&lt;br /&gt;
|id=Encore&lt;br /&gt;
|it=Ripeti&lt;br /&gt;
|ko=앙코르 {{tt|&#039;&#039;Angkoleu&#039;&#039;|Encore}}&amp;lt;sup&amp;gt;{{gen|IX}}+&amp;lt;/sup&amp;gt;&amp;lt;br&amp;gt;앵콜 {{tt|&#039;&#039;Aengkol&#039;&#039;|Encore}}&amp;lt;sup&amp;gt;{{gen|II}}, {{gen|IV}}–{{gen|VIII}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|pl=Bis&lt;br /&gt;
|pt_br=Bis (TCG, manga)&amp;lt;br&amp;gt;Repetição (anime)&lt;br /&gt;
|pt_eu=Encore&lt;br /&gt;
|sr=Bis&lt;br /&gt;
|es=Otra Vez&lt;br /&gt;
|vi=Lặp Lại Chiêu Thức&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Generation VIII TMs}}&lt;br /&gt;
{{Generation IX TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves in Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
[[Category:Moves in Pokémon Mystery Dungeon: Gates to Infinity]]&lt;br /&gt;
[[Category:Moves in Pokémon Mystery Dungeon: Rescue Team DX]]&lt;br /&gt;
&lt;br /&gt;
[[de:Zugabe]]&lt;br /&gt;
[[es:Otra vez]]&lt;br /&gt;
[[fr:Encore]]&lt;br /&gt;
[[it:Ripeti]]&lt;br /&gt;
[[ja:アンコール]]&lt;br /&gt;
[[zh:再来一次（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Shell_Trap_(move)&amp;diff=4238189</id>
		<title>Shell Trap (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Shell_Trap_(move)&amp;diff=4238189"/>
		<updated>2025-02-12T16:13:05Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=704&lt;br /&gt;
|name=Shell Trap&lt;br /&gt;
|jname=トラップシェル&lt;br /&gt;
|jtrans=Trap Shell&lt;br /&gt;
|jtranslit=Torappu Sheru&lt;br /&gt;
|gameimage=Shell Trap VIII.png&lt;br /&gt;
|gameimage2=Shell Trap VIII 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Fire&lt;br /&gt;
|damagecategory=Special&lt;br /&gt;
|basepp=5&lt;br /&gt;
|maxpp=8&lt;br /&gt;
|power=150&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|priority=-3&lt;br /&gt;
|gen=VII&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=yes&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=yes&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=adjacentfoes&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Shell Trap&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;トラップシェル&#039;&#039;&#039; &#039;&#039;Trap Shell&#039;&#039;) is a damage-dealing {{type|Fire}} [[move]] introduced in [[Generation VII]]. It is the [[signature move]] of {{p|Turtonator}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
Shell Trap is a decreased [[priority]] move. The user sets up a trap at the beginning of the turn, then if it gets hit by an opponent&#039;s [[physical move]] within the same turn, it will use Shell Trap immediately after that move. Otherwise, when the user&#039;s scheduled turn happens at -3 priority, Shell Trap will fail at that time. If the user is affected by {{m|Powder}}, Powder will trigger when the user of Shell Trap is hit by a physical attack.&lt;br /&gt;
&lt;br /&gt;
{{m|Encore}} will fail if the target has an active Shell Trap in waiting.&lt;br /&gt;
&lt;br /&gt;
Shell Trap will not be triggered from the Pokémon being hit by an ally&#039;s move, having its {{OBP|substitute|doll}} take a hit, being hit by a move that&#039;s receiving a bonus from {{a|Sheer Force}}, being hit after its own turn has already passed (such as by {{m|Dragon Tail}} or another move with priority lower than -3), or being hit by a move that causes it to faint.&lt;br /&gt;
&lt;br /&gt;
Due to a [[glitch]], if a Pokémon&#039;s use of Shell Trap is preempted by {{m|Encore}} to lock it into another move instead, and the Pokémon is then hit by a physical attack on any turn before Encore ends, the Pokémon&#039;s next use of Shell Trap will skip the step of setting a trap, and the move will go off successfully at its normal priority regardless of whether it was hit in the current turn.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII===&lt;br /&gt;
====Pokémon Brilliant Diamond and Shining Pearl====&lt;br /&gt;
Shell Trap cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
===Generation IX===&lt;br /&gt;
Shell Trap cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Fire}}&lt;br /&gt;
{{movedescentry|{{gameabbrev7|SMUSUMPE}}|The user sets a shell trap. If the user is hit by a physical move, the trap will explode and inflict damage on the opposing Pokémon.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|SwShLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user sets a shell trap. If the user is hit by a physical move, the trap will explode and inflict damage on opposing Pokémon.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|BDSP}}|This move can’t be used. It’s recommended that this move is forgotten. Once forgotten, this move can’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/Games|Fire|g1=none|g2=none|g3=none|g4=none|g5=none|g6=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=1|g8g={{gameabbrev8|SwSh}}|g9=none}}&lt;br /&gt;
{{Moveentry/2|0776|Turtonator|type=Fire|type2=Dragon|2|Monster|Dragon|45|40||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Movefoot|Fire|2}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Masters EX]]===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background:#{{fire color}}; border:3px solid #{{fire color dark}}; text-align:center; width:80%&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #{{fire color light}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Name&lt;br /&gt;
! {{color2|000|Damage category|Category}}&lt;br /&gt;
! Move gauge cost&lt;br /&gt;
! MP&amp;lt;br&amp;gt;(uses)&lt;br /&gt;
! Base {{color2|000|power}}&lt;br /&gt;
! Max {{color2|000|power}}&lt;br /&gt;
! {{color2|000|Accuracy}}&lt;br /&gt;
! Target&lt;br /&gt;
! Effect tag&lt;br /&gt;
! Description&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Playable {{color2|000|Sync pair|sync pair(s)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|style=&amp;quot;{{roundybl|5px}}&amp;quot;|Shell Trap&lt;br /&gt;
{{statustable|Special}}&lt;br /&gt;
|3&lt;br /&gt;
|2 MP&lt;br /&gt;
|—&lt;br /&gt;
|—&lt;br /&gt;
|100%&lt;br /&gt;
|All opponents&lt;br /&gt;
|—&lt;br /&gt;
|The user takes up a counterattacking posture. Using this move again will cause the user to leave this posture. No other actions can be taken while in this posture. The user will leave this posture if hit by a physical attack move while it is in this counterattacking posture, then attack all opposing sync pairs.&lt;br /&gt;
|style=&amp;quot;{{roundybr|5px}}&amp;quot;|{{sync|Ryuki|Turtonator}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=fire|exp=yes|gen=If the user is attacked from behind, their shell spikes explode.|image1=Kiawe Turtonator Shell Trap.png|image1p=Turtonator}}&lt;br /&gt;
{{movep|type=fire|ms=776|pkmn=Turtonator|method=When the opponent attacks, Turtonator turns its shell at them. If the opponent makes contact with the spikes on Turtonator&#039;s shell, the spikes explode.}}&lt;br /&gt;
{{movebtm|type=fire|user=Kiawe&#039;s Turtonator|startcode=SM001|startname=Alola to New Adventure!|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=Fire&lt;br /&gt;
|genVII=Shell Trap VII&lt;br /&gt;
|genVII2=Shell Trap VII 2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Fire&lt;br /&gt;
|Masters=Shell Trap Masters&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{fire color}}|bordercolor={{fire color dark}}&lt;br /&gt;
|zh_yue=陷阱甲殼 &#039;&#039;{{tt|Hahmjehng Gaaphok|Trap Shell}}&#039;&#039;&lt;br /&gt;
|zh_cmn=陷阱甲殼 / 陷阱甲壳 &#039;&#039;{{tt|Xiànjǐng Jiǎké|Trap Shell}}&#039;&#039;&lt;br /&gt;
|fr=Carapiège&lt;br /&gt;
|de=Panzerfalle&lt;br /&gt;
|it=Gusciotrappola&lt;br /&gt;
|ko=트랩셸 {{tt|&#039;&#039;Teuraepsyel&#039;&#039;|Trap Shell}}&lt;br /&gt;
|pl=Pułapka Skorupy&lt;br /&gt;
|pt_br=Armadilha de Carapaça&lt;br /&gt;
|pt_eu=Carapaça Armadilha&lt;br /&gt;
|ru=Панцирь-Ловушка &#039;&#039;Pantsir&#039;-Lovushka&#039;&#039;&lt;br /&gt;
|es_la=Trampa Coraza&amp;lt;br&amp;gt;Rompecoraza{{tt|*|Mistake with Shell Smash}} ([[SM107]], [[SM129]])&lt;br /&gt;
|es_eu=Coraza Trampa&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Decreased priority moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Signature moves]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
&lt;br /&gt;
[[de:Panzerfalle]]&lt;br /&gt;
[[es:Coraza trampa]]&lt;br /&gt;
[[fr:Carapiège]]&lt;br /&gt;
[[it:Gusciotrappola]]&lt;br /&gt;
[[ja:トラップシェル]]&lt;br /&gt;
[[zh:陷阱甲殼（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Comeuppance_(move)&amp;diff=4238187</id>
		<title>Comeuppance (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Comeuppance_(move)&amp;diff=4238187"/>
		<updated>2025-02-12T16:08:32Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=894&lt;br /&gt;
|name=Comeuppance&lt;br /&gt;
|jname=ほうふく&lt;br /&gt;
|jtrans=Retaliation&lt;br /&gt;
|jtranslit=Hōfuku&lt;br /&gt;
|gameimage=Comeuppance IX.png&lt;br /&gt;
|gameimage2=Comeuppance IX 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Dark&lt;br /&gt;
|damagecategory=Physical&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|priority=0&lt;br /&gt;
|gen=IX&lt;br /&gt;
|touches=yes&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=varies&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Comeuppance&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ほうふく&#039;&#039;&#039; &#039;&#039;Retaliation&#039;&#039;) is a damage-dealing {{type|Dark}} [[move]] introduced in [[Generation IX]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
Comeuppance returns 1.5 times the damage dealt by the foe&#039;s last attack. Unlike {{m|Counter}} or {{m|Mirror Coat}}, Comeuppance does not require specifically [[physical move|physical]] or [[special move|special]] damage sources and Comeuppance does not have decreased [[priority]]; if the user acts before it is hit by an opponent&#039;s damaging move, Comeuppance will fail. The move also fails if the user&#039;s {{OBP|substitute|doll}} is hit instead. In battles involving multiple Pokémon, Comeuppance will hit the last opponent that dealt damage to the user. Comeuppance cannot affect ally Pokémon. However, if the last Pokémon to hit the user faints before the user moves, the remaining enemy Pokémon will be hit instead, like with a regular single-target damaging move (using the damage taken from the move of the now-fainted Pokémon that had hit the user).&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|dark}}&lt;br /&gt;
{{movedescentry|{{gameabbrev9|SV}}|The user retaliates with much greater force against the opponent that last inflicted damage on it.}}&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/Games|Dark|g1=none|g2=none|g3=none|g4=none|g5=none|g6=none|g7=none|g8=none}}&lt;br /&gt;
{{Moveentry/1|0228|Houndour|type=Dark|type2=Fire|1|Field|Field|37}}&lt;br /&gt;
{{Moveentry/1|0229|Houndoom|type=Dark|type2=Fire|1|Field|Field|41}}&lt;br /&gt;
{{Moveentry/1|0430|Honchkrow|type=Dark|type2=Flying|1|Flying|Flying|65}}&lt;br /&gt;
{{Moveentry/1|0943|Mabosstiff|type=Dark|1|Field|Field|{{tt|Evo.|Learned upon evolving}}}}&lt;br /&gt;
{{Movefoot|Dark|1}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Dark|g1=none|g2=none|g3=none|g4=none|g5=none|g6=none|g7=none|g8=none}}&lt;br /&gt;
{{Moveentry/1|0570|formsig=H|Zorua|type=Normal|type2=Ghost|1|Field|Field|form=Hisuian Form|✔}}&lt;br /&gt;
{{Movefoot|Dark|1}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Masters EX]]===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background:#{{dark color}}; border:3px solid #{{dark color dark}}; text-align:center; width:80%&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #{{dark color light}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Name&lt;br /&gt;
! {{color2|000|Damage category|Category}}&lt;br /&gt;
! State&lt;br /&gt;
! Base {{color2|000|power}}&lt;br /&gt;
! Max {{color2|000|power}}&lt;br /&gt;
! Target&lt;br /&gt;
! Effect tag&lt;br /&gt;
! Description&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Playable {{color2|000|sync pair}}&lt;br /&gt;
|- style=&amp;quot;background:#{{dark color dark}}&amp;quot;&lt;br /&gt;
! colspan=12 |{{color2|fff|Sync move}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
| style=&amp;quot;{{roundybl|5px}}&amp;quot; rowspan=3 | Chef&#039;s Spicy Comeuppance&lt;br /&gt;
| rowspan=3 align=&amp;quot;center&amp;quot; style=&amp;quot;background:#{{physical color}}&amp;quot;|{{color2|{{physical textcolor}}|Physical move|Physical}}&lt;br /&gt;
| Default&lt;br /&gt;
| rowspan=2 | 250&lt;br /&gt;
| rowspan=2 | 300&lt;br /&gt;
| rowspan=3 | An opponent&lt;br /&gt;
| rowspan=3 | —&lt;br /&gt;
| No additional effect.&lt;br /&gt;
| style=&amp;quot;{{roundybr|5px}}&amp;quot; rowspan=3 | {{sync|Arven|Mabosstiff}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! 6★ EX&lt;br /&gt;
! rowspan=2 | The sync buff is doubled the first time a sync move is used.&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
! 6★ EX with EX role&lt;br /&gt;
! 375&lt;br /&gt;
! 450&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{movegen&lt;br /&gt;
|type=Dark&lt;br /&gt;
|Masters=Comeuppance Masters&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Comeuppance has the same description text as {{m|Metal Burst}}.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{dark color}}|bordercolor={{dark color dark}}&lt;br /&gt;
|zh_yue=復仇 &#039;&#039;{{tt|Fuhksàuh|Avenge}}&#039;&#039;&lt;br /&gt;
|zh_cmn=復仇 / 复仇 &#039;&#039;{{tt|Fùchóu|Avenge}}&#039;&#039;&lt;br /&gt;
|fr=Vindicte&lt;br /&gt;
|de=Vendetta&lt;br /&gt;
|id=Ganjaran&lt;br /&gt;
|it=Ritorsione&lt;br /&gt;
|ko=앙갚음 &#039;&#039;{{tt|Anggap-eum|Revenge}}&#039;&#039;&lt;br /&gt;
|pt_br=Punição Justa&lt;br /&gt;
|es=Resarcimiento&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Metal Burst|Dark}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that deal direct damage]]&lt;br /&gt;
[[Category:Counterattacks]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Vendetta]]&lt;br /&gt;
[[es:Resarcimiento]]&lt;br /&gt;
[[fr:Vindicte]]&lt;br /&gt;
[[it:Ritorsione]]&lt;br /&gt;
[[ja:ほうふく]]&lt;br /&gt;
[[zh:复仇（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Metal_Burst_(move)&amp;diff=4238186</id>
		<title>Metal Burst (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Metal_Burst_(move)&amp;diff=4238186"/>
		<updated>2025-02-12T16:08:26Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=368&lt;br /&gt;
|name=Metal Burst&lt;br /&gt;
|jname=メタルバースト&lt;br /&gt;
|jtrans=Metal Burst&lt;br /&gt;
|jtranslit=Metaru Bāsuto&lt;br /&gt;
|gameimage=Metal Burst IX.png&lt;br /&gt;
|gameimage2=Metal Burst IX 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Steel&lt;br /&gt;
|damagecategory=Physical&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|gen=IV&lt;br /&gt;
|category=Beauty&lt;br /&gt;
|appealsc=2&lt;br /&gt;
|scdesc=Earns double the score on the final performance.&lt;br /&gt;
|category6=Cool&lt;br /&gt;
|appeal6=2&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Works great if the user goes last this turn.&lt;br /&gt;
|pokefordex=Metal%20Burst&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=no&lt;br /&gt;
|flag7=no&lt;br /&gt;
|flag8=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=varies&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Metal Burst&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;メタルバースト&#039;&#039;&#039; &#039;&#039;Metal Burst&#039;&#039;) is a damage-dealing {{type|Steel}} [[move]] introduced in [[Generation IV]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
Metal Burst returns 1.5 times the damage dealt by the foe&#039;s last attack. Only the last damage taken will be counted, if the user is hit by a multi-hit move, only the damage from the final hit will be counted. Unlike {{m|Counter}} or {{m|Mirror Coat}}, Metal Burst does not require specifically [[physical move|physical]] or [[special move|special]] damage sources and Metal Burst does not have decreased [[priority]]; if the user acts before it is hit by an opponent&#039;s damaging move, Metal Burst will fail. The move also fails if the user&#039;s {{OBP|substitute|doll}} is hit instead. In battles involving multiple Pokémon, Metal Burst will hit the last opponent that dealt damage to the user, even if that opponent is not adjacent to the user. However, if the last Pokémon to hit the user faints before the user moves, the remaining enemy Pokémon will be hit instead, like with a regular single-target damaging move (using the damage taken from the move of the now-fainted Pokémon that had hit the user). Metal Burst cannot affect allied Pokémon.&lt;br /&gt;
&lt;br /&gt;
Metal Burst can also be used as part of a [[Contest combination|Contest Spectacular combination]], with the user gaining an extra three appeal points if any of the moves {{m|Encore}}, {{m|Taunt}}, or {{m|Torment}} was used in the prior turn.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Steel}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}|The user retaliates against the foe that last inflicted damage on it with much greater power.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XY}}|The user retaliates with much greater power against the target that last inflicted damage on it.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|ORAS}}|The user retaliates with much greater power against the opponent that last inflicted damage on it.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user retaliates with much greater force against the opponent that last inflicted damage on it.}}&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/Games|Steel|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/7|0028|formsig=A|Sandslash|type=Ice|type2=Steel|1|Field|Field|form=Alolan Form||||1|1||1}}&lt;br /&gt;
{{Moveentry/7|0304|Aron|type=Steel|type2=Rock|1|Monster|Monster|46|53{{sup/5|BW}}&amp;lt;br&amp;gt;50{{sup/5|B2W2}}|50{{sup/6|XY}}&amp;lt;br&amp;gt;49{{sup/6|ORAS}}|49|60|60}}&lt;br /&gt;
{{Moveentry/7|0305|Lairon|type=Steel|type2=Rock|1|Monster|Monster|56|67{{sup/5|BW}}&amp;lt;br&amp;gt;62{{sup/5|B2W2}}|62{{sup/6|XY}}&amp;lt;br&amp;gt;55{{sup/6|ORAS}}|55|76|76}}&lt;br /&gt;
{{Moveentry/7|0306|Aggron|type=Steel|type2=Rock|1|Monster|Monster|65|82{{sup/5|BW}}&amp;lt;br&amp;gt;74{{sup/5|B2W2}}|74{{sup/6|XY}}&amp;lt;br&amp;gt;63{{sup/6|ORAS}}|63|88|88}}&lt;br /&gt;
{{Moveentry/7|0410|Shieldon|type=Rock|type2=Steel|1|Monster|Monster|37|37|37|37||37|37}}&lt;br /&gt;
{{Moveentry/7|0411|Bastiodon|type=Rock|type2=Steel|1|Monster|Monster|43|43|43|43||43|43}}&lt;br /&gt;
{{Moveentry/7|0413|formsig=S|Wormadam|type=Bug|type2=Steel|1|Bug|Bug|form=Trash Cloak|−|−|−|1||1, 26}}&lt;br /&gt;
{{Moveentry/7|0483|Dialga|type=Steel|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|24{{sup/4|HGSS}}|24|24|24|64|72|64}}&lt;br /&gt;
{{Moveentry/7|0589|Escavalier|type=Bug|type2=Steel|1|Bug|Bug||−|−|−|52}}&lt;br /&gt;
{{Moveentry/7|0625|Bisharp|type=Dark|type2=Steel|1|Human-Like|Human-Like||1|1|1|1||1}}&lt;br /&gt;
{{Moveentry/7|0638|Cobalion|type=Steel|type2=Fighting|1|No Eggs Discovered|No Eggs Discovered||67|1, 67|1, 55|35||35}}&lt;br /&gt;
{{Moveentry/7|0791|Solgaleo|type=Psychic|type2=Steel|1|No Eggs Discovered|No Eggs Discovered||||43|49||49}}&lt;br /&gt;
{{Moveentry/7|0863|Perrserker|type=Steel|1|Field|Field|||||1||1}}&lt;br /&gt;
{{Moveentry/7|0884|Duraludon|type=Steel|type2=Dragon|2|Mineral|Dragon|||||60||60}}&lt;br /&gt;
{{Moveentry/7|0889|Zamazenta|type=Fighting|1|No Eggs Discovered|No Eggs Discovered|form=All forms|||||1||44}}&lt;br /&gt;
{{Moveentry/7|0983|Kingambit|type=Dark|type2=Steel|1|Human-Like|Human-Like|||||||1}}&lt;br /&gt;
{{Moveentry/7|1018|Archaludon|type=Steel|type2=Dragon|2|Mineral|Dragon|||||||60}}&lt;br /&gt;
{{Moveentry/7|1023|Iron Crown|type=Steel|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|||||||84}}&lt;br /&gt;
{{Movefoot|Steel|7}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Steel|Egg Move|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/6|0111|Rhyhorn|type=Ground|type2=Rock|2|Monster|Field|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0302|Sableye|type=Dark|type2=Ghost|1|Human-Like|Human-Like|✔|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0303|Mawile|type=Steel|type2=Fairy|2|Field|Fairy|✔|✔|✔|−|✔|note=Breed through Sketch in Gen V, chain breed in Gen VI}}&lt;br /&gt;
{{Moveentry/6|0632|Durant|type=Bug|type2=Steel|1|Bug|Bug|−|−|−|✔}}&lt;br /&gt;
{{Moveentry/6|0968|Orthworm|type=Steel|1|Field|Field||||||✔}}&lt;br /&gt;
{{Movefoot|Steel|6}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
==={{g|Mystery Dungeon series}}===&lt;br /&gt;
Metal Burst causes the user to give itself the {{DL|Status condition (Mystery Dungeon)|Metal Burst}} status condition for 8-11 turns, causing any adjacent attacks to be reflected back at adjacent enemies for half the damage (prior to [[Pokémon Mystery Dungeon: Gates to Infinity|Gates to Infinity]]). From [[Gates to Infinity]] onwards, the user will reflect 3/4 of the move&#039;s damage back at the attacker. The status now lasts 6 turns.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=steel}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=12|acc=100%|range=User|target=User|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=12|acc=100%|range=User|target=User|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pp=13|ppmax=50|acc=—%|range=User|target=User|cuts=Yes}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=13|ppmax=30|acc=—%|range=User|target=User|cuts=Yes}}&lt;br /&gt;
{{MDMovefoot|type=steel|TDS=yes|BSL=yes|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===[[Pokémon Masters EX]]===&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background:#{{steel color}}; border:3px solid #{{steel color dark}}; text-align:center; width:80%&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #{{steel color light}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;{{roundytl|5px}}&amp;quot; | Name&lt;br /&gt;
! {{color2|000|Damage category|Category}}&lt;br /&gt;
! Move gauge cost&lt;br /&gt;
! MP&amp;lt;br&amp;gt;(uses)&lt;br /&gt;
! Base {{color2|000|power}}&lt;br /&gt;
! Max {{color2|000|power}}&lt;br /&gt;
! {{color2|000|Accuracy}}&lt;br /&gt;
! Target&lt;br /&gt;
! Effect tag&lt;br /&gt;
! Description&lt;br /&gt;
! style=&amp;quot;{{roundytr|5px}}&amp;quot; | Playable {{color2|000|Sync pair|sync pair(s)}}&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|style=&amp;quot;{{roundybl|5px}}&amp;quot;|Metal Burst&lt;br /&gt;
{{statustable|Physical}} &lt;br /&gt;
|3&lt;br /&gt;
|1&lt;br /&gt;
|150&lt;br /&gt;
|180&lt;br /&gt;
|100%&lt;br /&gt;
|An opponent&lt;br /&gt;
|—&lt;br /&gt;
|The user takes up a counterattacking posture. Using this move again will cause the user to leave this posture. No other actions can be taken while in this posture. The user will leave this posture if hit by an attack move while it is in this counterattacking posture, then attacks the opponent that made the hit. The more damage the user has taken, the greater the power of this attack.&lt;br /&gt;
|style=&amp;quot;{{roundybr|5px}}&amp;quot;|{{sync|Grimsley|Bisharp|Kimono}}&lt;br /&gt;
|}&lt;br /&gt;
* Description prior to Version 2.20.0 (from April 27, 2022): ...The more damage the user has taken, the greater the power of this move.&lt;br /&gt;
&lt;br /&gt;
====In-depth description====&lt;br /&gt;
This move&#039;s power scales based on how much [[HP]] the user loses while in their counterattacking posture.  The more HP lost, the higher this move&#039;s power multiplier. The power multiplier resets when the user leaves this posture.&lt;br /&gt;
&lt;br /&gt;
Here is a table showing the specifics of this move&amp;lt;ref name=&amp;quot;How Metal Coat works in Pokémon Masters EX&amp;quot;&amp;gt;[https://docs.google.com/document/d/1f5jJSZx4vkGIle2oiVWdbwQ82fl7RqYi84jPgaWbIKE/edit#heading=h.wws3b3ndj1pp &#039;&#039;Pokémon Masters Damage Formula&#039;&#039; by StDk]&amp;lt;/ref&amp;gt;:&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:left; background:#{{steel color}}; border:3px solid #{{steel color dark}}; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: #{{steel color light}}&amp;quot;&lt;br /&gt;
! style=&amp;quot;width: 200px&amp;quot;|HP Lost While in Counterattacking Posture&lt;br /&gt;
! style=&amp;quot;width: 75px&amp;quot;|Power Multiplier&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|0% — 33.3%&lt;br /&gt;
|×1&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|33.4% — 50%&lt;br /&gt;
|×1.5&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|50.1% — 83.3%&lt;br /&gt;
|×2.3&lt;br /&gt;
|- style=&amp;quot;background:#fff&amp;quot;&lt;br /&gt;
|83.4% — 99.9%&lt;br /&gt;
|×3.37&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Steel}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Gives the Pokémon that uses this move the Metal Burst status, which enables the Pokémon to counter damage from moves and regular attacks, inflicting half the damage on all surrounding enemies.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|じぶんを メタルバーストじょうたいにかえる てきからうけた わざや こうげきの はんぶんのダメージを まわりの てきポケモンに あたえる|Gives the Pokémon that uses this move the Metal Burst status, which enables the Pokémon to counter damage from moves and regular attacks, inflicting half the damage on all surrounding enemies}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|You&#039;ll get the Metal Burst status, which enables you to counter when you take damage.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You&#039;ll get the Metal Burst status condition, which enables you to counter when you take damage from moves.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|You&#039;ll get the Metal Burst condition, which enables you to counter when you take damage from moves.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=steel|exp=yes|gen=The user creates a ball of energy that absorbs the opponent&#039;s attack before firing it back.|image1=Byron Bastiodon Metal Burst throwing.png|image1p=Metal Burst thrown|image2=Byron Bastiodon Metal Burst hit.png|image2p=Hitting the opponent|image3=Byron Bastiodon Metal Burst.png|image3p=Bastiodon}}&lt;br /&gt;
{{movep|type=steel|ms=411|pkmn=Bastiodon|method=Bastiodon&#039;s body glows metallic as an opponent attacks it and it opens its mouth, forming a white ball in front of its mouth. The ball absorbs the attack and Bastiodon fires the white ball at the opponent.}}&lt;br /&gt;
{{movebtm|type=steel|user=Byron&#039;s Bastiodon|startcode=DP108|startname=Dealing With Defensive Types!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=steel|exp=yes|gen=The user returns the damage it took back at the opponent with several times more power.|image1=Don Metal Burst.png|image1p=Bastiodon|image2=Rono Metal Burst.png|image2p=Aggron|image3=Cobalion Metal Burst Adventures.png|image3p=Cobalion}}&lt;br /&gt;
{{movep|type=steel|ms=411|pkmn=Bastiodon|method=Bastiodon jumps in front of an attack and lets itself get hit with it while standing its ground. As the attack hits it, it raises its head slightly, releasing a powerful pulse of energy from its face outward. The pulse is the opponent&#039;s attack, and it is sent back with double the power.}}&lt;br /&gt;
{{movemid|type=steel|user=Don|user1=Diamond&#039;s Don|startcode=PS408|startname=High-tailing It from Haunter|notes=Debut}}&lt;br /&gt;
{{movep|type=steel|ms=638|pkmn=Cobalion|method=Cobalion releases a bright burst of energy from its body at the opponent.}}&lt;br /&gt;
{{movemid|type=steel|user=Swords of Justice (Adventures)#Cobalion|user1=Cobalion (Adventures)|startcode=PS515|startname=The Shadow Triad}}&lt;br /&gt;
{{movep|type=steel|ms=306|pkmn=Aggron|method=Aggron releases a burst of energy from its body at the opponent.}}&lt;br /&gt;
{{movebtmManga|type=steel|user=Rono|user1=Sapphire&#039;s Rono|startcode=PS609|startname=Kyogre Returns}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Steel&lt;br /&gt;
|genIV=Metal Burst IV&lt;br /&gt;
|genV=Metal Burst V&lt;br /&gt;
|genVI=Metal Burst VI&lt;br /&gt;
|genVI2=Metal Burst VI 2&lt;br /&gt;
|genVII=Metal Burst VII&lt;br /&gt;
|genVII2=Metal Burst VII 2&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Steel&lt;br /&gt;
|genVIII=Metal Burst VIII&lt;br /&gt;
|genVIII2=Metal Burst VIII 2&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Steel&lt;br /&gt;
|PBR=Metal Burst PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Steel&lt;br /&gt;
|PMDGTI=Metal Burst PMD GTI 2&lt;br /&gt;
|PSMD=Metal Burst PSMD 2&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Steel&lt;br /&gt;
|Masters=Metal Burst Masters&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Metal Burst has the same description text as {{m|Comeuppance}}.&lt;br /&gt;
* {{p|Zamazenta}} in its &#039;&#039;&#039;Hero of Many Battles&#039;&#039;&#039; form is the only Pokémon to learn Metal Burst to not be a {{t|Steel}}-type, nor be associated with minerals such as rocks ({{p|Rhyhorn}}) or gems ({{p|Sableye}}). While its &#039;&#039;&#039;Crowned Shield&#039;&#039;&#039; form is a Steel-type, Zamazenta does not need to be in that form to use Metal Burst.&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{steel color}}|bordercolor={{steel color light}}&lt;br /&gt;
|zh_yue=金屬爆炸 &#039;&#039;{{tt|Gāmsuhk Baauja|Metal Blast}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;合金爆裂 &#039;&#039;{{tt|Hahpgām Baauliht|Alloy Burst}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=金屬爆炸 / 金属爆炸 &#039;&#039;{{tt|Jīnshǔ Bàozhà|Metal Blast}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;合金爆裂 &#039;&#039;{{tt|Héjīn Bàoliè|Alloy Burst}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|nl=Metaalbarst&lt;br /&gt;
|fr=Fulmifer&lt;br /&gt;
|de=Metallstoß&lt;br /&gt;
|el=Μεταλλική Έκρηξη &#039;&#039;Métallo Ékrixi&#039;&#039;&lt;br /&gt;
|hi=मेटल का धमाका &#039;&#039;Metal Ka Dhamaka&#039;&#039;&lt;br /&gt;
|it=Metalscoppio&lt;br /&gt;
|ko=메탈버스트 {{tt|&#039;&#039;Metalbeoseuteu&#039;&#039;|Metal Burst}}&lt;br /&gt;
|pl=Metaliczny Wybuch&lt;br /&gt;
|pt_br=Explosão Metálica&lt;br /&gt;
|pt_eu=Jorro Metálico&lt;br /&gt;
|ro=Explozia Metalică&lt;br /&gt;
|sr=Metalni Prasak&lt;br /&gt;
|es_la=Explosión de Metal&lt;br /&gt;
|es_eu=Represión Metal&amp;lt;sup&amp;gt;{{gen|VI}}+&amp;lt;/sup&amp;gt;&amp;lt;br&amp;gt;Repr. Metal&amp;lt;sup&amp;gt;{{gen|IV}}–{{gen|V}}&amp;lt;/sup&amp;gt;&lt;br /&gt;
|vi=Kim Loại Công Phá&lt;br /&gt;
|ru=Взрыв Металла &#039;&#039;Vzryv Metalla&#039;&#039;&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Metal Burst}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that deal direct damage]]&lt;br /&gt;
[[Category:Counterattacks]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Metallstoß]]&lt;br /&gt;
[[es:Represión metal]]&lt;br /&gt;
[[fr:Fulmifer]]&lt;br /&gt;
[[it:Metalscoppio]]&lt;br /&gt;
[[ja:メタルバースト]]&lt;br /&gt;
[[zh:金属爆炸（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Copycat_(move)&amp;diff=4238185</id>
		<title>Copycat (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Copycat_(move)&amp;diff=4238185"/>
		<updated>2025-02-12T16:07:05Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{samename|[[Non-player character|NPC]] living in [[Saffron City]]|Copycat (character)}} &#039;&#039;For the {{Trading Card Game}} card featuring said character, see [[Copycat (Expedition 138)]].&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
{{MoveInfobox|&lt;br /&gt;
n=383 |&lt;br /&gt;
name=Copycat |&lt;br /&gt;
jname=まねっこ |&lt;br /&gt;
jtrans=Imitate |&lt;br /&gt;
jtranslit=Manekko |&lt;br /&gt;
gameimage=Copycat IX.png &lt;br /&gt;
|gameimage2=Copycat IX 2.png&lt;br /&gt;
|gameimagewidth=300 |&lt;br /&gt;
type=Normal |&lt;br /&gt;
damagecategory=Status |&lt;br /&gt;
basepp=20 |&lt;br /&gt;
maxpp=32 |&lt;br /&gt;
power=— |&lt;br /&gt;
accuracy=— |&lt;br /&gt;
gen=IV|&lt;br /&gt;
bdesc= |&lt;br /&gt;
category=Cool |&lt;br /&gt;
appeal=0 |&lt;br /&gt;
jam=0 |&lt;br /&gt;
cdesc=Receives voltage points if previous Pokémon reaches maximum voltage |&lt;br /&gt;
appealsc=0 |&lt;br /&gt;
scdesc=Steals the Voltage of the Pokémon that just went. |&lt;br /&gt;
category6=Cute |&lt;br /&gt;
appeal6=1 |&lt;br /&gt;
jam6=0 |&lt;br /&gt;
cdesc6=Shows off the Pokémon&#039;s appeal about as well as the move used just before it. |&lt;br /&gt;
pokefordex=copycat |&lt;br /&gt;
touches=no |&lt;br /&gt;
protect=no |&lt;br /&gt;
magiccoat=no |&lt;br /&gt;
snatch=no |&lt;br /&gt;
mirrormove=no |&lt;br /&gt;
kingsrock=no |&lt;br /&gt;
flag7=no |&lt;br /&gt;
flag8=no |&lt;br /&gt;
sound=no |&lt;br /&gt;
target=self |&lt;br /&gt;
footnotes= }}&lt;br /&gt;
&#039;&#039;&#039;Copycat&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;まねっこ&#039;&#039;&#039; &#039;&#039;Imitate&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation IV]].&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
{{MoveResearch|What effects do the Choice items have from Generation V on?}}&lt;br /&gt;
===Generation IV===&lt;br /&gt;
Copycat causes the user to use the last move that was used in the battle (even if the last move was by the user). If no move has been made, Copycat fails. If the copied move&#039;s target is not the user, an appropriate target is randomly chosen.&lt;br /&gt;
&lt;br /&gt;
The last-used move is updated whenever any Pokémon attempts to use a move.&lt;br /&gt;
* If a move successfully executes (generally, if the text &#039;&#039;&amp;quot;&amp;lt;Pokémon&amp;gt; used &amp;lt;move&amp;gt;!&amp;quot;&#039;&#039; is shown), that move becomes the last-used move. This is regardless of the move&#039;s result &amp;amp;mdash; whether it hit or missed or its effect was successful or failed (such as a {{m|Light Screen}} that fails because the previous Light Screen has not expired).&lt;br /&gt;
** Some moves that require multiple turns to execute do not count as valid moves in all of their turns. If Copycat executes after a turn when a move was not considered valid, Copycat will fail.&lt;br /&gt;
*** {{cat|Moves with a charging turn|Charging moves}}: the initial turn does not count as a valid move.&lt;br /&gt;
*** {{cat|Moves that require recharging|Recharging moves}}: the [[recharge]] turn does not count as a valid move.&lt;br /&gt;
*** {{m|Bide}}: the final turn does not count as a valid move.&lt;br /&gt;
** If {{cat|Moves that call other moves|any move calls another}}&amp;lt;!--Just in case: Snatch is not &amp;quot;used&amp;quot; when it steals an effect; the move &amp;quot;stolen&amp;quot; is still the &amp;quot;last used&amp;quot;.--&amp;gt;, the calling move is counted as the last move used instead of the called move.&lt;br /&gt;
*** However, this only applies to the turn when the calling move was selected to be used. If a called move requires multiple turns to execute in full (such as {{m|Bide}}, {{m|Dig}}, or {{m|Thrash}}), it may validly become the last-used move in subsequent turns.&lt;br /&gt;
* If a Pokémon tries to use a move but is prevented by a [[status condition]] or effect (such as {{status|sleep}}, {{status|paralysis}}, or [[flinch|flinching]]), the last-used move becomes invalid and Copycat will fail if it executes next.&lt;br /&gt;
&lt;br /&gt;
===Generations V and VI===&lt;br /&gt;
If any move successfully calls another, the called move now counts as the last move used instead of the calling move.&lt;br /&gt;
&lt;br /&gt;
The last move used is now unaffected if a Pokémon tries to use a move but is prevented by a status condition or effect. In other words, the last-used move remains what it was before the Pokémon&#039;s turn.&lt;br /&gt;
&lt;br /&gt;
{{cat|Moves with a charging turn|Charging moves}}, {{cat|Moves that require recharging|recharging moves}}, and {{m|Bide}} no longer have invalid turns that will cause Copycat to fail. Instead, charging moves and Bide can be copied on any turn, while recharging moves are ignored on their recharge turn (the last move used remains whatever it was before the recharge message appeared).&lt;br /&gt;
&lt;br /&gt;
===Generation VII onwards===&lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-Copycat, the user&#039;s {{stat|accuracy}} rises one stage. Additionally, if the move to be copied isn&#039;t a status move, then it will become its corresponding [[Z-Move]].&lt;br /&gt;
&lt;br /&gt;
Copycat fails if the most recently used move is a Z-Move, regardless of whether Copycat was powered up into Z-Copycat or not.&lt;br /&gt;
&lt;br /&gt;
If the most recently used move is a [[Max Move]], the user will copy the base move that was powered up. For example, if a Dynamax Pokémon used {{m|Max Guard}} by selecting a move slot that originally contained {{m|Trick Room}}, and the next Pokémon to move used Copycat, it would copy Trick Room, rather than copying Max Guard or failing entirely.&lt;br /&gt;
&lt;br /&gt;
===Uncallable moves===&lt;br /&gt;
{{MoveResearch|Uncallable moves in Generation VIII; Sketch in BDSP}}&lt;br /&gt;
Copycat will fail if any of the following moves is the last move used:&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #{{normal color light}}; border:5px solid #{{normal color}}&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
{| border=1 width=&amp;quot;100%&amp;quot; class=&amp;quot;expandable&amp;quot; style=&amp;quot;background: #FFF; border:1px solid #{{normal color light}}; border-collapse:collapse; text-align:center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#{{normal color light}}&amp;quot;&lt;br /&gt;
!rowspan=2|{{color2|000|Move}}&lt;br /&gt;
!rowspan=2|{{color2|000|Type}}&lt;br /&gt;
!rowspan=2|{{color2|000|Damage category|Cat}}&lt;br /&gt;
!colspan=5|{{color2|000|Generation|Generations}}&lt;br /&gt;
|- style=&amp;quot;background: #{{normal color light}}&amp;quot;&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation IV|IV}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation V|V}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation VI|VI}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation VII|VII}}&lt;br /&gt;
!style=&amp;quot;min-width:20px&amp;quot;|{{color2|000|Generation VIII|VIII}}&lt;br /&gt;
{{movelist|Assist|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||&lt;br /&gt;
{{movelist|Baneful Bunker|Poison|cat=Status}}|| || || ||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Beak Blast|Flying|cat=Physical}}|| || || ||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Behemoth Bash|Steel|cat=Physical}}|| || || || ||{{Yes}}&lt;br /&gt;
{{movelist|Behemoth Blade|Steel|cat=Physical}}|| || || || ||{{Yes}}&lt;br /&gt;
{{movelist|Bestow|Normal|cat=Status}}|| ||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Celebrate|Normal|cat=Status}}|| || ||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Chatter|Flying|cat=Special}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Circle Throw|Fighting|cat=Physical}}|| ||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Copycat|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Counter|Fighting|cat=Physical}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Covet|Normal|cat=Physical}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Destiny Bond|Ghost|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Detect|Fighting|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Dragon Tail|Dragon|cat=Physical}}|| ||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Dynamax Cannon|Dragon|cat=Special}}|| || || || ||{{Yes}}&lt;br /&gt;
{{movelist|Endure|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Feint|Normal|cat=Physical}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Focus Punch|Fighting|cat=Physical}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Follow Me|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Helping Hand|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Hold Hands|Normal|cat=Status}}|| || ||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|King&#039;s Shield|Steel|cat=Status}}|| || ||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Mat Block|Fighting|cat=Status}}|| || ||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Me First|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Metronome|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Mimic|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Mirror Coat|Psychic|cat=Special}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Mirror Move|Flying|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||&lt;br /&gt;
{{movelist|Protect|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Rage Powder|Bug|cat=Status}}|| ||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Roar|Normal|cat=Status}}||{{No}}||{{No}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Shell Trap|Fire|cat=Special}}|| || || ||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Sketch|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||&lt;br /&gt;
{{movelist|Sleep Talk|Normal|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Snatch|Dark|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||&lt;br /&gt;
{{movelist|Struggle|Normal|cat=Physical}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Spiky Shield|Grass|cat=Status}}|| || ||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Spotlight|Normal|cat=Status}}|| || || ||{{Yes}}||&lt;br /&gt;
{{movelist|Switcheroo|Dark|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Thief|Dark|cat=Physical}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Transform|Normal|cat=Status}}||{{No}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Trick|Psychic|cat=Status}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
{{movelist|Whirlwind|Normal|cat=Status}}||{{No}}||{{No}}||{{Yes}}||{{Yes}}||{{Yes}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
Additionally, Copycat fails if the last move used was a Z-Move.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPtHGSS}}{{gameabbrevss|PBR}}&amp;lt;br&amp;gt;{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|The user mimics the move used immediately before it. The move fails if no other move has been used yet.}}&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/Games|Normal|g1=none|g2=none|g3=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/7|0035|Clefairy|type=Fairy|1|Fairy|Fairy|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0036|Clefable|type=Fairy|1|Fairy|Fairy|−|−|−|−|1|1|{{tt|Rem.|Can only be learned via Move Reminder}}}}&lt;br /&gt;
{{Moveentry/7|0039|Jigglypuff|type=Normal|type2=Fairy|1|Fairy|Fairy|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0040|Wigglytuff|type=Normal|type2=Fairy|1|Fairy|Fairy|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0113|Chansey|type=Normal|1|Fairy|Fairy|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0122|Mr. Mime|type=Psychic|type2=Fairy|1|Human-Like|Human-Like|4|4|4|4|1|1}}&lt;br /&gt;
{{Moveentry/7|0122|formsig=G|Mr. Mime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|form=Galarian Form|||||1}}&lt;br /&gt;
{{Moveentry/7|0124|Jynx|type=Ice|type2=Psychic|1|Human-Like|Human-Like|−|−|−|−|1|1}}&lt;br /&gt;
{{Moveentry/7|0133|Eevee|type=Normal|1|Field|Field|−|−|−|−|30|30|30}}&lt;br /&gt;
{{Moveentry/7|0134|Vaporeon|type=Water|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0135|Jolteon|type=Electric|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0136|Flareon|type=Fire|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0173|Cleffa|type=Fairy|1|No Eggs Discovered|No Eggs Discovered|13|13|13|13|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0174|Igglybuff|type=Normal|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|17|17|17{{sup/6|XY}}&amp;lt;br&amp;gt;11{{sup/6|ORAS}}|11|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0185|Sudowoodo|type=Rock|1|Mineral|Mineral|1|1|1|1|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0196|Espeon|type=Psychic|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0197|Umbreon|type=Dark|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0238|Smoochum|type=Ice|type2=Psychic|1|No Eggs Discovered|No Eggs Discovered|38|41|41|41|8|8}}&lt;br /&gt;
{{Moveentry/7|0242|Blissey|type=Normal|1|Fairy|Fairy|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0300|Skitty|type=Normal|2|Field|Fairy|11{{sup/4|DP}}&amp;lt;br&amp;gt;18{{sup/4|PtHGSS}}|18|18{{sup/6|XY}}&amp;lt;br&amp;gt;19{{sup/6|ORAS}}|19||19}}&lt;br /&gt;
{{Moveentry/7|0301|Delcatty|type=Normal|2|Field|Fairy|−|−|−|−||1}}&lt;br /&gt;
{{Moveentry/7|0311|Plusle|type=Electric|1|Fairy|Fairy|24|24|24{{sup/6|XY}}&amp;lt;br&amp;gt;22{{sup/6|ORAS}}|22||22|22}}&lt;br /&gt;
{{Moveentry/7|0312|Minun|type=Electric|1|Fairy|Fairy|24|24|24{{sup/6|XY}}&amp;lt;br&amp;gt;22{{sup/6|ORAS}}|22||22|22}}&lt;br /&gt;
{{Moveentry/7|0327|Spinda|type=Normal|2|Field|Human-Like|10|10|10{{sup/6|XY}}&amp;lt;br&amp;gt;5{{sup/6|ORAS}}|5||5}}&lt;br /&gt;
{{Moveentry/7|0438|Bonsly|type=Rock|1|No Eggs Discovered|No Eggs Discovered|1|1|1|1|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0439|Mime Jr.|type=Psychic|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|4|4|4|4|1|1}}&lt;br /&gt;
{{Moveentry/7|0440|Happiny|type=Normal|1|No Eggs Discovered|No Eggs Discovered|5|5|5|5|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0447|Riolu|type=Fighting|1|No Eggs Discovered|No Eggs Discovered|29|29{{sup/5|BW}}&amp;lt;br&amp;gt;19{{sup/5|B2W2}}|19|19|48|48|48}}&lt;br /&gt;
{{Moveentry/7|0448|Lucario|type=Fighting|type2=Steel|2|Field|Human-Like|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0470|Leafeon|type=Grass|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0471|Glaceon|type=Ice|1|Field|Field|−|−|−|−|1|1|1}}&lt;br /&gt;
{{Moveentry/7|0481|Mesprit|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|61|61|1, 61|1, 61|70|70|70}}&lt;br /&gt;
{{Moveentry/7|0700|Sylveon|type=Fairy|1|Field|Field|||−|−|1||1}}&lt;br /&gt;
{{Moveentry/7|0778|Mimikyu|type=Ghost|type2=Fairy|1|Amorphous|Amorphous||||1|1||1}}&lt;br /&gt;
{{Moveentry/7|0802|Marshadow|type=Fighting|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered||||20|1}}&lt;br /&gt;
{{Moveentry/7|0831|Wooloo|type=Normal|1|Field|Field|||||8}}&lt;br /&gt;
{{Moveentry/7|0832|Dubwool|type=Normal|1|Field|Field|||||1}}&lt;br /&gt;
{{Moveentry/7|0866|Mr. Rime|type=Ice|type2=Psychic|1|Human-Like|Human-Like|||||1}}&lt;br /&gt;
{{Moveentry/7|0924|Tandemaus|type=Normal|2|Field|Fairy|||||||41}}&lt;br /&gt;
{{Moveentry/7|0925|Maushold|type=Normal|2|Field|Fairy|form=All forms|||||||46}}&lt;br /&gt;
{{Moveentry/7|0931|Squawkabilly|type=Normal|type2=Flying|1|Flying|Flying|form=All forms|||||||27}}&lt;br /&gt;
{{Moveentry/7|0973|Flamigo|type=Flying|type2=Fighting|1|Flying|Flying|||||||1}}&lt;br /&gt;
{{Movefoot|Normal|7}}&lt;br /&gt;
&lt;br /&gt;
===By {{pkmn|breeding}}===&lt;br /&gt;
{{Movehead/Games|Normal|Egg Move|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=2}}&lt;br /&gt;
{{Moveentry/6|0183|Marill|type=Water|type2=Fairy|2|Water 1|Fairy|−|−|−|✔|✔|}}&lt;br /&gt;
{{Moveentry/6|0298|Azurill|type=Normal|type2=Fairy|2|Water 1|Fairy|−|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0427|Buneary|type=Normal|2|Field|Human-Like|✔|✔|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0501|Oshawott|type=Water|1|Field|Field|✔|✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/6|0509|Purrloin|type=Dark|1|Field|Field||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0570|Zorua|type=Dark|1|Field|Field||✔|✔|✔||✔}}&lt;br /&gt;
{{Moveentry/6|0653|Fennekin|type=Fire|1|Field|Field||−|−|||✔}}&lt;br /&gt;
{{Moveentry/6|0669|Flabébé|type=Fairy|1|Fairy|Fairy|form=All forms||✔|✔|||✔}}&lt;br /&gt;
{{Moveentry/6|0684|Swirlix|type=Fairy|1|Fairy|Fairy||✔|✔|✔}}&lt;br /&gt;
{{Moveentry/6|0906|Sprigatito|type=Grass|2|Field|Grass||||||✔}}&lt;br /&gt;
{{Moveentry/6|0926|Fidough|type=Fairy|2|Field|Mineral||||||✔}}&lt;br /&gt;
{{Moveentry/6|0944|Shroodle|type=Poison|type2=Normal|1|Field|Field||||||✔}}&lt;br /&gt;
{{Movefoot|Normal|6}}&lt;br /&gt;
&lt;br /&gt;
===Special move===&lt;br /&gt;
====[[Generation IX]]====&lt;br /&gt;
{{Movehead/Special|Normal}}&lt;br /&gt;
{{Moveentry/1|0945|Grafaiai|type=Poison|type2=Normal|1|Field|Field|[[Terastal phenomenon|Wild Tera Pokémon]] - [[Tagtree Thicket]]{{sup/9|SV}}}}&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;
Copycat copies the target&#039;s last used move. Not all moves can be copied, such as {{m|Encore}}, {{m|Sketch}}, {{m|Assist}}, {{m|Metronome}}, {{m|Mirror Move}}, or {{m|Mimic}}.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=19|acc=—%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=19|acc=—%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=10|ppmax=30|acc=—%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=normal|TDS=yes|BSL=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|Normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Causes the user to unleash the same move as the last one used by the facing enemy. Some moves can&#039;t be copied.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|しょうめんの てきポケモンが さいごに くりだしたわざと おなじ わざをくりだす いくつか まねっこできないわざも ある|Causes the user to unleash the same move as the last one used by the facing enemy. Some moves can&#039;t be copied}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You counter the enemy by mimicking the enemy&#039;s last move.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|You counter the enemy by mimicking the enemy&#039;s last move. There are some moves that can&#039;t be used in this way.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=normal|exp=yes|gen=The user mimics the move used immediately before it.|image1=Cameron Lucario Copycat.png|image1p=Lucario;&amp;lt;br&amp;gt;copying a {{color2|000|Steel (type)|Steel}} move|image2=Chloe Eevee Copycat Heal Pulse.png|image2p=Eevee;&amp;lt;br&amp;gt;copying {{mcolor|Heal Pulse|000}}|image3=Cameron Riolu Copycat Leaf Blade.png|image3p=Riolu;&amp;lt;br&amp;gt;copying {{mcolor|Leaf Blade|000}}|image4=Chloe Eevee Copycat.png|image4p=Eevee;&amp;lt;br&amp;gt;copying a {{color2|000|Water (type)|Water}} move}}&lt;br /&gt;
{{movep|type=normal|ms=447|pkmn=Riolu|method=After the opponent has used a move, Riolu becomes surrounded by a waving aura of light. It then recalls how the opponent used the move, one of its eyes twinkles, and it uses the same move the opponent just used. The color of the aura depends on which type of move Riolu is copying.}}&lt;br /&gt;
{{movemid|type=normal|user=Cameron&#039;s Riolu|startcode=BW104|startname=Mission: Defeat Your Rival!|notes=Debut}}&lt;br /&gt;
{{movep|type=normal|ms=448|pkmn=Lucario|method=When it sees its opponent about to use a move, Lucario becomes surrounded by a waving aura of light. It then recalls how the opponent is using the move, and it uses the same move the opponent is using. The color of the aura depends on which type of move Lucario is copying.}}&lt;br /&gt;
{{movemid|type=normal|user=Cameron&#039;s Lucario|startcode=BW108|startname=A Unova League Evolution!}}&lt;br /&gt;
{{movep|type=normal|ms=185|pkmn=Sudowoodo|method=When Sudowoodo sees a Pokémon about to use a move, it uses the same move the Pokémon is using.}}&lt;br /&gt;
{{movemid|type=normal|user=Callahan|user1=Callahan&#039;s Sudowoodo|startcode=M21|startname=The Power of Us|notes=Incorrectly referred to as {{mcolor|Mimic|000}} in the English dub}}&lt;br /&gt;
{{movep|type=normal|ms=133|pkmn=Eevee|method=When Eevee sees a Pokémon about to use a move, its body becomes surrounded by an aura and it uses the same move the Pokémon is using. The color of the aura depends on which type of move Eevee is copying.}}&lt;br /&gt;
{{movemid|type=normal|user=Chloe&#039;s Eevee|startcode=JN049|startname=To Train, or Not to Train!}}&lt;br /&gt;
{{movebtm|type=normal|user=Alternate World Chloe|user1=Alternate World Chloe&#039;s Eevee|startcode=JN090|startname=Showdown at the Gates of Warp!}}&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 imitates the opponent&#039;s attacks.|image1=Ken Mime Jr. Copycat Adventures.png|image1p=Mime Jr.;&amp;lt;br&amp;gt;using {{mcolor|Fury Swipes|000}}}}&lt;br /&gt;
{{movep|type=normal|ms=439|pkmn=Mime Jr.|method=Mime Jr. copies the move used by the opponent.}}&lt;br /&gt;
{{movebtm|type=normal|user=Team Rocket Elite Trio|user1=Ken&#039;s Mime Jr.|startcode=PS460|startname=All About Arceus IX|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=Normal|&lt;br /&gt;
genIV=Copycat IV|&lt;br /&gt;
genV=Copycat V|&lt;br /&gt;
genVI=Copycat VI |&lt;br /&gt;
genVI2=Copycat VI 2|&lt;br /&gt;
genVII=Copycat VII|&lt;br /&gt;
genVII2=Copycat VII 2&lt;br /&gt;
}}&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=Normal&lt;br /&gt;
|genVIII=Copycat VIII&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Normal|&lt;br /&gt;
PBR=Copycat PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Normal|&lt;br /&gt;
PMDTDS=Copycat PMD TDS|&lt;br /&gt;
PSMD=Copycat PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{normal color}}|bordercolor={{normal color light}}&lt;br /&gt;
|zh_yue=仿效 &#039;&#039;{{tt|Fónghaauh|Imitate}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;仿造 &#039;&#039;{{tt|Fóngjouh|Reproduce}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|zh_cmn=仿效 &#039;&#039;{{tt|Fǎngxiào|Imitate}}&#039;&#039; {{tt|*|Games}}&amp;lt;br&amp;gt;仿造 &#039;&#039;{{tt|Fǎngzào|Reproduce}}&#039;&#039; {{tt|*|Pre-Gen VII Media}}&lt;br /&gt;
|fr=Photocopie&lt;br /&gt;
|de=Imitator&lt;br /&gt;
|el=Αντιγραφή &#039;&#039;Antigrafí&#039;&#039;&lt;br /&gt;
|it=Copione&lt;br /&gt;
|ko=흉내쟁이 &#039;&#039;Hyungnaejaeng-i&#039;&#039;&lt;br /&gt;
|pl=Imitacja&lt;br /&gt;
|pt_br=Imitador&lt;br /&gt;
|pt_eu=Copiar-Colar&lt;br /&gt;
|es=Copión&lt;br /&gt;
|vi=Sao Chép&lt;br /&gt;
}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves that call other moves]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Imitator]]&lt;br /&gt;
[[es:Copión]]&lt;br /&gt;
[[fr:Photocopie]]&lt;br /&gt;
[[it:Copione]]&lt;br /&gt;
[[ja:まねっこ]]&lt;br /&gt;
[[zh:仿效（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sketch_(move)&amp;diff=4238184</id>
		<title>Sketch (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sketch_(move)&amp;diff=4238184"/>
		<updated>2025-02-12T16:06:26Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* In other languages */ fail&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=166&lt;br /&gt;
|name=Sketch&lt;br /&gt;
|jname=スケッチ&lt;br /&gt;
|jtrans=Sketch&lt;br /&gt;
|jtranslit=Sukecchi&lt;br /&gt;
|gameimage=Sketch IX.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Normal&lt;br /&gt;
|damagecategory=Status&lt;br /&gt;
|basepp=1&lt;br /&gt;
|maxpp=1&lt;br /&gt;
|power=—&lt;br /&gt;
|accuracy=—&lt;br /&gt;
|category=Smart&lt;br /&gt;
|appeal=1&lt;br /&gt;
|jam=0&lt;br /&gt;
|cdesc=Makes the appeal as good as the one before it.&lt;br /&gt;
|appealsc=1&lt;br /&gt;
|scdesc=Earn +3 if the Pokémon gets the lowest score.&lt;br /&gt;
|category6=Clever&lt;br /&gt;
|appeal6=1&lt;br /&gt;
|jam6=0&lt;br /&gt;
|cdesc6=Shows off the Pokémon&#039;s appeal about as well as the move used just before it.&lt;br /&gt;
|gen=II&lt;br /&gt;
|touches=no&lt;br /&gt;
|protect=no&lt;br /&gt;
|magiccoat=no&lt;br /&gt;
|snatch=no&lt;br /&gt;
|mirrormove=no&lt;br /&gt;
|kingsrock=no&lt;br /&gt;
|sound=no&lt;br /&gt;
|target=anyadjacent&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Sketch&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;スケッチ&#039;&#039;&#039; &#039;&#039;Sketch&#039;&#039;) is a non-damaging {{type|Normal}} [[move]] introduced in [[Generation II]]. It is the [[signature move]] of {{p|Smeargle}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
{{MoveResearch|Does the sketched move start with full PP in all generations?}}&lt;br /&gt;
Sketch allows the user to learn the target&#039;s last move permanently, replacing Sketch in the process.&lt;br /&gt;
&lt;br /&gt;
It bypasses {{stat|accuracy}} checks to always hit, unless the target is in the [[semi-invulnerable turn]] of a move such as {{m|Dig}} or {{m|Fly}}. Sketch is not affected by {{m|Protect}}, {{m|Detect}}, or {{m|Spiky Shield}}. Sketch will fail if used against a target protected by {{m|Crafty Shield}}.&lt;br /&gt;
&lt;br /&gt;
Although they can be sketched, {{m|Aura Wheel}}, {{m|Hyperspace Fury}}, and {{m|Dark Void}} (starting in Generation VII) cannot be used in battle. These moves can only be used by {{p|Morpeko}}, {{p|Hoopa}} Unbound, or {{p|Darkrai}} respectively, or by a Pokémon that has {{m|transform}}ed into them.&lt;br /&gt;
&lt;br /&gt;
These moves cannot be sketched: {{m|Chatter}}, {{m|Mirror Move}}, {{m|Sleep Talk}}, {{m|Struggle}}, Sketch itself, [[Shadow move]]s, [[Z-Move]]s, and others depending on the generation.&lt;br /&gt;
&lt;br /&gt;
===Generation II===&lt;br /&gt;
Sketch cannot be used to copy {{m|Transform}}, {{m|Metronome}}, or {{m|Mimic}}. Because moves that target the opposing Pokémon fail if there is no target on the field, {{m|Self-Destruct|Selfdestruct}} and {{m|Explosion}} also cannot be sketched.&lt;br /&gt;
&lt;br /&gt;
Sketch will fail if:&lt;br /&gt;
* The move tries to copy a move the user already knows.&lt;br /&gt;
* The battle does not allow [[Experience|experience points]] to be earned (such as link battles or [[battle facility]] battles).&lt;br /&gt;
* The target is transformed.&lt;br /&gt;
&lt;br /&gt;
If used by a transformed Pokémon, Sketch will allow the Pokémon to permanently learn the sketched move; this is known as the [[Sketch glitch]].&lt;br /&gt;
&lt;br /&gt;
===Generation III===&lt;br /&gt;
Sketch can now copy {{m|Self-Destruct|Selfdestruct}} and {{m|Explosion}} if a Pokémon with the {{a|Damp}} [[Ability]] is on the field.&lt;br /&gt;
&lt;br /&gt;
In {{game|Ruby and Sapphire|s}} only, Sketch can copy a move a Pokémon attempted to use, but failed to due to {{status|sleep}}. This allows the moves {{m|Metronome}}, {{m|Mimic}}, and {{m|Transform}} to be copied (which otherwise cannot be)—this means that in the Generation III games, these moves can only be copied by Sketch in Pokémon Ruby and Sapphire.&lt;br /&gt;
&lt;br /&gt;
If the battle does not allow [[Experience|experience points]] to be earned (such as link battles or [[Battle Tower]] battles), any moveset changes caused by Sketch will be reverted at the end of the battle.&lt;br /&gt;
&lt;br /&gt;
Sketch will fail if:&lt;br /&gt;
* Used by a transformed Pokémon.&lt;br /&gt;
* A Pokémon somehow uses it without having Sketch in its current moveset.&lt;br /&gt;
&lt;br /&gt;
===Generation IV to VII===&lt;br /&gt;
Sketch can now be used to copy {{m|Metronome}}, {{m|Mimic}}, and {{m|Transform}} like any other move (without the need for the move to fail due to sleep).&lt;br /&gt;
 &lt;br /&gt;
If powered up by a [[Normalium Z]] into Z-Sketch, the user&#039;s {{stat|Attack}}, {{stat|Defense}}, {{stat|Special Attack}}, {{stat|Special Defense}}, and {{stat|Speed}} are raised by one stage each. &lt;br /&gt;
&lt;br /&gt;
===Generation VIII===&lt;br /&gt;
====Pokémon Sword and Shield====&lt;br /&gt;
Sketch cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
===Generation IX===&lt;br /&gt;
&lt;br /&gt;
In Versions 1.0 to 2.0.2 of {{g|Scarlet and Violet}}, Sketch could not be selected in a battle. &lt;br /&gt;
&lt;br /&gt;
Starting with Version 3.0.0, Sketch is once again usable. Sketch can no longer copy {{m|Dark Void}} or {{m|Hyperspace Fury}}, nor can it copy the newly introduced moves {{m|Revival Blessing}}, {{m|Tera Starstorm}}, or the [[Starmobile]]s&#039; signature moves. Despite being both inaccessible and unusable, {{m|Breakneck Blitz}} is also specified as a move that cannot be copied by Sketch.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Stad2}}|A move that allows the user to copy a move used by an opponent and learn that move.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev2|GSC}}|Copies the foe&#039;s move permanently.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|RSE}}|Copies the foe&#039;s last move permanently.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev3|FRLG}}|This move copies the move last used by the foe, then disappears.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Colo}}{{gameabbrevss|XD}}|Copies the target&#039;s last move permanently.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|DPPt}}|It enables the user to learn a move used by the foe. Once used, the move Sketch disappears.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|PBR}}|It enables the user to learn a move used by the foe.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev4|HGSS}}|It enables the user to permanently learn the move last used by the foe. Once used, Sketch disappears.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}&amp;lt;br&amp;gt;{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}&amp;lt;br&amp;gt;{{gameabbrev8|SwShBDSPLA}}|It enables the user to permanently learn the move last used by the target. Once used, Sketch disappears.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev9|SV}}|This move enables the user to permanently learn the move last used by the target. Once used, Sketch disappears.}}&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/Games|Normal|g1=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=1|g8g={{gameabbrev8|BDSP}}}}&lt;br /&gt;
{{Moveentry/8|0235|Smeargle|type=Normal|1|Field|Field|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1, 11, 21, 31, 41, 51, 61, 71, 81, 91|1}}&lt;br /&gt;
{{Movefoot|Normal|8}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
Sketch targets the Pokémon in front and will copy their last used move, replacing Sketch with it. Sketch does not copy the Ginseng boost. &lt;br /&gt;
&lt;br /&gt;
Sketch will fail if the target&#039;s last move had since been forgotten, or if it is Sketch or {{m|Struggle}}. In the [[Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|Rescue Team]] series, Sketch cannot copy [[:Category:Moves that call other moves|moves that call other moves]] (except {{m|Sleep Talk}}, {{m|Snatch}}, and {{m|Mirror Move}}); although Sketch can technically copy itself if bounced back by {{m|Mirror Move}}. From [[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 can now sketch moves that call other moves. &lt;br /&gt;
&lt;br /&gt;
Sketch cannot be used in a {{OBP|Pokémon Tower|Mystery Dungeon}} in the [[Pokémon Mystery Dungeon (WiiWare)|Adventure Squad]] series. In [[Pokémon Super Mystery Dungeon]], Sketch will always fail when used against [[Gigantic Pokémon]], since they use completely different versions of the same move.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=normal}}&lt;br /&gt;
{{MDMoveRow|game=RB|pp=1|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=TDS|pp=1|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=BSL|pp=1|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pp=1|ppmax=30|acc=—%|range=Front|target=All|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=normal|RB=yes|TDS=yes|BSL=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
==={{g|Rumble Rush}}===&lt;br /&gt;
In {{g|Rumble Rush}}, all [[status move]]s including Sketch could only be used by opposing Pokémon and could not be obtained on any caught Pokémon. Sketch could be seen as a move used by opposing {{p|Smeargle}}.&lt;br /&gt;
&lt;br /&gt;
{{RumbleRushOtherAttack|move=Sketch|type=Normal&lt;br /&gt;
|charge=0.66&lt;br /&gt;
|range=Arc (melee)&lt;br /&gt;
|target=Enemy&lt;br /&gt;
|effect=None}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|normal}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RB}}|Copies the move last used by the target and makes it the user&#039;s. Sketch disappears after it copies a move.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|TDS}}|Copies the move last used by the target and adds it to the user&#039;s set of moves. The new move replaces the user&#039;s Sketch move. You can&#039;t link the Sketch move.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|BSL}}|{{tt|てきポケモンの さいごにつかったわざを うつしとり じぶんが つかえるようにする うつしとると わざ『スケッチ』は きえてしまう このわざは ポケモンタワーでは くりだせない|Copies the last move used by the enemy Pokémon and gains the ability to use that move. After copying a move, the move Sketch will disappear. This move cannot be used during a Pokémon Tower.}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|[[File:IconKanji2MD.png]]UNUSED}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You learn the last move of a target. Once you learn the move, you&#039;ll forget Sketch.{{tt|*|Move Summary}}&amp;lt;br&amp;gt;You can learn the target&#039;s last move. But there are some moves that you can&#039;t sketch, so be careful!{{tt|*|Move Description}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=normal|exp=yes|gen=This move enables the user to permanently learn the move last used by the target.|image1=Ilima Smeargle Sketch.png|image1p=Smeargle;&amp;lt;br&amp;gt; sketching|image2=Ilima Smeargle Counter.png|image2p=Smeargle;&amp;lt;br&amp;gt; using {{mcolor|Counter|000}}}}&lt;br /&gt;
{{movep|type=normal|ms=235|pkmn=Smeargle|method=Smeargle grabs its tail and waves it around, causing the image of a pencil to circle around the opponent while leaving behind a trail of pink sparkles. Smeargle then learns the last move used by the opponent.}}&lt;br /&gt;
{{movebtm|type=normal|user=Ilima|user1=Ilima&#039;s Smeargle|startcode=SM066|startname=Smashing with Sketch!|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 watches the opponent use an attack. The user then copies how the opponent did the attack and instantly learns it.|image1=Smea-Smea Sketch 1.png|image1p=Smeargle;&amp;lt;br&amp;gt; sketching|image2=Smea-Smea Sketch 2.png|image2p=Smeargle;&amp;lt;br&amp;gt; using the sketched move}}&lt;br /&gt;
{{movep|type=normal|ms=235|pkmn=Smeargle|method=Smeargle watches the opponent use an attack while pointing the tip of its tail at it. It then instantly learns how to use the attack.}}&lt;br /&gt;
{{movemid|type=normal|user=Whitney|user1=Whitney&#039;s Smea-Smea|startcode=PS178|startname=The Last Battle XII|notes=Debut}}&lt;br /&gt;
{{movebtmManga|type=normal|user=Noland|user1=Noland&#039;s three Smeargle|startcode=PS324|startname=A Cheeky Charizard Change-Up II}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{movegen|type=normal&lt;br /&gt;
|genII=Sketch II&lt;br /&gt;
|genIII=Sketch III&lt;br /&gt;
|genIV=Sketch IV&lt;br /&gt;
}}&lt;br /&gt;
{{movegen|type=normal&lt;br /&gt;
|genV=Sketch V&lt;br /&gt;
|genVI=Sketch VI&lt;br /&gt;
|genVII=Sketch VII&lt;br /&gt;
|BDSP=Sketch VIII&lt;br /&gt;
}}&lt;br /&gt;
===Side series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=normal&lt;br /&gt;
|Stad2=Sketch Stad2&lt;br /&gt;
|Colo=Sketch Colo&lt;br /&gt;
|XD=Sketch XD&lt;br /&gt;
|PBR=Sketch PBR&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen&lt;br /&gt;
|type=normal&lt;br /&gt;
|PMDRB=Sketch PMD RB&lt;br /&gt;
|PMDTDS=Sketch PMD TDS&lt;br /&gt;
|PSMD=Sketch PSMD&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Sketch is the first [[Generation II]] move in [[List of moves|index number]] order.&lt;br /&gt;
* Sketch holds the record for being learned the most times via [[level]]ing up by a single Pokémon, being learned ten times by Smeargle. It is also the only move that can be learned more than four times via leveling up.&lt;br /&gt;
* Sketch is one of two moves (excluding {{m|Struggle}}), whose base PP is not a multiple of 5, the other being {{m|Revival Blessing}}.&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|Sésāng|Sketch}}&#039;&#039;&lt;br /&gt;
|zh_cmn=寫生 / 写生 &#039;&#039;{{tt|Xiěshēng|Sketch}}&#039;&#039; {{tt|*|Games, Pre-Gen VII Media (Taiwan), Later Adventures (Mainland China)}}&amp;lt;br&amp;gt;速写 &#039;&#039;{{tt|Sùxiě|Sketch}}&#039;&#039; {{tt|*|Early Adventures (Mainland China)}}&lt;br /&gt;
|nl=Schets&lt;br /&gt;
|fr=Gribouille&lt;br /&gt;
|de=Nachahmer&lt;br /&gt;
|el=Αφηρημένο Σχέδιο&lt;br /&gt;
|it=Schizzo&lt;br /&gt;
|ko=스케치 {{tt|&#039;&#039;Seukechi&#039;&#039;|Sketch}}&lt;br /&gt;
|pl=Szkic&lt;br /&gt;
|pt_br=Rascunho&lt;br /&gt;
|pt_eu=Esboço&lt;br /&gt;
|sr=Slikanje&lt;br /&gt;
|es=Esquema&lt;br /&gt;
|vi=Phác Họa&lt;br /&gt;
}}&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 cannot miss]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves usable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Nachahmer]]&lt;br /&gt;
[[es:Esquema]]&lt;br /&gt;
[[fr:Gribouille]]&lt;br /&gt;
[[it:Schizzo]]&lt;br /&gt;
[[ja:スケッチ]]&lt;br /&gt;
[[zh:写生（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sudowoodo_(Pok%C3%A9mon)&amp;diff=4230012</id>
		<title>Sudowoodo (Pokémon)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sudowoodo_(Pok%C3%A9mon)&amp;diff=4230012"/>
		<updated>2025-01-28T22:12:31Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Origin */ stick insect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PokémonPrevNext/Head|type=Rock}}&lt;br /&gt;
{{PokémonPrevNext/GO|species=Sudowoodo}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Rock|prevnum=0184|prev=Azumarill|nextnum=0186|next=Politoed|round=none}}&lt;br /&gt;
{{PokémonPrevNext/Disambig|species=Sudowoodo}}&lt;br /&gt;
|}&lt;br /&gt;
{{Pokémon Infobox&lt;br /&gt;
|name=Sudowoodo&lt;br /&gt;
|jname=ウソッキー&lt;br /&gt;
|jtranslit=Usokkī&lt;br /&gt;
|tmname=Usokkie&lt;br /&gt;
|ndex=0185&lt;br /&gt;
|typebox=1&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|category=Imitation&lt;br /&gt;
|height-ftin=3&#039;11&amp;quot;&lt;br /&gt;
|height-m=1.2&lt;br /&gt;
|weight-lbs=83.8&lt;br /&gt;
|weight-kg=38.0&lt;br /&gt;
|abilityn=d&lt;br /&gt;
|ability1=Sturdy&lt;br /&gt;
|ability2=Rock Head&lt;br /&gt;
|abilityd=Rattled&lt;br /&gt;
|egggroupn=1&lt;br /&gt;
|egggroup1=Mineral&lt;br /&gt;
|eggcycles=20&lt;br /&gt;
|evtotal=2&lt;br /&gt;
|evde=2&lt;br /&gt;
|expyield=144&lt;br /&gt;
|oldexp=135&lt;br /&gt;
|lv100exp=1,000,000&lt;br /&gt;
|gendercode=127&lt;br /&gt;
|color=Brown&lt;br /&gt;
|catchrate=65&lt;br /&gt;
|body=12&lt;br /&gt;
|pokefordex=sudowoodo&lt;br /&gt;
|generation=2&lt;br /&gt;
|friendship=70&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Sudowoodo&#039;&#039;&#039; ([[List of Japanese Pokémon names|Japanese]]: &#039;&#039;&#039;ウソッキー&#039;&#039;&#039; &#039;&#039;Usokkie&#039;&#039;) is a {{type|Rock}} {{OBP|Pokémon|species}} introduced in [[Generation II]].&lt;br /&gt;
&lt;br /&gt;
It [[Evolution|evolve]]s from {{p|Bonsly}} when [[level]]ed up while knowing {{m|Mimic}}.&lt;br /&gt;
&lt;br /&gt;
In [[Generation II]], its [[Pokémon HeartGold and SoulSilver Versions|remakes]], and {{game|Emerald}}, wild Sudowoodo can be found blocking the road in inconvenient locations in [[Johto]] and [[Hoenn]]. In order to engage it in battle, a {{pkmn|Trainer}} must first squirt it with water from either a [[Squirt Bottle|SquirtBottle]] or [[Wailmer Pail]].&lt;br /&gt;
&lt;br /&gt;
==Biology==&lt;br /&gt;
Sudowoodo is a {{OBP|Pokémon|species}} that has a brown, log-shaped body with yellow spots. It has short legs with toeless feet, and thin forelegs with three green spheres at the ends of its fingers. It has a forked &amp;quot;branch&amp;quot; on top of its head, which is shorter on the female than on the male. Despite its appearance, Sudowoodo&#039;s composition is closer to a rock than a plant. Originally, it was incorrectly believed to be a {{type|Grass}}.&lt;br /&gt;
&lt;br /&gt;
Sudowoodo disguises itself as a tree and stands along paths to avoid being attacked. Sudowoodo&#039;s camouflage fails in the winter, as its forelegs remain green, unlike real trees. Sudowoodo is very weak to water and hates it, so whenever it starts to rain, it will break their disguise and flee to the nearest source of shelter. Because it holds its position for so long, its arms have become supple yet strong. It is popular with the elderly, with available magazines and fans devoted to its arm angle and length. Sudowoodo can be found living {{DL|List of Pokémon by habitat|in forests}}, sometimes [[Kalos Route 20|sharing a habitat]] with {{p|Trevenant}}. As mentioned in {{g|Sleep}}, Sudowoodo is known to keep its tree mimicry even when sleeping.&amp;lt;ref&amp;gt;[[Sleep style|Sleep Style Dex]]&amp;lt;/ref&amp;gt; However, it will occasionally let of this stance and sleep instead on the ground.&lt;br /&gt;
&lt;br /&gt;
In [[Generation II]], {{m|Mimic}} was its [[signature move]], but other Pokémon could still inherit it via {{pkmn|breeding}}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
SudowoodoPaldeaEvolved219.jpg|Sudowoodo disguising itself as a tree&lt;br /&gt;
SudowoodoRageBrokenHeavens48.jpg|Sudowoodo living among Trevenant&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
Sudowoodo evolves from {{p|Bonsly}}.&lt;br /&gt;
&lt;br /&gt;
(For specifics on this Pokémon&#039;s Evolution in the games, refer to [[#Evolution data|Game data&amp;amp;rarr;Evolution data]].)&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:center; display:flex; flex-flow:row wrap;&amp;quot;&amp;gt;&lt;br /&gt;
{{Evobox-2&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0438&lt;br /&gt;
|name1=Bonsly&lt;br /&gt;
|type1-1=Rock&lt;br /&gt;
|breed=&lt;br /&gt;
|evo1=&lt;br /&gt;
|no2=0185&lt;br /&gt;
|name2=Sudowoodo&lt;br /&gt;
|type1-2=Rock}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game data==&lt;br /&gt;
===Pokédex entries===&lt;br /&gt;
{{Dex/Header|type=Rock}}&lt;br /&gt;
{{Dex/NA|gen=II}}&lt;br /&gt;
{{Dex/Gen/1|gen=II|reg1=Johto|num1=106}}&lt;br /&gt;
{{Dex/Entry1|v=Gold|entry=Although it always pretends to be a tree, its composition appears to be closer to a rock than a plant.}}&lt;br /&gt;
{{Dex/Entry1|v=Silver|entry=It disguises itself as a tree to avoid attack. It hates water, so it will disappear if it starts raining.}}&lt;br /&gt;
{{Dex/Entry1|v=Crystal|entry=If a tree branch shakes when there is no wind, it&#039;s a &amp;lt;sc&amp;gt;Sudowoodo&amp;lt;/sc&amp;gt;, not a tree. It hides from the rain.}}&lt;br /&gt;
{{Dex/Entry1|v=Stadium 2|t=FFF|color=000|entry=Although it always pretends to be a tree, its composition appears to be closer to a rock than a plant. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Red, Silver, or Crystal inserted)&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;It disguises itself as a tree to avoid attack. It hates water, so it will disappear if it starts raining. &amp;lt;small&amp;gt;&#039;&#039;(Pokémon Blue, Gold, or Yellow inserted)&#039;&#039;&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=III|reg1=Hoenn|reg2=Kanto}}&lt;br /&gt;
{{Dex/Entry2|v=Ruby|v2=Sapphire|t=FFF|t2=FFF|entry=&amp;lt;sc&amp;gt;Sudowoodo&amp;lt;/sc&amp;gt; camouflages itself as a tree to avoid being attacked by enemies. However, because the forelegs remain green throughout the year, the {{ScPkmn}} is easily identified as a fake during the winter.}}&lt;br /&gt;
{{Dex/Entry1|v=Emerald|t=FFF|entry=It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter.}}&lt;br /&gt;
{{Dex/Entry1|v=FireRed|entry=It disguises itself as a tree to avoid attack. It hates water, so it will disappear if it starts raining.}}&lt;br /&gt;
{{Dex/Entry1|v=LeafGreen|entry=Although it always pretends to be a tree, its composition appears to be closer to a rock than a plant.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=IV|reg1=Sinnoh|num1=093|reg2=Johto|num2=107}}&lt;br /&gt;
{{Dex/Entry1|v=Diamond|entry=Despite appearing to be a tree, its body is closer to rocks and stones. It is very weak to water.}}&lt;br /&gt;
{{Dex/Entry1|v=Pearl|entry=It stands along paths pretending to be a tree. If it starts raining, it seems to disappear.}}&lt;br /&gt;
{{Dex/Entry1|v=Platinum|entry=To avoid being attacked, it does nothing but mimic a tree. It hates water and flees from rain.}}&lt;br /&gt;
{{Dex/Entry1|v=HeartGold|entry=Although it always pretends to be a tree, its composition appears more similar to rock than to vegetation.}}&lt;br /&gt;
{{Dex/Entry1|v=SoulSilver|entry=It disguises itself as a tree to avoid attack. It hates water, so it will disappear if it starts raining.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/1|gen=V|reg1=Unova}}&lt;br /&gt;
{{Dex/Entry2|v=Black|v2=White|t=FFF|entry=To avoid being attacked, it does nothing but mimic a tree. It hates water and flees from rain.}}&lt;br /&gt;
{{Dex/Entry2|v=Black 2|v2=White 2|t=FFF|entry=To avoid being attacked, it does nothing but mimic a tree. It hates water and flees from rain.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/2|gen=VI|reg1=Kalos|num1=130|label1=Mountain|reg2=Hoenn}}&lt;br /&gt;
{{Dex/Entry1|v=X|t=FFF|entry=Although it always pretends to be a tree, its composition appears more similar to rock than to vegetation.}}&lt;br /&gt;
{{Dex/Entry1|v=Y|t=FFF|entry=It disguises itself as a tree to avoid attack. It hates water, so it will disappear if it starts raining.}}&lt;br /&gt;
{{Dex/Entry2|v=Omega Ruby|v2=Alpha Sapphire|t=FFF|t2=FFF|entry=Sudowoodo camouflages itself as a tree to avoid being attacked by enemies. However, because its hands remain green throughout the year, the Pokémon is easily identified as a fake during the winter.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VII|reg1=Alola|num1=031|label1={{gameIcon|Su}}{{gameIcon|M}}:|reg2=Alola|num2=038|label2={{gameIcon|US}}{{gameIcon|UM}}:|reg3=Kanto}}&lt;br /&gt;
{{Dex/NE|[[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!|Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]]}}&lt;br /&gt;
{{Dex/Entry1|v=Sun|entry=To avoid attack, it mimics a tree. It will run off if splashed with water, which it hates.}}&lt;br /&gt;
{{Dex/Entry1|v=Moon|entry=Apparently, the larger the green parts of this Pokémon, the more collectors value it. It&#039;s a particular favorite among elderly people.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Sun|t=FFF|entry=It&#039;s so popular with the elderly that there&#039;s a magazine devoted to this Pokémon. Fans obsess over the particular length and angle of its arms.}}&lt;br /&gt;
{{Dex/Entry1|v=Ultra Moon|t=FFF|entry=The result of its holding the same pose all the time is arms that have become supple yet strong.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=VIII|reg1=Galar|num1=253|reg2=Sinnoh|num2=093|reg3=Hisui|num3=124}}&lt;br /&gt;
{{Dex/Entry1|v=Sword|t=FFF|entry=If a tree branch shakes when there is no wind, it&#039;s a Sudowoodo, not a tree. It hides from the rain.}}&lt;br /&gt;
{{Dex/Entry1|v=Shield|t=FFF|entry=It disguises itself as a tree to avoid attack. It hates water, so it will disappear if it starts raining.}}&lt;br /&gt;
{{Dex/Entry1|v=Brilliant Diamond|entry=Though it looks like a tree, its body is actually more like rock or stone. The Pokémon is very weak to water.}}&lt;br /&gt;
{{Dex/Entry1|v=Shining Pearl|entry=It stands along paths pretending to be a tree. If it starts raining, it seems to disappear.}}&lt;br /&gt;
{{Dex/Entry1|v=Legends: Arceus|t=FFF|entry=Though it pretends to be a tree, it fails to fool even children. To the touch, its body feels more like rock than tree bark. Sudowoodo&#039;s extreme aversion to water merits special note.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Gen/3|gen=IX|reg1=Paldea|num1=88|reg2=Kitakami|num2=84|reg3=Blueberry}}&lt;br /&gt;
{{Dex/Entry1|v=Scarlet|t=FFF|entry=Although it always pretends to be a tree, its composition appears more similar to rock than to vegetation.}}&lt;br /&gt;
{{Dex/Entry1|v=Violet|t=FFF|entry=To avoid being attacked, it does nothing but mimic a tree. It hates water and flees from rain.}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Dex/Footer}}&lt;br /&gt;
{|style=&amp;quot;margin:auto; text-align:center; border:3px solid #{{rock color dark}}; background:#{{rock color}}; font-size:80%; border-radius: 10px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;{{roundy|20px}} border:2px solid #{{rock color dark}}; background:#{{rock color light}}| [[File:Pokédex Image Sudowoodo SM.png|x200px]]&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{rock color light}}; background:#{{rock color light}} | [[File:Pokédex Image Sudowoodo SV.png|x200px]]&lt;br /&gt;
|style=&amp;quot;border:2px solid #{{rock color light}}; background:#{{rock color light}} | [[File:Pokédex Image Sudowoodo SV Kitakami.png|x200px]]&lt;br /&gt;
|-&lt;br /&gt;
| Sudowoodo in the {{color2|000|List of Pokémon by Alola Pokédex number|Alola Pokédex}}&lt;br /&gt;
| Sudowoodo in the {{color2|000|List of Pokémon by Paldea Pokédex number|Paldea Pokédex}}&lt;br /&gt;
| Sudowoodo in the {{color2|000|List of Pokémon by Kitakami Pokédex number|Kitakami Pokédex}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Game locations===&lt;br /&gt;
{{Availability/Header|type=Rock}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/Entry2|v=Gold|v2=Silver|area={{rt|36|Johto}} ([[List of in-game event Pokémon in Generation II#Sudowoodo|Only one]])}}&lt;br /&gt;
{{Availability/Entry1|v=Crystal|area={{rt|36|Johto}} ([[List of in-game event Pokémon in Generation II#Sudowoodo|Only one]])}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry2/None|v=Ruby|v2=Sapphire}}&lt;br /&gt;
{{Availability/Entry1|v=Emerald|t=FFF|area={{gdis|Battle Frontier|III}} ([[List of in-game event Pokémon in Pokémon Emerald#Sudowoodo|Only one]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=FireRed|v2=LeafGreen}}&lt;br /&gt;
{{Availability/Entry1|v=Colosseum|area={{DL|Pyrite Cave|Miror&#039;s Hideout}} {{color2|{{shadow color}}|Shadow Pokémon|(Shadow)}}}}&lt;br /&gt;
{{Availability/Entry1/None|v=XD|link=Pokémon XD: Gale of Darkness}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry1|v=Diamond|area=[[Evolution|Evolve]] {{p|Bonsly}}}}&lt;br /&gt;
{{Availability/Entry1|v=Pearl|area=[[Route]]s {{rtn|214|Sinnoh}} and {{rtn|221|Sinnoh}}}}&lt;br /&gt;
{{Availability/Entry1|v=Platinum|area={{rt|221|Sinnoh}}}}&lt;br /&gt;
{{Availability/Entry2|v=HeartGold|v2=SoulSilver|area={{rt|36|Johto}} ([[List of in-game event Pokémon in Pokémon HeartGold and SoulSilver#Sudowoodo|Only one]]){{tt|*|Respawns after beating the Elite Four}}}}&lt;br /&gt;
{{Availability/Entry1|v=Pal Park|color={{locationcolor/light|mountain}}|link=Pal Park|area={{DL|List of Pokémon by Pal Park location|Mountain}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry2/None|v=Black|v2=White}}&lt;br /&gt;
{{Availability/Entry1|v=Black 2|t=fff|area={{rt|20|Unova}} ([[Mass outbreak|Swarm]])}}&lt;br /&gt;
{{Availability/Entry1/None|v=White 2}}&lt;br /&gt;
{{Availability/Entry1|v=Dream World|color={{dream color}}|area={{dwa|Pleasant Forest}}}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry2|v=X|v2=Y|t=FFF|t2=FFF|area={{rt|20|Kalos}} ([[Horde Encounter|Mixed Horde]] with {{p|Trevenant}})}}&lt;br /&gt;
{{Availability/Entry2/None|v=Omega Ruby|v2=Alpha Sapphire}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry2|v=Sun|v2=Moon|area=[[Route]]s {{rtn|1|Alola}} and {{rtn|5|Alola}}, [[Lush Jungle]] ([[SOS Battle]])}}&lt;br /&gt;
{{Availability/Entry2|v=Ultra Sun|v2=Ultra Moon|t=FFF|t2=FFF|area=[[Route]]s {{rtn|1|Alola}} and {{rtn|5|Alola}}, [[Lush Jungle]] ([[SOS Battle]])}}&lt;br /&gt;
{{Availability/Entry2/None|v=Let&#039;s Go Pikachu|v2=Let&#039;s Go Eevee|area=Unobtainable}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry2|v=Sword|v2=Shield|t=FFF|t2=FFF|area=[[Bridge Field]], [[Dusty Bowl]], [[Hammerlocke Hills]], [[Motostoke Outskirts]], [[Motostoke Riverbank]]&amp;lt;br&amp;gt;[[Giant&#039;s Seat/Dens|Giant&#039;s Seat]]{{sup/8|Sw}}, [[Rolling Fields/Dens|Rolling Fields]], [[Stony Wilderness/Dens|Stony Wilderness]] ([[Max Raid Battle]])}}&lt;br /&gt;
{{Availability/Entry1|v=Expansion Pass|color={{Isle of Armor color}}|t={{Crown Tundra color}}|link=Pokémon Sword and Shield Expansion Pass|area=[[Fields of Honor/Dens|Fields of Honor]] ([[Max Raid Battle]])&amp;lt;br&amp;gt;[[Max Lair]] ([[Dynamax Adventure]])}}&lt;br /&gt;
{{Availability/Entry1|2|v=Brilliant Diamond|area=[[Evolution|Evolve]] {{p|Bonsly}}}}&lt;br /&gt;
{{Availability/Entry1|v=Shining Pearl|area=[[Route]]s {{rtn|214|Sinnoh}} and {{rtn|221|Sinnoh}}}}&lt;br /&gt;
{{Availability/Entry1|v=Legends: Arceus|t=FFF|area=&#039;&#039;&#039;[[Crimson Mirelands]]:&#039;&#039;&#039; [[Cloudpool Ridge]] and nearby, massive [[mass outbreak]]s&amp;lt;br&amp;gt;&#039;&#039;&#039;[[Coronet Highlands]]:&#039;&#039;&#039; [[Celestica Ruins]] and nearby}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IX}}&lt;br /&gt;
{{Availability/Entry2|v=Scarlet|v2=Violet|t=FFF|t2=FFF|area=West Province: [[West Province (Area Three)|Area Three]]&amp;lt;br&amp;gt;North Province: [[Socarrat Trail]]&amp;lt;br&amp;gt;[[Tera Raid Battle]]s ({{DL|List of 3★ Tera Raid Battles (Paldea)|Sudowoodo|3★}})}}&lt;br /&gt;
{{Availability/Entry1|v=The Hidden Treasure of Area Zero|color={{Teal Mask color}}|t={{Indigo Disk color}}|link=The Hidden Treasure of Area Zero|area=[[Oni Mountain]], [[Wistful Fields]], [[Paradise Barrens]], [[Kitakami Wilds]], [[Timeless Woods]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In side games====&lt;br /&gt;
{{Availability/Header|type=Rock}}&lt;br /&gt;
{{Availability/NA|gen=II}}&lt;br /&gt;
{{Availability/Gen|gen=II}}&lt;br /&gt;
{{Availability/NA/Side|gen=II}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=III}}&lt;br /&gt;
{{Availability/Entry1|v=Channel|color={{water color}}|area=[[Mt. Snowfall]]}}&lt;br /&gt;
{{Availability/Entry1|v=Trozei!|color={{yellow color}}|area=[[Secret Storage 4]], Trozei Battle, [[Mr. Who&#039;s Den]]}}&lt;br /&gt;
{{Availability/Entry2|v=MD Red|v2=MD Blue|t=FFF|t2=FFF|link=Pokémon Mystery Dungeon: Red Rescue Team and Blue Rescue Team|area=[[Sinister Woods]] (1F-4F)}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=IV}}&lt;br /&gt;
{{Availability/Entry2|v=MD Time|v2=MD Darkness|t2=FFF|link=Pokémon Mystery Dungeon: Explorers of Time and Explorers of Darkness|area=[[Shimmer Desert]] (1F-9F)}}&lt;br /&gt;
{{Availability/Entry1|v=MD Sky|link=Pokémon Mystery Dungeon: Explorers of Sky|area=[[Shimmer Desert]] (1F-9F)}}&lt;br /&gt;
{{Availability/Entry1|v=Ranger: SoA|t=FFF|color={{SoA color}}|link=Pokémon Ranger: Shadows of Almia|area=[[Chroma Road]], [[Haruba Village]]}}&lt;br /&gt;
&amp;lt;!--{{Availability/Entry1|v=MD Light|link=Pokémon Mystery Dungeon (WiiWare)|color={{electric color}}|area=}}--&amp;gt;&lt;br /&gt;
{{Availability/Entry1|v=PokéPark Wii|color={{grass color}}|link=PokéPark Wii: Pikachu&#039;s Adventure|area=[[Meadow Zone]], [[Cavern Zone]]}}&lt;br /&gt;
{{Availability/Entry1|v=Ranger: GS|color={{GS color}}|link=Pokémon Ranger: Guardian Signs|area=[[Sophian Road]], [[Forest Temple]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=V}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Blast|color={{fire color}}|area=Autumnwood: [[Volcanic Slope]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=PokéPark 2|link=PokéPark 2: Wonders Beyond|color={{Grass color}}|area=[[Arbor Area]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble U|color={{fire color}}|area=[[Adventure Area#Unexpected Land|Adventure Area: Unexpected Land]], [[Verdant Plaza#Green Hide-and-Seek|Verdant Plaza: Green Hide-and-Seek]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VI}}&lt;br /&gt;
{{Availability/Entry1|1|v=Battle Trozei|color={{defense color}}|area=[[Safari Jungle#Thursday Stage 3|Safari Jungle: Stage 3]]{{dotw|Th}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble World|color={{fire color}}|area=[[Diamond Crater#Thorny Heath|Diamond Crater: Thorny Heath]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;, [[Fairy Land#Guardian&#039;s Peak|Fairy Land: Guardian&#039;s Peak]] &amp;lt;small&amp;gt;(All Areas)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
{{Availability/Entry1|1|v=Picross|color={{skill color light}}|area=[[Pokémon Picross Stages#Area 25|Area 25: Stage 11]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VII}}&lt;br /&gt;
{{Availability/Entry1|1|v=Rumble Rush|color={{fire color}}|area=[[Pinsir Sea]], [[Entei Sea]], [[Charizard Sea]]&amp;lt;sup&amp;gt;2020&amp;lt;/sup&amp;gt;, [[Arceus Sea]], [[Jirachi Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;, [[Entei Sea]]&amp;lt;sup&amp;gt;Final&amp;lt;/sup&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Gen|gen=VIII}}&lt;br /&gt;
{{Availability/Entry1|1|v=MD DX|color={{MD Red color}}|t=FFF|link=Pokémon Mystery Dungeon: Rescue Team DX|area=[[Sinister Woods]] (1F-4F), [[Purity Forest]] (17F-19F)&amp;lt;br/&amp;gt;Mystery House: [[Stormy Sea]], [[Silver Trench]], [[Buried Relic]], [[Solar Cave]], [[Waterfall Pond]]&amp;lt;br/&amp;gt;[[Mystery_dungeon#Strong_Foes|Strong Foe]]: [[Desert Region]] (5F-13F, 15F-19F){{shinystar}}}}&lt;br /&gt;
{{Availability/Entry1|1|v=New Snap|link=New Pokémon Snap|color={{orange color light}}|area=[[Laboratory of Ecology and Natural Sciences|Research Camp]]}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Cross}}&lt;br /&gt;
{{Availability/Entry1|1|v=Shuffle|color={{beauty color}}|area=[[Silbern Museum|Silbern Museum: Stage 93]]}}&lt;br /&gt;
{{Availability/Entry1|1|v=Café ReMix|color={{cool color}}|area=Complete Eiscue Caprese Salad recipe}}&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
{{Availability/Footer}}&lt;br /&gt;
&lt;br /&gt;
====In events====&lt;br /&gt;
{{eventAvail/h|type=Rock}}&lt;br /&gt;
{{eventAvail|{{gameabbrev2|GSC}}|Gotta Catch &#039;Em All Station! Substitute Sudowoodo|English|United States|5|February 21 to 27, 2003|link=List of PCNY event Pokémon distributions in Generation II#Substitute Sudowoodo}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Held items===&lt;br /&gt;
{{HeldItems/header|type=Rock}}&lt;br /&gt;
{{HeldItems/Games1|Colosseum|Pokémon Colosseum}}&lt;br /&gt;
{{HeldItems/Items1|Hard Stone|100}}&lt;br /&gt;
{{HeldItems/Games1|Legends: Arceus|tcolor=FFF|Pokémon Legends: Arceus}}&lt;br /&gt;
{{HeldItems/ItemsLA|Black Tumblestone|35|Ball of Mud|15|Exp. Candy M|100|Seed of Mastery|20}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Stats===&lt;br /&gt;
====Base stats====&lt;br /&gt;
{{BaseStats&lt;br /&gt;
|type=Rock&lt;br /&gt;
|HP=      70&lt;br /&gt;
|Attack= 100&lt;br /&gt;
|Defense=115&lt;br /&gt;
|SpAtk=   30&lt;br /&gt;
|SpDef=   65&lt;br /&gt;
|Speed=   30}}&lt;br /&gt;
&lt;br /&gt;
====Pokéathlon stats====&lt;br /&gt;
{{Pokéthlon&lt;br /&gt;
|type=Rock&lt;br /&gt;
|Speed=2&lt;br /&gt;
|SpeedMax=2&lt;br /&gt;
|Power=3&lt;br /&gt;
|PowerMax=4&lt;br /&gt;
|Technique=3&lt;br /&gt;
|TechniqueMax=4&lt;br /&gt;
|Stamina=4&lt;br /&gt;
|StaminaMax=5&lt;br /&gt;
|Jump=2&lt;br /&gt;
|JumpMax=3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Type effectiveness===&lt;br /&gt;
{{TypeEffectiveness&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|Normal=   50&lt;br /&gt;
|Fighting=200&lt;br /&gt;
|Flying=   50&lt;br /&gt;
|Poison=   50&lt;br /&gt;
|Ground=  200&lt;br /&gt;
|Rock=    100&lt;br /&gt;
|Bug=     100&lt;br /&gt;
|Ghost=   100&lt;br /&gt;
|Steel=   200&lt;br /&gt;
|Fire=     50&lt;br /&gt;
|Water=   200&lt;br /&gt;
|Grass=   200&lt;br /&gt;
|Electric=100&lt;br /&gt;
|Psychic= 100&lt;br /&gt;
|Ice=     100&lt;br /&gt;
|Dragon=  100&lt;br /&gt;
|Dark=    100&lt;br /&gt;
|Fairy=   100}}&lt;br /&gt;
&lt;br /&gt;
===Learnset===&lt;br /&gt;
====By [[Level|leveling up]]====&lt;br /&gt;
{{learnlist/levelh/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
{{learnlist/level9|1|Stone Edge|Rock|Physical|100|80|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|1|Hammer Arm|Fighting|Physical|100|90|10}}&lt;br /&gt;
{{learnlist/level9|1|Wood Hammer|Grass|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/level9|1|Fake Tears|Dark|Status|—|100|20}}&lt;br /&gt;
{{learnlist/level9|1|Copycat|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|1|Flail|Normal|Physical|—|100|15}}&lt;br /&gt;
{{learnlist/level9|1|Rock Throw|Rock|Physical|50|90|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|{{tt|Evo.|Learned upon evolving}}|Slam|Normal|Physical|80|75|20}}&lt;br /&gt;
{{learnlist/level9|12|Block|Normal|Status|—|—|5}}&lt;br /&gt;
{{learnlist/level9|16|Mimic|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/level9|20|Rock Tomb|Rock|Physical|60|95|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|24|Tearful Look|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/level9|28|Sucker Punch|Dark|Physical|70|100|5}}&lt;br /&gt;
{{learnlist/level9|32|Rock Slide|Rock|Physical|75|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/level9|36|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/level9|40|Counter|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/level9|44|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/level9|48|Head Smash|Rock|Physical|150|80|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/levelf/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
&lt;br /&gt;
====By [[TM]]====&lt;br /&gt;
{{learnlist/tmh/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
{{learnlist/tm9|TM001|Take Down|Normal|Physical|90|85|20}}&lt;br /&gt;
{{learnlist/tm9|TM003|Fake Tears|Dark|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM005|Mud-Slap|Ground|Special|20|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM007|Protect|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM012|Low Kick|Fighting|Physical|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM018|Thief|Dark|Physical|60|100|25}}&lt;br /&gt;
{{learnlist/tm9|TM020|Trailblaze|Grass|Physical|50|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM025|Facade|Normal|Physical|70|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM028|Bulldoze|Ground|Physical|60|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM035|Mud Shot|Ground|Special|55|95|15}}&lt;br /&gt;
{{learnlist/tm9|TM036|Rock Tomb|Rock|Physical|60|95|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM039|Low Sweep|Fighting|Physical|65|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM043|Fling|Dark|Physical|—|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM047|Endure|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM049|Sunny Day|Fire|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM051|Sandstorm|Rock|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM055|Dig|Ground|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM058|Brick Break|Fighting|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM062|Foul Play|Dark|Physical|95|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM066|Body Slam|Normal|Physical|85|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM067|Fire Punch|Fire|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM068|Thunder Punch|Electric|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM069|Ice Punch|Ice|Physical|75|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM070|Sleep Talk|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM073|Drain Punch|Fighting|Physical|75|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM076|Rock Blast|Rock|Physical|25|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM081|Grass Knot|Grass|Special|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM084|Stomping Tantrum|Ground|Physical|75|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM085|Rest|Psychic|Status|—|—|5}}&lt;br /&gt;
{{learnlist/tm9|TM086|Rock Slide|Rock|Physical|75|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM087|Taunt|Dark|Status|—|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM089|Body Press|Fighting|Physical|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM090|Spikes|Ground|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM101|Power Gem|Rock|Special|80|100|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM103|Substitute|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM104|Iron Defense|Steel|Status|—|—|15}}&lt;br /&gt;
{{learnlist/tm9|TM116|Stealth Rock|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM129|Calm Mind|Psychic|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM130|Helping Hand|Normal|Status|—|—|20}}&lt;br /&gt;
{{learnlist/tm9|TM133|Earth Power|Ground|Special|90|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM149|Earthquake|Ground|Physical|100|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM150|Stone Edge|Rock|Physical|100|80|5||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM152|Giga Impact|Normal|Physical|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM163|Hyper Beam|Normal|Special|150|90|5}}&lt;br /&gt;
{{learnlist/tm9|TM171|Tera Blast|Normal|Special|80|100|10}}&lt;br /&gt;
{{learnlist/tm9|TM176|Sand Tomb|Ground|Physical|35|85|15}}&lt;br /&gt;
{{learnlist/tm9|TM179|Smack Down|Rock|Physical|50|100|15||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM186|High Horsepower|Ground|Physical|95|95|10}}&lt;br /&gt;
{{learnlist/tm9|TM192|Focus Punch|Fighting|Physical|150|100|20}}&lt;br /&gt;
{{learnlist/tm9|TM203|Psych Up|Normal|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tm9|TM204|Double-Edge|Normal|Physical|120|100|15}}&lt;br /&gt;
{{learnlist/tm9|TM205|Endeavor|Normal|Physical|—|100|5}}&lt;br /&gt;
{{learnlist/tm9|TM220|Meteor Beam|Rock|Special|120|90|10||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/tm9|TM224|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/tmf/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
&lt;br /&gt;
====By {{pkmn|breeding}}====&lt;br /&gt;
{{learnlist/breedh/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0712|Bergmite}}{{MSP/H|0713|Avalugg}}{{MSP/H|0713|Avalugg|form=-Hisui}}|Curse|Ghost|Status|—|—|10}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0074|Geodude}}{{MSP/H|0074-Alola|Geodude}}{{MSP/H|0075|Graveler}}{{MSP/H|0075-Alola|Graveler}}{{MSP/H|0076|Golem}}{{MSP/H|0076-Alola|Golem}}|Defense Curl|Normal|Status|—|—|40|}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0299|Nosepass}}{{MSP/H|0712|Bergmite}}{{MSP/H|0713|Avalugg}}{{MSP/H|0713|Avalugg|form=-Hisui}}{{MSP/H|0932|Nacli}}{{MSP/H|0933|Naclstack}}{{MSP/H|0934|Garganacl}}{{MSP/H|0969|Glimmet}}{{MSP/H|0970|Glimmora}}|Harden|Normal|Status|—|—|30}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0361|Snorunt}}{{MSP/H|0362|Glalie}}{{MSP/H|0932|Nacli}}{{MSP/H|0933|Naclstack}}{{MSP/H|0934|Garganacl}}{{MSP/H|0965|Varoom}}{{MSP/H|0966|Revavroom}}|Headbutt|Normal|Physical|70|100|15}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0074|Geodude}}{{MSP/H|0074-Alola|Geodude}}{{MSP/H|0075|Graveler}}{{MSP/H|0075-Alola|Graveler}}{{MSP/H|0076|Golem}}{{MSP/H|0076-Alola|Golem}}{{MSP/H|0837|Rolycoly}}{{MSP/H|0838|Carkol}}{{MSP/H|0839|Coalossal}}{{MSP/H|0874|Stonjourner}}{{MSP/H|0932|Nacli}}{{MSP/H|0933|Naclstack}}{{MSP/H|0934|Garganacl}}{{MSP/H|0969|Glimmet}}{{MSP/H|0970|Glimmora}}|Rock Polish|Rock|Status|—|—|20}}&lt;br /&gt;
{{learnlist/breed9|{{MSP/H|0074|Geodude}}{{MSP/H|0074-Alola|Geodude}}{{MSP/H|0075|Graveler}}{{MSP/H|0075-Alola|Graveler}}{{MSP/H|0878|Cufant}}{{MSP/H|0879|Copperajah}}|Rollout|Rock|Physical|30|90|20||&#039;&#039;&#039;}}&lt;br /&gt;
{{learnlist/breedf/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
&lt;br /&gt;
====By a prior [[Evolution]]====&lt;br /&gt;
{{learnlist/prevoh/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
{{learnlist/prevo9null}}&lt;br /&gt;
{{learnlist/prevof/9|Sudowoodo|Rock|Rock|2}}&lt;br /&gt;
&lt;br /&gt;
===={{Trading Card Game}}-only moves====&lt;br /&gt;
{| class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; background: #{{tcg fighting color}}; border: 3px solid #{{tcg fighting color dark}}&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;background: #{{tcg fighting color light}}; {{roundytl|5px}}&amp;quot; | Move&lt;br /&gt;
! style=&amp;quot;background: #{{tcg fighting color light}}; {{roundytr|5px}}&amp;quot; | Card&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybl|5px}}&amp;quot; | {{m|Karate Chop}}&lt;br /&gt;
| style=&amp;quot;background:#fff; {{roundybr|5px}}&amp;quot; | [[Sudowoodo (EX Unseen Forces 15)]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Side game data===&lt;br /&gt;
{{Spindata/Head|type=Rock}}&lt;br /&gt;
{{Spindata/Trozei|col=6|type=Rock|ndex=185|rarity=Rare}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDRB|col=6|type=Rock|ndex=185&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=10.4&lt;br /&gt;
|area=Overgrown Forest&lt;br /&gt;
|P1=I&#039;m not a liar. I&#039;m just a very good mimic!&lt;br /&gt;
|P2=Oh, oh, oh? I have only half my HP left.&lt;br /&gt;
|P3=It&#039;s over... I don&#039;t have the energy to mimic anyone.&lt;br /&gt;
|PL=I leveled up! And that&#039;s no lie!&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/MDTDS|col=6|type=Rock|ndex=185&lt;br /&gt;
|body=1&lt;br /&gt;
|rate=0.5&lt;br /&gt;
|IQ=E&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PSMD|col=6|type=Rock|ndex=185&lt;br /&gt;
|coset=2&lt;br /&gt;
|conto={{p|Aipom}}, {{p|Whismur}}, {{p|Mime Jr.}}&lt;br /&gt;
|recruitment=Visit Sudowoodo&#039;s secret base&lt;br /&gt;
|P1=Pseudo! ♪ Lies ♪ All lies! ♪ You should be more careful!&lt;br /&gt;
|P2=I&#039;m about to faint... I wouldn&#039;t lie...&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger SoA|col=6|type=Rock&lt;br /&gt;
|group=Rock&lt;br /&gt;
|assist=Rock&lt;br /&gt;
|field=Crush&lt;br /&gt;
|fieldpower=2&lt;br /&gt;
|num=031&lt;br /&gt;
|browser=It attacks by dropping rocks every so often.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Ranger GS|col=6|type=Rock&lt;br /&gt;
|group=Rock&lt;br /&gt;
|assist=Rock&lt;br /&gt;
|field=Crush&lt;br /&gt;
|fieldpower=2&lt;br /&gt;
|num=099&lt;br /&gt;
|pastnum=025&lt;br /&gt;
|browser=It triggers rockfalls around itself that make Pokémon Tired.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleBlast|col=6|type=Rock&lt;br /&gt;
|att=3&lt;br /&gt;
|def=4&lt;br /&gt;
|speed=3&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/RumbleRush|col=6|type=Rock|ndex=185 f&lt;br /&gt;
|walk=1.75&lt;br /&gt;
|hp=53&lt;br /&gt;
|attack=75&lt;br /&gt;
|defense=57&lt;br /&gt;
|speed=60&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PokéPark|col=6|type=Rock|ndex=185&lt;br /&gt;
|Pad=Sudowoodo hone their Hide-and-Seek skills in the [[Meadow Zone]] or [[Cavern Zone]]! Their favorite Attraction is {{DL|Attraction (PokéPark)|Bastiodon&#039;s Block Barrage}}.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/PokéPark2|col=6|type=Rock|ndex=185&lt;br /&gt;
|pad=He is good hearted and serious. But he really wants to pretend to be a tree and surprise everyone.&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Battle Trozei|col=3|type=Rock|ndex=185&lt;br /&gt;
|power=2&lt;br /&gt;
}}&lt;br /&gt;
{{Spindata/Shuffle|col=6|type=Rock|ndex=185|num=022&lt;br /&gt;
|min=60&lt;br /&gt;
|max=105&lt;br /&gt;
|raisemaxlevel=5&lt;br /&gt;
|skill=Opportunist&lt;br /&gt;
|skilldesc=Rarely increases damage.&lt;br /&gt;
|swapper=Flash Mob&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/GO|col=6|type=Rock|ndex=185&lt;br /&gt;
|hatch=N/A&lt;br /&gt;
|buddy=5&lt;br /&gt;
|candy=Sudowoodo&lt;br /&gt;
|evolution=N/A&lt;br /&gt;
|stamina=172|attack=167|defense=176&lt;br /&gt;
|fast={{m|Rock Throw}}, {{m|Counter}}&lt;br /&gt;
|special={{m|Stone Edge}}, {{m|Earthquake}}, {{m|Rock Slide}}, {{m|Rock Tomb}}{{tt|*|From November 29, 2021 onward}}, {{m|Meteor Beam}}{{tt|*|From December 1, 2022 onward}}, {{m|Trailblaze}}{{tt|*|From September 1, 2023 onward}}, {{m|Frustration}}[[File:GO Shadow icon.png|24px|link=Shadow Pokémon (GO)|As Shadow Pokémon]], {{m|Return}}[[File:GO Purified icon.png|24px|link=Shadow Pokémon (GO)|As Purified Pokémon]]&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/NewSnap|col=6|type=Rock|ndex=185|pdex=039&lt;br /&gt;
|dex=Sudowoodo often comes to the [[Laboratory of Ecology and Natural Sciences|research camp]]. I think it wants to be friends with the other Pokémon here. It tried to get closer by pretending to be a tree, but it ran away when it got startled.}}&lt;br /&gt;
|-&lt;br /&gt;
{{Spindata/Sleep|col=6&lt;br /&gt;
|ndex=0185&lt;br /&gt;
|sleeptype=Slumbering&lt;br /&gt;
|type=Rock&lt;br /&gt;
|dexentry=It seems this Pokémon keeps up its tree mimicry in its sleep to avoid being attacked. But apparently, once in a long while, it lets itself go and sleeps laid out on the ground.&lt;br /&gt;
|sleepstyle1=Pseudo-Wood Sleep&lt;br /&gt;
|sleepstyle2=Pseudo-Slacking Sleep&lt;br /&gt;
|sleepstyle3=Seriously Slacking Sleep&lt;br /&gt;
|sleepstyle4=Atop-Belly Sleep&lt;br /&gt;
|friendpoints=7&lt;br /&gt;
|specialty=Skills&lt;br /&gt;
|evolution=&lt;br /&gt;
|pokemon=Sudowoodo&lt;br /&gt;
|candyNum=&lt;br /&gt;
|berry=Sitrus&lt;br /&gt;
|ingredient1=Snoozy Tomato&lt;br /&gt;
|ingredient2=Greengrass Soybeans&lt;br /&gt;
|ingredient3=Tasty Mushroom&lt;br /&gt;
|carrylimit=16&lt;br /&gt;
|skillname=Charge Strength M&lt;br /&gt;
|skilldesc=Increases Snorlax&#039;s Strength by 880.&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Evolution data===&lt;br /&gt;
{{Evobox-2&lt;br /&gt;
|type1=Rock&lt;br /&gt;
|pictype=art&lt;br /&gt;
|no1=0438&lt;br /&gt;
|name1=Bonsly&lt;br /&gt;
|type1-1=Rock&lt;br /&gt;
|breed={{bag/s|Rock Incense|SV}}&amp;lt;br&amp;gt;{{color2|000|Pokémon breeding|Breed}}&amp;lt;br&amp;gt;holding {{color2|000|Rock Incense}}&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;({{color2|000|Generation IV|IV}}–{{color2|000|Generation VIII|VIII}})&amp;lt;/small&amp;gt;&lt;br /&gt;
|evo1={{bag/s|Rare Candy|SV}} + [[File:Bag TM Normal SV Sprite.png|40px|link=Mimic (move)]]&amp;lt;br&amp;gt;{{color2|000|Level|Level up}}&amp;lt;br&amp;gt;knowing {{color2|000|Mimic (move)|Mimic}}&lt;br /&gt;
|no2=0185&lt;br /&gt;
|name2=Sudowoodo&lt;br /&gt;
|type1-2=Rock}}&lt;br /&gt;
&lt;br /&gt;
===Sprites===&lt;br /&gt;
{{Spritebox/Header|type=rock}}&lt;br /&gt;
{{Spritebox/NA|gen=II}}&lt;br /&gt;
{{Spritebox/2|ndex=185}}&lt;br /&gt;
{{Spritebox/3|ndex=185}}&lt;br /&gt;
{{Spritebox/4/Gender|ndex=185}}&lt;br /&gt;
{{Spritebox/5/Gender|ndex=185}}&lt;br /&gt;
{{Spritebox/6/Gender|ndex=185|crop=67}}&lt;br /&gt;
{{Spritebox/7/Gender|ndex=185|crop=67}}&lt;br /&gt;
{{Spritebox/8/GenderLA|ndex=185|crop=111|LAcrop=145}}&lt;br /&gt;
&amp;lt;!--{{Spritebox/9|ndex=0185}}--&amp;gt;&lt;br /&gt;
{{Spritebox/HOME/Gender|ndex=0185}}&lt;br /&gt;
{{Spritebox/Footer|185|Sudowoodo}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Main series===&lt;br /&gt;
[[File:Brassius Sudowoodo.png|thumb|250px|Sudowoodo in {{aniseries|SM}}]]&lt;br /&gt;
[[File:Brassius Sudowoodo Terastal.png|thumb|250px|{{Tera}} Sudowoodo in {{aniseries|SM}}]]&lt;br /&gt;
====Major appearances====&lt;br /&gt;
=====[[Brock&#039;s Sudowoodo]]=====&lt;br /&gt;
{{an|Brock}}&#039;s Bonsly [[Evolution|evolved]] into a Sudowoodo in &#039;&#039;[[DP014|Leave It To Brocko!]]&#039;&#039;. Although he was needy and easily distressed as a Bonsly, Sudowoodo proved a strong and reliable partner.&lt;br /&gt;
&lt;br /&gt;
=====Other=====&lt;br /&gt;
Sudowoodo debuted in &#039;&#039;[[EP162|Type Casting]]&#039;&#039;. Two Pokémon researchers, [[Marie]] and [[Pierre]], were arguing over the issue of whether Sudowoodo as a species is a {{t|Grass}}- or {{type|Rock}} Pokémon. As a result, they pursued one in order to prove their own points to each other.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PK11|Camp Pikachu]]&#039;&#039;, a Sudowoodo pretended to be part of a tree and hoarded grapes for itself rather than share them with the [[Pichu Brothers]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[AG173|All That Glitters is Not Golden!]]&#039;&#039;, [[Keenan]] owns a {{DL|List of alternately colored Pokémon in the animated series|Sudowoodo|golden Sudowoodo}}. He experimented on it with the hopes of giving it resistance against {{type|Water}} Pokémon, but he made it turn golden in color in the process. Sudowoodo, however, was unhappy with the change and was eventually reverted to its previous type and color scheme.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[PK27|Pikachu and the Pokémon Music Squad]]&#039;&#039;, a Sudowoodo noticed the fight among {{MTR}}, {{TP|Clemont|Chespin}}, and a {{p|Torchic}} over a [[Pecha Berry]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[M21|The Power of Us]]&#039;&#039;, [[Callahan]] saved a Sudowoodo by catching the {{p|Golduck}} that was chasing it. Afterwards, it followed Callahan around before being caught by him.&lt;br /&gt;
&lt;br /&gt;
A Sudowoodo appeared in &#039;&#039;[[HZ010|Nemona and Brassius and…]]&#039;&#039;, under the ownership of [[Brassius]]. It battled against [[Roy&#039;s Fuecoco]] and won after {{Tera}}stallizing into a Grass [[type]], despite its newly acquired type disadvantage. In &#039;&#039;[[HZ049|Dot and Nidothing]]&#039;&#039;, Sudowoodo was used by Brassius for [[Roy]]&#039;s [[Tera Training]] battle. This time, both parties Terastallized, and Fuecoco was to one to emerge victorious.&lt;br /&gt;
&lt;br /&gt;
====Minor appearances====&lt;br /&gt;
A Sudowoodo appeared in &#039;&#039;[[AG011|A Bite to Remember]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Sudowoodo appeared in [[PK13]].&lt;br /&gt;
&lt;br /&gt;
A {{pkmn|Coordinator}}&#039;s Sudowoodo appeared in &#039;&#039;[[AG121|Hi Ho Silver Wind!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[XY038|Forging Forest Friendships!]]&#039;&#039;, a Sudowoodo was ensnared with a {{p|Bonsly}} in a net by {{TRT}}. They were eventually freed by Ash when a {{p|Trevenant}} asked for his help.&lt;br /&gt;
&lt;br /&gt;
A Sudowoodo appeared in &#039;&#039;[[SM001|Alola to New Adventure!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A {{pkmn|Trainer}}&#039;s Sudowoodo appeared in &#039;&#039;[[SM004|First Catch in Alola, Ketchum-Style!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Two Trainers&#039; Sudowoodo appeared in &#039;&#039;[[SM006|A Shocking Grocery Run!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM008|Lillie&#039;s Egg-xhilarating Challenge!]]&#039;&#039;, a Sudowoodo played in {{an|Lillie}}&#039;s garden.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM013|Racing to a Big Event!]]&#039;&#039;, a Trainer&#039;s Sudowoodo competed in the [[Pokémon Pancake Race]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM015|Rocking Clawmark Hill!]]&#039;&#039;, two Sudowoodo were training on [[Clawmark Hill]].&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Sudowoodo appeared in &#039;&#039;[[SM023|Getting the Band Back Together!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Sudowoodo appeared in a fantasy in &#039;&#039;[[SM046|Deceiving Appearances!]]&#039;&#039;. It and five others physically appeared in &#039;&#039;[[SM096|Don&#039;t Ignore the Small Stufful!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM066|Smashing with Sketch!]]&#039;&#039;, a Trainer&#039;s Sudowoodo competed in the [[Pokémon Ping-Pong tournament]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM090|Securing the Future!]]&#039;&#039;, multiple Trainers&#039; Sudowoodo joined the rest of [[Alola]] in showering {{an|Necrozma}} with light so it could return to its {{DL|List of Pokémon with form differences|Necrozma|true form}}.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Sudowoodo appeared in &#039;&#039;[[SM099|We Know Where You&#039;re Going, Eevee!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Four Sudowoodo appeared in &#039;&#039;[[SM125|A Timeless Encounter!]]&#039;&#039;. In [[SM126|the next episode]], [[Ash&#039;s Pikachu]] and {{AP|Lycanroc}} tackled one of them after they mistook it for their Trainer, due to it wearing [[Ash&#039;s hat]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[SM129|Battle Royal 151!]]&#039;&#039;, a Trainer&#039;s Sudowoodo competed in the [[Battle Royal]] preliminary round of the [[Manalo Conference]], but it was defeated by Ash&#039;s Pikachu.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;[[JN002|Legend? Go! Friends? Go!]]&#039;&#039;, a Trainer&#039;s Sudowoodo participated in a [[Raid Battle (GO)#In animation|Raid Battle]] against a {{p|Lugia}}.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Sudowoodo appeared in &#039;&#039;[[JN025|A Festival Reunion!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Trainer&#039;s Sudowoodo appeared in &#039;&#039;[[JN030|Betrayed, Bothered, and Beleaguered!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Sudowoodo appeared in a flashback in &#039;&#039;[[JN032|Time After Time!]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
An old man&#039;s Sudowoodo appeared &#039;&#039;[[JN083|Star Night, Star Flight!]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A Student&#039;s Sudowoodo appeared in [[HZ067]].&lt;br /&gt;
&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Animedexheader|Johto}}&lt;br /&gt;
{{Animedexbody|EP162|Sudowoodo|Ash&#039;s Pokédex|Sudowoodo, the Imitation Pokémon. This rare Pokémon hides in trees to avoid capture.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Johto}}&lt;br /&gt;
{{Animedexheader|Emerald}}&lt;br /&gt;
{{Animedexbody|AG173|Sudowoodo|Ash&#039;s Pokédex|Sudowoodo, the Imitation Pokémon. Although it camouflages itself as a tree in order to avoid being attacked, its body is actually more like a rock than like a plant. It hates water and disappears whenever it rains.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Emerald}}&lt;br /&gt;
{{Animedexheader|Sinnoh}}&lt;br /&gt;
{{Animedexbody|DP014|Sudowoodo|Dawn&#039;s Pokédex|Sudowoodo, the Imitation Pokémon. Disguised as a tree, it&#039;s the evolved form of {{p|Bonsly}}.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Sinnoh}}&lt;br /&gt;
{{Animedexheader|Alola}}&lt;br /&gt;
{{Animedexbody|SM103|Sudowoodo|Rotom Pokédex|Sudowoodo, the Imitation Pokémon. A {{t|Rock}} type. Sudowoodo imitates a tree to avoid enemy attacks, but its body is more like rock. It&#039;s weak against water, and when faced with rain, runs away.}}&lt;br /&gt;
{{Animedexfooter/Pokémon|Alola}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon: Twilight Wings===&lt;br /&gt;
[[File:Sudowoodo TW.png|thumb|250px|Sudowoodo in [[Pokémon: Twilight Wings]]]]&lt;br /&gt;
In &#039;&#039;[[TW05|Assistant]]&#039;&#039;, an {{tc|Office Worker}}&#039;s Sudowoodo served as a potted plant in [[Macro Cosmos]]&#039;s office.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Evolutions===&lt;br /&gt;
In &#039;&#039;[[PE07|The Show]]&#039;&#039;, a Sudowoodo briefly appeared under the ownership of a {{pkmn|Trainer}} in [[Ecruteak City]].&lt;br /&gt;
&lt;br /&gt;
===POKÉTOON===&lt;br /&gt;
A Sudowoodo appeared in [[PT12]].&lt;br /&gt;
&lt;br /&gt;
A Sudowoodo living at the [[Safari Zone]] appeared in [[PT14]].&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
[[File:Emerald Sudowoodo.png|thumb|200px|Sudowoodo in [[Pokémon Adventures]]]]&lt;br /&gt;
[[File:Brassius Terastallized Sudowoodo Adventures.png|thumb|200px|Tera Sudowoodo in [[Pokémon Adventures]]]]&lt;br /&gt;
===Ash &amp;amp; Pikachu===&lt;br /&gt;
A Sudowoodo appeared in &#039;&#039;[[SP27|Tale Of The Friendship Between Pikachu And Meowth]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Magical Pokémon Journey===&lt;br /&gt;
In &#039;&#039;[[PPP45|Pikachu and Clefairy&#039;s Heroic Tales]]&#039;&#039;, {{MPJ|Pikachu}} and {{MPJ|Clefairy}} battle a Prince Sudowoodo of the Stone Kingdom because he has ordered his underlings to kidnap {{p|Bellossom|Princess Bellossom}} of the Flower Kingdom, as he intends to marry her. At the end, Bellossom agrees to become friends with him, but not to marry him right away.&lt;br /&gt;
&lt;br /&gt;
===Pocket Monsters HGSS===&lt;br /&gt;
[[Professor Elm]] was revealed to have a Sudowoodo in [[PMHGSS01]].&lt;br /&gt;
&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
===={{MangaArc|Gold, Silver &amp;amp; Crystal}}====&lt;br /&gt;
{{main|Sudobo}}&lt;br /&gt;
In &#039;&#039;[[PS105|Smeargle Smudge]]&#039;&#039;, a Sudowoodo disguises himself as a tree in the middle of {{rt|37|Johto}}, hiding from a {{p|Rhydon}}. In &#039;&#039;[[PS106|How Do You Do, Sudowoodo]]&#039;&#039;, he revealed himself to {{adv|Gold}} after being hit with [[Polibo]]&#039;s {{m|Water Gun}}. Gold convinced Sudowoodo not to run away from his problems, and Sudowoodo went on to defeat Rhydon in hand-to-hand combat. He soon joined Gold&#039;s team with the [[nickname]] Sudobo and participated in his friendly match against Silver, and later the [[Masked Man]].&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Emerald}}====&lt;br /&gt;
{{main|Emerald&#039;s Sudowoodo}}&lt;br /&gt;
In &#039;&#039;[[PS303|Never Spritz a Knotty Sudowoodo]]&#039;&#039;, {{adv|Emerald}} {{pkmn2|caught}} a Sudowoodo. [[Todd Snap|The Reporter]] speculates that Sudowoodo is female due to her maternal nature towards Emerald. At the end of the {{MangaArc|Emerald}}, she appeared to have developed a romantic relationship with Sudobo.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|HeartGold &amp;amp; SoulSilver}}====&lt;br /&gt;
A Sudowoodo appeared in &#039;&#039;[[PS442|Out-Odding Oddish]]&#039;&#039;, under the ownership of a [[Pokéathlon]] participant.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|X &amp;amp; Y}}====&lt;br /&gt;
A Sudowoodo appeared with a pair of {{tc|Twins}} at the Mini-game Corner in &#039;&#039;[[PS553|Sylveon Enchants]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Sun, Moon, Ultra Sun &amp;amp; Ultra Moon}}====&lt;br /&gt;
A Sudowoodo belonging to the [[Aether Foundation]] appeared in a flashback in &#039;&#039;[[PASM25|Summon the Emissaries of the Moon and the Sun]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===={{MangaArc|Scarlet &amp;amp; Violet}}====&lt;br /&gt;
A Sudowoodo belonging to [[Brassius]] appeared in {{MangaArc|Scarlet &amp;amp; Violet}}. Sudowoodo was used in a Gym Battle against {{adv|Scarlet}}. It was shown to be able to {{Tera}}stallize into a {{t|Grass}} type.&lt;br /&gt;
====Pokédex entries====&lt;br /&gt;
{{Mangadexheader}}&lt;br /&gt;
{{Mangadexbody|Pokémon Adventures|[[PS106]]|Its forte is disguising itself as a tree. However, it will reveal its real identity if splashed with water or drenched by rain.{{tt|*|Chuang Yi&#039;s translation}}}}&lt;br /&gt;
{{Mangadexfooter}}&lt;br /&gt;
&lt;br /&gt;
===Pokémon Gold &amp;amp; Silver: The Golden Boys===&lt;br /&gt;
[[File:Gold Sudowoodo Golden Boys.png|thumb|200px|Sudowoodo in Golden Boys]]&lt;br /&gt;
{{GnB|Gold}} and [[Whitney]] battle a {{pkmn2|giant}} Sudowoodo, which is blocking {{rt|36|Johto}} in &#039;&#039;[[GB10|A Huge Mysterious Tree!!]]&#039;&#039;. After defeating it in battle, Gold finds out that it had just covered itself in mud to look bigger and catches it, making it one of his party members.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Pocket Monsters===&lt;br /&gt;
A Sudowoodo blocking the way of {{OBP|Red|Pocket Monsters}} and his Pokémon in &#039;&#039;[[PM087|Sudowoodo&#039;s Toll Charges]]&#039;&#039; while they were trying to cross a bridge. With the help of {{TP|Red|Clefairy}}, Sudowoodo was able to get its act together until the bridge collapsed, which caused it to walk away sadly.&lt;br /&gt;
&lt;br /&gt;
===Pokémon Ruby-Sapphire===&lt;br /&gt;
A Sudowoodo appeared in &#039;&#039;[[PMRS05|Let&#039;s Try To Be Idols!!]]&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==In the TCG==&lt;br /&gt;
{{main|Sudowoodo (TCG)}}&lt;br /&gt;
&lt;br /&gt;
==Other appearances==&lt;br /&gt;
===[[Super Smash Bros. Melee]]===&lt;br /&gt;
Sudowoodo appears on the [[Poké Floats]] stage as a Poké Float. After {{p|Wooper}} first appears, it will move down the right of the screen while Sudowoodo is on the left. Unlike most of the Poké Floats, players are not required to ever go on Sudowoodo. A trophy of Sudowoodo can be obtained after playing on the Poké Floats stage.&lt;br /&gt;
&lt;br /&gt;
====Trophy information====&lt;br /&gt;
&#039;&#039;&amp;quot;An imitation {{OBP|Pokémon|species}} with an aversion to battle, Sudowoodo always poses as a tree in order to avoid being attacked. Despite their arboreal appearance, these Pokémon are actually Rock-types, and therefore highly vulnerable to water. When it begins to rain, they vanish. A Sudowoodo can be found blocking {{rt|36|Johto}} in [[Johto]].&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===[[Super Smash Bros. Ultimate]]===&lt;br /&gt;
Sudowoodo appears as a {{sbw|Spirit}}.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Sudowoodo was created by [[Ken Sugimori]]. It was created to serve as an obstacle in the overworld.&amp;lt;ref&amp;gt;http://www.nintendo.co.jp/nom/0007/gfreak/page06.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
* In [[Generation II]], only one Sudowoodo appears (from being sprayed with water from a [[Squirt Bottle|SquirtBottle]]). Similarly, in [[Generation III]], only one Sudowoodo appears—this time as the result of a spray from the [[Wailmer Pail]]. However, in [[Generation IV]], the {{player}} can get multiple wild Sudowoodo by evolving {{p|Bonsly}} or by catching it in [[tall grass]].&lt;br /&gt;
* Sudowoodo&#039;s habit of disguising itself as a tree has been occasionally shown in the games.&lt;br /&gt;
** In the Pokémon Mystery Dungeon series, Sudowoodo stand still in dungeons, in a similar manner to the Sudowoodo in [[Johto]].&lt;br /&gt;
** In {{g|X and Y}}, a Sudowoodo can be encountered in a [[Horde Encounter]] with four {{p|Trevenant}}.&lt;br /&gt;
** Starting in [[Generation VI]], Sudowoodo stand still when idle.&lt;br /&gt;
** [[Brassius]], the {{type|Grass}} [[Paldea]] [[Gym Leader]], uses a Sudowoodo with a Grass [[Terastal phenomenon|Tera Type]].&lt;br /&gt;
&lt;br /&gt;
===Origin===&lt;br /&gt;
Sudowoodo seems to be based on a small {{wp|tree}} and {{wp|petrified wood}}, which is a plant that has become fossilized over time. This would explain its pure {{t|Rock}} type since all of the organic material in petrified wood is replaced with minerals. It may also be based on the concept of {{wp|mimicry}}, such as that exhibited by {{wp|Phasmatodea|stick insects}}, bugs that evolved to resemble twigs and leaves to evade predators &amp;amp;ndash; Sudowoodo&#039;s forked horn resembles an insect&#039;s antennae.&lt;br /&gt;
&lt;br /&gt;
====Name origin====&lt;br /&gt;
Sudowoodo is a corruption of &#039;&#039;pseudo&#039;&#039; (false) and &#039;&#039;wood&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Usokkie is derived from 嘘 &#039;&#039;uso&#039;&#039; (false) possibly in combination with 木 &#039;&#039;ki&#039;&#039; (&#039;&#039;wood&#039;&#039; or &#039;&#039;tree&#039;&#039;). It could also derive from 嘘つき &#039;&#039;usotsuki&#039;&#039; (liar).&lt;br /&gt;
&lt;br /&gt;
This is referenced by [[Brassius]] referring to his Grass-type Terastallized Sudowoodo as &#039;&#039;&#039;Truleewoodo&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;ウソから出た{{tt|実|まこと}}&#039;&#039;&#039; &#039;&#039;truth from lies&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Other languages|type=rock|type2=rock&lt;br /&gt;
|ja=ウソッキー &#039;&#039;Usokkie&#039;&#039;|jameaning=From {{tt|嘘 &#039;&#039;uso&#039;&#039;|lie}}, {{tt|木 &#039;&#039;ki&#039;&#039;|wood, tree}}, and {{tt|嘘つき &#039;&#039;usotsuki&#039;&#039;|liar}}&lt;br /&gt;
|fr=Simularbre|frmeaning=From &#039;&#039;{{tt|simulacre|sham}}&#039;&#039; and &#039;&#039;{{tt|arbre|tree}}&#039;&#039;&lt;br /&gt;
|es=Sudowoodo|esmeaning=Same as English name&lt;br /&gt;
|de=Mogelbaum|demeaning=From &#039;&#039;{{tt|mogeln|to cheat}}&#039;&#039; and &#039;&#039;{{tt|Baum|tree}}&#039;&#039;&lt;br /&gt;
|it=Sudowoodo|itmeaning=Same as English name&lt;br /&gt;
|ko=꼬지모 &#039;&#039;Kkojimo&#039;&#039;|komeaning=From {{tt|거짓 &#039;&#039;geojit&#039;&#039;|lie, falsehood}} and {{tt|목 (木) &#039;&#039;mok&#039;&#039;|tree}}&lt;br /&gt;
|zh_cmn=樹才怪 / 树才怪 &#039;&#039;Shùcáiguài&#039;&#039;{{tt|*|Games}}&amp;lt;br&amp;gt;胡說樹 / 胡说树 &#039;&#039;Húshuōshù&#039;&#039;{{tt|*|Pre-Gen VII media}}|zh_cmnmeaning=From {{tt|樹 / 树 &#039;&#039;shù&#039;&#039;|tree}}, {{tt|才怪 &#039;&#039;cáiguài&#039;&#039;|expression to indicate something farfetched, equivalent to the slang expression &#039;&#039;as-if&#039;&#039;}}, and {{tt|怪 &#039;&#039;guài&#039;&#039;|monster}}&amp;lt;br&amp;gt;From {{tt|胡說 / 胡说 &#039;&#039;húshuō&#039;&#039;|to spout nonsense}} and {{tt|樹 / 树 &#039;&#039;shù&#039;&#039;|tree}}&lt;br /&gt;
|zh_yue=樹才怪 &#039;&#039;Syuhchòihgwaai&#039;&#039;{{tt|*|Games}}&amp;lt;br&amp;gt;鬍說樹 / 鬍說樹 &#039;&#039;Wùhseuisyuh&#039;&#039;|zh_yuemeaning=From {{tt|樹 &#039;&#039;syuh&#039;&#039;|tree}} and {{tt|怪 &#039;&#039;guài&#039;&#039;|monster}}&amp;lt;br&amp;gt;From {{tt|胡說 &#039;&#039;wùhseui&#039;&#039;|to spout nonsense}} and {{tt|樹 &#039;&#039;syuh&#039;&#039;|tree}}&lt;br /&gt;
|he=סודוודו &#039;&#039;Sudowudo&#039;&#039;|hemeaning=Transcription of English name&lt;br /&gt;
|hi=नकलिट्री &#039;&#039;Naklitree&#039;&#039;|himeaning=From {{tt|नकली &#039;&#039;Nakli&#039;&#039;|Fake}} and &#039;&#039;tree&#039;&#039;&lt;br /&gt;
|ru=Судовудо &#039;&#039;Sudovudo&#039;&#039;|rumeaning=Transcription of English name&lt;br /&gt;
|th=อุซกกี &#039;&#039;Usokki&#039;&#039;|thmeaning=Transcription of Japanese name&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related articles==&lt;br /&gt;
* [[Brock&#039;s Sudowoodo]]&lt;br /&gt;
* [[Sudobo]]&lt;br /&gt;
* [[Emerald&#039;s Sudowoodo]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
{{PokémonPrevNext/Head|type=Rock}}&lt;br /&gt;
{{PokémonPrevNext/Pokémon|type=Rock|prevnum=0184|prev=Azumarill|nextnum=0186|next=Politoed}}&lt;br /&gt;
|}&lt;br /&gt;
{{Project Pokédex notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Shadow Pokémon in Pokémon Colosseum]]&lt;br /&gt;
[[Category:Pokémon with cross-generational Evolutions]]&lt;br /&gt;
&lt;br /&gt;
[[de:Mogelbaum]]&lt;br /&gt;
[[es:Sudowoodo]]&lt;br /&gt;
[[fr:Simularbre]]&lt;br /&gt;
[[it:Sudowoodo]]&lt;br /&gt;
[[ja:ウソッキー]]&lt;br /&gt;
[[zh:树才怪]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Sky_Drop_(move)&amp;diff=4227748</id>
		<title>Sky Drop (move)</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Sky_Drop_(move)&amp;diff=4227748"/>
		<updated>2025-01-24T22:35:20Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MoveInfobox&lt;br /&gt;
|n=507&lt;br /&gt;
|name=Sky Drop&lt;br /&gt;
|jname=フリーフォール&lt;br /&gt;
|jtrans=Free Fall&lt;br /&gt;
|jtranslit=Furī Fōru&lt;br /&gt;
|gameimage=Sky Drop VII.png&lt;br /&gt;
|gameimage2=Sky Drop VII 2.png&lt;br /&gt;
|gameimagewidth=300&lt;br /&gt;
|type=Flying&lt;br /&gt;
|damagecategory=Physical&lt;br /&gt;
|basepp=10&lt;br /&gt;
|maxpp=16&lt;br /&gt;
|power=60&lt;br /&gt;
|accuracy=100&lt;br /&gt;
|gen=V&lt;br /&gt;
|tm5=yes&lt;br /&gt;
|tm#5=58&lt;br /&gt;
|tm6=yes&lt;br /&gt;
|tm#6=58&lt;br /&gt;
|tm7=yes&lt;br /&gt;
|tm#7=58&lt;br /&gt;
|na=no&lt;br /&gt;
|pokefordex=Sky%20Drop&lt;br /&gt;
|category=Tough&lt;br /&gt;
|appeal6=3&lt;br /&gt;
|cdesc6= Temporarily stops the crowd from growing excited.&lt;br /&gt;
|touches=yes&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;
|flag7=no&lt;br /&gt;
|flag8=yes&lt;br /&gt;
|sound=no&lt;br /&gt;
|field=no&lt;br /&gt;
|target=any&lt;br /&gt;
|footnotes=&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Sky Drop&#039;&#039;&#039; (Japanese: &#039;&#039;&#039;フリーフォール&#039;&#039;&#039; &#039;&#039;Free Fall&#039;&#039;) is a damage-dealing {{type|Flying}} [[move]] introduced in [[Generation V]]. It was [[TM58]] from Generation V to {{g|Ultra Sun and Ultra Moon}}.&lt;br /&gt;
&lt;br /&gt;
==Effect==&lt;br /&gt;
===Generation V===&lt;br /&gt;
On the turn it is selected, Sky Drop brings the target to the air. While in the air, the target cannot act. While in the air, both the user and the target avoid any move targeted at them (except {{m|Gust}}, {{m|Thunder}}, {{m|Twister}}, {{m|Sky Uppercut}}, {{m|Hurricane}}, or {{m|Smack Down}}). The next turn, the target is thrown down and receives damage. Sky Drop does no damage to {{type|Flying}} Pokémon, but it will still pick them up (making them unable to move) on its first turn.&lt;br /&gt;
&lt;br /&gt;
Sky Drop can target non-adjacent Pokémon in [[Triple Battle]]s. Sky Drop can target allies, but will fail when attempting to perform the move on them.&lt;br /&gt;
&lt;br /&gt;
The Ability {{a|No Guard}} or a previously used {{m|Lock-On}} or {{m|Mind Reader}} can still allow moves to hit Pokémon that are in the air.&lt;br /&gt;
&lt;br /&gt;
Sky Drop will fail if the target is behind a {{OBP|substitute|doll}}, or if used on a target that is already semi-invulnerable due to moves such as {{m|Fly}}, {{m|Bounce}}, or another Sky Drop.&lt;br /&gt;
&lt;br /&gt;
Sky Drop cannot be used while {{m|Gravity}} is in effect. If Gravity is used during the semi-invulnerable turn of Sky Drop, the move will be cancelled. In [[Generation V]] only, due to [[Sky Drop glitch|a glitch]], if Gravity is used while two Pokémon are in the semi-invulnerable state of Sky Drop, Gravity will bring the user of Sky Drop down, but the target of Sky Drop will be stuck unable to move in the semi-invulnerable state, until the effect of Gravity ends, the user of Sky Drop switches out or is knocked out, or the Pokémon affected by Sky Drop is knocked out. This can only occur in [[Double Battle|Double]] and [[Triple Battle]]s.&lt;br /&gt;
&lt;br /&gt;
If a Pokémon locked into a {{cat|Consecutively executed moves|consecutively executed move}} is brought up with Sky Drop, the Pokémon will discontinue using the move when freed; if the move {{status|confusion|confuses}} the user {{cat|Moves that confuse the user due to fatigue|due to fatigue}} upon completion, that will occur now.&lt;br /&gt;
&lt;br /&gt;
{{m|Protect}} and {{m|Detect}} can guard against the initial use of the move, but the affected Pokémon cannot use any moves (including Protect) while in the air.&lt;br /&gt;
&lt;br /&gt;
Sky Drop is unaffected by the [[Power Herb]], and will not consume it.&lt;br /&gt;
&lt;br /&gt;
Sky Drop is not redirected by the effects of {{m|Follow Me}} or {{m|Rage Powder}}. If a Pokémon that is the center of attention (due to Follow Me or Rage Powder) is taken into the air by Sky Drop, it will no longer draw moves.&lt;br /&gt;
&lt;br /&gt;
In a [[Rotation Battle]], if the target Pokémon is rotated out on the second turn of Sky Drop, the Pokémon will be dropped into their new rotated position and take no damage, while the rotated in Pokémon still gets to attack.&lt;br /&gt;
&lt;br /&gt;
===Generations VI and VII===&lt;br /&gt;
Targets [[weight|weighing]] [[List of Pokémon by weight#440.9 lbs. to 451.3 lbs. (200.0 kg to 204.7 kg)|440.9 lbs. (200 kg)]] or more cannot be lifted by Sky Drop, causing the move to fail. Once the target has been lifted, its weight can no longer affect the success of that usage of Sky Drop—even if a lifted target becomes heavier than the threshold, it will not cause Sky Drop to fail.&lt;br /&gt;
&lt;br /&gt;
If {{m|Gravity}} is used during the semi-invulnerable turn of Sky Drop, the move will be cancelled and both Pokémon will be brought down.&lt;br /&gt;
&lt;br /&gt;
Both the user and the target can now be hit by {{m|Thousand Arrows}} during the semi-invulnerable turn of Sky Drop.&lt;br /&gt;
&lt;br /&gt;
While a Pokémon currently being lifted by Sky Drop can freely select any of its moves at the start of the turn, it does not have the option to [[Mega Evolution|Mega Evolve]] or [[Ultra Burst]] even if it otherwise would be able to.&lt;br /&gt;
&lt;br /&gt;
The Abilities {{a|Wimp Out}} and {{a|Emergency Exit}} will not trigger if the Pokémon is brought below half HP during the semi-invulnerable turn of Sky Drop.&lt;br /&gt;
&lt;br /&gt;
Sky Drop can also be used as part of a [[Contest combination|Contest Spectacular combination]] with the user gaining an extra three appeal points if any of the moves {{m|Entrainment}}, {{m|Hold Hands}} or {{m|Play Nice}} was used in the prior turn.&lt;br /&gt;
&lt;br /&gt;
===Generation VIII onwards===&lt;br /&gt;
Sky Drop cannot be selected in a battle.&lt;br /&gt;
&lt;br /&gt;
===Glitches===&lt;br /&gt;
{{main|Sky Drop glitch}}&lt;br /&gt;
In {{4v|Black|White|2}}, a glitch in [[Double Battle|Double]] and [[Triple Battle]]s can cause a Pokémon to become stuck in the semi-invulnerable state when Sky Drop is used. The glitch is activated when {{m|Gravity}} is used while two Pokémon are in the semi-invulnerable state after the use of Sky Drop. Gravity will bring the user of Sky Drop down while the target will be stuck in the semi-invulnerable state, unable to move until it is knocked out or hit with one of the moves listed above. Because of the glitch, Sky Drop was banned in Generation V Wi-Fi Random Matches starting November 10, 2010 and all subsequent official tournaments.&lt;br /&gt;
&lt;br /&gt;
In {{g|Sun and Moon}}, a [[List of battle glitches in Generation VII#Spiky Shield Sky Drop glitch|glitch]] can cause a Pokémon to become stuck in an &amp;quot;undead&amp;quot; invulnerable state when Sky Drop is used. The glitch is activated when Sky Drop is used on a Pokémon using {{m|Spiky Shield}}. Spiky Shield will damage the Pokémon using Sky Drop, but the game does not recognize the move. This makes the attacking Pokémon reach 0 HP and completely skip its turn and all moves used against this glitched Pokémon fail.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
{{movedesc|flying}}&lt;br /&gt;
{{movedescentry|{{gameabbrev5|BWB2W2}}|The user takes the target into the sky, then drops it during the next turn. The target cannot attack while in the sky.{{tt|*|Move}}&amp;lt;br/&amp;gt;The user hurls the target into the air, then drops it on the second turn. The target cannot attack while in the air.{{tt|*|TM}}}}&lt;br /&gt;
{{movedescentry|{{gameabbrev6|XYORAS}}&amp;lt;br&amp;gt;{{gameabbrev7|SMUSUMPE}}|The user takes the target into the sky, then drops it during the next turn. The target cannot attack while in the sky.}}&lt;br /&gt;
{{movedescentry|{{gameabbrev8|SwShBDSPLA}}&amp;lt;br&amp;gt;{{gameabbrev9|SV}}|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/Games|Flying|g1=none|g2=none|g3=none|g4=none|g7=1|g7g={{gameabbrev7|SMUSUM}}|g8=none|g9=none}}&lt;br /&gt;
{{Moveentry/3|0142|Aerodactyl|type=Rock|type2=Flying|1|Flying|Flying|49|49|49||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0627|Rufflet|type=Normal|type2=Flying|1|Flying|Flying|50|50|50||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0628|Braviary|type=Normal|type2=Flying|1|Flying|Flying|50|50|50||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0701|Hawlucha|type=Fighting|type2=Flying|2|Flying|Human-Like||55|55||STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Movefoot|Flying|3}}&lt;br /&gt;
&lt;br /&gt;
===By [[TM]]===&lt;br /&gt;
{{Movehead/TMGames|Flying|g1=none|g2=none|g3=none|g4=none|g8=none|g9=none&lt;br /&gt;
|g5tm=58&lt;br /&gt;
|g6tm=58&lt;br /&gt;
|g7=1|g7tm=58|g7g={{gameabbrev7|SMUSUM}}}}&lt;br /&gt;
{{Moveentry/3|0006|Charizard|type=Fire|type2=Flying|2|Monster|Dragon|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0142|Aerodactyl|type=Rock|type2=Flying|1|Flying|Flying|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0144|Articuno|type=Ice|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0145|Zapdos|type=Electric|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0146|Moltres|type=Fire|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0149|Dragonite|type=Dragon|type2=Flying|2|Water 1|Dragon|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0151|Mew|type=Psychic|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔}}&lt;br /&gt;
{{Moveentry/3|0227|Skarmory|type=Steel|type2=Flying|1|Flying|Flying|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0249|Lugia|type=Psychic|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0250|Ho-Oh|type=Fire|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0279|Pelipper|type=Water|type2=Flying|2|Water 1|Flying|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0384|Rayquaza|type=Dragon|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0627|Rufflet|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0628|Braviary|type=Normal|type2=Flying|1|Flying|Flying|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0641|Tornadus|type=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0642|Thundurus|type=Electric|type2=Flying|1|No Eggs Discovered|No Eggs Discovered|form=All available forms|✔|✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0701|Hawlucha|type=Fighting|type2=Flying|1|Human-Like|Human-Like||✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0717|Yveltal|type=Dark|type2=Flying|1|No Eggs Discovered|No Eggs Discovered||✔|✔|STAB=&#039;&#039;&#039;}}&lt;br /&gt;
{{Moveentry/3|0738|Vikavolt|type=Bug|type2=Electric|1|Bug|Bug|||✔}}&lt;br /&gt;
{{Moveentry/3|0785|Tapu Koko|type=Electric|type2=Fairy|1|No Eggs Discovered|No Eggs Discovered|||✔}}&lt;br /&gt;
{{Moveentry/3|0792|Lunala|type=Psychic|type2=Ghost|1|No Eggs Discovered|No Eggs Discovered|||✔}}&lt;br /&gt;
{{Moveentry/3|0804|Naganadel|type=Poison|type2=Dragon|1|No Eggs Discovered|No Eggs Discovered|||✔{{sup/7|USUM}}}}&lt;br /&gt;
{{Movefoot|Flying|3}}&lt;br /&gt;
&lt;br /&gt;
==In other games==&lt;br /&gt;
===[[Pokémon Mystery Dungeon series]]===&lt;br /&gt;
Sky Drop targets the enemy in front and brings the user and the enemy to the air (giving the user the {{DL|Status condition (Mystery Dungeon)|Sky Drop}} status and {{DL|Status condition (Mystery Dungeon)|suspended|suspending}} the enemy). While the user is in the air, the Pokémon cannot be hit by moves (except by moves such as Gust, Thunder, Twister and Sky Uppercut). Projectiles will also pass the user as if their tile was empty. The next turn, the enemy is thrown down and receives damage. Due to it being a two-turn move, this move cannot be linked.&lt;br /&gt;
&lt;br /&gt;
{{MDMoveheader|type=flying}}&lt;br /&gt;
{{MDMoveRow|game=GTI|pow=40|powmax=99|pp=13|ppmax=50|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMoveRow|game=SMD|pow=37|powmax=99|pp=13|ppmax=30|acc=100%|range=Front|target=Enemy|cuts=No}}&lt;br /&gt;
{{MDMovefoot|type=flying|GTI=yes|SMD=yes|RTDX=yes}}&lt;br /&gt;
&lt;br /&gt;
===[[Pokémon Conquest]]===&lt;br /&gt;
{{Conquestmove&lt;br /&gt;
|type=Flying&lt;br /&gt;
|grid={{Conquestmove/Grid/columns}}&lt;br /&gt;
|stars=3&lt;br /&gt;
|pow=36&lt;br /&gt;
|acc=100%&lt;br /&gt;
|eff=The user carries the target into the air, and both the user and target remain invulnerable for one turn. The targeted Pokémon will receive damage at the start of the user&#039;s next turn. The user cannot move again that turn.&lt;br /&gt;
|users={{CSP|628|Braviary}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==={{g|Rumble Rush}}===&lt;br /&gt;
{{RumbleRushPhysicalAttack|move=Sky Drop|type=Flying&lt;br /&gt;
|stars=3&lt;br /&gt;
|pow=46.66064&lt;br /&gt;
|charge=0.8&lt;br /&gt;
|range=Dash&lt;br /&gt;
|hits=1&lt;br /&gt;
|projectiles=1&lt;br /&gt;
|crit=1.5&lt;br /&gt;
|effect=None}}&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
{{movedesc|flying}}&lt;br /&gt;
{{movedescentry|{{gameabbrevss|Conq}}|The user takes the target into the sky, then drops it during the next turn. The target cannot attack while in the sky.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|GTI}}|You take the enemy into the sky, then drop it during the next turn. You evade items or moves while you&#039;re in the air.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|SMD}}|You&#039;ll get the Sky Drop status condition. You&#039;ll lift the enemy into the sky and then drop it during the next turn, causing damage to it. You&#039;ll evade items and moves while you&#039;re in the air.}}&lt;br /&gt;
{{movedescentry|{{gameabbrevmd|RTDX}}|You&#039;ll get the Sky Drop condition. You&#039;ll lift the enemy into the sky and then drop the enemy during the next turn, causing damage to them. You&#039;ll evade items and moves while you&#039;re in the air.}}&lt;br /&gt;
|}&lt;br /&gt;
|}{{left clear}}&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Pokémon animated series===&lt;br /&gt;
{{moveanime|type=flying|exp=yes|gen=The user takes the target into the sky, then drops it after dashing to the ground at high speed.|image1=Kukui Braviary Sky Drop.png|image1p=Braviary}}&lt;br /&gt;
{{movep|type=flying|ms=628|pkmn=Braviary|method=Braviary grabs the opponent with his talons and lifts them high into the air. He then speeds down towards the ground and flies away at the last second, dropping the opponent to the ground with great force.}}&lt;br /&gt;
{{movebtm|type=flying|user=Professor Kukui (anime)|user1=Professor Kukui&#039;s Braviary|startcode=SM142|startname=A Full Battle Bounty!|notes=Debut}}&lt;br /&gt;
&lt;br /&gt;
==In the manga==&lt;br /&gt;
===Pokémon Adventures===&lt;br /&gt;
{{movemanga|type=flying|exp=yes|gen=The user drops the opponent from high in the air.|image1=Brav Sky Drop.png|image1p=Braviary}}&lt;br /&gt;
{{movep|type=flying|ms=628|pkmn=Braviary|method=Braviary grabs the opponent with his talons and lifts them high into the air. He then speeds downwards and tosses the opponent onto the ground.}}&lt;br /&gt;
{{movebtmManga|type=flying|user=Brav|user1=Black&#039;s Brav|startcode=PS523|startname=The Power of Dreams|notes=Debut&amp;lt;br&amp;gt;First mentioned in &#039;&#039;{{color2|000|PS508|The Lesson Ends Here}}&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
==In other generations==&lt;br /&gt;
===Core series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Flying|&lt;br /&gt;
genV=Sky Drop V|&lt;br /&gt;
genVI=Sky Drop VI|&lt;br /&gt;
genVI2=Sky Drop VI 2|&lt;br /&gt;
}}&lt;br /&gt;
===Spin-off series games===&lt;br /&gt;
{{Movegen|&lt;br /&gt;
type=Flying|&lt;br /&gt;
PMDGTI=Sky Drop PMD GTI|&lt;br /&gt;
PSMD=Sky Drop PSMD&lt;br /&gt;
}}&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Sky Drop has the lowest power of all moves with a charging turn.&lt;br /&gt;
* Sky Drop is the only move in [[Generation VI]] which causes an opponent&#039;s Pokémon to become fully immobile while in use.&lt;br /&gt;
* Sky Drop is one of the two {{cat|moves with a charging turn}} that cannot be used in [[Generation VIII]] onwards, the other being {{m|Razor Wind}}.&lt;br /&gt;
* Sky Drop is the only move to be banned in an in-game tournament or [[Battle facility]], being banned in the [[Pokémon World Tournament]].&lt;br /&gt;
&lt;br /&gt;
==In other languages==&lt;br /&gt;
{{Langtable|color={{flying color}}|bordercolor={{flying color light}}&lt;br /&gt;
|zh_yue=自由落體 &#039;&#039;{{tt|Jihyàuh Lohktái|Free Fall}}&#039;&#039;&lt;br /&gt;
|zh_cmn=自由落體 / 自由落体 &#039;&#039;{{tt|Zìyóu Luòtǐ|Free Fall}}&#039;&#039;&lt;br /&gt;
|fr=Chute Libre&lt;br /&gt;
|de=Freier Fall&lt;br /&gt;
|es=Caída Libre&lt;br /&gt;
|pt=Queda Livre&lt;br /&gt;
|it=Cadutalibera&lt;br /&gt;
|ko=프리폴 {{tt|&#039;&#039;Peuripol&#039;&#039;|Free Fall}}&lt;br /&gt;
|pl=Swobodny Spadek&lt;br /&gt;
|vi=Rơi Tự Do}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Generation V TMs}}&lt;br /&gt;
{{Generation VI TMs}}&lt;br /&gt;
{{Generation VII TMs}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{Project Moves and Abilities notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Moves with a semi-invulnerable turn]]&lt;br /&gt;
[[Category:Moves with a charging turn]]&lt;br /&gt;
[[Category:Moves affected by weight]]&lt;br /&gt;
[[Category:Moves that can fail]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Sword and Shield]]&lt;br /&gt;
[[Category:Moves unusable in Pokémon Scarlet and Violet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Freier Fall]]&lt;br /&gt;
[[es:Caída libre]]&lt;br /&gt;
[[fr:Chute Libre]]&lt;br /&gt;
[[it:Cadutalibera]]&lt;br /&gt;
[[ja:フリーフォール]]&lt;br /&gt;
[[zh:自由落体（招式）]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=User_talk:Minibug&amp;diff=4225018</id>
		<title>User talk:Minibug</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=User_talk:Minibug&amp;diff=4225018"/>
		<updated>2025-01-21T20:29:02Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Recent edit reversions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{| cellspacing=&amp;quot;7&amp;quot; class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; border: 1px solid #3e7614; background: #FFFFFF;&amp;quot;&lt;br /&gt;
| class=&amp;quot;roundytop&amp;quot; style=&amp;quot;background: #c4e673; border: 1px solid #3e7614; font-size: 160%; padding-left: 20px;&amp;quot; height=&amp;quot;50px&amp;quot; | &#039;&#039;&#039;Welcome to Bulbapedia, Minibug!&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; color: #000000;&amp;quot; |&lt;br /&gt;
{| style=&amp;quot;float:right; background: #E0F2B6; border: 1px solid #3e7614; padding:8px; {{roundy|100px}}&amp;quot;&lt;br /&gt;
| [[File:Bulbapedia bulb.png|100px|center]]&lt;br /&gt;
|}&lt;br /&gt;
Thank you for joining our community!  By creating an account you are now able to edit pages, join discussions, and expand the community-driven Pokémon encyclopedia. This is a brief introduction to Bulbapedia&#039;s rules and resources to help you get started:&lt;br /&gt;
* All users are expected to follow the {{bp|code of conduct}} and to be kind to one another.&lt;br /&gt;
* If you have a question, check out our {{bp|FAQ}}; the {{bp|manual of style}} provides detailed editing guidance, and the {{bp|wikicode|wikicode page}} provides details about how to use wikicode.  &lt;br /&gt;
** You can always ask for help by contacting a {{bp|staff}} member.&lt;br /&gt;
* Please preview your edits before saving them; this helps you double-check your changes and reduces the need for repeated minor edits.&lt;br /&gt;
* Use {{bp|Talk page policy|talk pages}} to discuss changes and resolve editing disputes.&lt;br /&gt;
* Creating a userpage is allowed after you&#039;ve added to the encyclopedia; for more details, see the {{bp|userspace policy}}.&lt;br /&gt;
* Sign all talk page posts with four tildes (&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;) so people know who is commenting. This will turn into your name and the time you wrote the comment.&lt;br /&gt;
* For more handy links and information, check out the {{bp|welcome|welcome portal}}.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundybottom&amp;quot; style=&amp;quot;background: #c4e673; border: 1px solid #3e7614; padding-left: 20px;&amp;quot; | &#039;&#039;&#039;&amp;lt;div style=&amp;quot;float: left; font-size: 110%;&amp;quot;&amp;gt;Thank you, and have a good time editing here!&amp;lt;/div&amp;gt;&#039;&#039;&#039;&amp;lt;div style=&amp;quot;float: right; height: 20px; background: white; border-left: 10px solid #f3f5f1; {{roundybr|10px}}&amp;quot;&amp;gt;&amp;amp;nbsp; [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#00d1bc&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/font&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;font color=&amp;quot;#006699&amp;quot;&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]] 13:53, 25 April 2023 (UTC) &amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;float: right; height: 20px; width: 10px; background: #DFF2B1; border-left: 10px solid #D3EC95;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Languages titles==&lt;br /&gt;
I see you&#039;re adding the Danish titles for episodes of Pokemon Journeys, thanks for doing this but instead of listing the new titles at the bottom of the section, could you list them in the alphabetically fitting spot please as that is how we do them.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 18:48, 25 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Thanks for letting me know. I saw that the template automatically alphabetizes it anyways so I wasn&#039;t sure if I needed to add it in order, but I&#039;ll do that from now on. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 19:16, 25 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Trainer lists ==&lt;br /&gt;
&lt;br /&gt;
Good work adding some of the Kitakami Trainer lists. However, I feel it takes less space and is arguably easier to read if done like [https://bulbapedia.bulbagarden.net/w/index.php?title=Paradise_Barrens&amp;amp;curid=295835&amp;amp;diff=3811085&amp;amp;oldid=3811067 this]. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 22:04, 21 September 2023 (UTC)&lt;br /&gt;
:That is true, and I did consider that approach for it, but I figured removing the dependence on hovertext for the benefit of mobile users outweighed the problems from having two tables for each set of Trainers. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 22:15, 21 September 2023 (UTC)&lt;br /&gt;
::As a mobile user myself, I can understand that, but I still lean towards the more efficient solution. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 22:33, 21 September 2023 (UTC)&lt;br /&gt;
:::This same method is also used with B2W2&#039;s level and prize money info in regards to the prize money and level changes depending on the difficulty setting, aside from major boss battles where a Trainer&#039;s team also changes. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 22:41, 21 September 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Spelling mistakes==&lt;br /&gt;
Thanks for correcting all the spelling mistakes regarding Pokémon names on various pages, I have to say I&#039;m shocked at how many there are.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 19:01, 13 October 2023 (UTC)&lt;br /&gt;
:Unfortunately there are still a lot more to fix. I was also surprised with how many there have ended up being. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 19:43, 13 October 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bot edits ==&lt;br /&gt;
&lt;br /&gt;
I understand that your automated edits are important, but could it have been possible to leave the edits to BulbaBot or some other thing that could make the edits without flooding the recent edits history? --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 11:30, 9 November 2023 (UTC)&lt;br /&gt;
:Apologies for the large amount of edits. I think BulbaBot uses the same software that I do for making automated edits, PyWikiBot, so the next time I need to make so many edits I could ask someone with access to BulbaBot to run my script. PyWikiBot has a &amp;lt;code&amp;gt;botflag&amp;lt;/code&amp;gt; parameter that should hide the edit like with BulbaBot, but it doesn&#039;t seem like it works for me. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 11:45, 9 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Advice ==&lt;br /&gt;
&lt;br /&gt;
Please use &amp;quot;×&amp;quot; instead of &amp;quot;x&amp;quot; when listing multiples of something. Also, many Paldea Trainer lists lack the {{template|Trainerdiv}} templates they should have. Good job adding the item lists, though. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 01:51, 22 December 2023 (UTC)&lt;br /&gt;
:Thank you for letting me know, I thought I was already using &amp;quot;×&amp;quot; but I guess I never updated it in my script like I thought I did. -[[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 02:10, 22 December 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Recent trivia ==&lt;br /&gt;
Just letting you know, when adding trivia about gaps between appearances, can you use earlier instead of ago please.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 18:49, 28 December 2023 (UTC)&lt;br /&gt;
:Thanks for letting me know. I was using that phrasing because I copied it from another page, so maybe some cleanup on the drought sections is in order. -[[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 19:19, 28 December 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wait, Necrozma has the 255 Catch Rate in Indigo Disk still? ==&lt;br /&gt;
&lt;br /&gt;
I legitimately thought it reverted back to 3. {{unsigned|PrincessVidel}}&lt;br /&gt;
&lt;br /&gt;
:Necrozma&#039;s catch rate is 255 in Indigo Disk, I checked the data myself. Can I ask where you saw a source claiming it was changed to 3? -[[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 16:26, 6 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==How to check EISBN==&lt;br /&gt;
Originally when VIZ began their digital releases years ago, on each page of their separate digital page which first becomes available on the day of release, I personally go to VIZ&#039;s website and copy their eISBN-13 for the digital ISBN codes one example is this link [https://www.viz.com/read/manga/pokemon-adventures-omega-ruby-and-alpha-sapphire-volume-1/product/7706/digital]. This is how all the EISBN codes were added in the first place for every VIZ digital release. -[[User:Tyler53841|Tyler53841]] ([[User talk:Tyler53841|talk]]) 23:44, 9 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Re:Black &amp;amp; White subtitles from Shogakukan Asia ==&lt;br /&gt;
&lt;br /&gt;
Yes. Shogakukan asia started off translating the manga on their own, including manga that is previously not translated such as [[Be the Best! Pokémon B+W]]. however, from pokemon adventure vol 46 onwards, all pokemon translation are licensed from viz media, thus all manga that are released by shogakukan asia are released later than viz media, and we no longer have any more original translation unlike chuang yi giving us many pokemon manga that are previously not translated. -[[User:Pokeant|Pokeant]] ([[User talk:Pokeant|talk]]) 11:24, 28 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Template Data fields ==&lt;br /&gt;
&lt;br /&gt;
Hey, just thought I&#039;d mention, when [[Special:Diff/3936055|adding]] TemplateData, the type of a paramater should be &amp;quot;Line&amp;quot; for short text (that should not contain line breaks), and &amp;quot;String&amp;quot; if it can contain line breaks.[[mw:Help:TemplateData#string|&amp;lt;sup&amp;gt;&amp;amp;lsqb;1&amp;amp;rsqb;&amp;lt;/sup&amp;gt;]] → &amp;lt;span class=&amp;quot;blacklinks&amp;quot;&amp;gt;[[User:SuperPikaPool13|Pika]][[User talk:SuperPikaPool13|&amp;lt;sup&amp;gt;Tepig&amp;lt;/sup&amp;gt;]][[Special:Contribs/SuperPikaPool13|&amp;lt;sub&amp;gt;999&amp;lt;/sub&amp;gt;]]&amp;lt;/span&amp;gt; 02:53, 2 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Page categories ==&lt;br /&gt;
&lt;br /&gt;
Hi there! Just a friendly reminder to make sure new pages you create include categories, such as the [[Pokémon Black and White Game Art Folio]] article you created last month. If you&#039;re unsure what category to add to a page, feel free to ask a staff member. Thanks! [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#32b761&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#5f6775&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;]] 17:47, 11 March 2024 (UTC)&lt;br /&gt;
:My bad, it completely slipped my mind at the time. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 17:49, 11 March 2024 (UTC)&lt;br /&gt;
::No worries! It happens to the best of us :) [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#32b761&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#5f6775&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;]] 17:52, 11 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Encounter rates for Sinnoh route 210 ==&lt;br /&gt;
&lt;br /&gt;
The edit for the encounter rates was at least partially wrong, swablu can be found in all times of day(just tested it in game to be sure).&lt;br /&gt;
I assume it was just a typo on your end? I undid the edit for now, feel free to double check the numbers and resubmit.&lt;br /&gt;
[[User:Jucatorul|Jucatorul]] ([[User talk:Jucatorul|talk]]) 16:17, 16 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== descriptions for items in games they do not appear in ==&lt;br /&gt;
&lt;br /&gt;
hi, i&#039;m not sure if this is proper form, but i&#039;ve noticed you&#039;ve been editing a lot of item pages to make their most recent description listed as their description in all future games, including games where they don&#039;t appear at all. to me, this seems misleading and inappropriate. i doubt that the [[Contest Costume]], for example, is anywhere in the code of SV, but seeing a description listed for it in those games suggests it is. your edits to Z-Crystals in particular suggest that they got new descriptions in scarlet and violet. i haven&#039;t looked at the internals of these games, so i may be wrong about all of this, but i&#039;d like to know the reason behind these edits. [[User:Lilycove|lilycove]] 00:31, 11 May 2024 (UTC)&lt;br /&gt;
:Almost every item and its description will get carried over between games/generations. For whatever reason, these item descriptions will occasionally be updated even if the item itself appears nowhere in the game. In fact, sometimes even item *names* get changed even when the item isn&#039;t obtainable, like how Scarlet and Violet changed the name of the Rainbow Wing into [[Rainbow Feather]] even though its been inaccessible since Generation IV. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 00:36, 11 May 2024 (UTC)&lt;br /&gt;
::odd. well, thank you very much for clarifying! [[User:Lilycove|lilycove]] 00:38, 11 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Congratulations ==&lt;br /&gt;
From one junior admin to another, I thought I would offer you my congratulations on becoming a junior admin and welcome you to the team.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 08:58, 26 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Quest Ingredient formatting ==&lt;br /&gt;
&lt;br /&gt;
Hi! So I noticed the edit done on [[Balm Mushroom]] and I&#039;m of the conflicted sort regarding it. I included the three adjectives and one noun because those are the key words the cooking feature uses and so the description is demonstrating the game&#039;s rules. The format is a little silly, because it&#039;s based on [[Bluk Berry]], &amp;quot;a blue ingredient that is soft, small, and sweet,&amp;quot; and I figured that its best to lean into the madness and phrase it consistently even if &amp;quot;sweet&amp;quot; and &amp;quot;mushroom&amp;quot; do not have the same part of speech. (In hindsight, maybe trying to squeeze &amp;quot;sweet&amp;quot; into a noun format works better than pretending three different nouns are adjectives.) &lt;br /&gt;
&lt;br /&gt;
Similarly, calling out the color a second time was also a means of demonstrating what to pay attention to, in the &amp;quot;oh, if grey ingredients are common here, then it is also where to go to find [[Fossil]]s.&amp;quot; (That and it matches how the information is being displayed in the game, as a color wheel representing unseen percentages.) [[User:Salmancer|Salmancer]] ([[User talk:Salmancer|talk]]) 23:18, 1 June 2024 (UTC)&lt;br /&gt;
:Thank you for clarifying, I&#039;m not very familiar with Quest and your wording with using &amp;quot;mushroom&amp;quot; as an adjective confused me a bit. I also did not realize these characteristics weren&#039;t just flavor text. Do you think we could change the wording to something like &amp;quot;This ingredient can be used in any recipe that requires ingredients that are soft, precious, gray, or mushrooms&amp;quot;? [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 23:40, 1 June 2024 (UTC)&lt;br /&gt;
::I don&#039;t think so. Quest {{OBP|Cooking|Quest}} follows strange rules. The game goes down the list of recipes and picks the first one that matches the full set of ingredients used. This means that later recipes start to get more and more specific about allowed ingredient combinations in ways the suggested sentence can&#039;t quite quantify. I&#039;d need to think about it. Maybe, &amp;quot;When Cooking, this ingredient has the following properties: soft, precious, gray, mushroom&amp;quot;? That leans perhaps too gamey. [[User:Salmancer|Salmancer]] ([[User talk:Salmancer|talk]]) 23:51, 1 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Similar backstories ==&lt;br /&gt;
&lt;br /&gt;
Hello Minibug! I just wanted to talk to you about the Edit i&#039;ve made in the page of the Heroes of Truth and Ideals. [[User:Trainersurrel0409|Trainersurrel0409]] ([[User talk:Trainersurrel0409|talk]]) 19:51, 11 July 2024 (UTC)&lt;br /&gt;
:What did you want to talk about? [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 23:26, 11 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Well you reverted my edits, i do understand why, but i think it&#039;s a little weird having the heroes&#039;s Pokémon only in the anime section, specially since all versions of them had the same Pokémon, the original dragon, Reshiram, and Zekrom. [[User:Trainersurrel0409|Trainersurrel0409]] ([[User talk:Trainersurrel0409|talk]]) 23:39, 11 July 2024 (UTC)&lt;br /&gt;
:::Generally each section will have screenshots of the Pokémon in question from each piece of media, but I don&#039;t believe there are depictions of them with their dragons outside of the anime, so there&#039;s no screenshots in those sections. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 23:44, 11 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
As far as i know, no, but i just kinda hoped to make it similar to the Galarian kings&#039;s page, also we definetely should add the original dragon as one of their Pokémon as well. [[User:Trainersurrel0409|Trainersurrel0409]] ([[User talk:Trainersurrel0409|talk]]) 00:06, 12 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Congratulations! ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: 1px solid #{{gold color}}; background-color:#F9CB58; {{roundy|60px}}&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;75%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 0.5em;&amp;quot; | [[File:GoldenBisharp.png|100px]]&lt;br /&gt;
| {{color|986F0A|&#039;&#039;&#039;The Golden Bisharp Award&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Congratulations!&#039;&#039;&#039; For your outstanding service to [[Bulbapedia|{{color|000|Bulbapedia}}]] assisting with modernization changes for [[Help:Color templates|color templates]], you have been awarded the [[Bulbapedia:Golden Bulbasaur Award|{{color|000|Golden Bisharp Award}}]]!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;If you like, please place [[Template:User Golden Bisharp|{{color|000|this template}}]] onto your userpage by putting &amp;lt;nowiki&amp;gt;{{User Golden Bisharp|the color template modernization}}&amp;lt;/nowiki&amp;gt; on your userpage.&amp;lt;/small&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Thank you for the effort you put in assisting with this challenging content improvement. &#039;&#039;[[User:Maverick Nate|&amp;lt;sup style=&amp;quot;color:#00008B;&amp;quot;&amp;gt;&#039;&#039;&#039;Maverick&#039;&#039;&#039;&amp;lt;/sup&amp;gt;]][[User talk:Maverick Nate|&amp;lt;sub style=&amp;quot;color:#00008B;&amp;quot;&amp;gt;&#039;&#039;&#039;Nate&#039;&#039;&#039;&amp;lt;/sub&amp;gt;]]&#039;&#039; 06:06, 26 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Duraludon ==&lt;br /&gt;
&lt;br /&gt;
As I explained in my edit summary, it&#039;s wrong no matter whether you use &amp;quot;comprises&amp;quot; or &amp;quot;comprised of&amp;quot;, they refer to separate individual parts of a whole like &amp;quot;the USA comprises 50 states&amp;quot;, the states are individual entities. This is not the case with the writing on Duraldon&#039;s Pokédex entry. Duraldon&#039;s case is a &amp;quot;what material is it made of thing&amp;quot;, so you cannot use &amp;quot;comprises&amp;quot; or &amp;quot;comprised of in this instance, you would need to used &amp;quot;made of&amp;quot;, or &amp;quot;composed of&amp;quot; as it&#039;s about its chemical composition. So please undo your edit, because it&#039;s wrong even if you think &amp;quot;comprised of&amp;quot; is correct, thanks[[User:Huntress|Huntress]] ([[User talk:Huntress|talk]]) 19:03, 4 August 2024 (UTC)&lt;br /&gt;
:I&#039;m waiting for a response because your edit was 100% wrong, because let me reiterate, comprise refers to separate individual parts of a whole, while this in this instance, it&#039;s a what material is it made of thing.[[User:Huntress|Huntress]] ([[User talk:Huntress|talk]]) 09:21, 10 August 2024 (UTC)&lt;br /&gt;
::Hi, I reverted your edit because many dictionaries consider &amp;quot;comprised of&amp;quot; and &amp;quot;composed of&amp;quot; to be synonyms, and most native speakers would not consider it an error as it has been in common use for many decades now. Of course, you are always encouraged to bring this up on the talk page and see if other people agree that the sic tag should be reinserted. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 09:29, 10 August 2024 (UTC)&lt;br /&gt;
:::I just did some quick research, and what I noticed was that all of the sentences were to do with parts of a whole, this is not the case here where it&#039;s talking about its chemical composition. All the sites were saying things like &amp;quot;the whole comprises it&#039;s parts&amp;quot; but again not the case here as the material Duraldon is made of is not an individual part. Plus when it comes to the argument that &amp;quot;comprise&amp;quot; and &amp;quot;compose&amp;quot; are synonyms, this isn&#039;t true as they both have different subtle meanings, and as for the argument that many native speakers won&#039;t find it incorrect, but many would do that argument is moot. So why not have the &amp;quot;sic&amp;quot; tag? This would make it safer as then the people who do consider it incorrect won&#039;t cringe at the perceived error.[[User:Huntress|Huntress]] ([[User talk:Huntress|talk]]) 10:00, 10 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Promotion ==&lt;br /&gt;
Just wanted to congratulate you on your promotion to Admin, seems you now outrank me lol--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 12:15, 7 August 2024 (UTC)&lt;br /&gt;
:Late congratulations from me as well! You&#039;re doing a great job! --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 15:58, 14 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==SWord and Shield Vol. 10==&lt;br /&gt;
Just to let you know, even in the past, I carefully used my copy to carefully spell it the way it is in the table of contents and make sure to spell it correctly. Could be a misprint or deliberate for that aforementioned chapter title. [[User:Tyler53841|Tyler53841]] ([[User talk:Tyler53841|talk]]) 15:35, 14 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Adventures volumes Proposal==&lt;br /&gt;
I am also thinking if you want to set up an external link section to the official volume pages on Viz.com since it is a good resource to help point the someone in the right direction for that page and it is also a good place to find both the physical and digital release. Every EISBN code I added for every main volume digital release came from that site which is only available upon release. -[[User:Tyler53841|Tyler53841]] ([[User talk:Tyler53841|talk]]) 15:35, 14 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Recent edit reversions ==&lt;br /&gt;
&lt;br /&gt;
I saw you undid a couple of my edits, and I wanted to dispute them.&lt;br /&gt;
&lt;br /&gt;
One is the sic tag on EP070. Sic is used to indicate that a text is being directly quoted from the original source instead of paraphrasing to fix grammatical errors. &amp;quot;Go west young Meowth&amp;quot; should have a comma after west, but the title card didn&#039;t have one. The tag is meant to acknowledge this so readers don&#039;t assume the error is on the wiki&#039;s part.&lt;br /&gt;
&lt;br /&gt;
The second is on the nuzlocke page where you removed the trivia about TPC disapproving of nuzlockes. Although you quoted a claim from the article that they don&#039;t mind nuzlockes, this takes out the context of the statement. Kat and Krysta provided insight into a conversation not known to the public and explained how they almost lost their jobs over it - this causes backlash to TPC, who then respond with a correction. Given that Kat and Krysta had just left an NDA contract and talked about behind the scenes conversations that they weren&#039;t allowed to before, and that TPC only made a statement in response to backlash, Kat and Krysta are the more reliable source here. The trivia could be rewritten with a neutral stance to either statement if needed.&lt;br /&gt;
&lt;br /&gt;
[[User:Pallukun|Pallukun]] ([[User talk:Pallukun|talk]]) 19:47, 17 January 2025 (UTC)&lt;br /&gt;
:Personally I think that we should only use the &amp;lt;nowiki&amp;gt;{{sic}}&amp;lt;/nowiki&amp;gt; tag if the average native English speaker would recognize that there is a grammatical/spelling error. Now that you mention that there should be a comma, I can see it, but I genuinely did not see what mistake the &amp;lt;nowiki&amp;gt;{{sic}}&amp;lt;/nowiki&amp;gt; tag was indicating. Feel free to bring this up in the Bulbapedia Discord or the episode&#039;s talk page to see what the consensus should be for whether the tag should be included, if people clearly see it as an error I would have no issue in adding it back.&lt;br /&gt;
&lt;br /&gt;
:As for the Nuzlocke thing, the part of the article I quoted from Joe Merrick further claims that its a miscommunication and that TPCi&#039;s stance on Nuzlockes has been consistent for &amp;quot;a long time&amp;quot;, which of course would predate whatever correction they put out, and PKMNcast made a tweet saying the same thing. I think the most you can say about this situation is that a misunderstanding occurred where whoever Kat and Krysta reported to was not familiar with what a Nuzlocke was and acted in a way not consistent with how they should have.&lt;br /&gt;
&lt;br /&gt;
:I&#039;m not exactly sure what you mean about rewriting the trivia to &amp;quot;a neutral stance to either statement&amp;quot;, but I think it could be re-added with it presented as a standalone incident and not indicative of TPCi&#039;s policy towards Nuzlockes/challenge runs in general. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 11:41, 18 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I was trying to suggest unbiased reporting but forgot the word. We could write it as just a plain &amp;quot;this happened&amp;quot; since that creates less friction. I also added the discussion for sic on the EP070 talk page. [[User:Pallukun|Pallukun]] ([[User talk:Pallukun|talk]]) 20:28, 21 January 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:EP070&amp;diff=4225016</id>
		<title>Talk:EP070</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Talk:EP070&amp;diff=4225016"/>
		<updated>2025-01-21T20:26:21Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Should the title have a sic tag? */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;i was wondering if i could put the fact that team rocket uses a song in place of thire motto in this episode&lt;br /&gt;
[[User:Glalie Power|Glalie Power]] ([[User talk:Glalie Power|talk]]) 11:34, 23 July 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== a trivia concerning that episode and Maddie Blaustein? ==&lt;br /&gt;
&lt;br /&gt;
I was thinking maybe it was worth adding in the trivia that Maddie Blaustein, the then voice actress of Meowth, was inspired to transition and come out thanks to this episode&lt;br /&gt;
&lt;br /&gt;
[[User:Kégan|Kégan]] ([[User talk:Kégan|talk]]) 20:06, 14 July 2024 (UTC)&lt;br /&gt;
:This is the first I&#039;ve heard about this, I don&#039;t wish to doubt what you say but do you have any evidence to back this up?--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 20:17, 14 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
::well there&#039;s this article here https://www.them.us/story/maddie-blaustein-pokemon and it&#039;s not the only one that mentions it. I can&#039;t find anything more official than this though.&lt;br /&gt;
::[[User:Kégan|Kégan]] ([[User talk:Kégan|talk]]) 23:15, 14 July 2024 (UTC)&lt;br /&gt;
:::Ah, wait, wait, I found Aaron McQuade&#039;s blog where he says that himself: https://awesomedbycomics.blogspot.com/2008/12/i-was-extremely-saddened-to-learn-of.html&lt;br /&gt;
:::[[User:Kégan|Kégan]] ([[User talk:Kégan|talk]]) 23:15, 14 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should the title have a sic tag? ==&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Go West Young Meowth&amp;quot; should have a comma after west, but the original title doesn&#039;t have one. I added a &amp;lt;nowiki&amp;gt;{{sic}}&amp;lt;/nowiki&amp;gt; tag to denote that the title is being directly quoted from the source material, mistakes included - it tells the reader that the mistake is from the source, not our own typo. The tag was removed by another user as they didn&#039;t believe it was needed, but we decided to make a vote to see if other people do or don&#039;t want it. Should the title be given a tag or is it not necessary?&lt;br /&gt;
&lt;br /&gt;
[[User:Pallukun|Pallukun]] ([[User talk:Pallukun|talk]]) 20:26, 21 January 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=User_talk:Minibug&amp;diff=4222866</id>
		<title>User talk:Minibug</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=User_talk:Minibug&amp;diff=4222866"/>
		<updated>2025-01-17T19:47:18Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Recent edit reversions */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{| cellspacing=&amp;quot;7&amp;quot; class=&amp;quot;roundy&amp;quot; style=&amp;quot;margin:auto; border: 1px solid #3e7614; background: #FFFFFF;&amp;quot;&lt;br /&gt;
| class=&amp;quot;roundytop&amp;quot; style=&amp;quot;background: #c4e673; border: 1px solid #3e7614; font-size: 160%; padding-left: 20px;&amp;quot; height=&amp;quot;50px&amp;quot; | &#039;&#039;&#039;Welcome to Bulbapedia, Minibug!&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; color: #000000;&amp;quot; |&lt;br /&gt;
{| style=&amp;quot;float:right; background: #E0F2B6; border: 1px solid #3e7614; padding:8px; {{roundy|100px}}&amp;quot;&lt;br /&gt;
| [[File:Bulbapedia bulb.png|100px|center]]&lt;br /&gt;
|}&lt;br /&gt;
Thank you for joining our community!  By creating an account you are now able to edit pages, join discussions, and expand the community-driven Pokémon encyclopedia. This is a brief introduction to Bulbapedia&#039;s rules and resources to help you get started:&lt;br /&gt;
* All users are expected to follow the {{bp|code of conduct}} and to be kind to one another.&lt;br /&gt;
* If you have a question, check out our {{bp|FAQ}}; the {{bp|manual of style}} provides detailed editing guidance, and the {{bp|wikicode|wikicode page}} provides details about how to use wikicode.  &lt;br /&gt;
** You can always ask for help by contacting a {{bp|staff}} member.&lt;br /&gt;
* Please preview your edits before saving them; this helps you double-check your changes and reduces the need for repeated minor edits.&lt;br /&gt;
* Use {{bp|Talk page policy|talk pages}} to discuss changes and resolve editing disputes.&lt;br /&gt;
* Creating a userpage is allowed after you&#039;ve added to the encyclopedia; for more details, see the {{bp|userspace policy}}.&lt;br /&gt;
* Sign all talk page posts with four tildes (&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;) so people know who is commenting. This will turn into your name and the time you wrote the comment.&lt;br /&gt;
* For more handy links and information, check out the {{bp|welcome|welcome portal}}.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| class=&amp;quot;roundybottom&amp;quot; style=&amp;quot;background: #c4e673; border: 1px solid #3e7614; padding-left: 20px;&amp;quot; | &#039;&#039;&#039;&amp;lt;div style=&amp;quot;float: left; font-size: 110%;&amp;quot;&amp;gt;Thank you, and have a good time editing here!&amp;lt;/div&amp;gt;&#039;&#039;&#039;&amp;lt;div style=&amp;quot;float: right; height: 20px; background: white; border-left: 10px solid #f3f5f1; {{roundybr|10px}}&amp;quot;&amp;gt;&amp;amp;nbsp; [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#00d1bc&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/font&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;font color=&amp;quot;#006699&amp;quot;&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]] 13:53, 25 April 2023 (UTC) &amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;float: right; height: 20px; width: 10px; background: #DFF2B1; border-left: 10px solid #D3EC95;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Languages titles==&lt;br /&gt;
I see you&#039;re adding the Danish titles for episodes of Pokemon Journeys, thanks for doing this but instead of listing the new titles at the bottom of the section, could you list them in the alphabetically fitting spot please as that is how we do them.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 18:48, 25 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Thanks for letting me know. I saw that the template automatically alphabetizes it anyways so I wasn&#039;t sure if I needed to add it in order, but I&#039;ll do that from now on. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 19:16, 25 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Trainer lists ==&lt;br /&gt;
&lt;br /&gt;
Good work adding some of the Kitakami Trainer lists. However, I feel it takes less space and is arguably easier to read if done like [https://bulbapedia.bulbagarden.net/w/index.php?title=Paradise_Barrens&amp;amp;curid=295835&amp;amp;diff=3811085&amp;amp;oldid=3811067 this]. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 22:04, 21 September 2023 (UTC)&lt;br /&gt;
:That is true, and I did consider that approach for it, but I figured removing the dependence on hovertext for the benefit of mobile users outweighed the problems from having two tables for each set of Trainers. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 22:15, 21 September 2023 (UTC)&lt;br /&gt;
::As a mobile user myself, I can understand that, but I still lean towards the more efficient solution. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 22:33, 21 September 2023 (UTC)&lt;br /&gt;
:::This same method is also used with B2W2&#039;s level and prize money info in regards to the prize money and level changes depending on the difficulty setting, aside from major boss battles where a Trainer&#039;s team also changes. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 22:41, 21 September 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Spelling mistakes==&lt;br /&gt;
Thanks for correcting all the spelling mistakes regarding Pokémon names on various pages, I have to say I&#039;m shocked at how many there are.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 19:01, 13 October 2023 (UTC)&lt;br /&gt;
:Unfortunately there are still a lot more to fix. I was also surprised with how many there have ended up being. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 19:43, 13 October 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bot edits ==&lt;br /&gt;
&lt;br /&gt;
I understand that your automated edits are important, but could it have been possible to leave the edits to BulbaBot or some other thing that could make the edits without flooding the recent edits history? --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 11:30, 9 November 2023 (UTC)&lt;br /&gt;
:Apologies for the large amount of edits. I think BulbaBot uses the same software that I do for making automated edits, PyWikiBot, so the next time I need to make so many edits I could ask someone with access to BulbaBot to run my script. PyWikiBot has a &amp;lt;code&amp;gt;botflag&amp;lt;/code&amp;gt; parameter that should hide the edit like with BulbaBot, but it doesn&#039;t seem like it works for me. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 11:45, 9 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Advice ==&lt;br /&gt;
&lt;br /&gt;
Please use &amp;quot;×&amp;quot; instead of &amp;quot;x&amp;quot; when listing multiples of something. Also, many Paldea Trainer lists lack the {{template|Trainerdiv}} templates they should have. Good job adding the item lists, though. --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 01:51, 22 December 2023 (UTC)&lt;br /&gt;
:Thank you for letting me know, I thought I was already using &amp;quot;×&amp;quot; but I guess I never updated it in my script like I thought I did. -[[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 02:10, 22 December 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Recent trivia ==&lt;br /&gt;
Just letting you know, when adding trivia about gaps between appearances, can you use earlier instead of ago please.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 18:49, 28 December 2023 (UTC)&lt;br /&gt;
:Thanks for letting me know. I was using that phrasing because I copied it from another page, so maybe some cleanup on the drought sections is in order. -[[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 19:19, 28 December 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wait, Necrozma has the 255 Catch Rate in Indigo Disk still? ==&lt;br /&gt;
&lt;br /&gt;
I legitimately thought it reverted back to 3. {{unsigned|PrincessVidel}}&lt;br /&gt;
&lt;br /&gt;
:Necrozma&#039;s catch rate is 255 in Indigo Disk, I checked the data myself. Can I ask where you saw a source claiming it was changed to 3? -[[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 16:26, 6 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==How to check EISBN==&lt;br /&gt;
Originally when VIZ began their digital releases years ago, on each page of their separate digital page which first becomes available on the day of release, I personally go to VIZ&#039;s website and copy their eISBN-13 for the digital ISBN codes one example is this link [https://www.viz.com/read/manga/pokemon-adventures-omega-ruby-and-alpha-sapphire-volume-1/product/7706/digital]. This is how all the EISBN codes were added in the first place for every VIZ digital release. -[[User:Tyler53841|Tyler53841]] ([[User talk:Tyler53841|talk]]) 23:44, 9 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Re:Black &amp;amp; White subtitles from Shogakukan Asia ==&lt;br /&gt;
&lt;br /&gt;
Yes. Shogakukan asia started off translating the manga on their own, including manga that is previously not translated such as [[Be the Best! Pokémon B+W]]. however, from pokemon adventure vol 46 onwards, all pokemon translation are licensed from viz media, thus all manga that are released by shogakukan asia are released later than viz media, and we no longer have any more original translation unlike chuang yi giving us many pokemon manga that are previously not translated. -[[User:Pokeant|Pokeant]] ([[User talk:Pokeant|talk]]) 11:24, 28 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Template Data fields ==&lt;br /&gt;
&lt;br /&gt;
Hey, just thought I&#039;d mention, when [[Special:Diff/3936055|adding]] TemplateData, the type of a paramater should be &amp;quot;Line&amp;quot; for short text (that should not contain line breaks), and &amp;quot;String&amp;quot; if it can contain line breaks.[[mw:Help:TemplateData#string|&amp;lt;sup&amp;gt;&amp;amp;lsqb;1&amp;amp;rsqb;&amp;lt;/sup&amp;gt;]] → &amp;lt;span class=&amp;quot;blacklinks&amp;quot;&amp;gt;[[User:SuperPikaPool13|Pika]][[User talk:SuperPikaPool13|&amp;lt;sup&amp;gt;Tepig&amp;lt;/sup&amp;gt;]][[Special:Contribs/SuperPikaPool13|&amp;lt;sub&amp;gt;999&amp;lt;/sub&amp;gt;]]&amp;lt;/span&amp;gt; 02:53, 2 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Page categories ==&lt;br /&gt;
&lt;br /&gt;
Hi there! Just a friendly reminder to make sure new pages you create include categories, such as the [[Pokémon Black and White Game Art Folio]] article you created last month. If you&#039;re unsure what category to add to a page, feel free to ask a staff member. Thanks! [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#32b761&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#5f6775&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;]] 17:47, 11 March 2024 (UTC)&lt;br /&gt;
:My bad, it completely slipped my mind at the time. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 17:49, 11 March 2024 (UTC)&lt;br /&gt;
::No worries! It happens to the best of us :) [[User:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#32b761&amp;quot;&amp;gt;&#039;&#039;&#039;Land&#039;&#039;&#039;&amp;lt;/span&amp;gt;]][[User talk:Landfish7|&amp;lt;span style=&amp;quot;font-family:Tahoma;color:#5f6775&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&#039;&#039;&#039;fish7&#039;&#039;&#039;&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;]] 17:52, 11 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Encounter rates for Sinnoh route 210 ==&lt;br /&gt;
&lt;br /&gt;
The edit for the encounter rates was at least partially wrong, swablu can be found in all times of day(just tested it in game to be sure).&lt;br /&gt;
I assume it was just a typo on your end? I undid the edit for now, feel free to double check the numbers and resubmit.&lt;br /&gt;
[[User:Jucatorul|Jucatorul]] ([[User talk:Jucatorul|talk]]) 16:17, 16 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== descriptions for items in games they do not appear in ==&lt;br /&gt;
&lt;br /&gt;
hi, i&#039;m not sure if this is proper form, but i&#039;ve noticed you&#039;ve been editing a lot of item pages to make their most recent description listed as their description in all future games, including games where they don&#039;t appear at all. to me, this seems misleading and inappropriate. i doubt that the [[Contest Costume]], for example, is anywhere in the code of SV, but seeing a description listed for it in those games suggests it is. your edits to Z-Crystals in particular suggest that they got new descriptions in scarlet and violet. i haven&#039;t looked at the internals of these games, so i may be wrong about all of this, but i&#039;d like to know the reason behind these edits. [[User:Lilycove|lilycove]] 00:31, 11 May 2024 (UTC)&lt;br /&gt;
:Almost every item and its description will get carried over between games/generations. For whatever reason, these item descriptions will occasionally be updated even if the item itself appears nowhere in the game. In fact, sometimes even item *names* get changed even when the item isn&#039;t obtainable, like how Scarlet and Violet changed the name of the Rainbow Wing into [[Rainbow Feather]] even though its been inaccessible since Generation IV. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 00:36, 11 May 2024 (UTC)&lt;br /&gt;
::odd. well, thank you very much for clarifying! [[User:Lilycove|lilycove]] 00:38, 11 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Congratulations ==&lt;br /&gt;
From one junior admin to another, I thought I would offer you my congratulations on becoming a junior admin and welcome you to the team.--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 08:58, 26 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Quest Ingredient formatting ==&lt;br /&gt;
&lt;br /&gt;
Hi! So I noticed the edit done on [[Balm Mushroom]] and I&#039;m of the conflicted sort regarding it. I included the three adjectives and one noun because those are the key words the cooking feature uses and so the description is demonstrating the game&#039;s rules. The format is a little silly, because it&#039;s based on [[Bluk Berry]], &amp;quot;a blue ingredient that is soft, small, and sweet,&amp;quot; and I figured that its best to lean into the madness and phrase it consistently even if &amp;quot;sweet&amp;quot; and &amp;quot;mushroom&amp;quot; do not have the same part of speech. (In hindsight, maybe trying to squeeze &amp;quot;sweet&amp;quot; into a noun format works better than pretending three different nouns are adjectives.) &lt;br /&gt;
&lt;br /&gt;
Similarly, calling out the color a second time was also a means of demonstrating what to pay attention to, in the &amp;quot;oh, if grey ingredients are common here, then it is also where to go to find [[Fossil]]s.&amp;quot; (That and it matches how the information is being displayed in the game, as a color wheel representing unseen percentages.) [[User:Salmancer|Salmancer]] ([[User talk:Salmancer|talk]]) 23:18, 1 June 2024 (UTC)&lt;br /&gt;
:Thank you for clarifying, I&#039;m not very familiar with Quest and your wording with using &amp;quot;mushroom&amp;quot; as an adjective confused me a bit. I also did not realize these characteristics weren&#039;t just flavor text. Do you think we could change the wording to something like &amp;quot;This ingredient can be used in any recipe that requires ingredients that are soft, precious, gray, or mushrooms&amp;quot;? [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 23:40, 1 June 2024 (UTC)&lt;br /&gt;
::I don&#039;t think so. Quest {{OBP|Cooking|Quest}} follows strange rules. The game goes down the list of recipes and picks the first one that matches the full set of ingredients used. This means that later recipes start to get more and more specific about allowed ingredient combinations in ways the suggested sentence can&#039;t quite quantify. I&#039;d need to think about it. Maybe, &amp;quot;When Cooking, this ingredient has the following properties: soft, precious, gray, mushroom&amp;quot;? That leans perhaps too gamey. [[User:Salmancer|Salmancer]] ([[User talk:Salmancer|talk]]) 23:51, 1 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Similar backstories ==&lt;br /&gt;
&lt;br /&gt;
Hello Minibug! I just wanted to talk to you about the Edit i&#039;ve made in the page of the Heroes of Truth and Ideals. [[User:Trainersurrel0409|Trainersurrel0409]] ([[User talk:Trainersurrel0409|talk]]) 19:51, 11 July 2024 (UTC)&lt;br /&gt;
:What did you want to talk about? [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 23:26, 11 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Well you reverted my edits, i do understand why, but i think it&#039;s a little weird having the heroes&#039;s Pokémon only in the anime section, specially since all versions of them had the same Pokémon, the original dragon, Reshiram, and Zekrom. [[User:Trainersurrel0409|Trainersurrel0409]] ([[User talk:Trainersurrel0409|talk]]) 23:39, 11 July 2024 (UTC)&lt;br /&gt;
:::Generally each section will have screenshots of the Pokémon in question from each piece of media, but I don&#039;t believe there are depictions of them with their dragons outside of the anime, so there&#039;s no screenshots in those sections. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 23:44, 11 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
As far as i know, no, but i just kinda hoped to make it similar to the Galarian kings&#039;s page, also we definetely should add the original dragon as one of their Pokémon as well. [[User:Trainersurrel0409|Trainersurrel0409]] ([[User talk:Trainersurrel0409|talk]]) 00:06, 12 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Congratulations! ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: 1px solid #{{gold color}}; background-color:#F9CB58; {{roundy|60px}}&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;75%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 0.5em;&amp;quot; | [[File:GoldenBisharp.png|100px]]&lt;br /&gt;
| {{color|986F0A|&#039;&#039;&#039;The Golden Bisharp Award&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Congratulations!&#039;&#039;&#039; For your outstanding service to [[Bulbapedia|{{color|000|Bulbapedia}}]] assisting with modernization changes for [[Help:Color templates|color templates]], you have been awarded the [[Bulbapedia:Golden Bulbasaur Award|{{color|000|Golden Bisharp Award}}]]!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;If you like, please place [[Template:User Golden Bisharp|{{color|000|this template}}]] onto your userpage by putting &amp;lt;nowiki&amp;gt;{{User Golden Bisharp|the color template modernization}}&amp;lt;/nowiki&amp;gt; on your userpage.&amp;lt;/small&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Thank you for the effort you put in assisting with this challenging content improvement. &#039;&#039;[[User:Maverick Nate|&amp;lt;sup style=&amp;quot;color:#00008B;&amp;quot;&amp;gt;&#039;&#039;&#039;Maverick&#039;&#039;&#039;&amp;lt;/sup&amp;gt;]][[User talk:Maverick Nate|&amp;lt;sub style=&amp;quot;color:#00008B;&amp;quot;&amp;gt;&#039;&#039;&#039;Nate&#039;&#039;&#039;&amp;lt;/sub&amp;gt;]]&#039;&#039; 06:06, 26 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Duraludon ==&lt;br /&gt;
&lt;br /&gt;
As I explained in my edit summary, it&#039;s wrong no matter whether you use &amp;quot;comprises&amp;quot; or &amp;quot;comprised of&amp;quot;, they refer to separate individual parts of a whole like &amp;quot;the USA comprises 50 states&amp;quot;, the states are individual entities. This is not the case with the writing on Duraldon&#039;s Pokédex entry. Duraldon&#039;s case is a &amp;quot;what material is it made of thing&amp;quot;, so you cannot use &amp;quot;comprises&amp;quot; or &amp;quot;comprised of in this instance, you would need to used &amp;quot;made of&amp;quot;, or &amp;quot;composed of&amp;quot; as it&#039;s about its chemical composition. So please undo your edit, because it&#039;s wrong even if you think &amp;quot;comprised of&amp;quot; is correct, thanks[[User:Huntress|Huntress]] ([[User talk:Huntress|talk]]) 19:03, 4 August 2024 (UTC)&lt;br /&gt;
:I&#039;m waiting for a response because your edit was 100% wrong, because let me reiterate, comprise refers to separate individual parts of a whole, while this in this instance, it&#039;s a what material is it made of thing.[[User:Huntress|Huntress]] ([[User talk:Huntress|talk]]) 09:21, 10 August 2024 (UTC)&lt;br /&gt;
::Hi, I reverted your edit because many dictionaries consider &amp;quot;comprised of&amp;quot; and &amp;quot;composed of&amp;quot; to be synonyms, and most native speakers would not consider it an error as it has been in common use for many decades now. Of course, you are always encouraged to bring this up on the talk page and see if other people agree that the sic tag should be reinserted. [[User:Minibug|Minibug]] ([[User talk:Minibug|talk]]) 09:29, 10 August 2024 (UTC)&lt;br /&gt;
:::I just did some quick research, and what I noticed was that all of the sentences were to do with parts of a whole, this is not the case here where it&#039;s talking about its chemical composition. All the sites were saying things like &amp;quot;the whole comprises it&#039;s parts&amp;quot; but again not the case here as the material Duraldon is made of is not an individual part. Plus when it comes to the argument that &amp;quot;comprise&amp;quot; and &amp;quot;compose&amp;quot; are synonyms, this isn&#039;t true as they both have different subtle meanings, and as for the argument that many native speakers won&#039;t find it incorrect, but many would do that argument is moot. So why not have the &amp;quot;sic&amp;quot; tag? This would make it safer as then the people who do consider it incorrect won&#039;t cringe at the perceived error.[[User:Huntress|Huntress]] ([[User talk:Huntress|talk]]) 10:00, 10 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Promotion ==&lt;br /&gt;
Just wanted to congratulate you on your promotion to Admin, seems you now outrank me lol--[[User:BigDocFan|BigDocFan]], Junior Admin Bulbapedia ([[User talk:BigDocFan|talk]]) 12:15, 7 August 2024 (UTC)&lt;br /&gt;
:Late congratulations from me as well! You&#039;re doing a great job! --[[User:FinnishPokéFan92|FinnishPokéFan92]] ([[User talk:FinnishPokéFan92|talk]]) 15:58, 14 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==SWord and Shield Vol. 10==&lt;br /&gt;
Just to let you know, even in the past, I carefully used my copy to carefully spell it the way it is in the table of contents and make sure to spell it correctly. Could be a misprint or deliberate for that aforementioned chapter title. [[User:Tyler53841|Tyler53841]] ([[User talk:Tyler53841|talk]]) 15:35, 14 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Adventures volumes Proposal==&lt;br /&gt;
I am also thinking if you want to set up an external link section to the official volume pages on Viz.com since it is a good resource to help point the someone in the right direction for that page and it is also a good place to find both the physical and digital release. Every EISBN code I added for every main volume digital release came from that site which is only available upon release. -[[User:Tyler53841|Tyler53841]] ([[User talk:Tyler53841|talk]]) 15:35, 14 August 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Recent edit reversions ==&lt;br /&gt;
&lt;br /&gt;
I saw you undid a couple of my edits, and I wanted to dispute them.&lt;br /&gt;
&lt;br /&gt;
One is the sic tag on EP070. Sic is used to indicate that a text is being directly quoted from the original source instead of paraphrasing to fix grammatical errors. &amp;quot;Go west young Meowth&amp;quot; should have a comma after west, but the title card didn&#039;t have one. The tag is meant to acknowledge this so readers don&#039;t assume the error is on the wiki&#039;s part.&lt;br /&gt;
&lt;br /&gt;
The second is on the nuzlocke page where you removed the trivia about TPC disapproving of nuzlockes. Although you quoted a claim from the article that they don&#039;t mind nuzlockes, this takes out the context of the statement. Kat and Krysta provided insight into a conversation not known to the public and explained how they almost lost their jobs over it - this causes backlash to TPC, who then respond with a correction. Given that Kat and Krysta had just left an NDA contract and talked about behind the scenes conversations that they weren&#039;t allowed to before, and that TPC only made a statement in response to backlash, Kat and Krysta are the more reliable source here. The trivia could be rewritten with a neutral stance to either statement if needed.&lt;br /&gt;
&lt;br /&gt;
[[User:Pallukun|Pallukun]] ([[User talk:Pallukun|talk]]) 19:47, 17 January 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=History_of_Pok%C3%A9_Balls&amp;diff=4198261</id>
		<title>History of Poké Balls</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=History_of_Pok%C3%A9_Balls&amp;diff=4198261"/>
		<updated>2024-12-06T23:38:08Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Poké Ball history */ italics for game names and rowan anecdote&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The development of [[Poké Ball]]s in the [[Pokémon world]] has gone through a number of stages. This can be shown through certain Pokémon titles such as [[Pokémon Legends: Arceus]], where the item was recently created; and through multiple games where companies and factories are shown developing new Poké Ball types. The [[Pokémon animation|animated series]] has also displayed numerous ancient and historical variants of the Poké Ball.&lt;br /&gt;
&lt;br /&gt;
==In the core series games==&lt;br /&gt;
===Poké Ball history===&lt;br /&gt;
[[File:Legends Arceus Poké Ball.png|thumb|200px|A Hisuian Poké Ball]] &lt;br /&gt;
In the past, Poké Balls were originally crafted by hand by carving out [[Apricorn]] fruit, and people such as [[Kurt]] of [[Azalea Town]] still make Poké Balls using these older methods. [[Raifort]]&#039;s classroom at the [[Naranja Academy]]{{sup/9|S}} or [[Uva Academy]]{{sup/9|V}} in [[Mesagoza]] teaches about these older Poké Balls.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;{{g|Legends: Arceus}}&#039;&#039;, a game taking place in [[Sinnoh]]&#039;s past as [[Hisui]], [[Professor Laventon]] mentions that Poké Balls are a recent invention.&amp;lt;ref&amp;gt;[[Professor Laventon/Quotes|Professor Laventon]], &#039;&#039;{{g|Legends: Arceus}}&#039;&#039;: &amp;quot;&#039;&#039;And that&#039;s where Poké Balls come in! Poké Balls are a recent invention, you see. Throw one of them at a Pokémon, and...&#039;&#039;&amp;quot;&amp;lt;/ref&amp;gt; He also makes the claim that {{OBP|Pokémon|species}} shrink down to fit inside a Poké Ball and that they may feel comfortable inside. When Hisui was first being settled, Poké Balls were made in a similar manner as they are in Johto, also using Apricorn fruit harvested from Hisui&#039;s own land. Unlike the fruit in Johto, these Apricorns are brown in color. The {{OBP|Poké Ball|Hisui|Hisuian Poké Balls}} were [[crafting|crafted]] from a combination of {{i|Apricorn|Brown Apricorns}}, [[Tumblestone]] and [[Wood]], though wood is not used in the game&#039;s crafting recipe. They emitted steam when {{pkmn2|caught|capturing a Pokémon}} and what appeared to be a firework was set off from their tops when Pokémon were caught. They relied on a Pokémon&#039;s natural ability to shrink down when scared or injured.{{fact}}&lt;br /&gt;
&lt;br /&gt;
Professor Laventon, with the help of either {{ga|Akari}} or {{ga|Rei}}, had also developed the [[Origin Ball]], which was made out of [[Origin Ore]] and the left over pieces of the [[Red Chain]].&lt;br /&gt;
&lt;br /&gt;
Additionally, [[Leif]] claims that people in [[Kanto]] were already able to tame Pokémon,&amp;lt;ref&amp;gt;Leif, [[Jubilife Village]]: &amp;quot;&#039;&#039;You know, we had people back in Kanto who also were able to tame Pokémon. They knew what they were doing in battles, too.&#039;&#039;&amp;quot; (&#039;&#039;{{g|Legends: Arceus}}&#039;&#039;)&amp;lt;/ref&amp;gt; suggesting that some sort of catching device was made before the [[Galaxy Team]] had come to Hisui.&lt;br /&gt;
&lt;br /&gt;
In older times, the invention of the Poké Ball was seen as potentially problematic and as a symbol of containment and restriction towards the Pokémon held within them. The [[Diamond Clan|Diamond]] and [[Pearl Clan]]s had a distaste for this invention since they believed it would harm their relationship with their Pokémon who they viewed as brothers and sisters, whereas the Galaxy Team distrusted and feared Pokémon, opting to use Poké Balls for protection. All three groups would eventually warm up to the use of Poké Balls and Pokémon, perceiving the tool as a form of companionship.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;{{B2W2}}&#039;&#039;, during the [[Memory Link]] event {{DL|Memory Link|A New Light}}, [[Drayden]] claims Poké Balls did not exist when he was a young boy.&amp;lt;ref&amp;gt;[[Drayden/Quotes|Drayden]], {{B2W2}}: &amp;quot;&#039;&#039;When I was little, Poké Balls didn&#039;t exist yet.&#039;&#039;&amp;quot;&amp;lt;/ref&amp;gt; It is unknown if he means they had not been invented at all or just had not made their way to the [[Unova]] region. In &#039;&#039;{{game2|Diamond|Pearl|Platinum}}&#039;&#039; and their [[Pokémon Brilliant Diamond and Shining Pearl|remakes]], [[Professor Rowan]] also claimed Poké Balls did not exist in his childhood,{{fact}} though this appears to have been retconned with &#039;&#039;Legends: Arceus&#039;&#039; showing they at least had Apricorn Poké Balls in the time of Rowan&#039;s ancestor, [[Kamado]].&lt;br /&gt;
&lt;br /&gt;
[[File:SugimoriPokeBall.png|thumb|200px|A modern [[Poké Ball]]]]&lt;br /&gt;
The modern {{i|Poké Ball}} is created and manufactured by multiple companies and people. [[An Illustrated Book of POCKET MONSTERS]], [[Tamamushi University Pocket Book]], and a [[Pokémon Daisuki Club]] page state that modern Poké Balls were developed in 1925 from the research of [[Professor Westwood V|Professor Westwood]] of [[Celadon University]]. He got the idea when experimenting on a {{p|Primeape}}, which curled up into a ball and shrank down small enough to fit in the professor&#039;s glasses case. Currently, they are mass produced by the [[Silph Co.|Silph Company]] in Kanto, the [[Devon Corporation]] in [[Hoenn]], and the [[Poké Ball Factory]] in [[Kalos]]. Silph in particular is known to have created multiple Poké Ball prototypes, including the [[Master Ball]]. However, they can also be made by individuals using personal devices such as [[Hyde]]&#039;s [[Cram-o-matic]], which was inspired by Kurt&#039;s ability to craft them with Apricorns. [[Faba]] of the [[Aether Foundation]] had recently created the [[Beast Ball]], a special type of Poké Ball used to contain [[Ultra Beast]]s and he also mentions that the downstairs labs of [[Aether Paradise]] is where they develop new Poké Balls for &amp;quot;the sake of Pokémon conservation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The Cram-o-matic can create any Poké Ball at the time of &#039;&#039;{{g|Sword and Shield}}&#039;&#039; with exception of the [[Master Ball|Master]], [[Beast Ball|Beast]], [[Dream Ball|Dream]], [[Park Ball|Park]], and [[Cherish Ball]]s. The [[Item Printer]] found in the [[Blueberry Academy]] [[League Club Room]] is also able to produce multiple types of Poké Balls, including most of those that the Cram-o-matic could not. The Item Printer requires materials dropped by Pokémon instead of Apricorns.&lt;br /&gt;
&lt;br /&gt;
According to [[Cyrus]]&#039;s computer in &#039;&#039;Pokémon Diamond&#039;&#039;, &#039;&#039;Pearl&#039;&#039;, and &#039;&#039;Platinum&#039;&#039; as well as &#039;&#039;{{g|Brilliant Diamond and Shining Pearl}}&#039;&#039;, a modern Poké Ball would limit the power of {{p|Dialga}} and {{p|Palkia}}, hence [[Team Galactic]]&#039;s decision to create another instance of the [[Red Chain]].&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;{{g|Sun and Moon}}&#039;&#039;, &#039;&#039;{{pkmn|Ultra Sun and Ultra Moon}}&#039;&#039;, [[Lusamine]] uses a crate to contain [[Nebby]]. Concept art from the games&#039; development explains that this cage has a Poké Ball-like construction to it.&lt;br /&gt;
&lt;br /&gt;
During the events of [[The Indigo Disk]], [[Kieran]] captures {{ga|Terapagos}} in a Master Ball, knowing the ball&#039;s capture performance. Terapagos eventually destroys its Master Ball when it transforms into its {{DL|Terapagos (game)|Appearance|Stellar Form}} after Kieran attempts to withdraw it back. This is the only time a Master Ball has been seen breaking with any sort of failure on a [[wild Pokémon]] in the [[core series]].&lt;br /&gt;
&lt;br /&gt;
In [[Alola]], special Poké Ball-like objects are used with the {{DL|Poké Ride|History|Ride Pager}}. In [[Galar]], Poké Balls are affected by the [[Wishing Star]]s fixed onto [[Professor Magnolia]]&#039;s [[Dynamax Band]] as they are enlarged, subsequently causing a {{pkmn|Trainer}}&#039;s Pokémon to [[Dynamax]] or [[Gigantamax]]; they can also be used to capture Dynamax or Gigantamax Pokémon when around {{cat|Power Spots}}. In [[Paldea]], Poké Balls can become {{Tera}}stallized, allowing a Trainer to capture wild Tera Pokémon in [[Tera Raid Battle]]s.&lt;br /&gt;
&lt;br /&gt;
Aether Paradise contains a jamming signal for all empty Poké Balls that may be used against the wild Pokémon that the Aether Foundation is taking care of. This can be seen when the player battles against an unexpected {{p|Nihilego}} in Pokémon Sun and Moon. Despite this, Trainer-owned Pokémon may still come out of their Poké Balls and be used to participate in battle. The time machine found within the [[Zero Lab]] contains a similar jamming signal. When the [[Paradise Protection Protocol]] takes control, any Poké Ball not owned by [[Professor Sada]]{{sup/9|S}} or [[Professor Turo]]{{sup/9|V}}, empty or not, will be locked.&lt;br /&gt;
&lt;br /&gt;
===Pokémon storage history===&lt;br /&gt;
According to [[Professor Elm]] in {{game|HeartGold and SoulSilver|s}}, before the invention of Poké Balls, people would [[Walking Pokémon|walk with their Pokémon]] instead. This can also be seen in Pokémon Legends: Arceus, where many members of the Diamond and Pearl Clans, including their [[warden]]s, do not use Hisuian Poké Balls, with the exception of [[Ingo]] as he had [[Time travel|traveled back in time]] to Hisui from a time where modern Poké Balls existed. During the events of Pokémon Legends: Arceus, a Pokémon wielder can hold up to six Pokémon at once if they were contained in Hisuian Poké Balls. A wielder without these devices, such as a warden or {{tc|Clan Leader}}, will instead just {{pkmn|battle|call upon their Pokémon}} whenever necessary. They can be seen with a maximum of three Pokémon, whereas the player can only have one.&lt;br /&gt;
&lt;br /&gt;
When a person has caught more than six Pokémon, they will go to the [[pastures]] in [[Jubilife Village]], managed by Marie. These pastures are accessed by the player, Ingo, {{DL|Galaxy Team|Security Corps}} members found at [[base camp]]s, and [[Cyllene]]&#039;s {{p|Abra}}. These Pokémon are not always found within their Poké Balls and can be seen within the pastures themselves.&lt;br /&gt;
&lt;br /&gt;
The current mechanisms for Pokémon storage have similar restrictions, with Pokémon Trainers being able to carry up to six Poké Balls with Pokémon at a time.&lt;br /&gt;
&lt;br /&gt;
The [[Pokémon Storage System]], invented by [[Bill]], is the modern equivalent to the pastures, where a Trainer can hold all their other Pokémon when they have more than six in their [[party]]. Prior to Pokémon Sun and Moon, a Pokémon caught while having a full party will automatically be sent to a Pokémon Box. Starting in Pokémon Sun and Moon, and with the exception of {{LGPE}} and Pokémon Legends: Arceus, there is an {{DL|Options|In the core series games|optional}} prompt for the player to specify whether they wish to move a caught Pokémon to their party or a Pokémon Box.&lt;br /&gt;
&lt;br /&gt;
Originally, a [[PC]] was required to access the Pokémon Storage System, but the introduction of the [[Pokémon Box Link]] allows a Trainer to have access to their storage anywhere. As of {{g|Scarlet and Violet}}, there is no longer any reference to the Pokémon Storage System as such, and the [[Rotom Phone]] replaces Pokémon Box Link. [[Kanto]]{{sup/7|PE}}, Paldea, Kitakami, and Blueberry Academy lack PCs with Pokémon storage functionality.&lt;br /&gt;
&lt;br /&gt;
In Pokémon Scarlet and Violet, the player is able to carry around {{ga|Koraidon}}{{sup/9|S}}/{{ga|Miraidon}}{{sup/9|V}} as a seventh Pokémon. This is possibly due to its Poké Ball being registered to [[Professor Sada]]{{sup/9|S}}/[[Professor Turo]]{{sup/9|V}} instead of the player. Initially, this Pokémon is only usable as a ride Pokémon, but in the post-game, it becomes able to be added to the player&#039;s main party, allowing it to be used in battles. Riding it again switches it back out of the usable party of six.&lt;br /&gt;
&lt;br /&gt;
The Pokémon Storage System is managed by different people depending on the region: Bill in [[Kanto]] and [[Johto]], [[Celio]] in the [[Sevii Islands]], [[Lanette]] in [[Hoenn]], [[Bebe]] in [[Sinnoh]], [[Amanita]] in mainland [[Unova]], [[Cassius]] in [[Kalos]], and [[Molayne]] in [[Alola]]. [[Brigette]] and [[Grand Oak]] are also known to take on this role for the {{g|Box Ruby &amp;amp; Sapphire}}, {{g|Bank}}, and {{g|HOME}} software.&lt;br /&gt;
&lt;br /&gt;
==In the spin-off games==&lt;br /&gt;
===Pokémon Masters EX===&lt;br /&gt;
In {{g|Masters EX}}, many Trainer-owned Pokémon are still kept in their Poké Balls with the exception of {{mas|Ash}}, who keeps his {{tp|Ash|Pikachu}} outside at all times, including in certain animations. [[Pasio]] has no [[wild Pokémon]], however, many Trainers still carry empty Poké Balls and may catch any Pokémon that may appear.&lt;br /&gt;
&lt;br /&gt;
In the [[Together in an Unknown Land]] [[story event]] and {{mas|Akari}}&#039;s sync pair story, some history on Pokémon in relation to Poké Balls is revealed. Many Pokémon from the past seem to be afraid of the modern Poké Balls found on Pasio,&amp;lt;ref&amp;gt;[[Akari (game)/Quotes|Akari]]: &#039;&#039;&amp;quot;True. But my Pokémon are scared of these new modern Poké Balls.&amp;quot;&#039;&#039; ({{g|Masters EX}})&amp;lt;/ref&amp;gt; causing improper synchronization with [[sync stone]]s. However, Akari&#039;s {{rf|Hisuian}} {{p|Samurott}} was caught on Pasio, allowing for the synchronization to work better with the modern Poké Ball, which words as a &amp;quot;Pasio Poké Ball.&amp;quot;&amp;lt;ref&amp;gt;[[Akari (game)/Quotes|Akari]]: &#039;&#039;&amp;quot;That&#039;s it! I DO have a new Pokémon! I caught it in a Pasio Poké Ball!&amp;quot;&#039;&#039; ({{g|Masters EX}})&amp;lt;/ref&amp;gt; Akari also describes the modern day Poké Balls as being &amp;quot;strange&amp;quot;, &amp;quot;futuristic&amp;quot;, and &amp;quot;new and modern&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In [[Travelers from a Distant Past]] story event, {{mas|Irida}} and {{mas|Adaman}} also learn about Poké Balls, previously disliking the idea of containing Pokémon in Poké Balls as they saw it as a form of restraining them. Learning that Poké Balls are a symbol of partnership and trust between Trainers and Pokémon, they put their {{p|Leafeon}} and {{p|Glaceon}} in modern-day Poké Balls.&lt;br /&gt;
&lt;br /&gt;
Like in {{g|Legends: Arceus}}, Hisuian Poké Balls were made from scratch.&lt;br /&gt;
&lt;br /&gt;
==In animation==&lt;br /&gt;
===Ancient history===&lt;br /&gt;
====Pokémopolis====&lt;br /&gt;
[[File:Pokémopolis Paintbrush uncovered.png|thumb|220px|The giant paintbrush unsheathed]]&lt;br /&gt;
When Dr. [[Eve]] was exploring the ruins of [[Pokémopolis]] during &#039;&#039;[[EP072|The Ancient Puzzle of Pokémopolis]]&#039;&#039;, she discovered a number of old artifacts. A handful of these relics contained ancient, [[giant Pokémon]], and so can be seen as forerunners to the contemporary Poké Ball. These objects were named by a stone tablet that had inscribed on it the legend of [[Pokémopolis]]. The &amp;quot;Unearthly Urn&amp;quot; and accompanying spoon contained a giant {{p|Alakazam}}, which, to activate, one had to insert the spoon into the Urn. It appeared that the Alakazam could do this autonomously from within the Urn using its psychic powers. The &amp;quot;Dark Device&amp;quot; contained a giant {{p|Gengar}}. It is unknown what initiated its release. Finally, the giant paintbrush/bell that was discovered contained a giant {{p|Jigglypuff}}, and was activated by the {{m|Sing|song}} of a regular-sized {{an|Jigglypuff}}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Unearthly Urn.png|Unearthly Urn, containing the giant {{p|Alakazam}}&lt;br /&gt;
File:Unearthly Spoon.png|The Unearthly Spoon&lt;br /&gt;
File:Dark Device.png|The Dark Device, containing a giant {{p|Gengar}}&lt;br /&gt;
File:Pokémopolis Paintbrush.png|The paintbrush/bell containing the giant {{p|Jigglypuff}}&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Pokélantis====&lt;br /&gt;
[[File:Pokélantis myth.png|thumb|300px|{{an|Brandon}} telling the erroneous myth that the King trapped {{p|Ho-Oh}} in the orb]]&lt;br /&gt;
A relic that looks very similar to a contemporary Poké Ball was discovered in the [[Pokélantis|tomb]] of the [[King of Pokélantis]]. It was revealed during the course of &#039;&#039;[[AG178|Battling the Enemy Within!]]&#039;&#039; that it contained the spirit of the King, possibly indicating an alternate use for Poké Balls in ancient times. It was erroneously rumored that the orb contained a {{p|Ho-Oh}}, which would have made it much more similar to a modern Poké Ball.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Pokélantis Poké Ball anime.png|The orb found in the [[King of Pokélantis|King]]&#039;s tomb&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Recent history===&lt;br /&gt;
====Sir Aaron&#039;s staff====&lt;br /&gt;
Featured in &#039;&#039;[[M08|Lucario and the Mystery of Mew]]&#039;&#039;, the crystal in [[Sir Aaron]]&#039;s staff was used &amp;quot;hundreds of years ago&amp;quot; to contain his apprentice {{mov|Lucario|Lucario|8}}. This can be seen as a forerunner to the contemporary Poké Ball. The ubiquitous Poké Ball design can be seen in other places in the beginning of the movie, but it is unknown what they relate to.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Sir Aaron staff.png|{{Ash}} holding the staff&lt;br /&gt;
File:Sir Aaron art.png|[[Sir Aaron]] holding his staff&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Giant stone Poké Ball====&lt;br /&gt;
[[File:Ancient Claydol text.png|thumb|300px|The ancient text chronicling the White Sage&#039;s encounter with the giant {{p|Claydol}}]]&lt;br /&gt;
A giant stone Poké Ball was said in &#039;&#039;[[AG104|Claydol Big and Tall]]&#039;&#039; to have been created &amp;quot;in olden times&amp;quot; by the White Sage to contain a rampaging giant {{p|Claydol}} which had escaped from an identical stone Poké Ball. It was also said in this episode that this event was contemporaneous with the first creation of Claydol, which is cited as taking place around 20,000 years ago. However, this was read by [[Sigourney]] from an &amp;quot;ancient text&amp;quot; that he had a lot of trouble translating earlier in the episode.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Giant stone Poké Ball anime.png|The giant stone Poké Ball&lt;br /&gt;
File:White Sage.png|The White Sage&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====The Odd Keystone====&lt;br /&gt;
The [[Odd Keystone]] can be seen as a Poké Ball forerunner, in that it was used to capture {{p|Spiritomb|a Pokémon}} 500 years ago. In &#039;&#039;[[DP056|The Keystone Pops!]]&#039;&#039; an {{OBP|old woman|DP056}} reveals that Spiritomb was defeated and imprisoned by an [[Aura|Aura Guardian]]. The method and reason for the confinement are currently unknown.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:DP056.png|The [[Odd Keystone]]&lt;br /&gt;
File:Aura Guardian Pikachu.png|The [[Aura|Aura Guardian]] who defeated {{p|Spiritomb}}&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====The Captain&#039;s Poké Balls====&lt;br /&gt;
In &#039;&#039;[[EP095|A Shipful of Shivers]]&#039;&#039;, it was revealed that the {{OBP|Captain|EP095}} kept his {{p|Haunter}} and {{p|Gastly}} inside contemporary looking Poké Balls, approximately 300 years before the present. The old [[Orange League]] [[Winner&#039;s Trophy]], which is also more than 300 years old, is featured in this episode as well, and appears to be based on a contemporary Poké Ball design.&lt;br /&gt;
&lt;br /&gt;
Chronologically, these are the first Poké Balls that offer capture and control to the Trainer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Captain Ball.png|300+ year old modern Poké Balls&lt;br /&gt;
File:Old Winners Trophy.png|The old [[Winner&#039;s Trophy]], being held by the {{OBP|Captain|EP095}}&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Lokoko&#039;s Poké Ball====&lt;br /&gt;
[[File:Composite Lokoko Ball.png|thumb|300px|Aspects of Lokoko&#039;s Poké Ball]]&lt;br /&gt;
In &#039;&#039;[[EP232|Just Waiting On a Friend]]&#039;&#039;, [[Lokoko]] was the alter-ego of an elderly {{p|Ninetales}} whose Poké Ball was contemporaneous with a diary that was at least 200 years old. While the style of this ball is quite different from the modern Poké Ball, there is a statue in the same 200+ year old mansion which depicts a modern looking Poké Ball.&lt;br /&gt;
&lt;br /&gt;
This Poké Ball differs from its modern descendant in other ways as well. The button is on the top of the ball rather than on the side, as can be seen top left in the picture opposite. It also lacks the internal mirrors that modern Poké Balls have, as can be seen top right opposite. It is also extremely fragile, as can be seen bottom opposite, as it shattered after simply being dropped, which is an everyday occurrence for a modern Poké Ball, though this is perhaps a consequence of its age. This may also be due to it being modeled from a porcelain handicraft.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Lokoko Poké Ball anime.png|[[Lokoko]]&#039;s Poké Ball&lt;br /&gt;
File:Old mansion statues.png|A contemporaneous statue of a modern looking Poké Ball&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Sam&#039;s Poké Ball====&lt;br /&gt;
A Poké Ball with a simple capture mechanism can be seen in [[Sam]]&#039;s possession in &#039;&#039;[[M04|Celebi: The Voice of the Forest]]&#039;&#039;, 40 years before the present day. It had a red twist top that needed to be turned to release the Pokémon inside. This Poké Ball fits the description provided by [[Kurt]] of the basic method of turning [[Apricorn]]s into Poké Balls by simply hollowing them out and adding a capture mechanism. Judging by the other older Poké Balls seen in the animated series, it is unlikely that this Ball is indicative of all Poké Balls 40 years ago. Therefore, this Poké Ball may have been homemade, cheaply made, hurriedly made, or come from some other source. An alternate hypothesis is that this is an early model of non-Apricorn Poké Ball and that this is the oldest, and therefore most primitive, fully mechanical Poké Ball yet shown.&lt;br /&gt;
&lt;br /&gt;
Sam&#039;s Poké Ball has distinct similarities to Lokoko&#039;s Poké Ball with the button (or button equivalent in Sam&#039;s case) on top of the ball rather then opposite the hinge and it is used while gripping the button half rather then &#039;clasped&#039; in the hand with the hinge in one&#039;s palm.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Sammy Old Poké Ball.png|[[Sam]]&#039;s Poké Ball&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Controlling items===&lt;br /&gt;
There are generally two aspects to a typical modern Poké Ball, capture and control. The majority of the historical devices above capture the Pokémon in question, but generally offer no control over it once it has been released again. The following historical items offer the opposite of this, granting control but not ownership to the holder.&lt;br /&gt;
&lt;br /&gt;
====The Queen&#039;s mask and staff====&lt;br /&gt;
[[File:Tierra tablet.png|thumb|220px|[[Tierra]]&#039;s tablet that tells the history of the Queen]]&lt;br /&gt;
In &#039;&#039;[[EP196|Control Freak!]]&#039;&#039;, an ancient tablet discovered by [[Tierra]] revealed that thousands of years ago a Queen could control Pokémon within the boundaries of her own village using high frequency waves. As soon as the Pokémon went outside her village boundaries, the waves were disrupted, or she lost possession of the staff, the controlled Pokémon would turn against her again.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Control Queen statue.png|A statue of the Queen, wearing the mask and holding the staff&lt;br /&gt;
File:Unmasked Queen.png|The Queen&#039;s statue unmasked&lt;br /&gt;
File:EP196.png|The staff in action&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Marcus&#039;s armor====&lt;br /&gt;
In &#039;&#039;[[M12|Arceus and the Jewel of Life]]&#039;&#039; the antagonist [[Marcus]] controlled a {{p|Bronzong}} and a {{p|Heatran}} with special sets of armor. Much like the Queen&#039;s mask and staff, the controlled Pokémon would turn against the controller as soon as the effects were no longer being felt and the Pokémon were outside of their control.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Marcus Bronzong.png|{{p|Bronzong}} being controlled&lt;br /&gt;
File:Marcus Heatran Armor.png|{{p|Heatran}} being controlled&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Blue and Red Orbs====&lt;br /&gt;
{{main|Colored orbs}}&lt;br /&gt;
In &#039;&#039;[[AG097|Gaining Groudon]]&#039;&#039; and &#039;&#039;[[AG098|The Scuffle of Legends]]&#039;&#039;, the [[Red Orb]] controls {{p|Kyogre}} and the [[Blue Orb]] controls {{p|Groudon}}. According to [[Lance]], &#039;&#039;&amp;quot;The Red Orb was created long ago by evil people to control ancient Pokémon and use them as weapons...&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Archie]] invokes the Red Orb with the words &amp;quot;Convey our will to Kyogre, great Red Orb, and allow this great power to be released now&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
A side effect of the use of the Orbs is possession. During these episodes, {{AP|Pikachu}} and [[Archie]] become possessed by the energy inside the orbs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery perrow=&amp;quot;3&amp;quot;&amp;gt;&lt;br /&gt;
File:Blue Orb anime.png|The Blue Orb&lt;br /&gt;
File:Blue Orb activated.png|The Blue Orb controlling {{p|Groudon}}&lt;br /&gt;
File:Blue Orb possession.png|The Blue Orb possessing [[Ash&#039;s Pikachu]]&lt;br /&gt;
File:Red Orb anime.png|The Red Orb&lt;br /&gt;
File:Red Orb activated.png|The Red Orb controlling {{p|Kyogre}}&lt;br /&gt;
File:Red Orb possession.png|The Red Orb possessing [[Archie]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Red Chain====&lt;br /&gt;
{{main|Red Chain}}&lt;br /&gt;
The Red Chain is used by [[Cyrus]] to take control over the Legendary Pokémon {{p|Dialga}} and {{p|Palkia}} so as not to reduce their power by capturing them in a Poké Ball.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Red Chain anime.png|The [[Red Chain]]&lt;br /&gt;
File:Palkia Dialga controlled.png|{{p|Dialga}} and {{p|Palkia}} being controlled by the Red Chain&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Poké Ball]]&lt;br /&gt;
* [[Apricorn]]&lt;br /&gt;
* [[History of the Pokémon world]]&lt;br /&gt;
* [[Timeline of events in Pokémon the Series]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{DoubleProjectTag|Anime|ItemDex}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Pokémon animated series]]&lt;br /&gt;
[[Category:Poké Balls|*]]&lt;br /&gt;
&lt;br /&gt;
[[it:Storia delle Poké Ball]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
	<entry>
		<id>https://bulbapedia.bulbagarden.net/w/index.php?title=Nuzlocke_Challenge&amp;diff=4179237</id>
		<title>Nuzlocke Challenge</title>
		<link rel="alternate" type="text/html" href="https://bulbapedia.bulbagarden.net/w/index.php?title=Nuzlocke_Challenge&amp;diff=4179237"/>
		<updated>2024-11-12T22:06:34Z</updated>

		<summary type="html">&lt;p&gt;Pallukun: /* Trivia */ tpc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Basic Nuzlocke rules.png|thumb|300px|The two basic Nuzlocke rules.]]&lt;br /&gt;
The &#039;&#039;&#039;Nuzlocke Challenge&#039;&#039;&#039; is a set of rules intended to create a higher level of difficulty while playing the [[Pokémon games]]. A playthrough using these rules is often called &amp;quot;&#039;&#039;&#039;a Nuzlocke&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Nuzlockes are a popular way to play the games among {{pkmn|fandom|fans}}. Many feel that the rules encourage greater Pokémon variety, create value for ones the player would not normally choose, and promote closer bonds with the player&#039;s team. The rules are not an in-game function, but self-imposed on the player&#039;s part, and thus subject to variation.&lt;br /&gt;
&lt;br /&gt;
The challenge originates from the &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://www.nuzlocke.com/ comic series]&amp;lt;/span&amp;gt; of the same name, which features a {{p|Nuzleaf}} resembling &#039;&#039;{{wp|Lost (2004 TV series)|Lost}}&#039;&#039; character {{wp|John Locke (Lost)|John Locke}} as a recurring gag character.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The basic rules were invented by Nick Franco, a Californian screenwriter and then-university-student, in March 2010. Franco posted comics depicting his playthrough of [[Pokémon Ruby]] to 4chan&#039;s /v/ board, where they gained attention and inspired others to try the challenge.&amp;lt;ref&amp;gt;https://www.vox.com/culture/2019/11/22/20976759/pokemon-what-is-nuzlocke-challenge-sword-shield&amp;lt;/ref&amp;gt; The following month, Franco launched a website for his comics and a forum for fans&#039; challenge chronicles.&amp;lt;ref&amp;gt;https://nuzlockeforums.com/forum/threads/reflecting-on-12-years-of-the-nuzlocke-challenge-nostalgia-on-how-it-all-started.20929/&amp;lt;/ref&amp;gt; Over time, the concept spread to various websites and formats such as written stories, animations and livestreams.&lt;br /&gt;
&lt;br /&gt;
Franco uses &amp;quot;Nuzlocke&amp;quot; as a screen name, while his comic is titled &amp;quot;Pokémon: Hard-Mode&amp;quot;. However, the word Nuzlocke eventually came to be associated with the ruleset itself.&lt;br /&gt;
&lt;br /&gt;
==Rules==&lt;br /&gt;
===Basic rules===&lt;br /&gt;
&amp;lt;!-- Putting a Pokémon in the PC when it faints instead of releasing it is NOT a basic rule of the Nuzlocke Challenge and any edit stating so will be reverted. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Nuzlocke Challenge has only two rules that must be followed:&lt;br /&gt;
*&#039;&#039;&#039;Limited Encounters:&#039;&#039;&#039; The {{player}} may only catch the first [[wild Pokémon]] encountered in each area, and no others. If the first wild Pokémon encountered faints or flees, there are no second chances.&lt;br /&gt;
**If the first encounter in an area is a [[Double Battle]] or [[Horde Encounter]], the player may choose which of the encountered Pokémon to catch, but only one of them.&lt;br /&gt;
*&#039;&#039;&#039;Dying&#039;&#039;&#039;: Any Pokémon that [[Fainting|faints]] is considered dead and must be {{pkmn2|released}}. Revival methods such as [[Revive]], [[Revival Blessing (move)|Revival Blessing]], etc. are forbidden. If you run out of living Pokémon, you&#039;ve failed the challenge and must restart the game.&lt;br /&gt;
&lt;br /&gt;
===Near-universally-used rules===&lt;br /&gt;
*&#039;&#039;&#039;Mandatory Nicknames:&#039;&#039;&#039; The player must nickname all of their Pokémon, for the sake of forming stronger emotional bonds.&lt;br /&gt;
*&#039;&#039;&#039;&amp;quot;Met in&amp;quot; Confirmation:&#039;&#039;&#039; If the player is unsure whether a location is a valid new encounter or not, such as multiple levels of a cave, you can look at the Pokémon&#039;s [[summary]] page to see where they were &amp;quot;Met&amp;quot; in order to confirm whether it&#039;s a new location or not.&lt;br /&gt;
**&#039;&#039;&#039;Gift Pokémon:&#039;&#039;&#039; Some players consider [[Gift Pokémon]] (such as the {{p|Eevee}} found in the [[Celadon Condominiums]]) to be separate encounters from wild Pokémon encountered in the same area.&lt;br /&gt;
***As of [http://www.nuzlocke.com/comics/pokemon-hard-mode/page/11/ White: Hard-Mode, Episode 3], it is implied that the player can accept Pokémon that are received freely from NPCs.&lt;br /&gt;
*&#039;&#039;&#039;No Resets:&#039;&#039;&#039; The player may not voluntarily soft-reset to undo progress. Being able to do so would render all other rules pointless.&lt;br /&gt;
*&#039;&#039;&#039;No Cheating:&#039;&#039;&#039; Cheating devices (such as [[GameShark]]) may not be used except to make the game harder (such as cheating to disable [[Exp. Share]] in games that don&#039;t allow such an option.)&lt;br /&gt;
*&#039;&#039;&#039;Full Wipe:&#039;&#039;&#039; A [[Black out|black out/white out]] is considered to be &#039;game over&#039; even if there are live Pokémon left in the [[Pokémon Storage System]].&lt;br /&gt;
*&#039;&#039;&#039;No Outside Trading:&#039;&#039;&#039; The player may only use Pokémon obtained through in-game methods, meaning that [[Trade|trading]] with other save files, [[Mystery Gift]]s, etc. are all prohibited.&lt;br /&gt;
**&#039;&#039;&#039;Trade Evolution Clause:&#039;&#039;&#039; There is no firm consensus on trading a [[trade Evolution]] Pokémon away and back to your file to evolve it.&lt;br /&gt;
*&#039;&#039;&#039;Boxing:&#039;&#039;&#039; Deceased Pokémon may be permanently sent to the [[Pokémon Storage System]] rather than releasing them.&lt;br /&gt;
&lt;br /&gt;
===Optional rules===&lt;br /&gt;
Though the above rules tend to stay consistent with all players, many variant rules have been created to adjust difficulty based on personal preference. Many other rules exist besides those listed here. Regardless of the optional rules used, the run is considered a Nuzlocke Challenge so long as the two basic rules are in place.&lt;br /&gt;
&lt;br /&gt;
====Increased difficulty====&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Battle restrictions&#039;&#039; =====&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Set Mode Clause:&#039;&#039;&#039; The battle style must be changed to &amp;quot;Set&amp;quot; in the options menu, meaning the player does not get the opportunity to switch out their Pokémon after an opponent&#039;s Pokémon faints. In [[Pokémon Scarlet and Violet]], where there is no set mode, the player must manually decide not to switch each time.&lt;br /&gt;
* &#039;&#039;&#039;Equal Parties/Fair Fight Clause:&#039;&#039;&#039; During Gym Leader and [[rival]] battles, the [[Party|active party]] must not have more Pokémon than the opponent&#039;s.&lt;br /&gt;
* &#039;&#039;&#039;No Items:&#039;&#039;&#039; No items may be used during battles except for [[held items]]. Limitation due to perceived power-level of X-items.&lt;br /&gt;
* &#039;&#039;&#039;No Heal Items:&#039;&#039;&#039; [[Potion]]s and [[Status condition healing item|status-healing items]] may not be used.&lt;br /&gt;
* &#039;&#039;&#039;No Held Items: &#039;&#039;&#039;Held items may not be used.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Leveling restrictions&#039;&#039; =====&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Level Cap: &#039;&#039;&#039;The player may not use Pokémon above the level of the next [[Gym Leader]]/[[Elite Four]]/{{pkmn|Champion}}&#039;s highest-levelled Pokémon (their &amp;quot;ace&amp;quot;). Pokémon that exceed the level limit might be left in storage until they become eligible, or they might have to be released.&lt;br /&gt;
* &#039;&#039;&#039;No Evolving: &#039;&#039;&#039;The player must use the B-button to cancel any evolutions under their ownership.&lt;br /&gt;
* &#039;&#039;&#039;No Child Support:&#039;&#039;&#039; The {{pkmn|Day Care}} may not be used.&lt;br /&gt;
* &#039;&#039;&#039;No Exp Share: &#039;&#039;&#039;The [[Exp. Share]] may not be used. (This does not apply to games starting from [[Pokémon: Let&#039;s Go, Pikachu! and Let&#039;s Go, Eevee!]], where the Exp. Share can&#039;t be disabled without third-party tools.)&lt;br /&gt;
*&#039;&#039;&#039;No Candy:&#039;&#039;&#039; [[Rare Candy]] and [[Exp. Candy]] may not be used.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Overworld restrictions&#039;&#039; =====&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;No/Limited Pokémon Centers:&#039;&#039;&#039; Pokémon Centers may not be used, or only used a certain number of times per Center, or a certain number of times between each Gym.&lt;br /&gt;
* &#039;&#039;&#039;No Buying: &#039;&#039;&#039;No items may be purchased from NPCs; the player must rely on what they find in the overworld or receive for free.&lt;br /&gt;
* &#039;&#039;&#039;Limited Balls:&#039;&#039;&#039; Only a certain number of [[Poké Ball]]s may be purchased per store.&lt;br /&gt;
* &#039;&#039;&#039;No Escape:&#039;&#039;&#039; The player may not [[Escape|flee]] from battle.&lt;br /&gt;
**&#039;&#039;&#039;No Wild Encounters:&#039;&#039;&#039; Alternatively, the player must flee whenever possible, in order to limit the amount of [[experience]] gained.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Pokémon restrictions&#039;&#039; =====&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Random Starter:&#039;&#039;&#039; The [[first partner Pokémon]] must be randomly chosen. A common system is if the last digit of the player&#039;s [[Trainer ID number]] is 1-3, they must choose the Grass-type first partner Pokémon; if it is 4-6, the Fire-type first partner Pokémon; if it is 7-9, the Water-type first partner Pokémon; if it is 0, free choice. Alternatively, use the Trainer ID {{wp|Modulo operation|modulo}} 3: remainder 0 = Grass, remainder 1 = Fire, remainder 2 = Water. However, the modulo method makes the Grass-type first partner more likely to be picked, with 4 chances instead of 3.&lt;br /&gt;
* &#039;&#039;&#039;Caught Only:&#039;&#039;&#039; The first partner Pokémon must be released or boxed after the first wild Pokémon is caught.&lt;br /&gt;
* &#039;&#039;&#039;One Per Gym:&#039;&#039;&#039; The player may only catch the first Pokémon after each Gym Leader instead of in each area.&lt;br /&gt;
* &#039;&#039;&#039;Ban List:&#039;&#039;&#039; Certain Pokémon such as [[Legendary Pokémon|Legendaries]], [[Pseudo-legendary Pokémon|Pseudo-Legendaries]], and/or other powerful Pokémon are banned as they excessively mitigate the difficulty of the challenge.&lt;br /&gt;
* &#039;&#039;&#039;Monotype/Monocolor Challenge:&#039;&#039;&#039; Only Pokémon of a certain [[Type]] or [[List of Pokémon by color|color]] may be used. Rather than the first Pokémon encountered in an area, the player may catch the first one which fits the category or will evolve into fitting the category. If a Pokémon would lose the category upon evolution, it may not evolve.&lt;br /&gt;
* &#039;&#039;&#039;Notepad Clause:&#039;&#039;&#039; No Pokémon may be kept in the PSS; in other words, the player may only own six Pokémon at a time. This was named after its inventor, user &amp;quot;Notepad&amp;quot; on the now-defunct original Nuzlocke Forum.&lt;br /&gt;
** &#039;&#039;&#039;Notepad Extreme/First 6 Only:&#039;&#039;&#039; The player may only own six Pokémon throughout the entire run. If all six faint or otherwise become ineligible, then it&#039;s an instant &#039;game over&#039;.&lt;br /&gt;
* &#039;&#039;&#039;Giftlocke:&#039;&#039;&#039; Poké Balls may not be used. Any Pokémon obtained must be either given to the player by an NPC or hatched from an {{pkmn|Egg}}.&lt;br /&gt;
* &#039;&#039;&#039;No Repels:&#039;&#039;&#039; [[Repel]]s may not be used, as they can manipulate encounter odds or guarantee special overworld Pokémon to be eligible for capture, thus allowing the player to control their first encounter. Repels may be used in a given area once the eligible Pokémon is caught or lost.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;Miscellaneous&#039;&#039; =====&lt;br /&gt;
*&#039;&#039;&#039;Limited Training: &#039;&#039;&#039;Quality-of-life features such as [[Pokémon-Amie]], the [[DexNav]] and [[Super Training]] may not be used.&lt;br /&gt;
*&#039;&#039;&#039;Challenge Mode:&#039;&#039;&#039; ({{2v2|Black|White|2}} only) The difficulty must be set to [[Key System|Challenge Mode]], which increases the levels of opposing Trainers&#039; Pokémon.&lt;br /&gt;
*&#039;&#039;&#039;Memory Only:&#039;&#039;&#039; Online aids (walkthroughs, NPC team info, etc.) may not be used.&lt;br /&gt;
*&#039;&#039;&#039;Speedrun:&#039;&#039;&#039; In addition to the Nuzlocke rules, the player tries to defeat the Champion with as little &amp;quot;time played&amp;quot; on the save file counter as possible.&lt;br /&gt;
*&#039;&#039;&#039;Progression Sacrifice:&#039;&#039;&#039; After each [[Badge]] the player randomly selects one party member to sacrifice.&lt;br /&gt;
&lt;br /&gt;
====Decreased difficulty====&lt;br /&gt;
*&#039;&#039;&#039;Slow Start:&#039;&#039;&#039; The two basic rules are not in effect until the player has gained their first [[Poké Ball]]s and thus the ability to catch Pokémon. For example, encounters starting from the {{p|Poochyena}}{{sup/3|RS}}{{sup/6|ORAS}}/{{p|Zigzagoon}}{{sup/3|E}} that the player has to save [[Professor Birch]] from, up to when the player can catch Pokémon, are not counted. Likewise, in the games where the first rival battle is immediately after obtaining the first partner Pokémon, the &amp;quot;release or permanently box a Pokémon if it faints&amp;quot; rule is often not enforced at that time.&lt;br /&gt;
*&#039;&#039;&#039;Species/Dupes Clause:&#039;&#039;&#039; The &amp;quot;first wild Pokémon in each area&amp;quot; rule does not apply in an area until a species or evolutionary line is encountered that has not been caught yet. For example, if the player&#039;s first encounter in an area is with a {{p|Caterpie}} and they already own a Caterpie, {{p|Metapod}}, or {{p|Butterfree}}, it wouldn&#039;t count as their first encounter in that area. This allows for increased variety in a player&#039;s Pokémon collection.&lt;br /&gt;
**A limit may be set on how many times the player can apply the Species/Dupes Clause in an area. If this many duplicate Pokémon are encountered in an area, the Species/Dupes Clause is no longer applied for that area and the player must settle for the next Pokémon they encounter.&lt;br /&gt;
*&#039;&#039;&#039;Second Chance:&#039;&#039;&#039; The player may have a small number of &amp;quot;second chances&amp;quot; or revives of fallen team members. Typically this type of ruling is done by Gym, such as getting 1 revive per Badge.&lt;br /&gt;
*&#039;&#039;&#039;Shiny Clause:&#039;&#039;&#039; [[Shiny Pokémon]] can be caught even if they&#039;re not a first encounter, and do not need to be released if they faint. It&#039;s up to the player whether shinies may be used during the challenge, or merely traded away to another game/[[Pokémon HOME]] for safekeeping.&lt;br /&gt;
**&#039;&#039;&#039;Shiny Replacement Clause:&#039;&#039;&#039; A compromise where you can use Shiny Pokémon in a Nuzlocke, but another Pokémon must be released in exchange.&lt;br /&gt;
*&#039;&#039;&#039;Checkpoints:&#039;&#039;&#039; Each Gym Badge can act as a checkpoint. If the player gets a game over, they may restart from when they won their last Badge.&lt;br /&gt;
*&#039;&#039;&#039;HM Helper:&#039;&#039;&#039; If the player has no Pokémon that can use a [[field move]] that is required to continue the game, they may catch another Pokémon to use the required field move. However, this Pokémon cannot be used in battle and must be released as soon as it is no longer needed or if the player catches another Pokémon that can use the same field move.&lt;br /&gt;
*&#039;&#039;&#039;On Safari: &#039;&#039;&#039;The &amp;quot;first encounter only&amp;quot; rule is modified for the [[Safari Zone]]. One catch may be had for each section of the Zone, rather than the more restrictive interpretation that the entire Zone is one area.&lt;br /&gt;
**Similarly, the [[Pokémon Den|Pokémon Dens]] of Galar&#039;s [[Wild Area]] can be interpreted as their own &amp;quot;new area&amp;quot; each, rather than only making one catch from the entire Wild Area or one from each sub-area.&lt;br /&gt;
*&#039;&#039;&#039;A Little Help From My Friends: &#039;&#039;&#039;Cheating devices (such as [[GameShark]]) may be used.&lt;br /&gt;
**&#039;&#039;&#039;Rare Candy Clause:&#039;&#039;&#039; Hack in infinite [[Rare Candy|Rare Candies]] to avoid tedious grinding. It was popularized by the streamer Pokémon Challenges.&lt;br /&gt;
**&#039;&#039;&#039;Master Ball Clause:&#039;&#039;&#039; Hack in infinite [[Master Ball]]s to avoid wild Pokémon accidentally being knocked out, [[Escape|running away]], or using escape moves like {{m|Teleport}} and {{m|Roar}}.&lt;br /&gt;
&lt;br /&gt;
==Variant rulesets==&lt;br /&gt;
*&#039;&#039;&#039;Hardcore Nuzlocke:&#039;&#039;&#039; A general name for any Nuzlocke variant which restricts item use and over-levelling, in order to produce a more difficult run and more strategic play.&lt;br /&gt;
*&#039;&#039;&#039;Wonderlocke&#039;&#039;&#039;: Any Pokémon caught must immediately be traded using [[Wonder Trade]] and the received Pokémon is used instead. Typically, this comes with a level restriction where if the received Pokémon is more than a certain number of levels higher than the original Pokémon, it must be traded again until an appropriate-level Pokémon is received.&lt;br /&gt;
*&#039;&#039;&#039;Soul-Link&#039;&#039;&#039;: Two player variant where both players&#039; Pokémon are &amp;quot;soul-linked&amp;quot; based on their origin. So the first partner Pokémon are linked, the Pokémon from Route 1 are linked, and so on. If a Pokémon dies, its soulmate does too. Linked Pokémon must be in both players&#039; parties at once, i.e. one cannot leave a Pokémon in the PSS while its soulmate is on the active team.&lt;br /&gt;
**Common additional rules include restricting duplicate types between the two players. If either player is using a Pokémon of a certain type, the other player cannot use any Pokémon of that same type. If both players find the same type of Pokémon for one encounter, neither is able to use it.&lt;br /&gt;
*&#039;&#039;&#039;Egglocke&#039;&#039;&#039;: The player catches Pokémon, 1 per route as normal, but instead of using the Pokémon caught, they hatch a randomly generated egg. Usually this is done via trades or through cheat devices, where the egg Pokémon are chosen by a third party, such as friends or a streaming audience.&lt;br /&gt;
*&#039;&#039;&#039;Wedlocke&#039;&#039;&#039;: Each pair of Pokémon is married/bonded based on the order they&#039;re caught in. A Pokémon can only switch out for its bondmate. If a Pokémon dies, its bondmate must be the next one sent in. If one &amp;quot;widow&amp;quot; survives a battle, they might either remarry the next catch, or get perma-boxed (&amp;quot;retire out of grief&amp;quot;).&lt;br /&gt;
*&#039;&#039;&#039;Randomizer:&#039;&#039;&#039; Randomizer mods can be used to add more variety to Nuzlockes. However, encountering a Legendary or other powerful Pokémon early can greatly reduce difficulty. Additionally, catch rates may have to be adjusted via the Randomizer in order for Legendary Pokémon to be feasibly caught using low-tier Balls.&lt;br /&gt;
*&#039;&#039;&#039;Alphabetlocke:&#039;&#039;&#039; The six Pokémon on your team must be the first six species names in alphabetical order (or reverse alphabetical). For example, if you have a Squirtle, Pidgey, Mankey, Beedrill, Pikachu, Geodude, Clefairy, and Abra, then your active team is: Abra, Beedrill, Clefairy, Geodude, Mankey, Pidgey. Then if Mankey evolves into Primeape, its new name is lower in alphabetical order, so Pikachu takes its spot on the team.&lt;br /&gt;
*&#039;&#039;&#039;Lorelocke:&#039;&#039;&#039; A large ruleset which has individual rules for each species, inspired by mythological creatures and stories.&lt;br /&gt;
*&#039;&#039;&#039;Ballocke:&#039;&#039;&#039; Instead of limiting Pokémon by route, this variant limits by type of Ball. Only one Pokémon may be caught in a Poké Ball, one may be caught in a Great Ball, one in a Quick Ball, etc.&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
*&#039;&#039;&#039;Repel Encounter Manipulation:&#039;&#039;&#039; Having a [[Repel]] active and a Pokémon in the first position at a specific level can be used to filter out unwanted encounters and in some cases guarantee specific encounters.&lt;br /&gt;
*&#039;&#039;&#039;Sacking:&#039;&#039;&#039; For difficult encounters, it is wise to have at least one Pokémon you are willing to sacrifice in order to switch to a better one. Recommended Pokémon to be sacked are: ones with weak base stats, ones whose type is shared by a more powerful teammate, or ones who could have a replacement caught in an upcoming place.&lt;br /&gt;
*&#039;&#039;&#039;Play Around The Crit:&#039;&#039;&#039; Being aware if your Pokémon is in danger of being taken out by a [[critical hit]] is key to avoiding unnecessary deaths. [[Generation I]] has a critical hit damage multiplier between 1.5× and 1.95× depending on the level, with higher levels doing more damage. From Generations {{gen|II}} to {{gen|V}}, the damage dealt by a critical hit is 2× as much as a normal hit. From [[Generation VI]] onward, critical hits deal 1.5× more damage than normal. &#039;&#039;Warning&#039;&#039;: critical hits ignore stat changes, such as increased Defense with Defense Curl.&lt;br /&gt;
*&#039;&#039;&#039;Avoid Unnecessary Encounters:&#039;&#039;&#039; Trainers use better decision-making and have higher levels on average than wild Pokémon within the same route. Avoiding non-required trainer battles increases the chance your Pokémon will survive.&lt;br /&gt;
*&#039;&#039;&#039;Be Aware of Mandatory Battles:&#039;&#039;&#039; Don&#039;t trigger mandatory battles, such as rival fights, without first making sure your team is fully healed and properly leveled.&lt;br /&gt;
*&#039;&#039;&#039;Don&#039;t Underlevel:&#039;&#039;&#039; There is no reason to have an under-leveled Pokémon for encounters. Even if adhering to Gym Leader level restrictions, make sure to have your team at the level restriction by the time you trigger the battle.&lt;br /&gt;
*&#039;&#039;&#039;Protect the Important Ones:&#039;&#039;&#039; Be aware of which Pokémon are best suited to upcoming Gyms, and do not expose them to unnecessary risks such as fighting a strong Route trainer.&lt;br /&gt;
*&#039;&#039;&#039;Baiting:&#039;&#039;&#039; {{pkmn|Trainer}}-owned Pokémon will choose the move that is most effective against the enemy Pokémon. As such, you can bait certain moves in order to get a free switch. A common example is having a Pokémon weak to {{type|Ground}} moves out on the field and then switch to a Pokémon that is immune to Ground moves, such as a {{type|Flying}} Pokémon or a Pokémon with {{a|Levitate}}.&lt;br /&gt;
*&#039;&#039;&#039;Generational Awareness:&#039;&#039;&#039; Be aware of changes between generations. For example: {{a|Sturdy}}, in Generations {{gen|III}} and {{gen|IV}} only, protects against [[one-hit knockout move]]s, while in Generation V onward, it protects the Pokémon from being knocked out with one hit when at full HP.&lt;br /&gt;
*&#039;&#039;&#039;PP Stall:&#039;&#039;&#039; Using healing moves or items (if allowed) in order to force a dangerous encounter to waste all their good moves. Typically, this is used for low-PP moves that deal large amounts of damage. If successful, this can lead to the enemy using {{m|Struggle}} to knock itself out.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*So far in the original Nuzlocke comics, one first partner Pokémon of each type has been used: {{p|Treecko}} in [[Pokémon Ruby and Sapphire Versions|Ruby]], {{p|Charmander}} in [[Pokémon FireRed and LeafGreen Versions|Fire Red]], and {{p|Oshawott}} in the ongoing [[Pokémon Black and White Versions|White]] challenge.&lt;br /&gt;
*The original Nuzlocke run through Ruby was a failure, due to the entire active team dying in the Champion battle.&lt;br /&gt;
*In the Nuzlocke Forums&#039; [https://nuzlockeforums.com/forum/threads/final-team-frequency-4-0.20759/ log of successful runs], the most victorious Pokémon of all time is {{p|Gyarados}}, which has survived 240 recorded Champion battles at time of writing.&lt;br /&gt;
*[[The Pokémon Company]] strongly opposes Nuzlocking - former Nintendo Minute presenters Kit and Krysta once requested to the company to make a video out of a Nuzlocke, which was quickly denied. TPC claimed Nuzlockes as &amp;quot;on the same level as using . . . [[ROM hack]]s&amp;quot;.&amp;lt;ref&amp;gt;Garcia, Jose (2022-9-19) &amp;quot;[https://www.dualshockers.com/two-ex-nintendo-employees-were-almost-fired-for-nuzlockeing-pokmon/|Two Ex-Nintendo Employees Were &amp;quot;Almost Fired&amp;quot; For Nuzlocke&#039;ing Pokémon]&amp;quot;, &#039;&#039;{{wp|Dual Shockers}}&#039;&#039;. Retrieved 2024-11-12.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.nuzlocke.com/ The original Nuzlocke Comics]&lt;br /&gt;
*[https://nuzlockeforums.com/forum/index.php The Nuzlocke Forums]&lt;br /&gt;
*[https://old.reddit.com/r/nuzlocke/ Nuzlocke discussions on Reddit]&lt;br /&gt;
&lt;br /&gt;
{{Pokémon fandom}}&lt;br /&gt;
{{Project Fandom notice}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Fandom]]&lt;br /&gt;
[[Category:Fanon terminology]]&lt;br /&gt;
&lt;br /&gt;
[[de:Pokémon-Challenges#Nuzlocke]]&lt;br /&gt;
[[fr:Nuzlocke Challenge]]&lt;br /&gt;
[[it:Nuzlocke Challenge]]&lt;br /&gt;
[[ja:Nuzlocke Challenge]]&lt;br /&gt;
[[zh:附录:Nuzlocke挑战]]&lt;/div&gt;</summary>
		<author><name>Pallukun</name></author>
	</entry>
</feed>