Difference between revisions of "Warrior Ring"

From Stardew Valley Wiki
Jump to navigation Jump to search
(onMonsterSlay is called for each equipped ring)
(Add stacking reference)
 
Line 12: Line 12:
 
The chance of receiving the buff is increased by [[Luck]] buffs from food or [[Lucky Ring|Lucky Rings]], but not daily Luck. It is calculated<ref name="ring_onmonsterslay"/> as <code>0.1 + (Luck Level / 100)</code> meaning each additional level of [[Luck]] buff increases the odds by 1%: +1 Luck increases the base chance from 10% to 11%, +2 Luck increases it to 12%, and so on.
 
The chance of receiving the buff is increased by [[Luck]] buffs from food or [[Lucky Ring|Lucky Rings]], but not daily Luck. It is calculated<ref name="ring_onmonsterslay"/> as <code>0.1 + (Luck Level / 100)</code> meaning each additional level of [[Luck]] buff increases the odds by 1%: +1 Luck increases the base chance from 10% to 11%, +2 Luck increases it to 12%, and so on.
  
If two Warrior Rings are equipped, the chance is rolled twice. If either one succeeds, the buff is applied.
+
If two Warrior Rings are equipped, the chance is rolled twice. If either one succeeds, the buff is applied.<ref name="stacking" />
  
 
==Dyeing==
 
==Dyeing==
Line 20: Line 20:
 
<references>
 
<references>
 
     <ref name="ring_onmonsterslay">See <samp>Ring::onMonsterSlay</samp> in the game code.</ref>
 
     <ref name="ring_onmonsterslay">See <samp>Ring::onMonsterSlay</samp> in the game code.</ref>
 +
    <ref name="stacking"><samp>Ring::onMonsterSlay</samp> is called once for each equipped ring by <samp>GameLocation::onMonsterKilled</samp>. If both rolls succeed, the code attempts to add the buff twice, but <samp>BuffManager::Apply</samp> doesn't allow multiple buffs with the same id to be applied at once.</ref>
 
</references>
 
</references>
  

Latest revision as of 12:30, 2 August 2024

Warrior Ring
Warrior Ring.png
Occasionally infuses the wearer with "warrior energy" after slaying a monster.
Information
Source: Crafting with Combat Level 4

Ingredients: Iron Bar.png Iron Bar (10)Coal.png Coal (25)Frozen Tear.png Frozen Tear (10)
Adventurer's Guild

Purchase Price: Not Sold
Sell Price: data-sort-value="750 ">Gold.png750g

The Warrior Ring is a ring that can be crafted after earning the recipe at Combat Skill Icon.png Combat Level 4. The ingredients are: 10 Iron Bars, 25 Coal, and 10 Frozen Tears.

The Warrior Ring has a chance of giving the Combat Skill Icon.png Warrior Energy buff after slaying a Monster. This buff increases Attack by 10 for 5 seconds, and can stack with other Attack buffs from food or other Attack boosting rings.

The chance of receiving the buff is increased by Luck buffs from food or Lucky Rings, but not daily Luck. It is calculated[1] as 0.1 + (Luck Level / 100) meaning each additional level of Luck buff increases the odds by 1%: +1 Luck increases the base chance from 10% to 11%, +2 Luck increases it to 12%, and so on.

If two Warrior Rings are equipped, the chance is rolled twice. If either one succeeds, the buff is applied.[2]

Dyeing

Warrior Ring can be used in dyeing, serving as a yellow dye at the dye pots, located in Emily's and Haley's house, 2 Willow Lane.

References

  1. See Ring::onMonsterSlay in the game code.
  2. Ring::onMonsterSlay is called once for each equipped ring by GameLocation::onMonsterKilled. If both rolls succeed, the code attempts to add the buff twice, but BuffManager::Apply doesn't allow multiple buffs with the same id to be applied at once.