Skip to content

Commit 7287a75

Browse files
PaliakLocalIdentityQuickStick123
authored
Implement 'Your Blessing Skills are Disabled' for Essence Worm (#5121)
* FEAT: implement 'Your Blessing Skills are Disabled' mod found on Essence Worm ring * Update src/Data/Uniques/ring.lua Co-authored-by: QuickStick <31533893+QuickStick123@users.noreply.github.com> * Update src/Data/Uniques/ring.lua Co-authored-by: QuickStick <31533893+QuickStick123@users.noreply.github.com> Co-authored-by: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Co-authored-by: QuickStick <31533893+QuickStick123@users.noreply.github.com>
1 parent 241c2b8 commit 7287a75

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Data/Uniques/ring.lua

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,15 +450,13 @@ Implicits: 1
450450
]],[[
451451
Essence Worm
452452
Unset Ring
453-
Variant: Pre 3.16.0
454-
Variant: Current
455453
Requires Level 38
456454
Implicits: 1
457455
Has 1 Socket
458456
+2 to Level of Socketed Aura Gems
459457
Socketed Gems Have no Reservation
460-
{variant:1}80% reduced Mana Reservation Efficiency of Skills
461-
{variant:2}80% reduced Reservation Efficiency
458+
Your Blessing Skills are Disabled
459+
80% reduced Reservation Efficiency of Skills
462460
]],[[
463461
Fated End
464462
Paua Ring

src/Modules/ModParser.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3449,6 +3449,7 @@ local specialModList = {
34493449
["placed banners also grant (%d+)%% increased attack damage to you and allies"] = function(num) return { mod("ExtraAuraEffect", "LIST", { mod = mod("Damage", "INC", num, nil, ModFlag.Attack) }, { type = "Condition", var = "BannerPlanted" }, { type = "SkillType", skillType = SkillType.Banner }) } end,
34503450
["dread banner grants an additional %+(%d+) to maximum fortification when placing the banner"] = function(num) return { mod("ExtraSkillMod", "LIST", { mod = mod("MaximumFortification", "BASE", num, { type = "GlobalEffect", effectType = "Buff" }) }, { type = "Condition", var = "BannerPlanted" }, { type = "SkillName", skillName = "Dread Banner" }) } end,
34513451
["your aura skills are disabled"] = { flag("DisableSkill", { type = "SkillType", skillType = SkillType.Aura }) },
3452+
["your blessing skills are disabled"] = { flag("DisableSkill", { type = "SkillType", skillType = SkillType.Blessing }) },
34523453
["your spells are disabled"] = { flag("DisableSkill", { type = "SkillType", skillType = SkillType.Spell }) },
34533454
["aura skills other than ([%a%s]+) are disabled"] = function(_, name) return {
34543455
flag("DisableSkill", { type = "SkillType", skillType = SkillType.Aura }),

0 commit comments

Comments
 (0)