diff --git a/sim/common/vanilla/item_effects.go b/sim/common/vanilla/item_effects.go index 1230d32bb..7379aaed5 100644 --- a/sim/common/vanilla/item_effects.go +++ b/sim/common/vanilla/item_effects.go @@ -50,6 +50,7 @@ const ( ThrashBlade = 17705 SatyrsLash = 17752 MarkOfTheChosen = 17774 + RazorGauntlets = 18326 Nightfall = 19169 EbonHand = 19170 RuneOfTheDawn = 19812 @@ -2917,6 +2918,12 @@ func init() { thornsArcaneDamageEffect(agent, Naglering, "Naglering", 3) }) + // https://www.wowhead.com/classic/item=18326/razor-gauntlets + // Equip: When struck in combat inflicts 3 Arcane damage to the attacker. + core.NewItemEffect(RazorGauntlets, func(agent core.Agent) { + thornsArcaneDamageEffect(agent, RazorGauntlets, "Razor Gauntlets", 3) + }) + // https://www.wowhead.com/classic/item=1168/skullflame-shield // Equip: When struck in combat has a 3% chance of stealing 35 life from target enemy. (Proc chance: 3%) // Equip: When struck in combat has a 1% chance of dealing 75 to 125 Fire damage to all targets around you. (Proc chance: 1%)