Skip to content

Commit 6ed2c79

Browse files
dreaisLocalIdentityLocalIdentity
authored
Fixes Rupture using the wrong stat for damage taken and Bleed duration (#8030)
* damage_taken and expire_rate were inversed, resulting in wrong effective dps modifier * fix for incorrect "quicker bleedd" from rupture * forgot to change rupture duration type to match the calculation * Update CalcOffence.lua * Fix Export --------- Co-authored-by: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent 0f2a593 commit 6ed2c79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Data/Skills/sup_dex.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3133,10 +3133,10 @@ skills["SupportRupture"] = {
31333133
excludeSkillTypes = { },
31343134
statDescriptionScope = "gem_stat_descriptions",
31353135
statMap = {
3136-
["support_rupture_bleeding_time_passed_+%_final"] = {
3136+
["support_rupture_bleeding_damage_taken_+%_final"] = {
31373137
mod("DamageTaken", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
31383138
},
3139-
["support_rupture_bleeding_damage_taken_+%_final"] = {
3139+
["support_rupture_bleeding_time_passed_+%_final"] = {
31403140
mod("BleedExpireRate", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
31413141
},
31423142
["critical_strikes_that_inflict_bleeding_also_rupture"] = {

src/Export/Skills/sup_dex.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,10 +376,10 @@ local skills, mod, flag, skill = ...
376376

377377
#skill SupportRupture
378378
statMap = {
379-
["support_rupture_bleeding_time_passed_+%_final"] = {
379+
["support_rupture_bleeding_damage_taken_+%_final"] = {
380380
mod("DamageTaken", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
381381
},
382-
["support_rupture_bleeding_damage_taken_+%_final"] = {
382+
["support_rupture_bleeding_time_passed_+%_final"] = {
383383
mod("BleedExpireRate", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
384384
},
385385
["critical_strikes_that_inflict_bleeding_also_rupture"] = {

0 commit comments

Comments
 (0)