Difference between revisions of "Special Charm"

From Stardew Valley Wiki
Jump to navigation Jump to search
Line 30: Line 30:
 
==Obtaining the Special Charm==
 
==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>.
 
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.
  
 
[[Category:Special items]]
 
[[Category:Special items]]

Revision as of 07:39, 10 October 2017

Special Charm
Blank icon.png
Information
Source Unobtainable
Sell Price Cannot be sold

The Special Charm is an item that greatly increases the chance for daily Luck.

It is unobtainable in-game as of PC v1.2. It is the item that would appear in the blank space in the player's Wallet between the Club Card and the Skull Key.


File:WalletSpecialCharm.png

Formula

The formula used to calculate daily luck (as of PC v1.11) is:

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

Since the Special Charm is unavailable, the last part of the formula always executes.

Obtaining the Special Charm

It is possible to edit a saved game file and add the Special Charm to your wallet. You must find <hasSpecialCharm>false</hasSpecialCharm> and change it to <hasSpecialCharm>true</hasSpecialCharm>.

With SMAPI and its included "Trainer Mod", the debug command debug specialCharm can be used.