Skip to content

Commit

Permalink
add more damage sources
Browse files Browse the repository at this point in the history
  • Loading branch information
southpawgeek committed May 9, 2024
1 parent ba55b8a commit 9d9db32
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
11 changes: 10 additions & 1 deletion Scripts/JowdayDPS.Data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ JowdayDPS.NameLookup = {
NemesisAttack2 = "Nemesis",
NemesisAttack3 = "Nemesis",
NemesisDash = "Nemesis",
-- heracles assist
HeraclesLeap = "Heracles",
HeraclesArcRight = "Heracles",
-- misc environment
DestructibleTreeSplinter = "Tree Splinters",
SteamWallBlast = "Steam",
Expand All @@ -44,7 +47,9 @@ JowdayDPS.NameLookup = {
LavaTileWeapon = "Lava",
BaseCollision = "Wall Slam",
BeamTrap = "Beam",
FireBarrelExplosion = "Fire Barrel Explosion",
FireBarrelExplosion = "Fire Barrel",
FireBarrelFireLob = "Fire Barrel",
PolyphemusBoulderSky = "Polyphemus Boulder",
-- also misc
HeraCastSummonProjectile = "Cast",
LamiaMiasma = "Enemy",
Expand Down Expand Up @@ -210,6 +215,10 @@ JowdayDPS.DpsColors = {
BarColor = Color.NemesisVoice,
LabelColor = Color.NemesisVoice
},
HeraclesAssist = {
BarColor = Color.HeraclesVoice,
LabelColor = Color.HeraclesVoice
},
OdysseusKeepsake = {
BarColor = Color.OdysseusVoice,
LabelColor = Color.OdysseusVoice
Expand Down
11 changes: 5 additions & 6 deletions Scripts/JowdayDPS.Main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -418,14 +418,13 @@ function JowdayDPS.findColor(source)
-- color in our friends :)
if source == 'Artemis' then
return colors["ArtemisAssist"]
end
if source == 'Nemesis' then
elseif source == 'Nemesis' then
return colors["NemesisAssist"]
end
if source == "Necromantic Influence" or source == "Pylon Spirits" then
elseif source == 'Heracles' then
return colors["HeraclesAssist"]
elseif source == "Necromantic Influence" or source == "Pylon Spirits" then
return colors["Shade"]
end
if source == "Frinos" then
elseif source == "Frinos" then
return colors["Frinos"]
end

Expand Down

0 comments on commit 9d9db32

Please sign in to comment.