Difference between revisions of "Special Charm"

From Stardew Valley Wiki
Jump to navigation Jump to search
m (Undo revision 71939 by Darcipeeps (talk))
(→‎History: Adjusted wording of my previous edit)
Tags: Mobile edit Mobile web edit
 
(23 intermediate revisions by 11 users not shown)
Line 1: Line 1:
 
{{Infobox
 
{{Infobox
|source     = ''<nowiki>Unobtainable</nowiki>''
+
|eng      = Special Charm
|sellprice   = N/A
+
|source   = [[Secret Notes#Secret Note #20|Secret Note #20]]
 +
|sellprice = N/A
 
}}
 
}}
 +
The '''Special Charm''' permanently increases daily [[luck]] by 0.025. It affects the luck of the current day as soon as it is obtained. It is not necessary to wait until the next day for it to take effect.
  
The '''{{PAGENAME}}''' is an item that greatly increases the chance for daily [[Luck]].   
+
It can be obtained after finding and reading [[Secret Notes#Secret Note #20|Secret Note #20]].  To solve the puzzle depicted in Secret Note #20, click below.
  
It is unobtainable in-game as of PC v1.2It is the item that would appear in the blank space in the player's [[Wallet]] between the [[Club Card]] and the [[Skull Key]].
+
{{Collapse|Solution|content=Follow the path depicted in the noteStart at the circle in the center of [[Pelican Town]], and follow each directional arrow until the character hits a permanent obstacle. This path will bring them around town, up across the bridge to [[JojaMart]], and ultimately to a truck parked beside JojaMart. Interacting with the truck will allow the player to speak to a truck driver who requests a [[Rabbit's Foot]]. If the player has one in their inventory, they can trade it for the Special Charm. (The charm can still be obtained if JojaMart has been abandoned or turned into a [[Movie Theater]].)}}
  
 +
Once obtained, the Special Charm can be found in the [[the Player]]'s Menu on the [[Special Items & Powers]] tab.
  
[[File:WalletSpecialCharm.png]]
+
==History==
 
+
{{History|1.0|Exists in game files and code, but is unimplemented.}}
==Formula==
+
{{History|1.3.27|Officially introduced into gameplay, without the use of mods or save file editing.}}
The formula used to calculate daily luck (as of PC v1.11) is:
+
{{History|1.4|Removed cap preventing daily luck from increasing past 0.1.}}
 
+
{{History|1.6|Moved from the [[Wallet]] to the [[Special Items & Powers]] tab of [[the Player]]’s menu.}}
<pre>If player has Special Charm
 
    and
 
    a random number between 0.0 and 1.0 is less than 0.8
 
Then
 
    Daily Luck = 0.1
 
Otherwise
 
    Daily Luck = a random number between -0.1 and 0.1</pre>
 
 
 
Since the Special Charm is unavailable, the last part of the formula always executes. However, if you do have the Special Charm, the formula will give you an 80% chance for maximum daily luck.
 
 
 
==Obtaining the Special Charm==
 
It is possible to edit a saved game file and add the Special Charm to your wallet.  You must find <code><hasSpecialCharm>false</hasSpecialCharm></code> and change it to <code><hasSpecialCharm>true</hasSpecialCharm></code>.
 
 
 
With [[Modding:Index|SMAPI]] and its included "Trainer Mod", the debug command <tt>debug specialCharm</tt> can be used.
 
 
 
{{beta3|The Special Charm can be obtained after collecting Secret Note #20, following the path to the truck next to JojaMart, and giving the driver a Rabbit's Foot.  The Special Charm will then appear in the player's wallet, and permanently increase luck, according to the following formula:
 
<pre>Daily Luck = The minimum of
 
(0.10000000149011612)
 
and
 
((a random number between -0.1 and 0.1) + (0.025 if player has Special Charm))</pre>}}
 
  
 
[[Category:Special items]]
 
[[Category:Special items]]
Line 39: Line 22:
 
[[de:Besonderes Amulett]]
 
[[de:Besonderes Amulett]]
 
[[es:Amuleto especial]]
 
[[es:Amuleto especial]]
 +
[[fr:Charme spécial]]
 +
[[it:Amuleto speciale]]
 
[[ja:特別な飾り]]
 
[[ja:特別な飾り]]
 +
[[ko:특별한 부적]]
 +
[[hu:Különös amulett]]
 
[[pt:Amuleto Especial]]
 
[[pt:Amuleto Especial]]
 
[[ru:Особый оберег]]
 
[[ru:Особый оберег]]
 +
[[tr:Özel Tılsım]]
 
[[zh:特殊的魅力]]
 
[[zh:特殊的魅力]]

Latest revision as of 20:25, 9 April 2024

Special Charm
Special Charm.png
Information
Source Secret Note #20
Sell Price Cannot be sold

The Special Charm permanently increases daily luck by 0.025. It affects the luck of the current day as soon as it is obtained. It is not necessary to wait until the next day for it to take effect.

It can be obtained after finding and reading Secret Note #20. To solve the puzzle depicted in Secret Note #20, click below.

Solution 
Follow the path depicted in the note. Start at the circle in the center of Pelican Town, and follow each directional arrow until the character hits a permanent obstacle. This path will bring them around town, up across the bridge to JojaMart, and ultimately to a truck parked beside JojaMart. Interacting with the truck will allow the player to speak to a truck driver who requests a Rabbit's Foot. If the player has one in their inventory, they can trade it for the Special Charm. (The charm can still be obtained if JojaMart has been abandoned or turned into a Movie Theater.)

Once obtained, the Special Charm can be found in the the Player's Menu on the Special Items & Powers tab.

History

  • 1.0: Exists in game files and code, but is unimplemented.
  • 1.3.27: Officially introduced into gameplay, without the use of mods or save file editing.
  • 1.4: Removed cap preventing daily luck from increasing past 0.1.
  • 1.6: Moved from the Wallet to the Special Items & Powers tab of the Player’s menu.