Sphere: Difference between revisions

From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
(Breaking into sections, using Extension:Math, adding some placeholders for BDSP)
(→‎Burying spheres: Attempting to improve the clarity of this section: Renaming variables to meaningful names. | I had trouble understanding the previous text until I actually worked through the example calculations, so figured the working for them would be valuable.)
Line 21: Line 21:
==Burying spheres==
==Burying spheres==
In Pokémon Diamond, Pearl, and Platinum, the player can bury spheres to combine or grow them. This is not possible in Pokémon Brilliant Diamond and Shining Pearl.
In Pokémon Diamond, Pearl, and Platinum, the player can bury spheres to combine or grow them. This is not possible in Pokémon Brilliant Diamond and Shining Pearl.
A player can only bury 99 Spheres at a time; attempting to bury more causes the oldest buried Sphere to disappear. A Sphere Radar can be unlocked for a player's base, which can be used to help the player find the Spheres they have buried.


===Combining spheres===
===Combining spheres===
To get larger Spheres, they can be combined by burying more than one of the same color Sphere in the same spot. When combined, the size of the resulting Sphere is determined by the following formula:
To get larger Spheres, they can be combined by burying more than one of the same color Sphere in the same spot.
 
When combined, the size of the resulting Sphere is determined by the following formula:
 
<math>newsize = \max(size_n) + \left(\left\lfloor{size_1 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{size_2 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{size_3 \over 5}\right\rfloor + 1\right) \ldots</math>
 
If spheres are buried on top of a sphere that has already grown at least once since a sphere was buried there, the new size is instead determined by the following formula:
 
<math>newsize = size_{buried} + \max(size_n) + \left(\left\lfloor{size_1 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{size_2 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{size_3 \over 5}\right\rfloor + 1\right) \ldots</math>


<math>X + \left(\left\lfloor{a \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{b \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{c \over 5}\right\rfloor + 1\right) \ldots</math>
Where <math>size_{buried}</math> is the size of previously buried Sphere that has grown, <math>\max(size_n)</math> is the size of the largest Sphere buried (excluding any previously-buried grown Sphere), and <math>size_n</math> are the respective sizes of the buried spheres other than the largest Sphere and previously-buried grown Sphere. In the event of a tie for the largest size, one of the largest Spheres will be used as <math>size_n</math> while the others of the same size will be treated like any other size Sphere.


Unless the buried Sphere has grown at least once since a Sphere was added (or grown without a Sphere being added), in which case the formula is:
====Example====
Burying a Prism Sphere 15, a Prism Sphere 12, a Prism Sphere 7, and two Prism Sphere 1s produces a Prism Sphere 22.


<math>B + X + \left(\left\lfloor{a \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{b \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{c \over 5}\right\rfloor + 1\right) \ldots</math>
<math>
\begin{align}
newsize &= 15 + \left(\left\lfloor{12 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{7 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{1 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{1 \over 5}\right\rfloor + 1\right) \\
&= 15 + \left(\left\lfloor{2.4}\right\rfloor + 1\right) + \left(\left\lfloor{1.4}\right\rfloor + 1\right) + \left(\left\lfloor{0.2}\right\rfloor + 1\right) + \left(\left\lfloor{0.2}\right\rfloor + 1\right) \\
&= 15 + \left(2 + 1\right) + \left(1 + 1\right) + \left(0 + 1\right) + \left(0 + 1\right) \\
&= 15 + 3 + 2 + 1 + 1 \\
&= 22
\end{align}
</math>


Where B is the size of a grown buried Sphere, X is the size of the otherwise largest Sphere buried, and a, b, c, and so on are the sizes of the other Spheres. All non-integer values are rounded down before the adding.
Burying a Blue Sphere 15, Blue Sphere 3, Blue Sphere 22, on top of a Blue Sphere 3 that has grown by 2 (i.e. now a Blue Sphere 5) yields a Blue Sphere 32.


In the event of a tie for the largest size, the largest Sphere size is used both as X and one of the other lowercase variables. For instance, burying a Prism Sphere 15, a Prism Sphere 12, a Prism Sphere 7, and two Prism Sphere 1s produces a Prism Sphere 22.  Burying a Blue Sphere 15, Blue Sphere 3, Blue Sphere 22, on top of a Blue Sphere 3 that has grown by 2 yields a Blue Sphere 32.
<math>
\begin{align}
newsize &= (3 + 2) + 22 + \left(\left\lfloor{15 \over 5}\right\rfloor + 1\right) + \left(\left\lfloor{3 \over 5}\right\rfloor + 1\right) \\
&= 5 + 22 + \left(\left\lfloor{3}\right\rfloor + 1\right) + \left(\left\lfloor{0.6}\right\rfloor + 1\right) \\
&= 27 + \left(3 + 1\right) + \left(0 + 1\right) \\
&= 27 + 4 + 1 \\
&= 32
\end{align}
</math>


===Growing spheres===
===Growing spheres===
{{incomplete|section|needs=How fast do spheres grow?}}
{{incomplete|section|needs=How fast do spheres grow?}}
Buried Spheres can also naturally grow over time. Red, Green, and Blue Spheres grow faster than Pale and Prism Spheres. Regardless of what a player does, though, the maximum level for a Sphere is 99.  Additionally, only 99 Spheres can be buried at a time.  Attempting to bury more causes the oldest Sphere to disappear. A Sphere Radar can be unlocked for a player's base, which can be used to help the player find the Spheres they've buried.
Buried Spheres can also naturally grow over time. Red, Green, and Blue Spheres grow faster than Pale and Prism Spheres. Regardless of what a player does, though, the maximum level for a Sphere is 99.


==Flavor text==
==Flavor text==

Revision as of 15:12, 27 November 2021

050Diglett.png This article is incomplete.
Please feel free to edit this article to add missing information and complete it.
Reason: Brilliant Diamond and Shining Pearl info

Location of the Hikers who sell and buy Spheres from players

A Sphere (Japanese: タマ Sphere) are a special type of item that can be found and used as currency in the Underground and Grand Underground.

Spheres come in five colors: Red, Blue, Green, Prism, and Pale. These correspond to different versions of the Pokémon games, with the first three matching the original colors of Red, Green and Blue (or perhaps Ruby, Sapphire, and Emerald), and the Prism and Pale Spheres corresponding to Diamond and Pearl respectively.

Spheres can be found by mining in the Underground and Grand Underground. Red, Blue, and Green spheres are more common than Pale and Prism Spheres; Pale Spheres are more common in Pokémon Pearl, while Prism Spheres are more common in Pokémon Diamond.

In Pokémon Diamond, Pearl, and Platinum, Spheres can range in size from 1 to 99, though most Spheres found will be in the range of 5-20. In Pokémon Brilliant Diamond and Shining Pearl, Spheres come in two sizes: S and L.

Usage

Pokémon Diamond, Pearl, and Platinum

Spheres can be used to purchase many things that a player will need to decorate their Secret Base, as well as traps which can be set up throughout the underground. Hikers that stand at some of the corners of the Underground will offer to trade these items for the Spheres. The price that the item is listed for is the minimum size Sphere that the Hiker will take for it, though larger ones may be used.

Pokémon Brilliant Diamond and Shining Pearl

050Diglett.png This section is incomplete.
Please feel free to edit this section to add missing information and complete it.

Bag space

In Pokémon Diamond, Pearl, and Platinum, players can only carry a total of 40 Spheres at any time. A full Sphere inventory will prevent acquiring any more Spheres, with any newly mined spheres in excess of their Bag space being automatically discarded. If a player attempts to dig up one of their buried Spheres with a full Bag, the game prevents them from doing so, saying that the player left it where it is.

Burying spheres

In Pokémon Diamond, Pearl, and Platinum, the player can bury spheres to combine or grow them. This is not possible in Pokémon Brilliant Diamond and Shining Pearl.

A player can only bury 99 Spheres at a time; attempting to bury more causes the oldest buried Sphere to disappear. A Sphere Radar can be unlocked for a player's base, which can be used to help the player find the Spheres they have buried.

Combining spheres

To get larger Spheres, they can be combined by burying more than one of the same color Sphere in the same spot.

When combined, the size of the resulting Sphere is determined by the following formula:

If spheres are buried on top of a sphere that has already grown at least once since a sphere was buried there, the new size is instead determined by the following formula:

Where is the size of previously buried Sphere that has grown, is the size of the largest Sphere buried (excluding any previously-buried grown Sphere), and are the respective sizes of the buried spheres other than the largest Sphere and previously-buried grown Sphere. In the event of a tie for the largest size, one of the largest Spheres will be used as while the others of the same size will be treated like any other size Sphere.

Example

Burying a Prism Sphere 15, a Prism Sphere 12, a Prism Sphere 7, and two Prism Sphere 1s produces a Prism Sphere 22.

Burying a Blue Sphere 15, Blue Sphere 3, Blue Sphere 22, on top of a Blue Sphere 3 that has grown by 2 (i.e. now a Blue Sphere 5) yields a Blue Sphere 32.

Growing spheres

050Diglett.png This section is incomplete.
Please feel free to edit this section to add missing information and complete it.
Reason: How fast do spheres grow?

Buried Spheres can also naturally grow over time. Red, Green, and Blue Spheres grow faster than Pale and Prism Spheres. Regardless of what a player does, though, the maximum level for a Sphere is 99.

Flavor text

  • Red Sphere: A red sphere that glows like fire. It slowly grows when buried.
  • Blue Sphere: A blue sphere that glistens like ice. It slowly glows when buried.
  • Green Sphere: A green sphere glowing like sunlight in leaves. It slowly grows when buried.
  • Prism Sphere: A crystal clear, hard sphere. It slowly grows when buried.
  • Pale Sphere: A white sphere that glows in seven colors. It slowly grows when buried.

Appearance

Mine Small Red Sphere.png Mine Small Blue Sphere.png Mine Small Green Sphere.png Mine Small Prism Sphere.png Mine Small Pale Sphere.png
Red Sphere
Small 1 to 11
Blue Sphere
Small 1 to 11
Green Sphere
Small 1 to 11
Prism Sphere
Small 1 to 11
Pale Sphere
Small 1 to 11
Mine Large Red Sphere.png Mine Large Blue Sphere.png Mine Large Green Sphere.png Mine Large Prism Sphere.png Mine Large Pale Sphere.png
Red Sphere
Large 11 to 21
Blue Sphere
Large 11 to 21
Green Sphere
Large 11 to 21
Prism Sphere
Large 11 to 21
Pale Sphere
Large 11 to 21

In the anime

Red, Blue, and Green Spheres in the anime

Spheres first appeared in The Grass Menagerie! in Team Rocket's fantasy. They later found a Red Sphere and loads more Spheres of other colors, giving them money for a meal.

In other languages

Language Title
Chinese Cantonese Yuhk
Mandarin
Finland Flag.png Finnish Kivi
France Flag.png French Sphère
Germany Flag.png German Sphäre
Italy Flag.png Italian Bilia
South Korea Flag.png Korean 구슬 Guseul
Poland Flag.png Polish Kryształ
Portugal Flag.png Portuguese Esfera
Spain Flag.png Spanish Gema

Red Sphere

Language Title
Japan Flag.png Japanese べにタマ Beni Tama
Chinese Cantonese 紅玉 Hùhngyuhk
Mandarin 紅玉 / 红玉 Hóngyù
Finland Flag.png Finnish Punainen kivi
France Flag.png French Sphère Rouge
Germany Flag.png German Purpursphäre
Italy Flag.png Italian Bilia Rossa
South Korea Flag.png Korean 빨강구슬 Ppalgang Guseul
Poland Flag.png Polish Czerwony Kryształ
Portugal Flag.png Portuguese Esfera Vermelha
Spain Flag.png Spanish Gema Roja

Blue Sphere

Language Title
Japan Flag.png Japanese あおタマ Ao Tama
Chinese Cantonese 藍玉 Làahmyuhk
Mandarin 藍玉 / 蓝玉 Lányù
Finland Flag.png Finnish Sininen kivi
France Flag.png French Sphère Bleue
Germany Flag.png German Indigosphäre
Italy Flag.png Italian Bilia Blu
South Korea Flag.png Korean 파랑구슬 Parang Guseul
Poland Flag.png Polish Niebieski Kryształ
Portugal Flag.png Portuguese Esfera Azul
Spain Flag.png Spanish Gema Azul

Green Sphere

Language Title
Japan Flag.png Japanese みどりタマ Midori Tama
Chinese Cantonese 綠玉 Luhkyuhk
青玉 Chēngyuhk *
Mandarin 綠玉 / 绿玉 Lǜyù
青玉 Qīngyù *
Finland Flag.png Finnish Vihreä kivi
France Flag.png French Sphère Verte
Germany Flag.png German Jadesphäre
Italy Flag.png Italian Bilia Verde
South Korea Flag.png Korean 초록구슬 Chorok Guseul
Poland Flag.png Polish Zielony Kryształ
Portugal Flag.png Portuguese Esfera Verde
Spain Flag.png Spanish Gema Verde

Prism Sphere

Language Title
Japan Flag.png Japanese こんごうダマ Kongō Dama
Chinese Cantonese 金剛玉 Gāmgōngyuhk
Mandarin 金剛玉 / 金刚玉 Jīngāngyù
France Flag.png French Sphère Prisme
Germany Flag.png German Prismensphäre
Italy Flag.png Italian Bilia Prisma
South Korea Flag.png Korean 금강구슬 Geumgang Guseul
Portugal Flag.png Portuguese Esfera Prisma
Spain Flag.png Spanish Gema Prisma

Pale Sphere

Language Title
Japan Flag.png Japanese しらタマ Shira Tama
Chinese Cantonese 白玉 Baahkyuhk
Mandarin 白玉 Báiyù
France Flag.png French Sphère Pâle
Germany Flag.png German Weißsphäre
Italy Flag.png Italian Bilia Tersa
South Korea Flag.png Korean 하양구슬 Hayang Guseul
Portugal Flag.png Portuguese Esfera Pálida
Spain Flag.png Spanish Gema Blanca


Project ItemDex logo.png This item article is part of Project ItemDex, a Bulbapedia project that aims to write comprehensive articles on all items.