Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/Data/ModCache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3059,7 +3059,7 @@ c["You gain Onslaught for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="
c["You have Arcane Surge"]={{[1]={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil}
c["You have a Smoke Cloud around you while stationary"]={nil,"a Smoke Cloud around you "}
c["You have no Accuracy Penalty at Distance"]={nil,"no Accuracy Penalty at Distance "}
c["You have no Elemental Resistances"]={nil,"no Elemental Resistances "}
c["You have no Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}},nil}
c["You have no Life Regeneration"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}
c["You have no Spirit"]={nil,"no Spirit "}
c["You lose 5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldDegenPercent",type="BASE",value=5}},nil}
Expand Down
5 changes: 5 additions & 0 deletions src/Modules/ModParser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4251,6 +4251,11 @@ local specialModList = {
mod("ColdResist", "OVERRIDE", 0),
mod("LightningResist", "OVERRIDE", 0),
},
["you have no elemental resistances"] = {
mod("FireResist", "OVERRIDE", 0),
mod("ColdResist", "OVERRIDE", 0),
mod("LightningResist", "OVERRIDE", 0),
},
["chaos resistance is zero"] = {
mod("ChaosResist", "OVERRIDE", 0),
},
Expand Down
Loading