Hidden Power (move)/Calculation: Difference between revisions

From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
m (Text replacement - "{{game|Black and White|s 2|Pokémon Black 2 and White 2}}" to "{{B2W2}}")
 
(143 intermediate revisions by 67 users not shown)
Line 1: Line 1:
{{m|Hidden Power}} is a {{type2|Normal}}-type move. However, the real type of Hidden Power is determined by [[Pokémon]]'s [[IV]]s and may be one of 16 types, excluding [[Normal (type)|Normal]] and [[???]] types. Its power varies from 30 to 70 and is determined by its user's [[IV]]s as well.  
{{main|Hidden Power (move)}}
In the Pokémon games, {{m|Hidden Power}} is a {{type|Normal}} move when the type is displayed, such as in battle and on status screens. However, the actual type of Hidden Power is determined by the Pokémon's [[individual values]], and through calculation, can be set as one of other natural types. In Generations II to V, Hidden Power's base power is also determined by the Pokémon's individual values; in Generation II, it ranges from 31 to 70, while in Generation III to V, it ranges from 30 to 70. From Generation VI onward, Hidden Power's base power is always 60.


==Type==
The type of Hidden Power can be checked in certain locations in the games by talking to certain NPCs. These NPCs will refuse to tell the player the Hidden Power type of a Pokémon unless it can learn the move via [[level]] up or [[TM]] (even if it knows Hidden Power at the time).<!--they will not tell the Hidden Power type of a Smeargle that knows Hidden Power-->
Let us consider an example Pokémon, like Pikachu with this set of IVs:
*In {{game|Platinum}}, in [[Veilstone Game Corner]]'s prize house
*In {{game|HeartGold and SoulSilver|s}}, in the [[Celadon Game Corner]]
*In {{game|Black and White|s}}, in [[Mistralton City]]'s [[Pokémon Center]]
*In {{B2W2}}, the [[Pokémon World Tournament|PWT]]
*In [[Pokémon X and Y]], in the house to the right of the Boutique in [[Anistar City]]
*In [[Pokémon Omega Ruby and Alpha Sapphire]], in the second northern house from the west in [[Fortree City]]
*In [[Pokémon Sun and Moon|Pokémon Sun, Moon]], {{pkmn|Ultra Sun and Ultra Moon}} in the [[Pokémon Nursery]] on [[Paniola Ranch]]


{{Hidden Power calculation/IV|30|31|31|31|30|31}}
There is no in-game way to determine Hidden Power's [[power]] directly in games where it is not fixed.
 
==Generation II==
===Type===
Consider an example Pokémon, like Shellder with this set of IVs:
 
{{Hidden Power calculation/II|12|10|10|13|8|090}}
 
The type is determined by taking the two {{wp|least significant bit}}s of the Attack and Defense IVs, then {{wp|Concatenation|concatenating}} these two values in that order.
 
Mathematically, this is the equivalent of <math>HP_{type} = 4 \times a \bmod 4 + b \bmod 4</math>, where ''a'' represents the Attack IV and ''b'' represents the Defense IV.
 
The resulting number will correspond to a type as marked below.
 
{| class="roundy" style="text-align: center; color: #FFF; background: #{{bulba color}}; border: 3px solid #{{bulba color light}};"
! style="color: #000; background: #{{bulba color light}}; {{roundytl|5px}}" | Number
! style="color: #000; background: #{{bulba color light}}; {{roundytr|5px}}" | Type
|- style="background: #{{Fighting color}}"
| 0
| {{typecolor|Fighting}}
|- style="background: #{{Flying color}}"
| 1
| {{typecolor|Flying}}
|- style="background: #{{poison color}}"
| 2
| {{typecolor|Poison}}
|- style="background: #{{Ground color}}"
| 3
| {{typecolor|Ground}}
|- style="background: #{{Rock color}}"
| 4
| {{typecolor|Rock}}
|- style="background: #{{Bug color}}"
| 5
| {{typecolor|Bug}}
|- style="background: #{{Ghost color}}"
| 6
| {{typecolor|Ghost}}
|- style="background: #{{Steel color}}"
| 7
| {{typecolor|Steel}}
|- style="background: #{{Fire color}}"
| 8
| {{typecolor|Fire}}
|- style="background: #{{Water color}}"
| 9
| {{typecolor|Water}}
|- style="background: #{{Grass color}}"
| 10
| {{typecolor|Grass}}
|- style="background: #{{Electric color}}"
| 11
| {{typecolor|Electric}}
|- style="background: #{{Psychic color}}"
| 12
| {{typecolor|Psychic}}
|- style="background: #{{Ice color}}"
| 13
| {{typecolor|Ice}}
|- style="background: #{{Dragon color}}"
| 14
| {{typecolor|Dragon}}
|-
| style="background: #{{Dark color}}; {{roundybl|5px}}" | 15
| style="background: #{{Dark color}}; {{roundybr|5px}}" | {{typecolor|Dark}}
|}
 
This example results in:
 
<math>
\begin{align}
HP_{type} & = 4 \times 10 \bmod 4 + 10 \bmod 4 \\
& = 4 \times 2 + 2 \\
& = 8 + 2 \\
& = 10
\end{align}
</math>
 
Since this value is equal to 10, per the table above, this means that the Shellder has a {{type|Grass}} {{m|Hidden Power}}.
 
===Power===
The [[power]] of the Hidden Power is calculated using the following formula:
 
<math display="block">HP_{power} = \bigg\lfloor \frac{5 \times (v + 2w + 4x + 8y) + Z}{2} + 31\bigg\rfloor</math>
 
* The variables ''v'' through ''y'' (the "damage bits") represent the {{wp|most significant bit}} of each IV. If a variable is less than eight, this bit is 0; otherwise, it is 1.
:* ''v'' depends on the Special IV.
:* ''w'' depends on the Speed IV.
:* ''x'' depends on the Defense IV.
:* ''y'' depends on the Attack IV.
* ''Z'' is equal to the Special IV mod 4 (its remainder when divided by 4).
 
Hidden Power's base power is therefore a number ranging from 31 to 70, inclusively.
 
The result of this example is:
 
{{Hidden Power calculation/II|12<br>''N/A''|10<br>''1''|10<br>''1''|13<br>''1''|8<br>''1''|090}}
 
<math>
\begin{align}
HP_{power} & = \bigg\lfloor \frac{5 \times (1 + 2 \cdot 1 + 4 \cdot 1 + 8 \cdot 1) + 0}{2}\bigg\rfloor + 31 \\
& = \bigg\lfloor \frac{5 \times (1 + 2 + 4 + 8)}{2}\bigg\rfloor + 31 \\
& = \bigg\lfloor \frac{5 \times 15}{2}\bigg\rfloor + 31 \\
& = \bigg\lfloor \frac{75}{2}\bigg\rfloor + 31 \\
& = \lfloor 37.5 \rfloor + 31 \\
& = 37 + 31 \\
& = 68
\end{align}
</math>
 
Which means that the Shellder's Hidden Power's power is '''68'''.
 
{{Hidden Power calculation/II|12|10|10|13|8|090}}
{| class="roundy" style="width: 650px; border: 2px solid #{{Grass color light}}"
|- style="text-align: center; color: #FFF"
| style="width: 33%; background: #{{Grass color}}; {{roundyleft|10px}}" | {{mcolor|Hidden Power|FFF}}:
| style="background: #{{Grass color}}" | Type:<br>'''{{tcolor|Grass|FFF}}'''
| style="background: #{{Grass color}}; {{roundyright|10px}}" | Power:<br>'''68'''
|}
 
=== Remarks ===
* Because {{Shiny|Shininess}} is also determined by IVs, Shiny Pokémon can only have a Grass-type or Dragon-type Hidden Power with a power of 49 or 69.
* Because gender is also determined by the Attack IV, female Pokémon of {{cat|Pokémon with a gender ratio of seven males to one female|species with a seven male to one female ratio}} can only have a physical Hidden Power.
 
==Generation III onward==
===Type===
Consider an Unown with this set of IVs:
 
{{Hidden Power calculation/IV|25|2|12|17|5|8|0201MS.png{{!}}75px}}


Hidden Power's type of a Pokémon with given IVs is represented by a number, calculated with this formula:
Hidden Power's type of a Pokémon with given IVs is represented by a number, calculated with this formula:
:[[Image:HPcalc1.png]]
<math display="block">HP_{type} = \left\lfloor \frac{(a + 2b + 4c + 8d + 16e + 32f) \times 15}{63}\right\rfloor</math>


'''HP<sub>type</sub>'''=<font color="#CC0000">'''Floor'''<big><big>[</big></big></font><font color="#0000FF"><big>'''('''</big></font>a+2*b+4*c+8*d+16*e+32*f<font color="#0000FF"><big>''')'''</big></font>*15/63<font color="#CC0000"><big><big>]</big></big></font>
where ''a'', ''b'', ''c'', ''d'', ''e'', ''f'' (the "type bits") are the {{wp|least significant bit}} of their respective IVs. If a number is odd, its least significant bit is 1; otherwise (if the number is even), it is 0.


where ''a,b,c,d,e,f'' are calculated in this way:
* ''a'' depends on the HP IV.
* ''b'' and ''c'' depend on the Attack and Defense IVs respectively.
* ''d'' depends on the Speed IV.
* ''e'' and ''f'' depend on the Special Attack and Special Defense IVs respectively.


* a=1 if the Individual Value of HP is [[wp:Even_and_odd_numbers|odd]]. If not, a=0
The sum inside the formula may range from 0 (when all IVs are even) to 63 (when all IVs are odd), inclusive. This sum is equivalent to constructing the {{wp|binary number}} (''fedcba'')<sub>2</sub>.
* b=1 if the Individual Value of Attack is odd. If not, b=0
* c=1 if the Individual Value of Defense is odd. If not, c=0
* d=1 if the Individual Value of Speed is odd. If not, d=0
* e=1 if the Individual Value of Special Attack is odd.  If not, e=0
* f=1 if the Individual Value of Special Defense is odd. If not, f=0


Which simply means that every element of the sum in the brace is the [[wp:Remainder|remainder]] of division of corresponding IV and 2, multiplied by appropriate power of 2 (2<sup>0</sup> in case of ''a'' and 2<sup>5</sup> in case of ''f''). The sum may range from 0 (when all IVs are even) to 63 (when all IVs are odd), inclusively. It is worth mentioning that the computed sum may be easily calculated by putting its variables ''a,b,c,d,e,f'' together in reverse order and interpreting this as a number in the [[wp:Binary_numeral_system|binary system]], which then needs to be reverted to [[wp:Decimal|decimal system]]:
The sum is then multiplied by 15 and divided by 63. This ensures that the number representing the type ranges from 0 to 15, inclusive. The [[wp:Floor function|floor]] of this value is taken, meaning that if the result is not an {{wp|integer}}, it will be rounded down to the nearest integer less than it.


''fedcba<sub>(2)</sub>'' = 32''f''+16''e''+8''d''+4''c''+2''b''+''a'' <sub>(10)</sub>
The resulting number will correspond to a type as marked below.


The summed value is then multiplied by 15 and divided by 63, to be sure that the number representing Hidden Power Type will range form 0 to 15, inclusively (16 values in total). The calculated number is then [[wp:Floor_function|rounded down (''floor[]'')]], which simply means that only integral part of the calculated number is considered. 
{| class="roundy" style="text-align: center; color: #FFF; background: #{{bulba color}}; border: 3px solid #{{bulba color light}}; {{roundy|10px}}"
 
! style="color: #000; background: #{{bulba color light}}; {{roundytl|5px}}" | Number
The resulting number will correspond to a type; utilize the table below.
! style="color: #000; background: #{{bulba color light}}; {{roundytr|5px}}" | Type
{|border="1" style="border: 1px solid black; border-collapse: collapse; " cellspacing="1" cellpadding="3"  
|- style="background: #{{Fighting color}}"
!Number
| 0
!Type
| {{typecolor|Fighting}}
|-style="background-color: #{{Fighting color}}"  
|- style="background: #{{Flying color}}"
| <span style=color:#fff>0</span>
| [[Fighting (type)|<span style=color:#fff>Fighting</span>]]
|-style="background-color: #{{Flying color}}"  
| 1
| 1
| Flying
| {{typecolor|Flying}}
|-style="background-color: #{{poison color}}"  
|- style="background: #{{poison color}}"
| 2
| 2
| Poison
| {{typecolor|Poison}}
|-style="background-color: #{{Ground color}}"  
|- style="background: #{{Ground color}}"
| 3
| 3
| Ground
| {{typecolor|Ground}}
|-style="background-color: #{{Rock color}}"  
|- style="background: #{{Rock color}}"
| 4
| 4
| Rock
| {{typecolor|Rock}}
|-style="background-color: #{{Bug color}}"  
|- style="background: #{{Bug color}}"
| 5
| 5
| Bug
| {{typecolor|Bug}}
|-style="background-color: #{{Ghost color}}"  
|- style="background: #{{Ghost color}}"
| 6
| 6
| Ghost
| {{typecolor|Ghost}}
|-style="background-color: #{{Steel color}}"  
|- style="background: #{{Steel color}}"
| 7
| 7
| Steel
| {{typecolor|Steel}}
|-style="background-color: #{{Fire color}}"  
|- style="background: #{{Fire color}}"
| 8
| 8
| Fire
| {{typecolor|Fire}}
|-style="background-color: #{{Water color}}"  
|- style="background: #{{Water color}}"
| 9
| 9
| Water
| {{typecolor|Water}}
|-style="background-color: #{{Grass color}}"  
|- style="background: #{{Grass color}}"
| 10
| 10
| Grass
| {{typecolor|Grass}}
|-style="background-color: #{{Electric color}}"  
|- style="background: #{{Electric color}}"
| 11
| 11
| Electric
| {{typecolor|Electric}}
|-style="background-color: #{{Psychic color}}"  
|- style="background: #{{Psychic color}}"
| 12
| 12
| Psychic
| {{typecolor|Psychic}}
|-style="background-color: #{{Ice color}}"  
|- style="background: #{{Ice color}}"
| 13
| 13
| Ice
| {{typecolor|Ice}}
|-style="background-color: #{{Dragon color}}"  
|- style="background: #{{Dragon color}}"
| 14
| 14
| Dragon
| {{typecolor|Dragon}}
|-style="background-color: #{{Dark color}}"  
|-
| 15
| style="background: #{{Dark color}}; {{roundybl|5px}}" | 15
| Dark
| style="background: #{{Dark color}}; {{roundybr|5px}}" | {{typecolor|Dark}}
|}
|}


In our example, we get:
The result of this example is:
{{Hidden Power calculation/IV|30<br>''0''|31<br>''1''|31<br>''1''|31<br>''1''|30<br>''0''|31<br>''1''}}
HP Type = Floor[('''0 + 2 + 4 + 8 + 0 + 32''')*15/63] = Floor['''46*15/63'''] = '''Floor[10.952]''' = '''10''', which means that our Pikachu has a [[Grass (type)|grass-type]] [[Hidden Power]].


==Damage==
{{Hidden Power calculation/IV|25<br>''1''|2<br>''0''|12<br>''0''|17<br>''1''|5<br>''1''|8<br>''0''|0201MS.png{{!}}75px}}


Damage of the Hidden Power is calculated in a very same manner like its type, using the following formula:
<math>
\begin{align}
HP_{type} & = \left\lfloor \frac{(1 \cdot 1 + 2 \cdot 0 + 4 \cdot 0 + 8 \cdot 1 + 16 \cdot 1 + 32 \cdot 0) \times 15}{63}\right\rfloor \\
& = \left\lfloor \frac{(1 + 0 + 0 + 8 + 16 + 0) \times 15}{63}\right\rfloor \\
& = \left\lfloor \frac{25 \times 15}{63}\right\rfloor \\
& = \left\lfloor \frac{375}{63}\right\rfloor & \bigg(\frac{690}{63} \approx 5.952\bigg)\\
& = 5
\end{align}
</math>


:[[Image:HPcalc2.png]]
Which means that this Unown has a {{type|Bug}} {{m|Hidden Power}}.


'''HP<sub>Power</sub>''' = <font color="#CC0000">'''Floor'''<big><big>[</big></big></font><font color="#0000FF"><big>'''('''</big></font><font color="#009900">'''('''</font>u+2*v+4*w+8*x+16*y+32*z<font color="#009900">''')'''</font>*40/63<font color="#0000FF"><big>''')'''</big></font>+30<font color="#CC0000"><big><big>]</big></big></font>
===Power===
The power of the Hidden Power is calculated in a manner very similar to that of its type, using the following formula:
<math display="block">HP_{power} = \left\lfloor \frac{(u + 2v + 4w + 8x + 16y + 32z) \times 40}{63}\right\rfloor + 30</math>


* u=1 if the Individual Value of HP divided by 4 has a remainder of 2 or 3. If not, u=0.
* The variables ''u'' through ''z'' (the "power bits") represent the second least significant bit of each IV. If a variable has a remainder of 2 or 3 when divided by 4, this bit is 1; otherwise, the bit is 0.
* v=1 if the Individual Value of Attack divided by 4 has a remainder of 2 or 3. If not, v=0.
:* ''u'' depends on the HP stat.
* w=1 if the Individual Value of Defense divided by 4 has a remainder of 2 or 3. If not, w=0.
:* ''v'' and ''w'' depend on the Attack and Defense stats respectively.
* x=1 if the Individual Value of Speed divided by 4 has a remainder of 2 or 3. If not, x=0.
:* ''x'' depends on the Speed stat.
* y=1 if the Individual Value of Special Attack divided by 4 has a remainder of 2 or 3. If not, y=0.
:* ''y'' and ''z'' depend on the Special Attack and Special Defense stats respectively.
* z=1 if the Individual Value of Special Defense divided by 4 has a remainder of 2 or 3. If not, z=0.


Like before, the sum may range from 0 to 63, inclusively. The calculated number is then multiplied by 40 and divided by 63 to make sure that the fraction will not exceed 40. Then, the number is increased by 30 and rounded down, making Hidden Power's power a number ranging from 30 to 70, inclusively.  
Like before, the sum may range from 0 to 63, inclusively. The calculated number is then multiplied by 40 and divided by 63 to make sure that the fraction will not exceed 40. Then, the number is increased by 30 and rounded down, making Hidden Power's power a number ranging from 30 to 70, inclusively.  


In our example, we get:
The result of this example is:
{{Hidden Power calculation/IV|30<br>''1''|31<br>''1''|31<br>''1''|31<br>''1''|30<br>''1''|31<br>''1''}}


{{Hidden Power calculation/IV|25<br>''0''|2<br>''1''|12<br>''0''|17<br>''0''|5<br>''0''|8<br>''0''|0201MS.png{{!}}75px}}


HP Type = Floor[((1 + 2 + 4 + 8 + 16 + 32)*40/63)+30] = Floor [(63*40/63)+30] = Floor[70] = '''70''', which means that our Pikachu's Hidden Power's power is '''70'''
<math>
\begin{align}
HP_{power} &= \left\lfloor \frac{(1 \cdot 0 + 2 \cdot 1 + 4 \cdot 0 + 8 \cdot 0 + 16 \cdot 0 + 32 \cdot 0) \times 40}{63}\right\rfloor + 30 \\
&= \left\lfloor \frac{(0 + 2 + 0 + 0 + 0 + 0) \times 40}{63}\right\rfloor + 30 \\
&= \left\lfloor \frac{2 \times 40}{63}\right\rfloor + 30 \\
&= \left\lfloor \frac{80}{63}\right\rfloor + 30 \\
&= \lfloor 1 \rfloor + 30 \\
&= 1 + 30 \\
&= 31 \\
\end{align}
</math>


{{Hidden Power calculation/IV|30|31|31|31|30|31}}
Which means that this Unown's Hidden Power's power is '''31'''.
{{Hidden Power calculation/Type|Grass|70|000|564}}


==Number of possible Hidden Powers==
{{Hidden Power calculation/IV|25|2|12|17|5|8|0201MS.png{{!}}75px}}<br>
As there are 6 IVs, ranging from 0 to 31 (32 in total), the number of different possible Hidden Powers should be 32<sup>6</sup>=2<sup>30</sup>, which is more than billion possibilities. But let us consider two Pokémon with one different IV:
{| class="roundy" style="width: 650px; border: 2px solid #{{Bug color light}}"
|- style="text-align: center"
| style="width: 33%; background: #{{Bug color}}; {{roundyleft|10px}}" | {{mcolor|Hidden Power|000}}:
| style="background: #{{Bug color}}" | Type:<br>'''{{tcolor|Bug|000}}'''
| style="background: #{{Bug color}}; {{roundyright|10px}}" | Power:<br>'''31'''
|}


{{Hidden Power calculation/IV|'''30'''|31|31|31|30|31|Ani025MS.gif}}
===Number of possible Hidden Powers===
As there are 6 IVs, ranging from 0 to 31 (32 in total), the number of different possible Hidden Powers should be 32<sup>6</sup>=2<sup>30</sup>, which is more than one billion possibilities. For two Unown with one different IV:
 
{{Hidden Power calculation/IV|'''30'''|31|31|31|30|31|0201MS.png{{!}}75px}}


and
and


{{Hidden Power calculation/IV|'''26'''|31|31|31|30|31|Ani025MS.gif}}
{{Hidden Power calculation/IV|'''26'''|31|31|31|30|31|0201MS.png{{!}}75px}}


As we see, both 26 and 30 are divisible by 2 and give the remainder of 2 when divided by 4. So, in both cases the algorithms will interpret the IVs of those Pokémon in the same way, returning Grass-type Hidden Power with 70 power. It means that for the mentioned algorithms an IV of 30 is treated in the same way like IVs of 2,6,10,14,18,22 and 26 (8 in total).  
Both 26 and 30 are divisible by 2 and give the remainder of 2 when divided by 4. In both cases, the algorithms will interpret the IVs of those Pokémon in the same way, returning Grass-type Hidden Power with 70 power. It means that for the mentioned algorithms an IV of 30 is treated in the same way like IVs of 2,6,10,14,18,22 and 26 (8 in total).  


In fact, there are only four possibilities of IV:
In fact, there are only four essentially different types of IV when calculating Hidden Power:


{|border="0" style="border-collapse: collapse; " cellspacing="1" cellpadding="3"  
{|border="0" style="border-collapse: collapse;" cellspacing="1" cellpadding="3"  
|-
|-
|1
|1.
|IV that '''is not''' even and '''does not give''' the remainder of 2 or 3 while dividing by 4:
|IV that gives a remainder of 0 when divided by 4—has damage bit 0 and type bit 0:
|0, 4, 8, 12, 16, 20, 24, 28
|-
|2.
|IV that gives a remainder of 1 when divided by 4—has damage bit 0 and type bit 1:
|1, 5, 9, 13, 17, 21, 25, 29
|1, 5, 9, 13, 17, 21, 25, 29
|-
|-
|2
|3.
|IV that '''is''' even and '''gives''' the remainder of 2 or 3 while dividing by 4:
|IV that gives a remainder of 2 when divided by 4—has damage bit 1 and type bit 0:
|2, 6, 10, 14, 18, 22, 26, 30
|2, 6, 10, 14, 18, 22, 26, 30
|-
|-
|3
|4.
|IV that '''is not''' even and '''gives''' the remainder of 2 or 3 while dividing by 4:
|IV that gives a remainder of 3 when divided by 4—has damage bit 1 and type bit 1:
|3, 7, 11, 15, 19, 23, 27, 31
|3, 7, 11, 15, 19, 23, 27, 31
|-
|4
|IV that '''is''' even and '''does not give''' the remainder of 2 or 3 while dividing by 4:
|0, 4, 8, 12, 16, 20, 24, 28
|}
|}


In other words: only four IVs that give different remainders when divided by four would cover all possible Hidden Power types and powers.
In other words: only four IVs that give different remainders when divided by four would cover all possible Hidden Power types and powers.


If so, the number of possible Hidden Powers should be 4<sup>6</sup>=2<sup>12</sup>=64*64=4096. This number, however is again far too large, as the real number of possible variations of Hidden power is simply 16*41=656, as Hidden Power exists in 16 types and has 41 different powers. The huge difference between 656 and 4096 is explained by the function ''floor[]'', which reduces theoretically different numbers (for example 10.952 and 10,476) to the same number (in this case 10).
If so, the number of possible Hidden Powers should be 4<sup>6</sup> = 4096. This number is again far too large, as the real number of possible variations of Hidden Power is simply 16 × 41=656, as Hidden Power exists in 16 types and has 41 different powers. The significant difference between 656 and 4096 is explained by the fact that the floor function results in distinct values (e.g. 10.952 and 10.476) being mapped to the same integer result (in this case 10).
 
===Percentage distribution of different variations of Hidden Power===
Due to the fact that both Hidden Power's type and its power are the products of rounding down, chances of getting a Pokémon with certain Hidden Power are not equal, and are different for every Hidden Power's type and damage value.  


==Percentage distribution of different variations of Hidden Power==
As previously stated, the number of theoretically different Hidden Powers is 4096, which is the result of multiplying theoretical values of possible types (64) and powers (also 64). It means that every of 64 "types" comes into 64 "powers". After rounding down, the number of 64 "types" is reduced to 16 and the number of 64 "powers" to 41.
Due to the fact that both Hidden Power's type and its power are the products of rounding down, chances of getting a Pokémon with  certain Hidden Power are not equal, as one may thought, and are different for every Hidden Power's type and damage value.  


As it was stated before, the number of theoretically different Hidden Powers is 4096, which is the result of multiplying theoretical values of possible types (64) and powers (also 64). It means that every of 64 "types" comes into 64 "powers". After rounding down, however, the number of 64 "types" is reduced to 16 and the number of 64 "powers" to 41. 
<div style="display: flex; justify-content: center; gap: 5px">
{| cellspacing="40"
<div>
|- valign="top"
{| class="roundy" style="flex: 0; text-align: center; color: #FFF; background: #{{bulba color}}; border: 3px solid #{{bulba color light}};"
|
|+ style="color: #000" | '''Percentage distribution of Hidden Power's type'''
{|border="1" style="border: 1px solid black; border-collapse: collapse; " cellspacing="1" cellpadding="3"
|-
|+ '''Percentage distribution of Hidden Power's type'''
! style="color: #000; background: #{{bulba color light}}; {{roundytl|5px}}" | Number
!Number
! style="color: #000; background: #{{bulba color light}}" | Type
!Type
! style="color: #000; background: #{{bulba color light}}" | Qty
!Qty
! style="color: #000; background: #{{bulba color light}}; {{roundytr|5px}}" | %
!%
|- style="background: #{{Fighting color}}"
|-style="background-color: #{{Fighting color}}"  
| 0
| '''<span style=color:#fff>0</span>'''
| Fighting
| '''[[Fighting (type)|<span style=color:#fff>Fighting</span>]]'''
| 320
| '''<span style=color:#fff>320</span>'''
| 7.8125%
| '''<span style=color:#fff>7.8125%</span>'''
|- style="background: #{{Flying color}}"
|-style="background-color: #{{Flying color}}"  
| 1
| 1
| Flying
| Flying
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{poison color}}"  
|- style="background: #{{poison color}}"
| 2
| 2
| Poison
| Poison
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Ground color}}"  
|- style="background: #{{Ground color}}"
| 3
| 3
| Ground
| Ground
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Rock color}}"  
|- style="background: #{{Rock color}}"
| 4
| 4
| Rock
| Rock
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Bug color}}"  
|- style="background: #{{Bug color}}"
| '''5'''
| 5
| '''Bug'''
| Bug
| '''320'''
| 320
| '''7.8125%'''
| 7.8125%
|-style="background-color: #{{Ghost color}}"  
|- style="background: #{{Ghost color}}"
| 6
| 6
| Ghost
| Ghost
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Steel color}}"  
|- style="background: #{{Steel color}}"
| 7
| 7
| Steel
| Steel
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Fire color}}"  
|- style="background: #{{Fire color}}"
| 8
| 8
| Fire
| Fire
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Water color}}"  
|- style="background: #{{Water color}}"
| 9
| 9
| Water
| Water
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Grass color}}"  
|- style="background: #{{Grass color}}"
| '''10'''
| 10
| '''Grass'''
| Grass
| '''320'''
| 320
| '''7.8125%'''
| 7.8125%
|-style="background-color: #{{Electric color}}"  
|- style="background: #{{Electric color}}"
| 11
| 11
| Electric
| Electric
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Psychic color}}"  
|- style="background: #{{Psychic color}}"
| 12
| 12
| Psychic
| Psychic
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Ice color}}"  
|- style="background: #{{Ice color}}"
| 13
| 13
| Ice
| Ice
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Dragon color}}"  
|- style="background: #{{Dragon color}}"
| 14
| 14
| Dragon
| Dragon
| 256
| 256
| 6.25%
| 6.25%
|-style="background-color: #{{Dark color}}"
| 15
| Dark
| 64
| 1.5625%
|-
|-
|
| style="background: #{{Dark color}}; {{roundybl|5px}}" | 15
|
| style="background: #{{Dark color}}" | Dark
| 4096
| style="background: #{{Dark color}}" | 64
| 100%
| style="background: #{{Dark color}}; {{roundybr|5px}}" | 1.5625%
|}
|}
|
</div>
{|border="1" style="border: 1px solid black; border-collapse: collapse; " cellspacing="1" cellpadding="3"  
 
|+ '''Percentage distribution of Hidden Power's powers'''
<div>
!Powers
{| class="roundtable" style="flex: 0; background: #{{bulba color}}; border: 3px solid #{{bulba color light}};"
!Qty
|+ '''Percentage distribution of Hidden Power's powers<br>(prior to Generation VI)'''
!%
|-
|-
|30, 31, 33, 35, 36,<br>38, 40, 42, 43, 45,<br>47, 49, 50, 52, 54,<br>56, 57, 59, 61, 63,<br>64, 66, 68
! style="background: #{{bulba color light}}; width: 10em" | Powers
|23 x 128
! style="background: #{{bulba color light}}" | Qty
|3.125%
! style="background: #{{bulba color light}}" | %
|-
|-
|32, 34, 37, 39, 41,<br>44, 46, 48, 51, 53,<br>55, 58, 60, 62, 65<br>67, 69, 70
| 30, 31, 33, 35, 36, 38, 40, 42, 43, 45, 47, 49, 50, 52, 54, 56, 57, 59, 61, 63, 64, 66, 68
|18 x 64
| 128 each<br>(×23 distinct values)
|1.5625%
| 3.125% each<br>(×23 distinct values)
|-
|-
|
| 32, 34, 37, 39, 41, 44, 46, 48, 51, 53, 55, 58, 60, 62, 65, 67, 69, 70
| 4096
| 64 each<br>(×18 distinct values)
| 100%
| 1.5625% each<br>(×18 distinct values)
|}
|}
|}
</div>
</div>


==External links==
==External links==
Many Pokémon related sites prepared web-based calculators, which allows to compute Hidden Power of a Pokémon with given IVs:
Many Pokémon related sites host web-based calculators that can compute the Hidden Power of a Pokémon with given IVs:
* [http://www.psypokes.com/dex/hp.php Psypoke's Hidden Power Calculator]
 
* [http://www.serebii.net/games/hidden-power.shtml Hidden Power explanation on Serebii.net]
* [http://www.psypokes.com/gsc/dvguide.php Psypoke's Hidden Power calculator (Generation II)]
* [http://www.legendarypokemon.net/javacalc.html Legendary Pokémon calculator]   
* [http://www.psypokes.com/dex/hp.php Psypoke's Hidden Power calculator (Generation III and on)]
* [http://www.legendarypokemon.net/javacalc.html Legendary Pokémon Hidden Power calculator (Generation III and on)]   
 
{{Project Games notice|game mechanic}}


[[Category:Subpages]]


[[Category: Game mechanics]]
[[de:Kraftreserve/Berechnung]]
[[es:Cálculo del poder oculto]]
[[it:Introforza/Determinazione e calcolo]]
[[ja:めざめるパワー計算法]]
[[zh:觉醒力量(招式)/计算]]

Latest revision as of 16:16, 4 May 2024

Main article: Hidden Power (move)

In the Pokémon games, Hidden Power is a Normal-type move when the type is displayed, such as in battle and on status screens. However, the actual type of Hidden Power is determined by the Pokémon's individual values, and through calculation, can be set as one of other natural types. In Generations II to V, Hidden Power's base power is also determined by the Pokémon's individual values; in Generation II, it ranges from 31 to 70, while in Generation III to V, it ranges from 30 to 70. From Generation VI onward, Hidden Power's base power is always 60.

The type of Hidden Power can be checked in certain locations in the games by talking to certain NPCs. These NPCs will refuse to tell the player the Hidden Power type of a Pokémon unless it can learn the move via level up or TM (even if it knows Hidden Power at the time).

There is no in-game way to determine Hidden Power's power directly in games where it is not fixed.

Generation II

Type

Consider an example Pokémon, like Shellder with this set of IVs:

Spr 2c 090.png Hit Points Attack Defense Speed Special
12 10 10 13 8

The type is determined by taking the two least significant bits of the Attack and Defense IVs, then concatenating these two values in that order.

Mathematically, this is the equivalent of , where a represents the Attack IV and b represents the Defense IV.

The resulting number will correspond to a type as marked below.

Number Type
0  Fighting 
1  Flying 
2  Poison 
3  Ground 
4  Rock 
5  Bug 
6  Ghost 
7  Steel 
8  Fire 
9  Water 
10  Grass 
11  Electric 
12  Psychic 
13  Ice 
14  Dragon 
15  Dark 

This example results in:

Since this value is equal to 10, per the table above, this means that the Shellder has a Grass-type Hidden Power.

Power

The power of the Hidden Power is calculated using the following formula:

  • The variables v through y (the "damage bits") represent the most significant bit of each IV. If a variable is less than eight, this bit is 0; otherwise, it is 1.
  • v depends on the Special IV.
  • w depends on the Speed IV.
  • x depends on the Defense IV.
  • y depends on the Attack IV.
  • Z is equal to the Special IV mod 4 (its remainder when divided by 4).

Hidden Power's base power is therefore a number ranging from 31 to 70, inclusively.

The result of this example is:

Spr 2c 090.png Hit Points Attack Defense Speed Special
12
N/A
10
1
10
1
13
1
8
1

Which means that the Shellder's Hidden Power's power is 68.

Spr 2c 090.png Hit Points Attack Defense Speed Special
12 10 10 13 8
Hidden Power: Type:
Grass
Power:
68

Remarks

  • Because Shininess is also determined by IVs, Shiny Pokémon can only have a Grass-type or Dragon-type Hidden Power with a power of 49 or 69.
  • Because gender is also determined by the Attack IV, female Pokémon of species with a seven male to one female ratio can only have a physical Hidden Power.

Generation III onward

Type

Consider an Unown with this set of IVs:

0201MS.png Hit Points Attack Defense Speed Sp. Attack Sp. Defense
25 2 12 17 5 8

Hidden Power's type of a Pokémon with given IVs is represented by a number, calculated with this formula:

where a, b, c, d, e, f (the "type bits") are the least significant bit of their respective IVs. If a number is odd, its least significant bit is 1; otherwise (if the number is even), it is 0.

  • a depends on the HP IV.
  • b and c depend on the Attack and Defense IVs respectively.
  • d depends on the Speed IV.
  • e and f depend on the Special Attack and Special Defense IVs respectively.

The sum inside the formula may range from 0 (when all IVs are even) to 63 (when all IVs are odd), inclusive. This sum is equivalent to constructing the binary number (fedcba)2.

The sum is then multiplied by 15 and divided by 63. This ensures that the number representing the type ranges from 0 to 15, inclusive. The floor of this value is taken, meaning that if the result is not an integer, it will be rounded down to the nearest integer less than it.

The resulting number will correspond to a type as marked below.

Number Type
0  Fighting 
1  Flying 
2  Poison 
3  Ground 
4  Rock 
5  Bug 
6  Ghost 
7  Steel 
8  Fire 
9  Water 
10  Grass 
11  Electric 
12  Psychic 
13  Ice 
14  Dragon 
15  Dark 

The result of this example is:

0201MS.png Hit Points Attack Defense Speed Sp. Attack Sp. Defense
25
1
2
0
12
0
17
1
5
1
8
0

Which means that this Unown has a Bug-type Hidden Power.

Power

The power of the Hidden Power is calculated in a manner very similar to that of its type, using the following formula:

  • The variables u through z (the "power bits") represent the second least significant bit of each IV. If a variable has a remainder of 2 or 3 when divided by 4, this bit is 1; otherwise, the bit is 0.
  • u depends on the HP stat.
  • v and w depend on the Attack and Defense stats respectively.
  • x depends on the Speed stat.
  • y and z depend on the Special Attack and Special Defense stats respectively.

Like before, the sum may range from 0 to 63, inclusively. The calculated number is then multiplied by 40 and divided by 63 to make sure that the fraction will not exceed 40. Then, the number is increased by 30 and rounded down, making Hidden Power's power a number ranging from 30 to 70, inclusively.

The result of this example is:

0201MS.png Hit Points Attack Defense Speed Sp. Attack Sp. Defense
25
0
2
1
12
0
17
0
5
0
8
0

Which means that this Unown's Hidden Power's power is 31.

0201MS.png Hit Points Attack Defense Speed Sp. Attack Sp. Defense
25 2 12 17 5 8


Hidden Power: Type:
Bug
Power:
31

Number of possible Hidden Powers

As there are 6 IVs, ranging from 0 to 31 (32 in total), the number of different possible Hidden Powers should be 326=230, which is more than one billion possibilities. For two Unown with one different IV:

0201MS.png Hit Points Attack Defense Speed Sp. Attack Sp. Defense
30 31 31 31 30 31

and

0201MS.png Hit Points Attack Defense Speed Sp. Attack Sp. Defense
26 31 31 31 30 31

Both 26 and 30 are divisible by 2 and give the remainder of 2 when divided by 4. In both cases, the algorithms will interpret the IVs of those Pokémon in the same way, returning Grass-type Hidden Power with 70 power. It means that for the mentioned algorithms an IV of 30 is treated in the same way like IVs of 2,6,10,14,18,22 and 26 (8 in total).

In fact, there are only four essentially different types of IV when calculating Hidden Power:

1. IV that gives a remainder of 0 when divided by 4—has damage bit 0 and type bit 0: 0, 4, 8, 12, 16, 20, 24, 28
2. IV that gives a remainder of 1 when divided by 4—has damage bit 0 and type bit 1: 1, 5, 9, 13, 17, 21, 25, 29
3. IV that gives a remainder of 2 when divided by 4—has damage bit 1 and type bit 0: 2, 6, 10, 14, 18, 22, 26, 30
4. IV that gives a remainder of 3 when divided by 4—has damage bit 1 and type bit 1: 3, 7, 11, 15, 19, 23, 27, 31

In other words: only four IVs that give different remainders when divided by four would cover all possible Hidden Power types and powers.

If so, the number of possible Hidden Powers should be 46 = 4096. This number is again far too large, as the real number of possible variations of Hidden Power is simply 16 × 41=656, as Hidden Power exists in 16 types and has 41 different powers. The significant difference between 656 and 4096 is explained by the fact that the floor function results in distinct values (e.g. 10.952 and 10.476) being mapped to the same integer result (in this case 10).

Percentage distribution of different variations of Hidden Power

Due to the fact that both Hidden Power's type and its power are the products of rounding down, chances of getting a Pokémon with certain Hidden Power are not equal, and are different for every Hidden Power's type and damage value.

As previously stated, the number of theoretically different Hidden Powers is 4096, which is the result of multiplying theoretical values of possible types (64) and powers (also 64). It means that every of 64 "types" comes into 64 "powers". After rounding down, the number of 64 "types" is reduced to 16 and the number of 64 "powers" to 41.

Percentage distribution of Hidden Power's type
Number Type Qty %
0 Fighting 320 7.8125%
1 Flying 256 6.25%
2 Poison 256 6.25%
3 Ground 256 6.25%
4 Rock 256 6.25%
5 Bug 320 7.8125%
6 Ghost 256 6.25%
7 Steel 256 6.25%
8 Fire 256 6.25%
9 Water 256 6.25%
10 Grass 320 7.8125%
11 Electric 256 6.25%
12 Psychic 256 6.25%
13 Ice 256 6.25%
14 Dragon 256 6.25%
15 Dark 64 1.5625%
Percentage distribution of Hidden Power's powers
(prior to Generation VI)
Powers Qty %
30, 31, 33, 35, 36, 38, 40, 42, 43, 45, 47, 49, 50, 52, 54, 56, 57, 59, 61, 63, 64, 66, 68 128 each
(×23 distinct values)
3.125% each
(×23 distinct values)
32, 34, 37, 39, 41, 44, 46, 48, 51, 53, 55, 58, 60, 62, 65, 67, 69, 70 64 each
(×18 distinct values)
1.5625% each
(×18 distinct values)

External links

Many Pokémon related sites host web-based calculators that can compute the Hidden Power of a Pokémon with given IVs:

Project Games logo.png This game mechanic article is part of Project Games, a Bulbapedia project that aims to write comprehensive articles on the Pokémon games.