Skip to content

Commit 3715db7

Browse files
authored
feat(wow): 12.0.5 & monk abilities (#16)
* Add CurseForge publishing support and MIT license - Add CF_API_KEY to release workflow for CurseForge uploads - Add LICENSE (MIT) - Add curseforge_logo.png and curseforge_description.md - Update .pkgmeta to exclude new non-addon files from zip * chore: add CurseForge project ID to .pkgmeta * Update to WoW 12.0.5 (Interface 120005), add Monk abilities (Revival, Celestial Conduit, Invoke Yu'lon)
1 parent d816d40 commit 3715db7

2 files changed

Lines changed: 33 additions & 2 deletions

File tree

CooldownTracker.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Interface: 120001
1+
## Interface: 120005
22
## Title: Healer Cooldown Tracker
33
## Notes: Manually track healer cooldowns for raid leaders. Click to start a timer when a healer calls out on comms.
44
## Author: Reube
5-
## Version: 1.6.1
5+
## Version: 1.7.0
66
## SavedVariables: CooldownTrackerDB
77

88
Data.lua

Data.lua

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,37 @@ CT.COOLDOWNS = {
120120
r = 1.0, g = 1.0, b = 1.0,
121121
},
122122

123+
-- -------------------------------------------------------------------------
124+
-- Monk (class colour: jade green)
125+
-- -------------------------------------------------------------------------
126+
{
127+
id = "monk_revival",
128+
class = "Monk",
129+
name = "Revival",
130+
duration = 180,
131+
defaultDuration = 180,
132+
icon = "Interface\\Icons\\spell_monk_revival",
133+
r = 0.0, g = 1.0, b = 0.59,
134+
},
135+
{
136+
id = "monk_celestial_conduit",
137+
class = "Monk",
138+
name = "Celestial Conduit",
139+
duration = 90,
140+
defaultDuration = 90,
141+
icon = "Interface\\Icons\\ability_monk_celestialconduit",
142+
r = 0.0, g = 1.0, b = 0.59,
143+
},
144+
{
145+
id = "monk_yulon",
146+
class = "Monk",
147+
name = "Invoke Yu'lon",
148+
duration = 120,
149+
defaultDuration = 120,
150+
icon = "Interface\\Icons\\ability_monk_dragonfire",
151+
r = 0.0, g = 1.0, b = 0.59,
152+
},
153+
123154
-- -------------------------------------------------------------------------
124155
-- Warrior (class colour: tan/gold)
125156
-- -------------------------------------------------------------------------

0 commit comments

Comments
 (0)