Skip to content

Commit

Permalink
add razor gauntlets
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jan 12, 2025
1 parent 409153e commit 4308831
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sim/common/vanilla/item_effects.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ const (
ThrashBlade = 17705
SatyrsLash = 17752
MarkOfTheChosen = 17774
RazorGauntlets = 18326
Nightfall = 19169
EbonHand = 19170
RuneOfTheDawn = 19812
Expand Down Expand Up @@ -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%)
Expand Down

0 comments on commit 4308831

Please sign in to comment.