Difference between revisions of "Random Pokémon Pickup"
Jump to navigation
Jump to search
Jianmingyong (talk | contribs) (Created page with "Random Pokémon Pickup occur when you have a pokémon walking with the player. It is different from the Pokemon ability that pickup item. This mechanics is implemented as a fe...") |
Jianmingyong (talk | contribs) m |
||
| Line 14: | Line 14: | ||
|- | |- | ||
| | | | ||
{| width=" | {| width="100%" border=1 class="sortable" style="background-color:#ffffff; border: 1px solid #ddf; border-collapse:collapse; text-align:center;" | ||
|- style="background-color:#ddf;" | |- style="background-color:#ddf;" | ||
! data-sort-type="number" {{!}} [[Friendship]] | ! data-sort-type="number" {{!}} [[Friendship]] | ||
Revision as of 20:36, 23 October 2014
Random Pokémon Pickup occur when you have a pokémon walking with the player. It is different from the Pokemon ability that pickup item. This mechanics is implemented as a feature in the game.
This page contains a list of items that you can get while walking. Surfing and riding does not get you anything.
If (net.Pokemon3D.Game.Core.Random.Next(0, 270) < net.Pokemon3D.Game.Core.Player.GetWalkPokemon().Friendship) Then
How does this mechanics work?
Basically, when you start a new game have you noticed that you do not get item pickup often? This is normal as the algorithm for random pickup is relative to your Pokémon Friendship.
The lower the Pokémon Friendship, the lower the chance of getting random pickups.
|