Skip to content

Commit

Permalink
even more set stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
coolmodi committed Oct 23, 2019
1 parent 3941332 commit 267dd23
Showing 1 changed file with 40 additions and 10 deletions.
50 changes: 40 additions & 10 deletions data/itemSetData.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ local REJUVENATION = GetSpellInfo(1058);
local EARTH_SHOCK = GetSpellInfo(8042);
local FLAME_SHOCK = GetSpellInfo(8050);
local FROST_SHOCK = GetSpellInfo(8056);
local RENEW = GetSpellInfo(139);

_addon.itemSetData = {
[121] = {
Expand Down Expand Up @@ -227,7 +228,10 @@ _addon.itemSetData = {
effects = {
[1] = {
need = 3,
effect = "Restores $s1 mana per 5 sec.",
effect = {
effect = _addon.EFFECT_TYPE.MP5,
value = 12,
}
},
},
},
Expand Down Expand Up @@ -261,7 +265,10 @@ _addon.itemSetData = {
effects = {
[1] = {
need = 2,
effect = "Restores $s1 mana per 5 sec.",
effect = {
effect = _addon.EFFECT_TYPE.MP5,
value = 4,
}
},
},
},
Expand Down Expand Up @@ -324,11 +331,17 @@ _addon.itemSetData = {
effects = {
[1] = {
need = 2,
effect = "Restores $s1 mana per 5 sec.",
effect = {
effect = _addon.EFFECT_TYPE.MP5,
value = 3,
}
},
[2] = {
need = 3,
effect = "Allows $s1% of your Mana regeneration to continue while casting.",
effect = {
effect = _addon.EFFECT_TYPE.FSR_REGEN,
value = 15,
}
},
},
},
Expand Down Expand Up @@ -390,6 +403,19 @@ _addon.itemSetData = {
},
},
},
[507] = {
name = "Garments of the Oracle",
effects = {
[1] = {
need = 5,
effect = {
effect = _addon.EFFECT_TYPE.MOD_DURATION,
affectSpell = {RENEW},
value = 3,
}
},
},
},
[508] = {
name = "Finery of Infinite Wisdom",
effects = {
Expand Down Expand Up @@ -752,12 +778,16 @@ _addon.setItemData = {
[16796] = 201,
[16797] = 201,
[16798] = 201,
[21349] = 507,
[21350] = 507,
[21348] = 507,
[21352] = 507,
[21351] = 507,



--[9492] = 211,
--[4112] = 211,
--[20641] = 211,
--[9683] = 211,
--[[
[6087] = 207,
[5944] = 207,
[6550] = 207,
]]
};

0 comments on commit 267dd23

Please sign in to comment.