Skip to content

Commit 309d7b7

Browse files
committed
Minions are Gigantic
1 parent 873f311 commit 309d7b7

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/Data/ModCache.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5770,7 +5770,7 @@ c["Your Hits cannot be Evaded by Pinned Enemies"]={nil,"Your Hits cannot be Evad
57705770
c["Your Life Flask also applies to your Minions"]={nil,"Your Life Flask also applies to your Minions "}
57715771
c["Your Life Flask also applies to your Minions Minions cannot Die while affected by a Life Flask"]={nil,"Your Life Flask also applies to your Minions Minions cannot Die while affected by a Life Flask "}
57725772
c["Your Life cannot change while you have Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EternalLife",type="FLAG",value=true}},nil}
5773-
c["Your Minions are Gigantic"]={nil,"Your Minions are Gigantic "}
5773+
c["Your Minions are Gigantic"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=20}}}},nil}
57745774
c["Your Offerings affect you instead of your Minions"]={nil,"Your Offerings affect you instead of your Minions "}
57755775
c["Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]={nil,"Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy "}
57765776
c["Your Offerings can target Enemies in Culling range"]={nil,"Your Offerings can target Enemies in Culling range "}

src/Modules/ModParser.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4171,6 +4171,10 @@ local specialModList = {
41714171
["companions gain your dexterity"] = { flag("DexterityAddedToCompanions") },
41724172
["companions gain your strength"] = { flag("StrengthAddedToCompanions") },
41734173
["half of your strength is added to your minions"] = { flag("HalfStrengthAddedToMinions") },
4174+
["your minions are gigantic"] = {
4175+
mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", 20) }),
4176+
mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", 20) }),
4177+
},
41744178
["minions created recently have (%d+)%% increased attack and cast speed"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", num) }, { type = "Condition", var = "MinionsCreatedRecently" }) } end,
41754179
["minions created recently have (%d+)%% increased movement speed"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", num) }, { type = "Condition", var = "MinionsCreatedRecently" }) } end,
41764180
["minions poison enemies on hit"] = { mod("MinionModifier", "LIST", { mod = mod("PoisonChance", "BASE", 100) }) },

0 commit comments

Comments
 (0)