Skip to content
Open
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
9 changes: 8 additions & 1 deletion src/Modules/Data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1300,6 +1300,13 @@ data.minionTagCrucibleUniques = {
["United in Dream"] = true,
}

local subsumeTheSourceMods = {}
for modId, mod in pairs(data.itemMods.JewelAbyss) do
if mod.type ~="Corrupted" then
subsumeTheSourceMods[modId] = mod
end
end

local crimsonStormMods = {}
for modId, mod in pairs(data.veiledMods) do
if mod.affix == "of the Order" then
Expand All @@ -1323,7 +1330,7 @@ dreadCaptainBase.base.tags.deepwater_sword = true
data.rareLikeUniques = {
["subsume the source"] = {
validBases = data.itemBaseLists["Jewel: Abyss"],
affixes = data.itemMods.JewelAbyss,
affixes = subsumeTheSourceMods,
prefixLimit = 4,
suffixLimit = 0,
ignoreModType = true,
Expand Down
Loading