This wiki is a read-only version of the Stardew Valley Wiki. The official editable wiki maintained by ConcernedApe can be found at stardewvalleywiki.com

Talk:Metal Head

From Stardew Valley Wiki
Jump to: navigation, search
This talk page is for discussing Metal Head.
  • Sign and date your posts by typing four tildes (~~~~).
  • Put new text below old text.
  • Be polite.
  • Assume good faith.
  • Don't delete discussions.

Squire's Helmet

   public override List<Item> getExtraDropItems()
   {
     List<Item> objList = new List<Item>();
     if ((Game1.stats.getMonstersKilled((string) ((NetFieldBase<string, NetString>) this.name)) + (int) Game1.uniqueIDForThisGame) % 100 == 0)
       objList.Add((Item) new Hat(51));
     return objList;
   }

You are guaranteed one within 100 metal heads, and each 100 subsequent metal heads. The first one is based on the uniqueID. BlaDe (talk) 08:11, 22 March 2020 (UTC)