Skip to content

Commit

Permalink
rep rings share ICDs of same buff name
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green committed Oct 19, 2023
1 parent fc2c4c7 commit 1ba58dd
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions sim/common/wotlk/stat_bonus_procs.go
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,8 @@ func init() {
ICD: time.Second * 100,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Unmatched Destruction",
// Ashen Band of Unmatched Destruction
Name: "Frostforged Sage",
ID: 50397,
AuraID: 72416,
Bonus: stats.Stats{stats.SpellPower: 285},
Expand All @@ -573,7 +574,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Endless Destruction",
// Ashen Band of Endless Destruction
Name: "Frostforged Sage",
ID: 50398,
AuraID: 72416,
Bonus: stats.Stats{stats.SpellPower: 285},
Expand All @@ -585,7 +587,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Unmatched Vengeance",
// Ashen Band of Unmatched Vengeance
Name: "Frostforged Champion",
ID: 50401,
AuraID: 72412,
Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480},
Expand All @@ -597,7 +600,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Endless Vengeance",
// Ashen Band of Endless Vengeance
Name: "Frostforged Champion",
ID: 50402,
AuraID: 72412,
Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480},
Expand All @@ -609,7 +613,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Unmatched Courage",
// Ashen Band of Unmatched Courage
Name: "Frostforged Defender",
ID: 50403,
AuraID: 72414,
Bonus: stats.Stats{stats.Armor: 2400},
Expand All @@ -621,7 +626,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Endless Courage",
// Ashen Band of Endless Courage
Name: "Frostforged Defender",
ID: 50404,
AuraID: 72414,
Bonus: stats.Stats{stats.Armor: 2400},
Expand All @@ -633,7 +639,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Unmatched Might",
// Ashen Band of Unmatched Might
Name: "Frostforged Champion",
ID: 52571,
AuraID: 72412,
Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480},
Expand All @@ -645,7 +652,8 @@ func init() {
ICD: time.Second * 60,
})
newProcStatBonusEffect(ProcStatBonusEffect{
Name: "Ashen Band of Endless Might",
// Ashen Band of Endless Might
Name: "Frostforged Champion",
ID: 52572,
AuraID: 72412,
Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480},
Expand Down

0 comments on commit 1ba58dd

Please sign in to comment.