Skip to content
Merged
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
8 changes: 4 additions & 4 deletions Data/Uniques/jewel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -563,10 +563,10 @@ Variant: Large Ring
Variant: Very Large Ring
Radius: Variable
Implicits: 0
{variant:1}Affects Passives in Small Ring
{variant:2}Affects Passives in Medium Ring
{variant:3}Affects Passives in Large Ring
{variant:4}Affects Passives in Very Large Ring
{variant:1}Only affects Passives in Small Ring
{variant:2}Only affects Passives in Medium Ring
{variant:3}Only affects Passives in Large Ring
{variant:4}Only affects Passives in Very Large Ring
Passives in Radius can be Allocated without being connected to your tree
-(20-10)% to all Elemental Resistances
]],[[
Expand Down
4 changes: 4 additions & 0 deletions Modules/ModParser-3_0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1864,6 +1864,10 @@ local specialModList = {
["affects passives in medium ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 5 }) },
["affects passives in large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 6 }) },
["affects passives in very large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 7 }) },
["only affects passives in small ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 4 }) },
["only affects passives in medium ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 5 }) },
["only affects passives in large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 6 }) },
["only affects passives in very large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 7 }) },
["(%d+)%% increased elemental damage per grand spectrum"] = function(num) return {
mod("ElementalDamage", "INC", num, { type = "Multiplier", var = "GrandSpectrum" }),
mod("Multiplier:GrandSpectrum", "BASE", 1),
Expand Down