Skip to content

Commit

Permalink
Add Midsummer Fire Festival event items
Browse files Browse the repository at this point in the history
  • Loading branch information
Zazou89 committed Jun 12, 2024
1 parent 03395b7 commit 28ad9bd
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This addon must be used with [BetterBags](https://www.curseforge.com/wow/addons/
- Noblegarden
- Darkmoon Faire
- Lunar Festival
- Midsummer Fire Festival
- ...More events will be added soon !

# Preview
Expand Down
46 changes: 45 additions & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local locales = {
["Noblegarden"] = "Noblegarden",
["Darkmoon Faire"] = "Darkmoon Faire",
["Lunar Festival"] = "Lunar Festival",
["Midsummer Fire Festival"] = "Midsummer Fire Festival",
["Remix"] = "Remix",
["Meta Gems"] = "Meta Gems",
["Cogwheel Gems"] = "Cogwheel Gems",
Expand All @@ -24,6 +25,7 @@ local locales = {
["Noblegarden"] = "Le Jardin des nobles",
["Darkmoon Faire"] = "Foire de Sombrelune",
["Lunar Festival"] = "Fête lunaire",
["Midsummer Fire Festival"] = "Fête du Feu du solstice d'été",
["Remix"] = "Remix",
["Meta Gems"] = "Meta-gemmes",
["Cogwheel Gems"] = "Roues dentées précieuses",
Expand All @@ -38,6 +40,7 @@ local locales = {
["Noblegarden"] = "Nobelgartenfest",
["Darkmoon Faire"] = "Dunkelmond-Jahrmarkt",
["Lunar Festival"] = "Mondfest",
["Midsummer Fire Festival"] = "Sonnenwendfest",
["Remix"] = "Remix",
["Meta Gems"] = "Metaedelstein",
["Cogwheel Gems"] = "Zahnradedelstein",
Expand All @@ -52,6 +55,7 @@ local locales = {
["Noblegarden"] = "Jardinova",
["Darkmoon Faire"] = "Feira de Negraluna",
["Lunar Festival"] = "Festival da Lua",
["Midsummer Fire Festival"] = "Festival do Fogo do Solstício",
["Remix"] = "Remix",
["Meta Gems"] = "Meta Gemas",
["Cogwheel Gems"] = "Gema de Engrenagem",
Expand Down Expand Up @@ -751,7 +755,42 @@ local WoWRemixMoP_Threads = {
226143, --Spool of Eternal Thread
226142 --Greater Spool of Eternal Thread
}

local MidsummerFireFestival = {
188701, -- Fire Festival Batons
23326, -- Midsummer Sausage
23327, -- Fire-Toasted Bun
166746, -- Fire Eater's Hearthstone
34684, -- Handful of Summer Petals
34686, -- Brazier of Dancing Flames
167731, -- Battle-Hardened Heirloom Armor Casing
74278, -- Helm of the Fire Festival
23083, -- Captured Flame
23211, -- Toasted Smorc
188695, -- Summer Cranial Skillet
23215, -- Bag of Smorc Ingredients
35279, -- Tabard of Summer Skies
122340, -- Timeworn Heirloom Armor Casing
204336, -- Awakened Heirloom Armor Casing
206038, -- Flamin' Ring of Flashiness
151614, -- Weathered Heirloom Armor Casing
187997, -- Eternal Heirloom Armor Casing
34685, -- Vestment of Summer
116435, -- Cozy Bonfire
116439, -- Blazing Cindercrawler
188699, -- Insulated Dancing Insoles
23246, -- Fiery Festival Brew
23247, -- Burning Blossom
35280, -- Tabard of Summer Flames
122338, -- Ancient Heirloom Armor Casing
34683, -- Sandals of Summer
141649, -- Set of Matches
141714, -- Igneous Flameling
34599, -- Juggling Torch
23324, -- Mantle of the Fire Festival
116440, -- Burning Defender's Medallion
23323, -- Crown of the Fire Festival
23435, -- Elderberry Pie
}
--We make sure that category names and content are always up to date.
local CategoriesToUpdate = {
"Remix",
Expand All @@ -777,6 +816,7 @@ local CategoriesToUpdate = {
L("Utilities"),
L("Consumables"),
L("Threads"),
L("Midsummer Fire Festival"),
}

for _, category in ipairs(CategoriesToUpdate) do
Expand All @@ -796,6 +836,10 @@ for _, ItemID in pairs(LunarFestival) do
categories:AddItemToCategory(ItemID, L("Lunar Festival"))
end

for _, ItemID in pairs(MidsummerFireFestival) do
categories:AddItemToCategory(ItemID, L("Midsummer Fire Festival"))
end

--[=[
MoP Remix
Color Categories
Expand Down

0 comments on commit 28ad9bd

Please sign in to comment.