Skip to content

Commit

Permalink
Added the category Ve'nari
Browse files Browse the repository at this point in the history
  • Loading branch information
Zottelchen committed Dec 19, 2020
1 parent df0412c commit b41f17b
Show file tree
Hide file tree
Showing 4 changed files with 1,145 additions and 1,062 deletions.
Binary file modified AdiBags_Creator/itemname.cache.sqlite
Binary file not shown.
21 changes: 21 additions & 0 deletions AdiBags_Creator/items/Ve'nari.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
!Items that are sold by Ve'nari
#Items that are sold by Ve'nari
$d900d2
180949
180952
180953
181245
184361
184588
184605
184613
184615
184617
184618
184619
184620
184621
184651
184652
184653
184664
40 changes: 39 additions & 1 deletion AdiBags_Shadowlands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1128,6 +1128,28 @@ local RuneVesselIDs = {
178927, -- Shadowghast Necklace
}

-- Ve'nari
local VenariIDs = {
180949, -- Animaflow Stabilizer
180952, -- Possibility Matrix
180953, -- Soultwinning Scepter
181245, -- Oil of Ethereal Force
184361, -- Spatial Realignment Apparatus
184588, -- Soul-Stabilizing Talisman
184605, -- Sigil of the Unseen
184613, -- Encased Riftwalker Essence
184615, -- Extradimensional Pockets
184617, -- Bangle of Seniority
184618, -- Rank Insignia: Acquisitionist
184619, -- Loupe of Unusual Charm
184620, -- Vessel of Unfortunate Spirits
184621, -- Ritual Prism of Fortune
184651, -- Maw-Touched Miasma
184652, -- Phantasmic Infuser
184653, -- Animated Levitating Chain
184664, -- Sticky-Fingered Skeletal Hand
}



local function MatchIDs_Init(self)
Expand Down Expand Up @@ -1221,6 +1243,14 @@ local function MatchIDs_Init(self)
end
end

if self.db.profile.moveVenari then
if self.db.profile.showcoloredCategories then
Result["|cffd900d2Ve'nari|r"] = AddToSet(VenariIDs)
else
Result[unescape("|cffd900d2Ve'nari|r")] = AddToSet(VenariIDs)
end
end



return Result
Expand Down Expand Up @@ -1258,6 +1288,7 @@ function setFilter:OnInitialize()
moveOutdoorItems = true,
moveQueensConservatory = true,
moveRuneVessel = true,
moveVenari = true,
showcoloredCategories = true,
}
})
Expand Down Expand Up @@ -1376,11 +1407,18 @@ function setFilter:GetOptions()
order = 110
},

moveVenari = {
name = "Ve'nari",
desc = "Items that are sold by Ve'nari",
type = "toggle",
order = 120
},

showcoloredCategories = {
name = "|cffff98abC|cffffa094o|cffffa77el|cffffaf67o|cfffebf71r|cfffecf7be|cfffddf85d|cffe0d988 |cffc3d38bC|cffa6cd8ea|cff9bccaet|cff8fcbcde|cff95bad2g|cff9aa9d7o|cffa098dcr|cffae98dci|cffbd98dce|cffcb98dcs|r",
desc = "Should Categories be colored?",
type = "toggle",
order = 120
order = 130
},


Expand Down
Loading

0 comments on commit b41f17b

Please sign in to comment.