Skip to content

Commit 5122d20

Browse files
authored
feat: add evoker rewind and dreamflight (#19)
* 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) * chore: bump version to 1.7.1 * feat: add Evoker Rewind and Dream Flight cooldowns (v1.7.2)
1 parent 58efc1c commit 5122d20

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

CooldownTracker.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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.7.1
5+
## Version: 1.7.2
66
## SavedVariables: CooldownTrackerDB
77

88
Data.lua

Data.lua

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,26 @@ CT.COOLDOWNS = {
214214
icon = "Interface\\Icons\\ability_evoker_spatialparadox",
215215
r = 0.2, g = 0.58, b = 0.5,
216216
},
217+
{
218+
id = "evoker_rewind",
219+
class = "Evoker",
220+
name = "Rewind",
221+
duration = 240,
222+
defaultDuration = 240,
223+
icon = "Interface\\Icons\\spell_evoker_rewind",
224+
spellId = 363534,
225+
r = 0.2, g = 0.58, b = 0.5,
226+
},
227+
{
228+
id = "evoker_dream_flight",
229+
class = "Evoker",
230+
name = "Dream Flight",
231+
duration = 120,
232+
defaultDuration = 120,
233+
icon = "Interface\\Icons\\spell_evoker_dreamflight",
234+
spellId = 363502,
235+
r = 0.2, g = 0.58, b = 0.5,
236+
},
217237
}
218238

219239
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)