Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions spec/System/TestItemTools_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ local applyRangeTests = {
[{ "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", 1.0, 1.5 }] = "30% increased Cold Damage per 1% Cold Resistance above 75%",
[{ "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", 0.5, 1.0 }] = "18% increased Cold Damage per 1% Cold Resistance above 75%",
[{ "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", 0.5, 1.5 }] = "27% increased Cold Damage per 1% Cold Resistance above 75%",
-- Unscalable unique range
[{ "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell", 1.0, 1.5 }] = "Sacrifice 15% of Life to gain that much Energy Shield when you Cast a Spell",
-- High precision range
[{ "Regenerate (66.7-75) Life per second", 1.0, 1.0 }] = "Regenerate 75 Life per second",
[{ "Regenerate (66.7-75) Life per second", 1.0, 1.5 }] = "Regenerate 112.5 Life per second",
Expand Down
2 changes: 1 addition & 1 deletion src/Data/ModScalability.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12081,7 +12081,7 @@ return {
["Runebinder"] = { },
["Runic Monsters in your Maps are Duplicated"] = { },
["Sacrifice # Life to not consume the last bolt when firing"] = { { isScalable = true } },
["Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell"] = { { isScalable = true } },
["Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell"] = { { isScalable = false } },
["Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll"] = { { isScalable = true } },
["Sacrifice #% of your Life when you Use or Trigger a Spell Skill"] = { { isScalable = true } },
["Sacrifice up to # to receive double on Trial completion"] = { { isScalable = false, formats = { "ultimatum_wager_type_hash" } } },
Expand Down