Skip to content

Commit 99743a2

Browse files
author
LocalIdentity
committed
The Hallowed Monarch
1 parent 01b355a commit 99743a2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Data/ModCache.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12634,8 +12634,8 @@ c["Your Hits treat Cold Resistance as 10% higher than actual value"]={{[1]={flag
1263412634
c["Your Lightning Damage can Freeze but not Shock"]={{[1]={flags=0,keywordFlags=0,name="LightningCanFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="LightningCannotShock",type="FLAG",value=true}},nil}
1263512635
c["Your Lightning Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true}},nil}
1263612636
c["Your Lightning Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil}
12637-
c["Your Linked Minions take 65% less Damage"]={nil,"Your Linked Minions take 65% less Damage "}
12638-
c["Your Linked Minions take 65% less Damage On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds"]={nil,"Your Linked Minions take 65% less Damage On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds "}
12637+
c["Your Linked Minions take 65% less Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="AffectedByLink"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-65}}}},nil}
12638+
c["Your Linked Minions take 70% less Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="AffectedByLink"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-70}}}},nil}
1263912639
c["Your Lucky or Unlucky effects are instead Unexciting"]={{[1]={flags=0,keywordFlags=0,name="Unexciting",type="FLAG",value=true}},nil}
1264012640
c["Your Lucky or Unlucky effects use the best or"]={nil,"Your Lucky or Unlucky effects use the best or "}
1264112641
c["Your Lucky or Unlucky effects use the best or worst from three rolls instead of two"]={{[1]={flags=0,keywordFlags=0,name="ExtremeLuck",type="FLAG",value=true}},nil}

src/Modules/ModParser.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4007,6 +4007,7 @@ local specialModList = {
40074007
["(%d+)%% increased movement speed while you have at least two linked targets"] = function(num) return { mod("MovementSpeed", "INC", num, { type = "MultiplierThreshold", var = "LinkedTargets", threshold = 2 }) } end,
40084008
["link skills have (%d+)%% increased buff effect if you have linked to a target recently"] = function(num) return { mod("BuffEffect", "INC", num, { type = "SkillType", skillType = SkillType.Link }, { type = "Condition", var = "LinkedRecently" }) } end,
40094009
["link skills can target damageable minions"] = { flag("Condition:CanLinkToMinions", { type = "Condition", var = "HaveDamageableMinion"}) },
4010+
["your linked minions take (%d+)%% less damage"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", -num, { type = "Condition", var = "AffectedByLink"}) }) } end,
40104011
["curses are inflicted on you instead of linked targets"] = { mod("ExtraLinkEffect", "LIST", { mod = flag("CurseImmune"), }), },
40114012
["elemental ailments are inflicted on you instead of linked targets"] = { mod("ExtraLinkEffect", "LIST", { mod = flag("ElementalAilmentImmune") }) },
40124013
["non%-unique utility flasks you use apply to linked targets"] = { mod("ExtraLinkEffect", "LIST", { mod = mod("ParentNonUniqueFlasksAppliedToYou", "FLAG", true, { type = "GlobalEffect", effectType = "Global", unscalable = true } ), }) },

0 commit comments

Comments
 (0)