diff --git a/spec/System/TestRareLike_spec.lua b/spec/System/TestRareLike_spec.lua index 84d5baf61f7..b97804d08f9 100644 --- a/spec/System/TestRareLike_spec.lua +++ b/spec/System/TestRareLike_spec.lua @@ -68,6 +68,15 @@ describe("Veiled unique affix pools", function() assert.is_nil(lines:find("Minions are Aggressive", 1, true)) end) + it("offers Chosen, Catarina's, and of the Order mods on The Queen's Hunger", function() + local item = makeUnique("The Queen's Hunger") + assert.is_not_nil(item) + local mods = offeredMods(item) + assert.is_not_nil(mods.JunMasterVeiledSpellBlockPercent____) + assert.is_not_nil(mods.JunMasterVeiledOfferingEffect) + assert.is_not_nil(mods.JunMasterVeiledStrengthAndDexterity) + end) + it("only offers attainable modifiers on That Which Was Taken", function() local item = makeUnique("That Which Was Taken") assert.is_not_nil(item) diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 90d7b249345..71d8723c233 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -20006,8 +20006,8 @@ c["Skills Socketed in your Boots are Supported by level 20 Hextouch"]={{[1]={[1] c["Skills Socketed in your Boots are Supported by level 20 High-Impact Mine"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportHighImpactMine"}}},nil} c["Skills Socketed in your Boots are Supported by level 20 Hypothermia"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportHypothermia"}}},nil} c["Skills Socketed in your Boots are Supported by level 20 Ice Bite"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportIceBite"}}},nil} -end)();(function() c["Skills Socketed in your Boots are Supported by level 20 Ignite Proliferation"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportIgniteProliferation"}}},nil} +end)();(function() c["Skills Socketed in your Boots are Supported by level 20 Immolate"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportImmolate"}}},nil} c["Skills Socketed in your Boots are Supported by level 20 Impale"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportImpale"}}},nil} c["Skills Socketed in your Boots are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={appliesToGrantedSkills=true,level=20,skillId="SupportIncreasedAreaOfEffect"}}},nil} diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 66f7ad4d6d2..e3f5017316d 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -1343,6 +1343,7 @@ for modId, mod in pairs(data.veiledMods) do if mod.affix == "Chosen" then veiledMods[modId] = mod caneOfKulemakMods[modId] = mod + queensHungerMods[modId] = mod elseif mod.affix == "Catarina's" then caneOfKulemakMods[modId] = mod queensHungerMods[modId] = mod