Skip to content

Commit

Permalink
added bash and slam to sk config
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Jan 1, 2024
1 parent b34a5aa commit 50a1e39
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions class_configs/shd_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,24 @@ local _ClassConfig = {
return mq.TLO.Me.PctHPs() <= self.settings.StartLifeTap
end
},
[32] = {
name = "Bash",
type = "Ability",
tooltip = Tooltips.Bash,
cond = function(self)
return mq.TLO.Me.AbilityReady("Bash")() and RGMercUtils.GetTargetID() > 0 and
RGMercUtils.GetTargetDistance() < 30
end
},
[33] = {
name = "Slam",
type = "Ability",
tooltip = Tooltips.Slam,
cond = function(self)
return mq.TLO.Me.AbilityReady("Slam")() and RGMercUtils.GetTargetID() > 0 and
RGMercUtils.GetTargetDistance() < 30
end
},
},
},
['Spells'] = {
Expand Down
2 changes: 1 addition & 1 deletion version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return { commitId = '75061a7 2024-01-01' }
return { commitId = 'b34a5aa 2024-01-01' }

0 comments on commit 50a1e39

Please sign in to comment.